/* =========================================================================
   PYCBELL - Cosmética Natural Colombiana
   Top-Tier Luxury Botanical Aesthetic
   ========================================================================= */

:root {
    /* Luxury Brand Colors (Light Theme) */
    --clr-bg-light: #FFFFFF; /* Clean, stark white for main background */
    --clr-text-main: #1a1e1c; /* Very dark charcoal/forest for reading text */
    --clr-emerald: #004D31; /* Deep, rich Colombian Emerald */
    --clr-emerald-light: #006b44;
    --clr-brand-mint: #95cfbf; /* Authorized specific logo brand green */
    --clr-gold: #b39441; /* Slightly deeper antique gold for contrast on white */
    --clr-alabaster: #FDFDFB; /* Off-white for subtle alternate sections */
    --clr-text-muted: #5e6b63; /* Darker muted text for readability */
    
    /* Dark Theme / Accents */
    --clr-bg-dark: #0f120f; /* Very dark charcoal green */
    --clr-bg-darker: #080a08;
    
    /* Colombian Flag Subdued Accents */
    --clr-accent-yellow: #D1AE28; /* Subdued gold-yellow */
    --clr-accent-blue: #1A345A; /* Deep navy blue */
    --clr-accent-red: #8B1E28; /* Deep rich wine red */

    /* Typography - Apothecary Style */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Playfair Display', serif; /* Switch body to serif for more luxury */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --font-pycbell-ancestral: 'Mea Culpa', cursive; /* For tiny labels / high readability UI */

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 8rem;

    /* Layout */
    --max-width: 1280px;
    --border-radius: 2px; /* Sharper borders for a high-end feel */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle noise texture for luxury paper feel */
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.04"/%3E%3C/svg%3E');
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--clr-gold);
    line-height: 1.2;
}

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

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

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

/* Buttons (Luxury Apothecary Style) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--clr-gold);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: transparent;
    color: var(--clr-gold);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--clr-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:hover {
    color: var(--clr-bg-light);
}

.btn-primary {
    background-color: var(--clr-gold);
    color: var(--clr-bg-light);
    border-color: var(--clr-gold);
}

.btn-primary::before {
    background-color: var(--clr-text-main);
}

.btn-primary:hover {
    color: var(--clr-gold);
}

/* Subtle flag and brand accents */
.accent-blue { border-color: var(--clr-accent-blue); color: var(--clr-accent-blue); }
.accent-blue::before { background-color: var(--clr-accent-blue); }
.accent-blue:hover { color: var(--clr-bg-light); }

.accent-red { border-color: var(--clr-accent-red); color: var(--clr-accent-red); }
.accent-red::before { background-color: var(--clr-accent-red); }
.accent-red:hover { color: var(--clr-bg-light); }

.accent-mint { border-color: var(--clr-brand-mint); color: var(--clr-brand-mint); }
.accent-mint::before { background-color: var(--clr-brand-mint); }
.accent-mint:hover { color: var(--clr-bg-light); }

.btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 0.9rem;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--clr-bg-light); /* White background per user request */
    color: #000000; /* Pure black per user request */
    text-align: center;
    padding: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Standard system sans-serif like screenshot */
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none; /* Normal case */
    letter-spacing: normal;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.9); /* Clean bright white */
    backdrop-filter: blur(12px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.header-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-nav {
    display: flex;
    gap: 3rem;
    flex: 1;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--clr-text-main);
    text-transform: uppercase;
    position: relative;
    opacity: 0.7;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--clr-gold);
    transition: var(--transition);
}

.nav-link:hover {
    opacity: 1;
    color: var(--clr-gold);
}

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

/* Dropdown Menu Styles */
.nav-item.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--clr-bg-light);
    min-width: 180px;
    padding: 1rem 0;
    list-style: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    border-top: 2px solid var(--clr-brand-mint);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--clr-text-main);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--clr-gold);
    background-color: rgba(149, 207, 191, 0.05); /* Very subtle brand tint */
}

.brand-logo {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition);
    /* SVG Matrix filter forcefully applies #95cfbf to non-transparent pixels */
    filter: url(#brand-green-filter);
}

