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

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
    /* Color Palette */
    --color-bg-cocoa: #1c120c;
    --color-bg-cocoa-light: #261a12;
    --color-primary-sage: #0d522c; /* Forest Green from logo */
    --color-primary-sage-light: #167e46;
    --color-accent-gold: #d49b35; /* Ochre Gold from packaging */
    --color-accent-gold-dark: #b28026;
    --color-text-light: #f7f3ee; /* Warm beige */
    --color-text-muted: #c4b4a9;
    --color-text-dark: #261a12;
    --color-card-bg: rgba(38, 26, 18, 0.7);
    --color-card-border: rgba(247, 243, 238, 0.08);
    --color-success: #4e8a60;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    
    /* Layout */
    --container-max-width: 1200px;
    --nav-height: 80px;
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-cocoa);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
}

/* --- BUTTONS & CALL-TO-ACTIONS --- */
.btn-primary {
    background-color: var(--color-primary-sage);
    color: var(--color-text-light);
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid var(--color-primary-sage);
    box-shadow: 0 4px 15px rgba(92, 116, 98, 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 116, 98, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(245, 240, 235, 0.3);
    border-radius: var(--border-radius-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-cocoa);
    border-color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--color-accent-gold);
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

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

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--color-primary-sage);
    height: 36px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.announcement-track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 35s linear infinite;
}

.announcement-track span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    padding-right: 60px;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- HEADER & NAVIGATION --- */
header {
    height: var(--nav-height);
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(28, 18, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-card-border);
    height: 64px;
    top: 36px;
}


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

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--color-text-light), var(--color-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent-gold);
    margin-top: -3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

nav a:hover, nav a.active {
    color: var(--color-text-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.icon-btn {
    color: var(--color-text-light);
    font-size: 1.2rem;
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-accent-gold);
    color: var(--color-bg-cocoa);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- MOBILE HAMBURGER BUTTON --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- MOBILE FULL-SCREEN NAV --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 100vw);
    height: 100vh;
    background: var(--color-bg-cocoa);
    border-left: 1px solid var(--color-card-border);
    z-index: 500;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 80px 40px 40px;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav nav ul {
    flex-direction: column;
    gap: 0;
}

.mobile-nav nav ul li {
    border-bottom: 1px solid var(--color-card-border);
}

.mobile-nav nav ul li a {
    display: block;
    padding: 18px 0;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-weight: 500;
}

.mobile-nav nav ul li a:hover {
    color: var(--color-accent-gold);
    padding-left: 8px;
}

.mobile-nav-footer {
    margin-top: auto;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 499;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 680px;
    padding-top: calc(var(--nav-height) + 36px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, transparent 20%, var(--color-bg-cocoa) 90%),
                linear-gradient(to top, var(--color-bg-cocoa), transparent 40%);
    z-index: 2;
}

.hero-glow-blob {
    position: absolute;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 116, 98, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    z-index: 2;
    filter: blur(60px);
    pointer-events: none;
}

.hero .container {
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    padding-top: 60px;
}

.hero-content {
    max-width: 580px;
}

.hero-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-text-muted);
}

.hero p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-floating-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-premium);
    position: absolute;
    bottom: -30px;
    left: -40px;
    max-width: 250px;
    z-index: 4;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-card-rating {
    display: flex;
    gap: 4px;
    color: var(--color-accent-gold);
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.floating-card-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.hero-main-img-wrap {
    width: 85%;
    aspect-ratio: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-premium);
    background: rgba(28, 18, 12, 0.4);
}

.hero-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-main-img-wrap:hover img {
    transform: scale(1.08);
}

/* --- TRUST BADGES SECTION --- */
.trust-badges {
    background-color: var(--color-bg-cocoa-light);
    border-top: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
    padding: 30px 0;
}

.badges-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 200px;
}

.badge-icon {
    font-size: 2rem;
    color: var(--color-accent-gold);
    opacity: 0.9;
}

.badge-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.badge-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- PRODUCT SECTION --- */
.products-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 300;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(245, 240, 235, 0.1);
    color: var(--color-text-muted);
    border-radius: 30px;
}

.tab-btn:hover {
    color: var(--color-text-light);
    border-color: rgba(245, 240, 235, 0.25);
}

.tab-btn.active {
    background-color: var(--color-primary-sage);
    color: var(--color-text-light);
    border-color: var(--color-primary-sage);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 240, 235, 0.18);
    box-shadow: var(--shadow-premium);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: rgba(28, 18, 12, 0.3);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-stars {
    color: var(--color-accent-gold);
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.product-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7em;
}

