* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

/* Typography - Ancient Styled */
h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    background: rgba(26, 37, 47, 0.95);
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.logo-image {
    height: 50px;
    width: auto;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    font-family: 'Cormorant Garamond', serif;
}

.nav-links a:hover {
    color: #f4d03f;
}

.nav-cta {
    background: linear-gradient(135deg, #d4a574, #f4d03f);
    color: #1a252f !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 208, 63, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content .tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #f4d03f;
    font-family: 'Cormorant Garamond', serif;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(135deg, #d4a574, #f4d03f);
    color: #1a252f;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    font-family: 'Cinzel', serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244, 208, 63, 0.5);
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border: 2px solid #f4d03f;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    font-family: 'Cinzel', serif;
}

.cta-secondary:hover {
    background: rgba(244, 208, 63, 0.1);
    transform: translateY(-3px);
}

.hero-product {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-product img {
    max-width: 100%;
    max-height: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Product Showcase */
.product-showcase {
    padding: 6rem 5%;
    background: white;
}

.product-showcase h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-showcase .subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #666;
}

.product-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.product-card {
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-image-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.quantity-selector {
    margin-bottom: 2rem;
}

.quantity-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: block;
    font-family: 'Cinzel', serif;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #d4a574;
    background: white;
    color: #d4a574;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover:not(:disabled) {
    background: #d4a574;
    color: white;
    transform: scale(1.1);
}

.quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-display {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    min-width: 80px;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.quantity-info {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.price-detail {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.savings-badge {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.buy-button {
    background: linear-gradient(135deg, #d4a574, #f4d03f);
    color: #1a252f;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'Cinzel', serif;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.4);
}

.shipping-notice {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    font-style: italic;
}

/* Wholesale Section */
.wholesale-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    border-radius: 20px;
    text-align: center;
    color: white;
}

.wholesale-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f4d03f;
}

.wholesale-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.wholesale-link {
    color: #f4d03f;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.wholesale-link:hover {
    color: #d4a574;
    transform: translateX(5px);
}

/* Stats Section */
.stats {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f4d03f;
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Story Section */
.story {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.2));
}

/* Ingredients Section */
.ingredients {
    padding: 6rem 5%;
    background: #2c3e50;
    color: white;
}

.ingredients h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ingredients .subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.ingredient-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ingredient-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.ingredient-card:nth-child(4),
.ingredient-card:nth-child(5) {
    flex: 0 1 calc(33.333% - 2rem);
}

.ingredient-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.ingredient-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.ingredient-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f4d03f;
}

.ingredient-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.benefits h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #d4a574;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #d4a574 0%, #f4d03f 100%);
    text-align: center;
    color: #1a252f;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    background: #1a252f;
    color: #f4d03f;
}

.cta-section .cta-button:hover {
    background: #2c3e50;
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section img {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #f4d03f;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f4d03f;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #f4d03f;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* =====================
   RAMADAN POPUP
   ===================== */
.ramadan-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInOverlay 0.4s ease;
}

.ramadan-overlay.hidden {
    display: none;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ramadan-popup {
    background: linear-gradient(160deg, #1a0a00 0%, #2c1810 50%, #1a0a00 100%);
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 40px 50px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
    animation: slideUpPopup 0.4s ease;
}

@keyframes slideUpPopup {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.ramadan-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.ramadan-close:hover {
    opacity: 1;
}

.ramadan-crescent {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.ramadan-subtitle {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ramadan-title {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.ramadan-body {
    font-family: 'Cormorant Garamond', serif;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ramadan-offer {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ramadan-original {
    font-family: 'Cormorant Garamond', serif;
    color: #999;
    font-size: 1rem;
    text-decoration: line-through;
}

.ramadan-price {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.ramadan-pack {
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    font-size: 1.1rem;
}

.ramadan-shipping {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

.ramadan-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f0d060, #d4af37);
    color: #2c1810;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    margin-bottom: 15px;
}

.ramadan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.ramadan-disclaimer {
    font-family: 'Cormorant Garamond', serif;
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 600px) {
    .ramadan-popup {
        padding: 30px 20px;
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .ramadan-title {
        font-size: 1.6rem;
    }

    .ramadan-price {
        font-size: 2.2rem;
    }

    .ramadan-body {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ramadan-crescent {
        font-size: 2.2rem;
        margin-bottom: 6px;
    }

    .ramadan-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .ramadan-btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .ramadan-offer {
        padding: 15px;
    }

    .ramadan-shipping {
        font-size: 0.8rem;
    }

    .ramadan-disclaimer {
        font-size: 0.85rem;
    }
}