.main-header.scrolled .header-logo-img {
    height: 75px;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex: 1;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--clr-text-main);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.icon-btn:hover {
    color: var(--clr-gold);
    opacity: 1;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--clr-gold);
    color: var(--clr-bg-light);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Cinematic Hero Section & Raindrops */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--clr-bg-dark);
}

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

/* Cinematic Hero Background (4-part Crossfade) */
.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Force browser to optimize for contrast and crisp edges during upscale */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    opacity: 0; /* Hidden by default */
    /* 
      Total sequence time: 16s (4s per image)
    */
    animation: fadeSequence 16s infinite;
}

/* Layer Specifics */
.bg-rainforest {
    filter: url(#crisp-sharpen) contrast(1.1) saturate(1.15);
    z-index: 1;
    animation-delay: 0s;
}

.bg-cocora {
    filter: url(#crisp-sharpen) contrast(1.1) saturate(1.1);
    z-index: 2;
    animation-delay: 4s;
}

.bg-chiva {
    object-position: center bottom; /* Keep the bus in view at the bottom of the image */
    filter: url(#crisp-sharpen) contrast(1.05) saturate(1.15);
    z-index: 3;
    animation-delay: 8s;
}

.bg-town {
    filter: url(#crisp-sharpen) contrast(1.1) saturate(1.1);
    z-index: 4;
    animation-delay: 12s;
}

/* 4 Image Sequence Keyframes (25% per phase, but 5% overlap fade) */
@keyframes fadeSequence {
    0% { opacity: 0; transform: scale(1.05); }
    5%, 20% { opacity: 1; transform: scale(1.02); }
    25%, 100% { opacity: 0; transform: scale(1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Moody vignette */
    background: radial-gradient(circle at center, rgba(0,77,49,0.2) 0%, rgba(15,18,15,0.85) 100%);
    z-index: 5;
}

/* Raindrops Canvas Layer - Toggles visibility in sync with the Rainforest */
#rain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6; /* On top of the bird to look like we are inside looking out */
    pointer-events: none;
    animation: rainFadeSync 16s infinite;
}

@keyframes rainFadeSync {
    0%, 20% { opacity: 0.65; } /* Visible during rainforest phase */
    25%, 100% { opacity: 0; }  /* Hidden for Cocora, Chiva, Town */
}

/* Flying Hummingbird Animation (Video-like sequence) */
.flying-hummingbird-img {
    position: absolute;
    top: 35%;
    left: -20%; /* Start way off screen */
    width: 160px;
    height: auto;
    z-index: 5; /* In front of rain glass */
    animation: luxuryHummingbirdFlight 22s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5)); /* Add a nice realistic shadow instead of blending */
}

@keyframes luxuryHummingbirdFlight {
    0% {
        transform: translate(0, 0) scale(0.5) rotate(15deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(25vw, -30px) scale(0.6) rotate(0deg);
    }
    30% {
        transform: translate(45vw, 50px) scale(0.9) rotate(-15deg); /* swoops near camera */
    }
    50% {
        transform: translate(65vw, -50px) scale(0.7) rotate(10deg);
    }
    70% {
        transform: translate(85vw, 20px) scale(0.5) rotate(-5deg); /* receding into distance */
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translate(120vw, -20px) scale(0.3) rotate(20deg);
        opacity: 0;
    }
}

.hero-content {
    color: var(--clr-alabaster);
    max-width: 900px;
    padding: 0 2rem;
    z-index: 10; /* Above everything */
    position: relative;
}

.hero-headline {
    font-size: clamp(3.2rem, 5.5vw, 5.5rem);
    color: var(--clr-bg-light); /* Default back to stark white for luxury contrast */
    margin-bottom: 2rem;
    line-height: 1.05;
    font-style: italic;
    font-weight: 300; /* Light, elegant weight */
    text-shadow: 0 4px 40px rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accent-green { 
    color: var(--clr-brand-mint); 
}

.hero-brand-name {
    color: var(--clr-brand-mint); /* Brand's specific mint green */
    color: var(--clr-brand-mint);
    font-style: italic;
}

.hero-subtext {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--clr-gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

/* Trust Signals Bar (Luxury Apothecary Style) */
.trust-bar {
    background-color: var(--clr-bg-light); /* Clean white */
    padding: 3.5rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10; /* Above the canvas if it bleeds */
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    color: var(--clr-text-muted);
}

.trust-item i {
    font-size: 2.2rem;
    color: var(--clr-emerald-light);
}

.trust-item span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Dual Column Sections (Essence) */
.essence-section {
    padding: var(--space-xxl) 0;
    background-color: var(--clr-bg-light);
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Separator */
}

.dual-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.image-stack {
    position: relative;
    padding-bottom: 2rem;
}

.img-front {
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.2) brightness(0.85); /* Vintage moody luxury feel */
}

.book-mockup {
    width: 80% !important; /* Smaller as requested */
    margin: 0 auto;
    aspect-ratio: 2/3; /* Book proportions */
    object-fit: contain;
    filter: none; /* No sepia for book covers */
}

/* Using Colombian Blue flag accent subtly behind images */
.decorative-blob {
    position: absolute;
    bottom: -1.5rem;
    right: -2.5rem;
    width: 90%;
    height: 90%;
    border: 1px solid var(--clr-accent-blue);
    opacity: 0.5;
    z-index: 1;
}

/* Using Red flag accent for a secondary offset frame */
.decorative-blob-2 {
    position: absolute;
    top: -1.5rem;
    left: -2.5rem;
    width: 90%;
    height: 90%;
    border: 1px solid var(--clr-accent-red);
    opacity: 0.3;
    z-index: 0;
}

.section-kicker {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: var(--clr-text-main);
    line-height: 1.1;
}

.essence-text-col p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    line-height: 1.9;
}

/* Best Sellers / Products */
.bestsellers-section {
    padding: var(--space-xxl) 0;
    background-color: #131614; /* very dark green-charcoal */
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
}

.product-card {
    text-align: center;
}

.product-image-container {
    position: relative;
    aspect-ratio: 3/4;
    background: radial-gradient(circle at center, #1e2420 0%, #111111 100%);
    overflow: hidden;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(200, 169, 81, 0.1);
}

.product-img {
    width: 55%; /* Smaller for apothecary bottle feel */
    height: auto;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

.product-card:hover .product-img {
    transform: translateY(-15px) scale(1.05);
}

.badge {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    color: var(--clr-accent-yellow); /* Yellow flag color */
    border: 1px solid var(--clr-accent-yellow);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.4rem 1.2rem;
    z-index: 2;
}

.quick-add-btn {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    background-color: var(--clr-emerald);
    color: var(--clr-alabaster);
    border: none;
    padding: 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    border-top: 1px solid var(--clr-gold);
}

.product-image-container:hover .quick-add-btn {
    bottom: 0;
}

.quick-add-btn:hover {
    background-color: var(--clr-gold);
    color: var(--clr-bg-dark);
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    color: var(--clr-alabaster);
}

.product-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 1.2rem;
}

.product-price {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--clr-gold);
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: var(--space-xxl) 0;
    text-align: center;
    background-color: var(--clr-bg-light);
    color: var(--clr-text-main);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Add a rich damask/botanical pattern overlay to the newsletter */
.newsletter-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--clr-bg-light);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-content h3 {
    color: var(--clr-brand-mint);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255,255,255,1), 0 0 40px rgba(149, 207, 191, 0.2); /* Halo effect for legibility */
}

.newsletter-content p {
    font-family: var(--font-body);
    margin-bottom: 3.5rem;
    font-size: 1.2rem;
    color: var(--clr-text-main); /* Darker for accessibility on light bg */
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.4); /* Glass effect subtle */
    backdrop-filter: blur(2px);
    padding: 0.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    width: 100%;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--clr-brand-mint);
    color: var(--clr-text-main);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-align: center;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-bottom-color: var(--clr-gold);
}

.newsletter-form input::placeholder {
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
}

.newsletter-form button {
    width: 100%;
    background-color: var(--clr-brand-mint);
    border-color: var(--clr-brand-mint);
    color: var(--clr-bg-light);
}

.newsletter-form button:hover {
    background-color: var(--clr-gold);
    border-color: var(--clr-gold);
}

.newsletter-form button:hover {
    background-color: var(--clr-alabaster);
    color: var(--clr-emerald);
}

/* Footer */
.site-footer {
    background-color: var(--clr-bg-light);
    padding: 8rem 0 3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-logo-img {
    height: 130px;
    width: auto;
    margin-bottom: 2.5rem;
    /* SVG Matrix filter forcefully applies #95cfbf */
    filter: url(#brand-green-filter);
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
    max-width: 320px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    font-size: 1.6rem;
    color: var(--clr-gold);
}

.social-links a:hover {
    color: var(--clr-text-main);
}

.footer-links h4 {
    color: var(--clr-gold);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 2.5rem;
}

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

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-family: var(--font-body);
    font-size: 1.15rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--clr-text-main);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 3rem;
    color: var(--clr-text-muted);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Discovery Cards Section */
.discovery-section {
    padding: var(--space-xl) 0;
    background-color: var(--clr-alabaster);
    position: relative;
    z-index: 10;
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}


.discovery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(149, 207, 191, 0.2);
    border-color: var(--clr-brand-mint);
}

.card-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: rgba(149, 207, 191, 0.1);
    border: 1px solid rgba(149, 207, 191, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--clr-brand-mint);
    font-size: 1.8rem;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    /* Removed overflow: hidden to allow bloom to expand */
}

