/* General Reset & Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Properties (CSS Variables) for Branding & Design System */
:root {
    /* Colors - Earthy Luxury Tones */
    --color-primary-dark: #3a473a; /* Deep Forest Green */
    --color-primary-light: #5d6e5d; /* Muted Sage Green */
    --color-accent: #b8860b; /* Goldenrod/Brass - for highlights */
    --color-text-dark: #333;
    --color-text-light: #fefefe;
    --color-bg-light: #f8f8f4; /* Off-white, natural paper feel */
    --color-bg-dark: #2c3a2c; /* Very Dark Green for contrast sections */
    --color-border: #ddd;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-coming-soon-overlay: rgba(0, 0, 0, 0.6);
    --color-coming-soon-dim: rgba(255, 255, 255, 0.5); /* For light mode coming soon */


    /* Typography - Modern & Elegant */
    --font-heading: 'Georgia', serif; /* Classic, elegant serif */
    --font-body: 'Helvetica Neue', Arial, sans-serif; /* Modern, readable sans-serif */
    --font-accent: 'Playfair Display', serif; /* Optional for special headings/taglines */

    /* Spacing */
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;

    /* Border Radius */
    --border-radius: 8px;
    --header-scroll-offset: 78px;
}

html {
    scroll-padding-top: var(--header-scroll-offset);
}

/* Base Body Styles */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container for Content Width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-small);
}

/* Section Padding */
.section-padding {
    padding: var(--spacing-large) var(--spacing-small);
    scroll-margin-top: var(--header-scroll-offset);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-small);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: var(--color-text-light); /* Still white for hero banner */
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: var(--spacing-medium);
}

h3 {
    font-size: 1.8rem;
}

/* Paragraphs */
p {
    margin-bottom: var(--spacing-small);
}

/* Links */
a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-text-light);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-secondary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    text-decoration: none;
}

.btn-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    border-color: #1DA851;
    color: white;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes extra space below images */
}

/* ==========================================
   FRAGRANCE SHOWCASE
========================================== */

.fragrance-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.fragrance-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 240px;
    cursor: pointer;
    background: #f5f5f5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.fragrance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.fragrance-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.fragrance-card:hover img {
    transform: scale(1.08);
}

.fragrance-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 20px;

   background: linear-gradient(
    to top,
    rgba(0,0,0,.60),
    rgba(0,0,0,.10)
);

    color: white;
}

.logo-wrapper{
    display:flex;
    align-items:center;
    gap:0;
    text-decoration:none;
}

.logo-img{
    width:min(168px, 44vw);
    max-height:46px;
    object-fit:contain;
}

.hero-brand-logo {
    display: block;
    width: min(520px, 86vw);
    height: auto;
    margin: 0 auto 28px;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.34));
}

.logo-text{
    display:none;
}

.logo-name{
    font-size:1.15rem;
    font-weight:700;
    letter-spacing:2px;
    color:#233328;
}

.logo-tagline{
    font-size:.72rem;
    color:#c89b3c;
    letter-spacing:1px;
}

.hero-title{

    font-size:clamp(2.5rem, 7vw, 5.5rem);

    font-weight:700;

    color:#ffffff;

    text-shadow:
        0 2px 8px rgba(0,0,0,.75),
        0 8px 24px rgba(0,0,0,.45);

    margin-bottom:20px;

    overflow-wrap: break-word;
}

.hero-description{

    color:#ffffff;

    font-size:1.3rem;

    line-height:1.8;

    max-width:750px;

    margin:25px auto;

    text-shadow:
        0 2px 8px rgba(0,0,0,.72);
}

.hero-badges{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:10px;

    margin-bottom:24px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn-primary{

    background:#c89b3c;

    border:none;

    color:white;
}

.btn-primary:hover{

    background:#d8ae5b;

    transform:translateY(-2px);
}
.nav-link{

    font-weight:600;

    color:#233328;

    transition:.3s;
}
.features-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(380px,1fr));

    gap:35px;

    max-width:1600px;

    margin:0 auto;
}