.product-purchase-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.price-original {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-top: -2px;
}

.add-to-cart-btn {
    background-color: var(--color-primary-sage);
    color: var(--color-text-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(92, 116, 98, 0.2);
}

.add-to-cart-btn:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-cocoa);
    transform: scale(1.05);
}

/* --- BUNDLE BUILDER SECTION --- */
.bundle-section {
    padding: 100px 0;
    background-color: var(--color-bg-cocoa-light);
    border-top: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
    position: relative;
}

.bundle-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.bundle-selector {
    display: flex;
    flex-direction: column;
}

.bundle-instructions {
    margin-bottom: 30px;
}

.bundle-instructions h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.bundle-instructions p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar for Bundle Grid */
.bundle-grid::-webkit-scrollbar {
    width: 6px;
}
.bundle-grid::-webkit-scrollbar-track {
    background: rgba(28, 18, 12, 0.2);
    border-radius: 3px;
}
.bundle-grid::-webkit-scrollbar-thumb {
    background: rgba(245, 240, 235, 0.1);
    border-radius: 3px;
}
.bundle-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 240, 235, 0.25);
}

.bundle-item-card {
    background: rgba(28, 18, 12, 0.35);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bundle-item-card:hover {
    border-color: rgba(245, 240, 235, 0.2);
    transform: translateY(-3px);
}

.bundle-item-card.selected {
    border-color: var(--color-accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.bundle-item-img-wrap {
    width: 90px;
    aspect-ratio: 1;
    margin-bottom: 12px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(28, 18, 12, 0.2);
}

.bundle-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.bundle-item-price {
    font-size: 0.85rem;
    color: var(--color-accent-gold);
    font-weight: 600;
}

.bundle-checkbox {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(245, 240, 235, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-quick);
}

.bundle-item-card.selected .bundle-checkbox {
    background-color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
}

.bundle-item-card.selected .bundle-checkbox::after {
    content: '✓';
    color: var(--color-bg-cocoa);
    font-size: 0.6rem;
    font-weight: 800;
}

.bundle-summary-panel {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-premium);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.bundle-summary-panel h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-card-border);
    padding-bottom: 12px;
}

.bundle-progress-container {
    margin-bottom: 24px;
}

.bundle-progress-text {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.bundle-progress-bar-outer {
    background-color: rgba(28, 18, 12, 0.4);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.bundle-progress-bar-inner {
    background: linear-gradient(90deg, var(--color-primary-sage), var(--color-accent-gold));
    height: 100%;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bundle-discount-alert {
    background-color: rgba(78, 138, 96, 0.15);
    border: 1px solid rgba(78, 138, 96, 0.2);
    color: #92e0ab;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    margin-bottom: 24px;
    display: none;
    text-align: center;
}

.bundle-summary-items {
    list-style: none;
    margin-bottom: 24px;
    max-height: 150px;
    overflow-y: auto;
}

.bundle-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.bundle-totals {
    border-top: 1px solid var(--color-card-border);
    padding-top: 16px;
    margin-bottom: 30px;
}

.bundle-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.bundle-total-row.discount {
    color: #e28888;
}

.bundle-total-row.grand-total {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-light);
    border-top: 1px dashed var(--color-card-border);
    padding-top: 12px;
    margin-top: 10px;
}

.add-bundle-btn {
    width: 100%;
    text-align: center;
}

.add-bundle-btn:disabled {
    background-color: rgba(245, 240, 235, 0.05);
    border-color: rgba(245, 240, 235, 0.05);
    color: rgba(245, 240, 235, 0.2);
    cursor: not-allowed;
    box-shadow: none;
}

/* --- ABOUT BRAND SECTION --- */
.about-section {
    padding: 100px 0;
    overflow: hidden;
}

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

.about-images {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
    align-items: center;
}

.about-img-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-premium);
}

.about-img-item.large {
    margin-top: 40px;
}

.about-img-item.small {
    margin-bottom: 40px;
}

.about-content {
    max-width: 900px;
}

.about-content h2 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 28px;
}

.about-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.bullet-icon {
    color: var(--color-accent-gold);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg-cocoa-light);
    border-top: 1px solid var(--color-card-border);
}

.reviews-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
    min-width: 100%;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-quote-icon {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--color-primary-sage);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.3;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--color-text-light);
    font-weight: 400;
}