/* Card Edge Blooming Animation */
.discovery-card {
    position: relative;
    background-color: var(--clr-bg-light);
    padding: 3.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    overflow: visible; /* Allow flowers to bloom outside */
}

.discovery-card {
    background-color: var(--clr-bg-light);
    padding: 3.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.discovery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(149, 207, 191, 0.2);
    border-color: var(--clr-brand-mint);
}

.card-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: rgba(149, 207, 191, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--clr-brand-mint);
    font-size: 1.8rem;
    transition: var(--transition);
}

.discovery-card:hover .card-icon-wrapper {
    background-color: var(--clr-brand-mint);
    color: white;
    transform: rotate(10deg);
}

.discovery-card h4 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--clr-text-main);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.discovery-card p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.card-btn {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.discovery-card:hover .card-btn {
    gap: 1rem;
    color: var(--clr-emerald);
}

/* Responsive */
@media (max-width: 1100px) {
    .discovery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .discovery-grid {
        grid-template-columns: 1fr;
    }
    .discovery-section {
        padding: var(--space-lg) 0;
    }
    .desktop-nav {
        display: none;
    }
    .dual-col {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .hero-headline {
        font-size: 3.5rem;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.whatsapp-float i {
    font-size: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* --- Premium Shopping Cart Drawer --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 12, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    z-index: 9001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.cart-drawer.open {
    transform: translateX(0);
}

@media (max-width: 500px) {
    .cart-drawer { width: 100%; }
}

.cart-header {
    padding: 3.5rem 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f9f9f9;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-brand-mint);
    font-style: italic;
    letter-spacing: -0.5px;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 2.2rem 0;
    border-bottom: 1px solid #f9f9f9;
}

.cart-item-img {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 5px;
    image-rendering: -webkit-optimize-contrast;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--clr-text-main);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.cart-item-details .price {
    font-family: var(--font-sans);
    color: var(--clr-brand-mint);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e8e8e8;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #999;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: var(--clr-brand-mint);
    color: var(--clr-brand-mint);
    transform: translateY(-2px);
}

.cart-item-actions span {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-main);
}

.cart-footer {
    padding: 3rem 2.5rem;
    background: #ffffff;
    border-top: 1px solid #f5f5f5;
}

.checkout-btn {
    width: 100%;
    background: var(--clr-brand-mint);
    color: white;
    padding: 1.6rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    box-shadow: 0 15px 35px rgba(149, 207, 191, 0.35);
}

.checkout-btn:hover {
    background: var(--clr-emerald-light);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 77, 49, 0.2);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #ddd;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--clr-brand-mint);
    transform: rotate(90deg);
}

/* --- Product Grid Corrections --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(149, 207, 191, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: rgba(149, 207, 191, 0.3);
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1;
    background: #f9fbfb;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: var(--transition);
}

.checkout-btn:disabled {
    background: #e0e6e4;
    color: #a0ada8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