.feature-flip-card{
    height:420px;

    min-width:380px;

    perspective:1200px;
}
.feature-flip-card:hover .feature-flip-inner{
    transform:rotateY(180deg);
}

.feature-flip-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:
        transform .9s cubic-bezier(.22,.61,.36,1);
    transform-style:preserve-3d;
}

.feature-flip-card{

    height:350px;

    perspective:1200px;

    cursor:pointer;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}
.feature-flip-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.18);
}


.feature-front,
.feature-back{

    position:absolute;

    width:100%;
    height:100%;

    border-radius:18px;

    overflow:hidden;

    backface-visibility:hidden;
}
.nav-link:hover{

    color:#c89b3c;
}
.feature-front{

    background:#000;
}

.feature-image{

    width:100%;

    height:100%;

    object-fit:cover;
}
.feature-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:25px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.15),
            rgba(0,0,0,0)
        );
}

.feature-overlay::after{

    content:"↻";

    position:absolute;

    right:20px;

    bottom:20px;

    font-size:1.4rem;

    color:rgba(255,255,255,.8);
}

.feature-overlay h3{

    color:white;

    font-size:1.75rem;

    line-height:1.3;

    max-width:85%;

    margin:0;

    text-shadow:
        0 2px 8px rgba(0,0,0,.8);

    font-weight:700;

    letter-spacing:.5px;

    margin:0;

    text-shadow:
        0 2px 8px rgba(0,0,0,.8);
}
@media(max-width:768px){

    .hero-title{
        font-size:clamp(2.25rem, 12vw, 3.2rem);
    }

    .hero-tagline{
        font-size:1.4rem;
    }

    .hero-content{
        padding:30px;
    }

    .logo-text{
        display:none;
    }
}

.feature-back h3{

    color:#d6a23f;

    margin-bottom:20px;
}

.feature-back p{

    font-size:1.05rem;

    line-height:1.8;

    max-width:90%;
}
.feature-back span{

    color:#d6a23f;

    font-size:.85rem;
}


.feature-back{

    padding:40px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;
}
.btn-secondary{

    background:rgba(255,255,255,.12);

    color:white;

    border:2px solid white;

    backdrop-filter:blur(8px);
}
.hero-badges span{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.25);

    color:white;

    padding:10px 18px;

    border-radius:50px;

    font-size:.85rem;

    font-weight:600;
}

.hero-tagline{

    font-size:2rem;

    color:#d6a23f;

    font-weight:500;

    margin-bottom:25px;

    text-shadow:
        0 2px 8px rgba(0,0,0,.7);
}

.hero-content{

    background:rgba(0,0,0,.12);

    backdrop-filter:blur(6px);

    border:1px solid rgba(255,255,255,.22);

    box-shadow:0 24px 80px rgba(0,0,0,.16);

    padding:clamp(1.5rem, 4vw, 3rem);

    border-radius:24px;

    width:min(900px, calc(100% - 2rem));
    max-width:900px;

    margin:auto;
}

.fragrance-overlay h5 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.fragrance-overlay p {
    margin-top: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.custom-fragrance-card {
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #b8872b,
        #d7b36a
    );
}

.custom-fragrance-card .static {
    position: static;
    background: transparent;
    text-align: center;
    color: white;
}

.custom-fragrance-card h5 {
    font-size: 1.5rem;
}

.custom-fragrance-card p {
    margin-top: 10px;
}

/* Header */
.main-header {
    background-color: var(--color-bg-light); /* Changed to light mode */
    padding: 0.45rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--color-shadow) 0 2px 10px;
    border-bottom: 1px solid var(--color-border);
}

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

.logo .logo-img {
    height: auto;
    /* filter: brightness(0) invert(1); /* Removed for light mode */
}

/* Navigation */
.nav-list {
    list-style: none;
    display: flex;
}

