* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-green: #1a4d2e;
    --gold: #d4af37;
    --cream: #faf7f0;
    --soft-brown: #8b6f47;
    --white: #ffffff;
    --dark: #2c2c2c;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.8;
    /* Increased line-height */
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 77, 46, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay p {
    color: var(--white);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Smoke Animations */
@keyframes smoke-float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.08;
    }

    100% {
        transform: translateY(-200px) translateX(30px) scale(1.8);
        opacity: 0;
    }
}

@keyframes smoke-float-2 {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.12;
    }

    50% {
        opacity: 0.06;
    }

    100% {
        transform: translateY(-220px) translateX(-25px) scale(2);
        opacity: 0;
    }
}

@keyframes smoke-float-3 {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.05;
    }

    100% {
        transform: translateY(-240px) translateX(15px) scale(2.2);
        opacity: 0;
    }
}

.logo-container {
    position: relative;
    z-index: 100;
}

.logo-smoke {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: -1;
}

.logo-smoke-particle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(26, 77, 46, 0.15) 0%, rgba(26, 77, 46, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    will-change: transform, opacity;
    animation: smoke-float 8s infinite ease-out;
}

.logo-smoke-particle:nth-child(2) {
    animation: smoke-float-2 9s infinite ease-out;
    animation-delay: 1s;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 40%, transparent 70%);
}

.logo-smoke-particle:nth-child(3) {
    animation: smoke-float-3 10s infinite ease-out;
    animation-delay: 2s;
    width: 65px;
    height: 65px;
    background: radial-gradient(circle, rgba(26, 77, 46, 0.12) 0%, rgba(26, 77, 46, 0.06) 40%, transparent 70%);
}

.hero-smoke {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.hero-smoke-particle {
    position: absolute;
    bottom: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    will-change: transform, opacity;
}

.hero-smoke-particle:nth-child(1) {
    left: 10%;
    animation: smoke-float 15s infinite ease-out;
}

.hero-smoke-particle:nth-child(2) {
    left: 30%;
    animation: smoke-float-2 18s infinite ease-out;
    animation-delay: 2s;
}

.hero-smoke-particle:nth-child(3) {
    left: 50%;
    animation: smoke-float-3 16s infinite ease-out;
    animation-delay: 4s;
}

.hero-smoke-particle:nth-child(4) {
    left: 70%;
    animation: smoke-float 17s infinite ease-out;
    animation-delay: 6s;
}

.hero-smoke-particle:nth-child(5) {
    left: 90%;
    animation: smoke-float-2 19s infinite ease-out;
    animation-delay: 8s;
}

@media (prefers-reduced-motion: reduce) {

    .logo-smoke,
    .hero-smoke,
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    /* More translucent */
    backdrop-filter: blur(20px);
    /* Increased blur */
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-green);
    margin-left: 10px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--deep-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-green);
    transition: 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2818 0%, #1a4d2e 30%, #2d6a4f 60%, #40916c 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.4rem;
    /* Slightly larger */
    color: var(--cream);
    margin-bottom: 3rem;
    /* More spacing */
    font-weight: 400;
    /* Slightly bolder */
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #c49b2d);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background: #c49b2d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-green);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 11;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gold);
    border-color: var(--white);
    transform: scale(1.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 11;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

/* Sections */
section {
    padding: 5rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--soft-brown);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Products Section */
#products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.loading-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--cream);
    border-top-color: var(--deep-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.product-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smoother transition */
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.product-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 15px rgba(255, 107, 107, 0.5);
    z-index: 10;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep-green);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
    color: var(--gold);
}

.product-content p {
    color: var(--soft-brown);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--deep-green);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: var(--gold);
    color: var(--dark);
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.original-price {
    font-size: 1rem;
    color: var(--soft-brown);
    text-decoration: line-through;
    opacity: 0.7;
}

.sale-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-green);
    font-family: 'Playfair Display', serif;
}

.savings {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    margin-left: auto;
}

.order-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--deep-green), #2d6a4f);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(26, 77, 46, 0.3);
}

.order-btn:hover {
    background: linear-gradient(135deg, var(--gold), #c49b2d);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Experience Section */
#experience {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 50%, #40916c 100%);
    color: var(--white);
    position: relative;
}

.experience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.experience-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.experience-content>p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.experience-item .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.experience-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
}

.experience-item p {
    color: var(--cream);
    line-height: 1.6;
}

/* About Section */
#about {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--soft-brown);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--deep-green);
    font-weight: 500;
    margin: 0;
}

.about-image {
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
    background: var(--white);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-green);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 3px 20px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--deep-green);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
    color: var(--soft-brown);
}

.contact-info a {
    color: var(--deep-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold);
}

/* Modal Styles */
/* Modal Styles - Improved */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
    padding: 2rem 1rem;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream);
    z-index: 10;
    font-weight: 300;
}