.review-user-rating {
    color: var(--color-accent-gold);
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.review-author {
    font-size: 0.95rem;
    font-weight: 600;
}

.review-author-title {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-card-border);
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.slider-arrow:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-cocoa);
    border-color: var(--color-text-light);
}

/* --- BLOG SECTION --- */
.blog-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 240, 235, 0.15);
}

.blog-img-wrap {
    aspect-ratio: 1.7;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-weight: 300;
}

.blog-link {
    margin-top: auto;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-bg-cocoa-light);
    border-top: 1px solid var(--color-card-border);
}

.faq-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-card-border);
    padding: 24px 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: var(--color-text-light);
}

.faq-question:hover {
    color: var(--color-accent-gold);
}

.faq-icon {
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* --- FOOTER --- */
footer {
    background-color: var(--color-bg-cocoa);
    border-top: 1px solid var(--color-card-border);
    padding: 80px 0 30px;
}

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

.footer-logo-col {
    max-width: 250px;
}

.footer-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 16px;
    font-weight: 300;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-accent-gold);
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-weight: 300;
}

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

.newsletter-input {
    background-color: rgba(28, 18, 12, 0.5);
    border: 1px solid var(--color-card-border);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    color: var(--color-text-light);
    font-size: 0.85rem;
    flex-grow: 1;
    outline: none;
    font-family: var(--font-body);
}

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

.newsletter-btn {
    background-color: var(--color-primary-sage);
    color: var(--color-text-light);
    padding: 0 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

.newsletter-btn:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-cocoa);
}