.nav-item {
    margin-left: var(--spacing-medium);
}

.nav-link {
    color: var(--color-primary-dark); /* Changed for light mode */
    font-weight: bold;
    padding: 0.5rem 0;
    position: relative;
}

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

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle .hamburger {
    width: 100%;
    height: 3px;
    background: var(--color-primary-dark); /* Changed for light mode */
    border-radius: 10px;
    position: relative;
    transform-origin: 1px;
    transition: all 0.3s linear;
}

.nav-toggle .hamburger::before, .nav-toggle .hamburger::after {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--color-primary-dark); /* Changed for light mode */
    border-radius: 10px;
    position: absolute;
    left: 0;
    transition: all 0.3s linear;
}

.nav-toggle .hamburger::before {
    top: -8px;
}

.nav-toggle .hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)), url('../images/hero/hero-banner-1920x1080.jpg') no-repeat center center/cover; /* Changed for light mode */
    color: var(--color-text-dark); /* Changed for light mode */
    text-align: center;
    padding: clamp(2rem, 5vw, 4rem) var(--spacing-small);
    min-height: calc(100vh - 86px);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-margin-top: var(--header-scroll-offset);
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-small);
    color: var(--color-accent);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-medium);
    opacity: 0.9;
}

.hero-content .btn {
    margin: 0.5rem;
}

.hero-image-placeholder { display: none; /* Background image handles this */ }

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-medium);
    align-items: center;
    justify-content: center;
}

.about-content p {
    flex: 1 1 45%; /* Allows paragraphs to take about half width on larger screens */
    min-width: 300px;
}

.about-image-placeholder {
    flex: 1 1 45%;
    min-width: 300px;
    aspect-ratio: 3 / 2;
    height: auto;
    background-color: var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    font-style: italic;
    text-align: center;
    background-image: url('../images/sections/about-us-image-1200x800.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--color-bg-light);
}

/* .bg-dark is now used for contact section, but visually light */
.bg-dark { /* Renamed to bg-contact for clarity, now light */
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    border-top: 1px solid var(--color-border);
}

.bg-dark .section-title, .bg-dark h3 { /* Modified for light mode contact */
    color: var(--color-primary-dark);
}

.bg-dark a { /* Modified for light mode contact */
    color: var(--color-primary-dark);
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-medium);
    text-align: center;
}

.feature-item {
    background-color: white;
    padding: var(--spacing-medium);
    border-radius: var(--border-radius);
    box-shadow: var(--color-shadow) 0 4px 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    height: 60px;
    width: 60px;
    margin-bottom: var(--spacing-small);
    /* filter: invert(20%) sepia(10%) saturate(1000%) hue-rotate(80deg) brightness(80%); /* Removed for light mode */
}

/* Products Section */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-large);
    color: var(--color-primary-light);
}

.product-categories-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-medium);
    margin-bottom: var(--spacing-large);
}

.product-category-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--color-shadow) 0 4px 10px;
    overflow: hidden;
    cursor: pointer;
    width: 250px;
    text-align: center;
    padding-bottom: var(--spacing-small);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.product-category-card:not(.coming-soon):hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.product-category-card.active:not(.coming-soon) {
    border-color: var(--color-primary-dark);
    box-shadow: rgba(0, 0, 0, 0.2) 0 8px 15px;
}

.product-category-card.coming-soon {
    opacity: 0.8; /* Slightly less opaque for light mode */
    cursor: not-allowed;
    filter: grayscale(80%);
}

.product-category-card.coming-soon:hover .overlay {
    background-color: var(--color-coming-soon-dim); /* Adjusted for light mode */
}

.product-category-card .card-image-wrapper {
    width: 100%;
    height: 180px; /* Fixed height for consistent card size */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg-light);
}

.product-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-category-card h3 {
    margin-top: var(--spacing-small);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--color-primary-dark);
}

