@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --forest-green: #1f3c25;
    --forest-green-light: #2d5635;
    --forest-green-dark: #122416;
    --cream: #fbf9f6;
    --milk: #f4f0e6;
    --sand: #dfd7c2;
    --sand-dark: #b8ac8c;
    --terracotta: #c87a53;
    --slate: #2d3748;
    --slate-light: #718096;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
    --border: 1px solid #e5e0d3;
    --font-outfit: 'Outfit', sans-serif;
    --font-playfair: 'Playfair Display', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--cream);
    color: var(--slate);
    font-family: var(--font-outfit);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ──────────────────────────────────────────────────────────── */
/* COMMON ELEMENTS & BUTTONS */
/* ──────────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-outfit);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--forest-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--forest-green-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
}

.btn-secondary:hover {
    background-color: var(--forest-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-playfair);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-outfit);
    font-size: 1rem;
    color: var(--slate-light);
    margin-bottom: 50px;
    font-weight: 400;
}

/* ──────────────────────────────────────────────────────────── */
/* TOP INFO BAR */
/* ──────────────────────────────────────────────────────────── */
.top-bar {
    background-color: var(--forest-green-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.top-bar-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ──────────────────────────────────────────────────────────── */
/* HEADER */
/* ──────────────────────────────────────────────────────────── */
.site-header {
    background-color: rgba(251, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--forest-green-dark);
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--slate-light);
    display: block;
    margin-top: -2px;
}

/* Nav */
.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--forest-green-dark);
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--forest-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--forest-green-light);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-icon {
    font-size: 1.2rem;
    color: var(--forest-green-dark);
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.action-icon:hover {
    color: var(--forest-green-light);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--terracotta);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--forest-green-dark);
    transition: all 0.3s ease;
}

/* Mobile Nav Modal */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--cream);
    z-index: 999;
    padding: 40px;
    border-top: var(--border);
    animation: fadeIn 0.3s ease;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────────────────── */
/* HERO SECTION */
/* ──────────────────────────────────────────────────────────── */
.hero-section {
    padding: 60px 0;
    background-color: var(--milk);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-playfair);
    font-size: 3.2rem;
    line-height: 1.1;
    color: var(--forest-green-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--slate-light);
    margin-bottom: 35px;
    max-width: 550px;
}

/* Features icons list */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(31, 60, 37, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-green);
    font-size: 1.2rem;
}

.feature-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--forest-green-dark);
}

.feature-sub {
    font-size: 0.75rem;
    color: var(--slate-light);
}

/* CTA */
.hero-ctas {
    display: flex;
    gap: 20px;
}

/* Hero image */
.hero-image-container {
    position: relative;
}

.hero-image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--white);
    border: 2px solid var(--forest-green);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow);
    padding: 10px;
}

.hero-badge-title {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--forest-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.hero-badge-desc {
    font-size: 0.55rem;
    color: var(--slate-light);
    line-height: 1.2;
}

.hero-badge-price {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--terracotta);
    margin-top: 4px;
}

/* ──────────────────────────────────────────────────────────── */
/* PRODUCT CARDS SECTION */
/* ──────────────────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    border: var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--terracotta);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-img-wrap {
    height: 220px;
    overflow: hidden;
    background-color: var(--milk);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-playfair);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    margin-bottom: 5px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--slate-light);
    margin-bottom: 20px;
    min-height: 40px;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: var(--border);
    border-bottom: var(--border);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 500;
}

.spec-item svg {
    color: var(--forest-green-light);
    flex-shrink: 0;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--forest-green);
}

.product-price-orig {
    font-size: 1.1rem;
    text-decoration: line-height;
    color: var(--slate-light);
    text-decoration: line-through;
}

.gift-alert {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ──────────────────────────────────────────────────────────── */
/* COMPARISON TABLE */
/* ──────────────────────────────────────────────────────────── */
.comparison-section {
    background-color: var(--milk);
}

.table-wrapper {
    overflow-x: auto;
    background-color: var(--white);
    border-radius: 8px;
    border: var(--border);
    box-shadow: var(--shadow-sm);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: center;
}

.comp-table th {
    background-color: var(--forest-green-dark);
    color: var(--white);
    font-weight: 700;
    padding: 18px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    width: 25%;
}

.comp-table th:first-child {
    text-align: left;
    background-color: var(--forest-green);
}

.comp-table td {
    padding: 16px;
    border-bottom: var(--border);
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-table td:first-child {
    font-weight: 700;
    text-align: left;
    color: var(--forest-green);
    background-color: rgba(31, 60, 37, 0.02);
}

.comp-table tr:hover td {
    background-color: rgba(31, 60, 37, 0.01);
}

/* ──────────────────────────────────────────────────────────── */
/* INCLUDED ELEMENTS (GIFT DETAILS) */
/* ──────────────────────────────────────────────────────────── */
.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.included-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: block;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: var(--border);
}

.included-item:last-child {
    border-bottom: none;
}