.footer-bottom {
    border-top: 1px solid var(--color-card-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon-btn {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.social-icon-btn:hover {
    color: var(--color-accent-gold);
}

/* --- CART DRAWER --- */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: var(--color-bg-cocoa);
    border-left: 1px solid var(--color-card-border);
    z-index: 1001;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.open {
    right: 0;
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--color-card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-size: 1.35rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.drawer-close {
    color: var(--color-text-muted);
    font-size: 1.3rem;
}

.drawer-close:hover {
    color: var(--color-text-light);
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty-message {
    text-align: center;
    color: var(--color-text-muted);
    padding-top: 60px;
    display: block;
}

.drawer-cart-items {
    list-style: none;
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-card-border);
}

.cart-item-img {
    aspect-ratio: 1;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background-color: rgba(28, 18, 12, 0.3);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h5 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-item-details {
    font-size: 0.75rem;
    color: var(--color-accent-gold);
    margin-bottom: 8px;
}

.cart-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-card-border);
    border-radius: 4px;
    width: fit-content;
}

.qty-btn {
    color: var(--color-text-muted);
    padding: 2px 8px;
    font-size: 0.8rem;
}

.qty-btn:hover {
    color: var(--color-text-light);
}

.qty-val {
    font-size: 0.8rem;
    padding: 0 4px;
    min-width: 20px;
    text-align: center;
}

.cart-item-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 600;
}

.cart-item-remove {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.cart-item-remove:hover {
    color: #e28888;
}

.cart-progress-box {
    background-color: rgba(28, 18, 12, 0.4);
    border: 1px solid var(--color-card-border);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
}

.cart-progress-msg {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.cart-progress-msg span {
    font-weight: 600;
    color: var(--color-accent-gold);
}

.cart-progress-bar-outer {
    background-color: rgba(28, 18, 12, 0.6);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.cart-progress-bar-inner {
    background-color: var(--color-primary-sage);
    height: 100%;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--color-card-border);
    background-color: var(--color-bg-cocoa-light);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.cart-summary-row.total {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
    border-top: 1px solid var(--color-card-border);
    padding-top: 12px;
    margin-top: 12px;
}

.checkout-btn {
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

/* --- CHECKOUT DRAWER --- */
.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.checkout-form-group {
    margin-bottom: 16px;
}

.checkout-form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.checkout-input {
    width: 100%;
    background-color: rgba(28, 18, 12, 0.5);
    border: 1px solid var(--color-card-border);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    color: var(--color-text-light);
    font-size: 0.9rem;
    outline: none;
}

.checkout-input:focus {
    border-color: var(--color-primary-sage);
}

.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.payment-option-card {
    background-color: rgba(28, 18, 12, 0.4);
    border: 1px solid var(--color-card-border);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-quick);
}

.payment-option-card:hover {
    border-color: rgba(245, 240, 235, 0.15);
}

.payment-option-card.selected {
    border-color: var(--color-accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--color-accent-gold);
    margin-bottom: 6px;
}

.payment-label {
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-desc {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.checkout-summary-box {
    background-color: rgba(28, 18, 12, 0.4);
    border: 1px solid var(--color-card-border);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
}

.checkout-success-view {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 24px;
}

.checkout-success-view h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.checkout-success-view p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* --- WHATSAPP LEAD CAPTURE --- */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.wa-btn {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: var(--color-bg-cocoa);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.wa-chat-container.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.wa-chat-header {
    background-color: #128c7e;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f0eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #128c7e;
}

.wa-header-info h5 {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: white;
}

.wa-header-info p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
}

.wa-chat-body {
    padding: 16px;
    background-color: rgba(28, 18, 12, 0.4);
    max-height: 250px;
    overflow-y: auto;
}

.wa-msg {
    background-color: var(--color-bg-cocoa-light);
    padding: 10px 14px;
    border-radius: 0 12px 12px 12px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    max-width: 85%;
    border: 1px solid var(--color-card-border);
}

.wa-msg-user {
    background-color: rgba(78, 138, 96, 0.15);
    border: 1px solid rgba(78, 138, 96, 0.2);
    border-radius: 12px 0 12px 12px;
    margin-left: auto;
}

.wa-chat-footer {
    padding: 12px;
    border-top: 1px solid var(--color-card-border);
    background-color: var(--color-bg-cocoa);
}

.wa-chat-footer form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-input {
    width: 100%;
    background-color: rgba(28, 18, 12, 0.5);
    border: 1px solid var(--color-card-border);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    color: var(--color-text-light);
    font-size: 0.8rem;
    outline: none;
}

.wa-send-btn {
    background-color: #25d366;
    color: white;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-floating-card {
        left: 0;
        bottom: -20px;
    }
    
    .bundle-container {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        order: 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .about-content h2 {
        font-size: 1.9rem;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    .announcement-bar {
        height: 30px;
    }

    .announcement-track span {
        font-size: 0.68rem;
    }

    header {
        top: 30px;
    }

    header.scrolled {
        top: 30px;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 30px);
    }
}

/* ==========================================================================
   TWAZEI BY FARM FRESH - COMPLETE HERO & REVIEWS OVERHAUL
   ========================================================================== */

/* 1. CLEAN UP HERO PRODUCT IMAGE (Remove Unattractive White Box) */
/* Completely hide the old lifestyle wellness bottle/table image from the front page */
.hero-image-container img[src*="wellness-powders"],
img[src*="wellness_powders"],
img[alt*="Wellness Powders"] {
    display: none !important;
}

/* Style for the NEW standalone ABC Product Image (NO white background) */
.product-hero-img, 
img[alt*="ABC Vitality"], 
img[alt*="ABC Powder Package"] {
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: normal !important;
    border: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0px 15px 35px rgba(0, 0, 0, 0.35)) !important;
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
}

/* Clear all container background restrictions on the right side of the hero */
.hero-image-container, 
div:has(> img[alt*="ABC"]) {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 2. REMOVE THE COLD FLOATING CARD OVERLAYING THE PRODUCT */
.review-card-canvas, 
div:has(> em:contains("Meera D.")),
.hero-image-container + div {
    display: none !important;
}

/* 3. INFINITE MOVING REVIEW LOOP CONTAINER (Placed below CTA Buttons) */
.review-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    margin-top: 30px;
    margin-bottom: 25px;
    position: relative;
    background: transparent;
    clear: both;
}

/* Seamless Left-to-Right Moving Flex Track */
.review-ticker-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scrollLeftToRight 45s linear infinite;
}

/* Custom design for your 10-15 Review Boxes */
.ticker-review-box {
    width: 310px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.ticker-review-box .stars {
    color: #ffb800;
    font-size: 13px;
    margin-bottom: 6px;
}

.ticker-review-box p {
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 8px 0;
    opacity: 0.9;
}

.ticker-review-box span {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.7;
    display: block;
    letter-spacing: 0.5px;
}

/* Pause scroll animation on mouse hover so customers can read easily */
.review-ticker-wrapper:hover .review-ticker-track {
    animation-play-state: paused;
}

/* Infinite Animation Loop Logic */
@keyframes scrollLeftToRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Mobile Responsive Optimization */
@media (max-width: 768px) {
    .review-ticker-track {
        animation-duration: 30s; /* Moves slightly faster on small screens */
    }
    .ticker-review-box {
        width: 260px;
        padding: 12px 16px;
    }
}