.product-category-card p {
    font-size: 0.9rem;
    color: var(--color-primary-light);
    margin-bottom: 0;
}

.product-category-card .coming-soon-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-accent);
    color: var(--color-text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    z-index: 5;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-category-card.coming-soon:hover .coming-soon-label {
    opacity: 1;
}

.product-category-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-coming-soon-overlay); /* Keep this dark for contrast */
    transition: background-color 0.3s ease;
    z-index: 2;
}
.product-category-card.coming-soon .overlay {
    background-color: var(--color-coming-soon-dim); /* Light dimming for light mode */
}


/* Product Details Container */
.product-details {
    background-color: white;
    padding: var(--spacing-large) var(--spacing-medium);
    border-radius: var(--border-radius);
    box-shadow: var(--color-shadow) 0 4px 20px;
}

.product-details h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: var(--spacing-medium);
    color: var(--color-primary-dark);
}

.product-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-large) auto;
    color: var(--color-primary-light);
}

.product-subsection {
    margin-bottom: var(--spacing-large);
    padding-bottom: var(--spacing-medium);
    border-bottom: 1px solid var(--color-border);
}

.product-subsection:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-subsection h4 {
    font-size: 1.6rem;
    color: var(--color-primary-dark);
    border-left: 4px solid var(--color-accent);
    padding-left: 1rem;
    margin-bottom: var(--spacing-small);
}

.product-gallery, .packaging-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-medium);
    margin-top: var(--spacing-medium);
    margin-bottom: var(--spacing-medium);
}

.product-gallery img, .packaging-item img {
    width: 100%;
    height: 250px; /* Consistent height for gallery images */
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--color-shadow) 0 2px 5px;
}

.fragrance-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-small);
    margin-top: var(--spacing-medium);
}

.fragrance-list li {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fragrance-list li img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

.packaging-item {
    text-align: center;
}

.packaging-item h5 {
    font-size: 1.1rem;
    margin-top: 0.8rem;
    color: var(--color-primary-dark);
}

.ingredient-image-placeholder, .oem-image-placeholder, .shipping-image-placeholder, .sustainability-product-image-placeholder {
    height: 300px; /* Placeholder height */
    background-color: var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-style: italic;
    text-align: center;
    margin-top: var(--spacing-medium);
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
}
.ingredient-image-placeholder { background-image: url('../images/sections/organic-ingredients-600x400.jpg'); }


.product-inquiry-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-small);
    flex-wrap: wrap;
    text-align: center;
    margin-top: var(--spacing-large);
    padding-top: var(--spacing-medium);
    border-top: 1px solid var(--color-border);
}

.product-inquiry-cta .btn {
    min-width: 220px;
}

/* Sustainability Section */
.sustainability-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-medium);
    align-items: center;
}

.sustainability-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.sustainability-image-placeholder {
    flex: 1 1 40%;
    min-width: 300px;
    height: 400px;
    background-color: var(--color-border);
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
}

/* Export Capabilities Section */
.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-medium);
    text-align: center;
    margin-bottom: var(--spacing-large);
}

.export-item {
    background-color: white;
    padding: var(--spacing-medium);
    border-radius: var(--border-radius);
    box-shadow: var(--color-shadow) 0 4px 10px;
    transition: transform 0.3s ease;
}

.export-item:hover {
    transform: translateY(-5px);
}

.export-icon {
    height: 60px;
    width: 60px;
    margin-bottom: var(--spacing-small);
    /* filter: invert(20%) sepia(10%) saturate(1000%) hue-rotate(80deg) brightness(80%); /* Removed for light mode */
}

.export-cta-wrapper {
    text-align: center;
    margin-top: var(--spacing-medium);
    margin-bottom: var(--spacing-large);
}

.export-cta-wrapper .btn {
    margin: 0.5rem;
}

.export-map-placeholder {
    height: 400px;
    background-color: var(--color-border);
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
}

/* Customization Process Section */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-large);
    text-align: center;
}