.included-bullet {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--forest-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.included-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--forest-green-dark);
    margin-bottom: 2px;
}

.included-desc {
    font-size: 0.85rem;
    color: var(--slate-light);
    line-height: 1.4;
}

/* ──────────────────────────────────────────────────────────── */
/* REVIEWS */
/* ──────────────────────────────────────────────────────────── */
.reviews-section {
    background-color: var(--milk);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background-color: var(--white);
    border-radius: 8px;
    border: var(--border);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: #facc15;
    font-size: 1rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 25px;
}

.review-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--forest-green-dark);
}

.review-loc {
    font-size: 0.75rem;
    color: var(--slate-light);
}

.review-product-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--terracotta);
    text-transform: uppercase;
    margin-left: auto;
}

.trustpilot-wrap {
    text-align: center;
    padding: 20px;
    border-top: var(--border);
    max-width: 600px;
    margin: 0 auto;
}

/* ──────────────────────────────────────────────────────────── */
/* FOOTER */
/* ──────────────────────────────────────────────────────────── */
.site-footer {
    background-color: var(--forest-green-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: var(--font-playfair);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: 0.05em;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--sand);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--sand);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 12px;
    color: var(--white);
    font-family: var(--font-outfit);
    font-size: 0.88rem;
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--sand);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--sand);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.univers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.select-table-wrapper {
    background-color: var(--milk);
    padding: 30px;
    border-radius: 8px;
}

.univers-image-wrapper {
    position: relative;
}

.univers-image-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: block;
}

.univers-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(18, 36, 22, 0.85);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.univers-overlay h4 {
    font-family: var(--font-playfair);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--sand);
}

.univers-overlay p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--cream);
}

/* ──────────────────────────────────────────────────────────── */
/* RESPONSIVE LAYOUTS & MOBILE PERFECTION */
/* ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    /* Top Bar on Mobile */
    .top-bar {
        padding: 6px 0;
        font-size: 0.72rem;
    }
    .top-bar-content {
        gap: 8px 15px;
        justify-content: center;
    }
    .top-bar-item:nth-child(n+3) {
        display: none; /* Keep top bar clean with 2 core value props */
    }

    /* Header */
    .site-header {
        height: auto;
    }
    .header-container {
        padding: 12px 16px;
    }

    .hamburger {
        display: flex;
    }
    
    .main-nav, .header-actions .action-icon:not(.cart-icon) {
        display: none;
    }
    
    .logo {
        font-size: 1.15rem;
        gap: 6px;
    }
    
    .logo-sub {
        font-size: 0.52rem;
        letter-spacing: 0.08em;
    }
    
    .logo svg {
        width: 22px;
        height: 22px;
    }

    /* Mobile Drawer */
    .mobile-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 30px 20px;
    }
    .mobile-menu-links {
        gap: 20px;
        font-size: 1.1rem;
    }
    
    /* Sections */
    section {
        padding: 45px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    /* Hero */
    .hero-section {
        padding: 35px 0 45px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.15;
    }
    .hero-content .hero-subtitle {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    .feature-item {
        gap: 8px;
    }
    .feature-icon-wrap {
        width: 32px;
        height: 32px;
    }
    .feature-label {
        font-size: 0.8rem;
    }
    .feature-sub {
        font-size: 0.72rem;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .hero-ctas .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.88rem;
    }
    
    .hero-image-container {
        margin-top: 10px;
    }
    .hero-badge {
        width: 95px;
        height: 95px;
        bottom: -8px;
        right: 8px;
        padding: 8px;
    }
    .hero-badge-title { font-size: 0.55rem; }
    .hero-badge-desc { font-size: 0.45rem; line-height: 1.1; }
    .hero-badge-price { font-size: 0.6rem; }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 25px;
    }
    .product-card {
        padding: 18px;
    }

    /* Comparison Table Responsive */
    .select-table-wrapper {
        padding: 15px 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comp-table th, .comp-table td {
        padding: 10px 6px;
        font-size: 0.78rem;
        white-space: nowrap;
    }
    
    .univers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .univers-overlay {
        position: relative;
        top: 0; left: 0; right: 0;
        margin-top: 15px;
        background: var(--forest-green-dark);
        padding: 20px;
    }
    .univers-overlay h4 { font-size: 1.15rem; }

    /* Reviews Grid */
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 30px;
        gap: 18px;
    }
    .review-card {
        padding: 20px;
    }

    /* Included Grid */
    .included-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px !important;
    }
    
    /* Cart & Checkout Layout */
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
        padding: 15px 10px;
    }
    .cart-item-img {
        width: 65px;
        height: 50px;
    }
    .cart-item-details {
        flex-grow: 1;
        min-width: 140px;
    }
    .cart-summary-box, .checkout-panel {
        padding: 22px 16px;
    }
    
    .form-control {
        font-size: 16px; /* Prevents auto-zoom on iOS */
        height: 48px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .trust-badges {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