.close-modal:hover {
    background: #ff4444;
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, var(--deep-green) 0%, #2d6a4f 100%);
    border-radius: 20px 20px 0 0;
    color: var(--white);
    position: relative;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.modal-header h2 {
    font-size: 1.6rem;
    margin: 0 0 0.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.modal-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

.order-form {
    padding: 2rem;
}

/* Product Summary Card */
.product-summary-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.summary-label {
    font-size: 0.8rem;
    color: var(--soft-brown);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 1.1rem;
    color: var(--deep-green);
    font-family: 'Playfair Display', serif;
}

.summary-price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.price-label {
    font-size: 0.75rem;
    color: var(--soft-brown);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-form .form-group {
    margin-bottom: 1.2rem;
}

.order-form label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.label-icon {
    font-size: 1.1rem;
}

.order-form input,
.order-form textarea,
.order-form select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.order-form textarea {
    resize: vertical;
    min-height: 60px;
}

.order-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2.5rem;
}

/* Payment Options */
.payment-options {
    display: flex;
    gap: 1rem;
}

.radio-option {
    flex: 1;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--cream);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.radio-icon {
    font-size: 1.8rem;
}

.radio-option input[type="radio"]:checked+.radio-label {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.25));
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.radio-label:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Order Total Card */
.order-total-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--dark);
    font-size: 0.95rem;
}

.total-row.total-amount {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
}

.total-price {
    color: var(--deep-green);
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

/* Submit Button */
.submit-order-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--deep-green) 0%, #2d6a4f 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(26, 77, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-order-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #c49b2d 100%);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.5);
}

.submit-order-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1.3rem;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.form-note span {
    font-size: 1rem;
}

/* Success Modal */
.success-content {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 420px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-content h2 {
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.success-content p {
    color: var(--soft-brown);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-content strong {
    color: var(--gold);
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .order-modal-content {
        max-width: 95%;
        margin: 1rem;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .order-form {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .product-summary-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .summary-price-info {
        align-items: flex-start;
    }

    .payment-options {
        flex-direction: column;
    }

    .price-large {
        font-size: 1.5rem;
    }

    .total-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 0.5rem;
    }

    .modal-icon {
        font-size: 2.5rem;
    }

    .order-form input,
    .order-form textarea,
    .order-form select {
        padding: 0.65rem 0.8rem;
        font-size: 0.9rem;
    }
}


/* Success Modal */
.success-content {
    text-align: center;
    padding: 3rem;
    max-width: 400px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-content h2 {
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--soft-brown);
    margin-bottom: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '💬';
    font-size: 2rem;
}

/* Footer */
footer {
    background: var(--deep-green);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--cream);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: var(--cream);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-top: 2px solid var(--gold);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
        order: -1;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 5%;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .slider-nav {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .contact-form,
    .order-form {
        padding: 2rem 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float::before {
        font-size: 1.5rem;
    }

    .logo img {
        height: 40px;
    }

    .modal {
        padding: 1rem;
    }
}

.btn,
.product-card,
.experience-item,
.stat-item {
    will-change: transform;
}

/*Product */
/* Professional Product Pricing Typography */
.product-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
}

.sale-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-green);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    letter-spacing: -0.04em;
    line-height: 1;
}

.savings {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 700;
    background: rgba(40, 167, 69, 0.12);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    margin-left: auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Modal Product Summary Professional Font */
.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    letter-spacing: -0.05em;
    line-height: 1;
}

.total-price {
    color: var(--deep-green);
    font-size: 2rem;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.summary-value {
    font-size: 1.15rem;
    color: var(--deep-green);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 600;
}

/* Product Details Page Styles */
.product-details-page {
    padding-top: 120px;
    padding-bottom: 5rem;
    min-height: 80vh;
    background-color: var(--light-bg);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary);
}

.product-detail-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.detail-image-section {
    flex: 1;
    min-width: 300px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.detail-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.5s;
}

.detail-image:hover {
    transform: scale(1.05);
}

.detail-info-section {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
}

.detail-category {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.detail-price-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.detail-sale-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.detail-original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.detail-discount {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.detail-features {
    margin-bottom: 2.5rem;
}

.detail-features h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    background: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-tag::before {
    content: '✓';
    color: var(--primary);
}

.detail-actions {
    display: flex;
    gap: 1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
    }

    .detail-info-section {
        padding: 2rem;
    }

    .detail-title {
        font-size: 2rem;
    }
}

/* Cart Styles */
.cart-nav-item {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--deep-green);
    transition: transform 0.3s;
    list-style: none;
    /* For navbar usage */
}

.cart-nav-item:hover {
    transform: scale(1.1);
}

.cart-icon {
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: black;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    /* Flex will manage visibility */
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.right-nav-items {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    background: #333;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    font-weight: 500;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Cart Modal Specifics */
.cart-modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 500px;
    margin: 5vh auto;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    /* Ensure not transparent */
    backdrop-filter: none;
}

.cart-items-container {
    max-height: 400px;
    overflow-y: auto;
    margin: 1.5rem 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.qty-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.remove-btn {
    color: #ff4444;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: auto;
}

.cart-footer {
    border-top: 2px solid #eee;
    padding-top: 1.5rem;
}

.add-cart-btn {
    border-radius: 20px;
    /* Match Order Now styles */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-cart-btn:hover {
    background: var(--gold) !important;
    color: white !important;
}