.step-item {
    flex: 1 1 200px;
    max-width: 250px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-text-light);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: var(--spacing-small);
    box-shadow: var(--color-shadow) 0 4px 8px;
}

/* Upcoming Products Section */
.upcoming-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-medium);
}

.upcoming-product-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--color-shadow) 0 4px 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: var(--spacing-small);
    transition: transform 0.3s ease;
}

.upcoming-product-card:hover {
    transform: translateY(-5px);
}

.upcoming-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: var(--spacing-small);
}

.upcoming-product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.upcoming-product-card p {
    font-size: 0.95rem;
    color: var(--color-primary-light);
}

.upcoming-product-card .status {
    font-weight: bold;
    color: var(--color-accent);
    display: block;
    margin-top: 0.5rem;
}

/* Contact Section (Form) */
.contact-section .container {
    max-width: 800px;
}

#export-inquiry-form {
    background-color: white; /* Changed to light for contact form */
    padding: var(--spacing-large);
    border-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.3) 0 8px 25px;
}

.form-unavailable-notice {
    background: #fff7e3;
    border: 1px solid rgba(184, 134, 11, 0.35);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--border-radius);
    color: var(--color-primary-dark);
    font-weight: bold;
    margin-bottom: var(--spacing-medium);
    padding: 1rem;
    text-align: center;
}

#export-inquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--color-primary-dark); /* Changed for light form */
}

#export-inquiry-form input[type="text"],
#export-inquiry-form input[type="email"],
#export-inquiry-form input[type="tel"],
#export-inquiry-form select,
#export-inquiry-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: var(--spacing-small);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: var(--color-bg-light); /* Changed to light */
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
}

#export-inquiry-form input::placeholder, #export-inquiry-form textarea::placeholder, #export-inquiry-form select:invalid {
    color: rgba(0, 0, 0, 0.6); /* Changed for light mode */
}

#export-inquiry-form input:focus, #export-inquiry-form select:focus, #export-inquiry-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.4);
}

#export-inquiry-form input:disabled,
#export-inquiry-form textarea:disabled,
#export-inquiry-form select:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

#export-inquiry-form .form-group {
    margin-bottom: var(--spacing-medium);
}

#export-inquiry-form .error-message {
    color: #ff6b6b; /* Red for errors */
    font-size: 0.9rem;
    margin-top: -0.5rem;
    margin-bottom: var(--spacing-small);
    display: none;
}

#export-inquiry-form input.invalid, #export-inquiry-form select.invalid, #export-inquiry-form textarea.invalid {
    border-color: #ff6b6b;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    visibility: hidden;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.submit-btn:disabled {
    background: #9a9a9a;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    text-align: center;
    margin-top: var(--spacing-small);
    font-weight: bold;
}

.form-whatsapp-btn {
    margin-top: var(--spacing-medium);
    width: 100%;
}

.form-status.success {
    color: #4CAF50; /* Green */
}

.form-status.error {
    color: #ff6b6b; /* Red */
}

.contact-email-fallback {
    text-align: center;
    margin-top: var(--spacing-medium);
    color: var(--color-text-dark); /* Changed for light mode */
}

.contact-email-fallback a {
    color: var(--color-primary-dark);
}

/* Footer */
.main-footer {
    background-color: var(--color-bg-light); /* Changed to light mode */
    color: var(--color-text-dark);
    padding: var(--spacing-large) 0 var(--spacing-small) 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--color-border);
}

.main-footer .container {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) minmax(160px, .8fr) minmax(240px, 1fr) minmax(180px, .8fr);
    align-items: start;
    gap: var(--spacing-medium);
}

.footer-brand, .footer-links, .footer-contact, .whatsapp-cta {
    min-width: 0;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-brand .footer-logo-img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.footer-logo-text {
    display: none;
}

.footer-logo-name {
    color: #233328;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
}

.footer-logo-tagline {
    color: #c89b3c;
    font-size: .72rem;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--color-primary-dark); /* Changed for light mode */
    max-width: 320px;
}

.main-footer h4 {
    color: var(--color-primary-dark); /* Changed for light mode */
    margin-bottom: var(--spacing-small);
    font-size: 1.2rem;
}

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

.footer-links ul li a {
    color: var(--color-text-dark); /* Changed for light mode */
    padding: 0.3rem 0;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--color-primary-dark);
}

.social-media-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 28px;
    height: 28px;
    /* filter: brightness(0) invert(1); /* Removed for light mode */
    transition: filter 0.3s ease;
}

.social-media-links a:hover .social-icon {
    filter: invert(20%) sepia(10%) saturate(1000%) hue-rotate(80deg) brightness(80%); /* Tint to a green hue for light mode */
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
}

.whatsapp-cta .btn-whatsapp {
    margin-top: var(--spacing-small);
    padding: 0.8rem 1.5rem;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-medium);
    margin-top: var(--spacing-medium);
    border-top: 1px solid var(--color-border);
    color: var(--color-primary-dark); /* Changed for light mode */
}

/* Placeholder Image Styling (for images that are not background-images) */
.hero-image-placeholder, .about-image-placeholder, .ingredient-image-placeholder, .oem-image-placeholder, .shipping-image-placeholder, .sustainability-product-image-placeholder, .sustainability-image-placeholder, .export-map-placeholder {
    background-color: #e0e0e0; /* A light grey for visible placeholders */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
    font-style: italic;
    font-size: 0.9em;
}

/* Lazy Loading Image Styling */
.lazy-load {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .product-category-card {
        width: 220px;
    }
    .fragrance-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .export-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .process-steps {
        gap: var(--spacing-medium);
    }
    .main-footer .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: relative;
    }
    .nav-toggle {
        display: flex; /* Show on mobile */
    }
    .nav-list {
        display: none; /* Hide by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--color-bg-light); /* Changed for light mode */
        width: 100%;
        padding: var(--spacing-small) 0;
        border-top: 1px solid var(--color-border);
        box-shadow: var(--color-shadow) 0 8px 15px;
        animation: slideDown 0.3s ease-out forwards;
    }
    .nav-list.active {
        display: flex;
    }
    .nav-item {
        margin: 0;
        text-align: center;
    }
    .nav-link {
        display: block;
        padding: 0.8rem var(--spacing-small);
        border-bottom: 1px solid var(--color-border);
    }
    .nav-link::after {
        display: none;
    }

    .hero-section {
        min-height: calc(100vh - 78px);
        padding: var(--spacing-medium) var(--spacing-small);
    }
    h1 {
        font-size: 2.5rem;
    }
    .hero-tagline {
        font-size: 1.8rem;
    }
    .hero-description {
        font-size: 1rem;
    }

    .about-content p, .about-image-placeholder,
    .sustainability-text, .sustainability-image-placeholder {
        flex: 1 1 100%; /* Stack elements on small screens */
    }
    .about-image-placeholder, .sustainability-image-placeholder {
        height: auto;
    }

    .features-grid, .product-categories-selector, .product-gallery, .packaging-options-grid, .export-grid, .upcoming-products-grid, .process-steps {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .product-category-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .product-details h3 {
        font-size: 1.8rem;
    }
    .product-subsection h4 {
        font-size: 1.4rem;
    }

    .product-inquiry-cta .btn {
        width: 100%;
        margin-bottom: var(--spacing-small);
    }

    .main-footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-links ul, .social-media-links {
        justify-content: center;
    }
    .whatsapp-cta {
        align-items: center;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hamburger icon animation */
.nav-toggle.open .hamburger {
    transform: rotate(45deg);
}

.nav-toggle.open .hamburger::before {
    transform: rotate(90deg);
    top: 0;
}

.nav-toggle.open .hamburger::after {
    transform: rotate(90deg);
    top: 0;
    opacity: 0;
}
