/*
Theme Name: Essence Theme
Theme URI: http://example.com/essence-theme
Author: GitHub Copilot
Author URI: http://github.com
Description: A minimalist, nature-inspired theme based on serene aromatherapy designs.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: essence-theme
*/

:root {
    /* Area Scent — Peach/Cream/Teal palette */
    --color-primary: #06201D;   /* Dark Teal */
    --color-secondary: #F9C5B4; /* Peach (main bg) */
    --color-accent: #F3A78F;    /* Darker Peach */
    --color-cream: #FEFEE3;     /* Cream (buttons / text) */
    --color-brown: #4F1D0E;     /* Dark Brown */
    --color-text: #FEFEE3;      /* Light text */
    --color-bg: #101F1D;        /* Dark background */
    --color-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --container-width: 980px;
    --spacing-section: 80px;
}

/* Reset & Base */
* { box-sizing: border-box; }
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--color-cream);
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s ease; 
}

img { max-width: 100%; height: auto; }

/* Utility */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    background-color: transparent;
}
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--color-primary);
    color:white;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s;
}
.btn:hover {
    background-color:white;
    color: var(--color-white);
}

/* Header */
.site-header {
    background-color: #0d2119; /* Dark Green */
    color: #FEFEE3;
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(254,254,227,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 60px;
    max-width: 100%;
    padding: 0 40px;
}

/* 1. Navigation (Left) */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    order: 1;
}
.main-navigation ul {
    display: flex; 
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    align-items: center;
}
.main-navigation a {
    color: #FEFEE3;
    font-size: 10px;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.main-navigation a:hover { opacity: 0.6; }

/* 2. Branding (Center) */
.site-branding {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    order: 2;
}
.site-branding img, 
.custom-logo-link img {
    max-height: 40px;
    width: auto;
    display: block;
}
.site-title {
    font-family: var(--font-body);
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* 3. Icons (Right) */
.header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    order: 3;
    flex: 1;
}
.header-icons a { 
    color: #FEFEE3; 
    text-decoration: none; 
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.login-link { 
    font-size: 11px;
    text-transform: uppercase; 
    letter-spacing: 1px;
}
.cart-link { font-size: 15px; }

/* Hamburger (Mobile Colors) */
.hamburger-line { background: #FEFEE3; }

/* Footer */
.site-footer {
    background-color: #06201D;
    color: #FEFEE3;
    padding: 60px 0 20px;
    text-align: center;
    font-family: var(--font-body);
}
.footer-widgets {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}
.footer-widget h4 { 
    color: #FEFEE3; 
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-widget ul li {
    margin-bottom: 10px;
}
.footer-widget a, .footer-widget p {
    color: rgba(254,254,227,0.7);
    font-size: 13px;
    text-decoration: none;
    line-height: 1.6;
}
.footer-widget a:hover {
    color: #FEFEE3;
}
.footer-bottom { border-top: 1px solid rgba(254,254,227,0.12); padding-top: 20px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(254,254,227,0.5); }

/* Footer Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.social-icons a {
    color: rgba(254,254,227,0.6) !important;
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}
.social-icons a:hover {
    color: #FEFEE3 !important;
    transform: translateY(-2px);
}

/* Footer Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}
.footer-newsletter input {
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid rgba(254,254,227,0.25);
    background: transparent;
    color: #FEFEE3;
    font-family: var(--font-body);
    font-size: 13px;
}
.footer-newsletter input::placeholder {
    color: rgba(254,254,227,0.4);
}
.footer-newsletter input:focus {
    outline: none;
    border-bottom-color: #F9C5B4;
}
.footer-newsletter button {
    align-self: flex-start;
    padding: 10px 24px;
    background: #FEFEE3;
    color: #06201D;
    border: none;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.footer-newsletter button:hover {
    background: #F9C5B4;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 480px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =========================================
   Front Page — Area Scent (Peach/Cream)
   ========================================= */

/* ---- Scroll Animation Base ---- */
[data-anim] {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
[data-anim="fade-up"] {
    transform: translateY(40px);
}
[data-anim="slide-left"] {
    transform: translateX(-50px);
}
[data-anim="slide-right"] {
    transform: translateX(50px);
}
[data-anim].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---- Section Title Common ---- */
.hp-section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #06201D;
}
.hp-section-subtitle {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(6,32,29,0.65);
}

/* ========== HERO ========== */
.hp-hero {
    background-color: #0d2119;
    color: #FEFEE3;
    text-align: center;
    padding: 100px 20px 60px;
}
.hp-hero-content {
    max-width: 780px;
    margin: 0 auto;
}
.hp-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: #FEFEE3;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1;
}
.hp-hero-content p {
    font-size: 16px;
    color: rgba(254,254,227,0.7);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== HERO GALLERY — single row, full width ========== */
.hp-hero-gallery {
    background-color: #0d2119;
    padding: 0 0 80px;
}
.hp-gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  
    width: 100%;
}
.hp-gallery-item {
    overflow: hidden;
    border-radius: 6px;
}
.hp-gallery-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hp-gallery-item:hover img {
    transform: scale(1.05);
}

/* ========== BUTTONS ========== */
.hp-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #C4B78C;
    color: #0d2119;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 2px solid #C4B78C;
    cursor: pointer;
}
.hp-btn:hover {
    background: transparent;
    color: #FEFEE3;
    border-color: #FEFEE3;
}

/* Peach sections override */
.hp-why .hp-btn,
.hp-contact .hp-btn {
    background: #0d2119;
    color: #FEFEE3;
    border-color: #0d2119;
}
.hp-why .hp-btn:hover,
.hp-contact .hp-btn:hover {
    background: transparent;
    color: #0d2119;
    border-color: #0d2119;
}

.hp-btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 1.5px solid #06201D;
    color: #06201D;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
}
.hp-btn-outline:hover {
    background: #06201D;
    color: #FEFEE3;
}

/* ========== ALL PRODUCTS ========== */
.hp-products {
    background-color: #0d2119;
    padding: 80px 0;
}
.hp-products .hp-section-title { color: #FEFEE3; }

.hp-products-carousel {
    padding: 40px 0;
    position: relative;
}
.hp-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #0d2119;
    color: #FEFEE3;
    border-radius: 50%;
    border: 1px solid rgba(254,254,227,0.2);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    padding-bottom: 2px; 
    opacity: 0;
    transition: opacity 0.3s;
}
.hp-products-carousel:hover .hp-carousel-nav {
    opacity: 1;
}
.nav-left { left: 20px; }
.nav-right { right: 20px; }

@media (max-width: 768px) {
    .hp-carousel-nav {
        opacity: 1;
        width: 32px;
        height: 32px;
        background: rgba(13, 33, 25, 0.9);
        left: 10px;
    }
    .nav-right { left: auto; right: 10px; }
}

.hp-products-carousel .woocommerce ul.products {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px !important;
    padding: 0 16px !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
}
.hp-products-carousel .woocommerce ul.products::-webkit-scrollbar { display: none; }
.hp-products-carousel .woocommerce ul.products::before,
.hp-products-carousel .woocommerce ul.products::after { display: none !important; }

.hp-products-carousel .woocommerce ul.products li.product {
    flex: 0 0 calc(33.333% - 12px) !important;
    width: calc(33.333% - 12px) !important;
    min-width: 320px;
    scroll-snap-align: start;
    margin: 0 !important;
    float: none !important;
    text-align: left;
    transition: transform 0.4s ease;
}
.hp-products-carousel .woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
}

/* Product Images */
.hp-products-carousel .woocommerce ul.products li.product a img {
    width: 100% !important;
    aspect-ratio: 3/4 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: 50% 50%;
    background: #f5f5f0;
    border-radius: 6px !important;
    padding: 0 !important;
    margin-bottom: 14px !important;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hp-products-carousel .woocommerce ul.products li.product:hover a img {
    transform: scale(1.03);
}

/* Product Text */
.hp-products-carousel .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #FEFEE3 !important;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    padding: 0;
}
.hp-products-carousel .woocommerce ul.products li.product .price {
    color: rgba(254,254,227,0.6) !important;
    font-size: 13px;
    display: block;
}
/* Re-enabled Add to Cart Button - Always Visible */
.hp-products-carousel .woocommerce ul.products li.product .button,
.hp-products-carousel .woocommerce ul.products li.product a.button {
    display: inline-block !important;
    margin-top: 12px;
    background: #FEFEE3 !important;
    background-color: #FEFEE3 !important;
    color: #0d2119 !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0 !important; 
    border: none !important;
    text-align: center;
    width: 100%;
    transition: background 0.3s;
    font-family: var(--font-body);
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}
.hp-products-carousel .woocommerce ul.products li.product .button:hover,
.hp-products-carousel .woocommerce ul.products li.product a.button:hover {
    background: #fff !important;
    background-color: #fff !important;
    color: #0d2119 !important;
}

/* Quick View Overlay — on image only */
.hp-products-carousel .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}
.hp-products-carousel .woocommerce ul.products li.product a.woocommerce-LoopProduct-link img {
    display: block;
}

.hp-products-carousel .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::after {
    content: 'Quick View';
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    height: 44px;
    background: rgba(6, 32, 29, 0.75);
    color: #FEFEE3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: none;
    z-index: 2;
}
.hp-products-carousel .woocommerce ul.products li.product:hover a.woocommerce-LoopProduct-link::after {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.hp-view-all {
    text-align: center;
    margin-top: 40px;
}
.hp-products .hp-btn-outline {
    border-color: rgba(254,254,227,0.5);
    color: #FEFEE3;
}
.hp-products .hp-btn-outline:hover {
    background: #FEFEE3;
    color: #0d2119;
    border-color: #FEFEE3;
}

/* ========== WELCOME STRIP ========== */
.hp-welcome {
    background: #0d2119;
    padding: 0;
    overflow: visible;
    min-width: 980px;
}
.hp-welcome-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 60px 0;
}
.hp-welcome-col img {
    display: block;
    object-fit: cover;
    border-radius: 0;
}
.hp-welcome-col--large img {
    width: 266px;
    height: 373px;
}
.hp-welcome-col--small img {
    width: 132px;
    height: 195px;
}

/* ========== WHY CHOOSE US — Scattered Layout ========== */
.hp-why {
    background-color: #0d2119;
    color: #FEFEE3;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-why-wrapper {
    width: 100%;
    max-width: 1400px; /* Wider to allow spread */
    margin: 0 auto;
    position: relative;
    height: 800px; /* Fixed height container to place items */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-why-content {
    text-align: center;
    max-width: 500px;
    z-index: 2;
    padding: 0 20px;
}

.hp-why-content h2 {
    font-size: 25px;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    color: #FEFEE3;
}

.hp-why-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #FEFEE3;
    opacity: 0.9;
}

/* Scattered Images - Absolute Positioning */
.hp-why-img {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    /* Transition for load animation */
}
.hp-why-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positions adjusted to prevent overlap with center text */
.img-tl {
    top: 40px;
    left: 40px;
    width: 220px;
    height: 300px;
}
.img-tr {
    top: 60px;
    right: 40px;
    width: 240px;
    height: 180px;
}
.img-bl {
    bottom: 40px;
    left: 300px;
    width: 300px;
    height: 220px;
    z-index: 1;
}
.img-br {
    bottom: 60px;
    right: 200px;
    width: 200px;
    height: 320px;
    z-index: 1;
}

/* Ensure images don't get too close on smaller desktop screens */
@media screen and (max-width: 1300px) {
    .hp-why-content {
        max-width: 400px;
    }
    .img-bl, .img-br {
        width: 220px;
        height: auto;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .hp-why-wrapper {
        flex-direction: column;
        height: auto;
        padding-bottom: 60px;
    }
    .hp-why-img {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 20px auto;
        width: 80% !important;
        height: auto !important;
        aspect-ratio: 3/4;
    }
    .hp-why-content {
        margin: 40px 0;
        order: -1; /* Put text first on mobile */
    }
}

@media screen and (max-width: 768px) {
    .hp-why {
        padding: 60px 0;
        min-height: auto;
    }
    .hp-why-wrapper {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 0 20px 40px;
        gap: 0;
    }
    .hp-why-img {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        box-shadow: none;
        border-radius: 8px;
        overflow: hidden;
    }
    .hp-why-img img {
        border-radius: 8px;
    }

    /* Image 1 (top-right): right-aligned, ~55% width */
    .img-tl {
        width: 55% !important;
        height: auto !important;
        aspect-ratio: 4/5;
        align-self: flex-end;
        margin-bottom: 30px !important;
    }

    /* Image 2 (top-left): left-aligned, ~40% width, smaller */
    .img-tr {
        width: 40% !important;
        height: auto !important;
        aspect-ratio: 3/4;
        align-self: flex-start;
        margin-bottom: 50px !important;
    }

    /* Center text */
    .hp-why-content {
        order: 0;
        margin: 0 0 30px 0;
        max-width: 100%;
        text-align: center;
        padding: 0;
    }
    .hp-why-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .hp-why-content p {
        font-size: 18px;
        line-height: 1.55;
    }

    /* Image 3 (bottom-left): right-aligned, ~55% width */
    .img-bl {
        width: 55% !important;
        height: auto !important;
        aspect-ratio: 4/5;
        align-self: flex-end;
        margin-bottom: 30px !important;
    }

    /* Image 4 (bottom-right): left-aligned, ~70% width, larger */
    .img-br {
        width: 70% !important;
        height: auto !important;
        aspect-ratio: 3/4;
        align-self: flex-start;
    }
}

/* Feature Cards */
.hp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}
.hp-why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 8px;
    border: 1px solid rgba(6,32,29,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: rgba(255,255,255,0.15);
}
.hp-why-card:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-8px);
    border-color: rgba(6,32,29,0.12);
}
.hp-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,32,29,0.08);
    border-radius: 50%;
    color: #06201D;
    transition: all 0.35s ease;
}
.hp-why-card:hover .hp-why-icon {
    background: rgba(6,32,29,0.15);
    transform: scale(1.08);
}
.hp-why-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #06201D;
    margin-bottom: 12px;
}
.hp-why-card p {
    font-size: 14px;
    color: rgba(6,32,29,0.6);
    line-height: 1.7;
}

/* ========== SPECIAL OFFERS — 2-Column Split ========== */
.hp-offers {
    width: 100%;
    overflow: hidden;
}

.hp-offers-container {
    display: flex;
    width: 100%;
    min-height: 500px;
}

/* Left side: Text Area */
.hp-offers-text {
    flex: 1;
    background-color: #FEFEE3; /* Cream background */
    padding: 80px 8%;
    display: flex;
    align-items: center;
    color: #0d2119;
}

.hp-offers-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.hp-offers-left-group {
    flex: 0 0 auto;
}

.hp-offers-content h2 {
    font-size: 38px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: #0d2119;
    margin: 0 0 8px 0;
}

.hp-offers-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #0d2119;
    opacity: 0.9;
}

.hp-offers-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #0d2119;
    max-width: 400px;
    margin: 0;
    flex: 0 0 auto;
    padding-left: 40px;
}

/* Right side: Image Area */
.hp-offers-image {
    flex: 0 0 35%; /* Fixed width for image column */
    position: relative;
    overflow: hidden;
}

.hp-offers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .hp-offers-container {
        flex-direction: column;
    }
    .hp-offers-image {
        height: 400px;
        flex: auto;
    }
    .hp-offers-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .hp-offers-text p {
        padding-left: 0;
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .hp-offers {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 0;
    }
    .hp-offers-container {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .hp-offers-text {
        padding: 50px 20px;
        width: 100vw;
        box-sizing: border-box;
    }
    .hp-offers-image {
        height: auto;
        width: 100vw;
        flex: none;
    }
    .hp-offers-image img {
        width: 100vw;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        border-radius: 0;
        display: block;
        margin: 0;
        padding: 0;
    }
}

/* ========== EXPLORE SELECTION (Sage Green BG) ========== */
.hp-explore {
    padding: 100px 0;
    background-color: #849466; /* Sage Green */
    overflow: hidden;
}

.hp-explore-wrapper {
    width: 100%;
   
    max-width: 1800px; /* Allow it to get very wide */
    margin: 0 auto;
}

.hp-explore .hp-section-title {
    color: #0d2119;
    font-size: 32px;
    margin-bottom: 80px;
    text-align: left;
    padding-left: 20px;
}

.hp-explore-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
    width: 100%;
    gap: 80px;
}
.hp-explore-row:last-child { margin-bottom: 0; }

.hp-explore-text {
    flex: 1;
    max-width: 600px;
    padding-left: 20px;
}

.hp-explore-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: #0d2119;
    margin-bottom: 24px;
}

.hp-explore-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #0d2119;
    opacity: 0.9;
    max-width: 500px;
}

.hp-explore-img {
    flex: 0 0 412px;
    width: 412px;
    height: 311px;
    overflow: hidden;
    /* Clean image, no borders/radius/bg */
}

.hp-explore-img img {
    width: 100%;
    height: 100%;
    
    display: block;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .hp-explore-row {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    .hp-explore-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    .hp-explore-text {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* ========== VIDEO BANNER — Fixed Background Effect ========== */
.hp-video-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Transformation creates a new stacking context */
    overflow: hidden; 
    clip-path: inset(0); /* Key for fixed child clipping */
}
.hp-video-bg {
    position: fixed; /* Fixed relative to viewport, but clipped by parent */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hp-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3); /* Lighter overlay to see video */
    z-index: 1;
}
.hp-video-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 50px 30px;
}
.hp-video-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #FEFEE3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.hp-video-content p {
    font-size: 16px;
    color: rgba(254,254,227,0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}
.hp-video-content .hp-btn {
    background: #FEFEE3;
    color: #06201D;
    border-color: #FEFEE3;
}
.hp-video-content .hp-btn:hover {
    background: transparent;
    color: #FEFEE3;
}

/* ========== GET IN TOUCH ========== */
.hp-contact {
    padding: 0;
    background: #0d2119;
    color: #fff;
}
.hp-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 700px;
}
.hp-contact-image {
    width: 50%;
    position: relative;
}
.hp-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hp-contact-content {
    width: 50%;
    padding: 100px 8%;
    background: #0d2119;
    display: flex;
    align-items: center;
}
.hp-contact-inner {
    width: 100%;
    max-width: 480px;
}
.hp-contact-title {
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}
.hp-contact-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 50px;
}
.hp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hp-form-field {
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 4px;
    transition: border-color 0.3s;
}
.hp-form-field:focus-within {
    border-color: #fff;
}
.hp-form-field label {
    display: block;
    font-size: 12px;
    color: #fff;
    margin-bottom: 4px;
}
.hp-contact-form input,
.hp-contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-body);
    padding: 8px 0;
}
.hp-contact-form input:focus,
.hp-contact-form textarea:focus {
    outline: none;
}
.hp-contact-form textarea {
    height: 40px;
    resize: vertical;
}
.hp-btn-submit {
    width: 100%;
    background: #FEFEE3;
    color: #06201D;
    border: none;
    padding: 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp-btn-submit:hover {
    background: #fff;
}

@media (max-width: 900px) {
    .hp-contact-wrapper {
        flex-direction: column;
    }
    .hp-contact-image,
    .hp-contact-content {
        width: 100%;
    }
    .hp-contact-image {
        height: 300px;
    }
    .hp-contact-content {
        padding: 60px 24px;
    }
}

/* ========== HOMEPAGE RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hp-hero-content h1 { font-size: 56px; }
    .hp-section-title { font-size: 34px; }
    .hp-why-grid { gap: 20px; }
    .hp-why-images { gap: 12px; }
    .hp-explore-row { gap: 30px; }
    .hp-offers { grid-template-columns: 1fr 1fr; }
    .hp-offers-dark { display: none; }
    .hp-video-content h2 { font-size: 38px; }
}
@media (max-width: 768px) {
    .hp-hero { padding: 80px 20px 20px; }
    .hp-hero-content h1 { font-size: 42px; letter-spacing: -1px; }
    .hp-hero-content p { font-size: 14px; margin-bottom: 24px; }
    
    .hp-hero-gallery { padding: 0 0 40px; }
    .hp-gallery-row {
        grid-template-columns: 1fr;
        gap: 16px;
       
    }
    .hp-gallery-item {
        border-radius: 8px;
    }
    .hp-gallery-item img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }
    /* Scroll scale effect on mobile */
    .hp-gallery-item {
        transform: scale(0.92);
        opacity: 0.7;
        transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                    opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    .hp-gallery-item.in-view {
        transform: scale(1);
        opacity: 1;
    }
    
    .hp-products-carousel .woocommerce ul.products {
        gap: 0 !important;
        padding: 0 !important;
        scroll-snap-type: x mandatory;
        scroll-padding: 0;
    }
    .hp-products-carousel .woocommerce ul.products li.product {
        flex: 0 0 100vw !important;
        width: 100vw !important;
        min-width: 0 !important;
        scroll-snap-align: start;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }
    .hp-products-carousel .woocommerce ul.products li.product a img {
        aspect-ratio: 3/4 !important;
    }
    
    .hp-products,
    .hp-why,
    .hp-explore,
    .hp-contact { padding: 60px 0; }
    
    .hp-section-title { font-size: 28px; }
    .hp-section-subtitle { font-size: 14px; margin-bottom: 36px; }
    
    .hp-why-images { grid-template-columns: repeat(2, 1fr); }
    .hp-why-grid { grid-template-columns: 1fr; gap: 16px; }
    .hp-why-card { padding: 28px 20px; }
    
    .hp-offers {
        grid-template-columns: 1fr;
    }
    .hp-offers-img { min-height: 260px; }
    .hp-offers-dark { display: none; }
    .hp-offers-center h2 { font-size: 28px; }
    .hp-offers-center p { font-size: 14px; }
    
    .hp-explore-row,
    .hp-explore-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }
    .hp-explore-row { margin-bottom: 40px; }
    
    .hp-video-banner { min-height: 340px; }
    .hp-video-bg { background-attachment: scroll; }
    .hp-video-content h2 { font-size: 28px; }
    .hp-video-content p { font-size: 14px; }
    
    .hp-contact-layout { grid-template-columns: 1fr; gap: 30px; }
    .hp-form-row { grid-template-columns: 1fr; }

    /* Mobile nav colors */
    .main-navigation.open {
        background: #0d2119;
    }

    /* Mobile animation adjustments */
    [data-anim="slide-left"],
    [data-anim="slide-right"] {
        transform: translateY(35px);
    }
}
@media (max-width: 480px) {
    .hp-hero-content h1 { font-size: 34px; }
    .hp-gallery-row { grid-template-columns: 1fr; }
    .hp-gallery-item img { height: 250px; }
    .hp-products-carousel .woocommerce ul.products li.product {
        flex: 0 0 100vw !important;
        width: 100vw !important;
    }
    .hp-products-carousel .woocommerce ul.products li.product a img {
        height: auto !important;
        aspect-ratio: 3/4 !important;
    }
    .hp-why-images { grid-template-columns: 1fr 1fr; }
    .hp-why-grid { gap: 12px; }
    .hp-offers-center { padding: 30px 16px; }
    .hp-offers-dark strong { font-size: 50px; }
}

/* WooCommerce Overrides (Simple) */
.woocommerce ul.products li.product { text-align: center; }
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 320px !important;
    object-fit: contain !important;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 18px;
    color:white;
}
.woocommerce ul.products li.product .price {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
}
.woocommerce a.button {
    background-color: transparent !important;
    color:white !important;
    border: 1px solid var(--color-primary) !important;
    border-radius: 0 !important;
    padding: 10px 20px !important;
    text-transform: uppercase;
    font-size: 12px !important; 
}
.woocommerce a.button:hover {
    background-color:white !important;
    color: #fff !important;
}

/* =========================================
   WooCommerce Shop Page Styles
   ========================================= */

/* Shop Container Layout */
.shop-container {
    padding-top: 50px;
}

.shop-container header.woocommerce-products-header {
    text-align: center;
    padding: 60px 0 40px;
}

.shop-container .page-title {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 1px;
    color: white;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* Sidebar Styles */
.shop-sidebar .widget {
    margin-bottom: 40px;
}

.shop-sidebar .widget-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    color:white;
}

.shop-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-sidebar ul li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-sidebar a {
    color: var(--color-text);
}

.shop-sidebar a:hover {
    color:white;
    padding-left: 5px;
}

/* Price Filter Widget styling (if using standard WC widget) */
.widget_price_filter .price_slider_amount {
    text-align: right;
    font-size: 12px;
}
.widget_price_filter .price_slider_amount .button {
    font-size: 10px !important;
    padding: 5px 15px !important;
    float: left;
}

/* Shop Main Content */
.shop-main-content ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
}
.shop-main-content ul.products::before,
.shop-main-content ul.products::after {
    display: none !important;
}

.shop-main-content ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none;
    transition: transform 0.3s ease;
}

.shop-main-content ul.products li.product:hover {
    transform: translateY(-5px);
}

.shop-main-content ul.products li.product img {
    height: 320px !important;
    width: 100% !important;
    object-fit: contain !important;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px !important;
}

.shop-main-content ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.shop-main-content ul.products li.product .price {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
}

/* Hide "Add to cart" button on catalog views for a cleaner look? 
   No, let's keep it minimal. */
.shop-main-content ul.products li.product .button {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 25px !important;
    font-size: 11px !important;
    letter-spacing: 2px;
    border: 1px solid #ddd !important;
    color: #888 !important;
}

.shop-main-content ul.products li.product .button:hover {
    border-color:white !important;
    background: var(--color-primary) !important;
    color: #fff !important;
}

/* Pagination */
.woocommerce-pagination {
    text-align: center;
    padding: 40px 0;
}
.woocommerce-pagination ul {
    display: inline-flex;
    border: none !important;
}
.woocommerce-pagination ul li {
    border: none !important;
    margin: 0 5px;
}
.woocommerce-pagination ul li span.current,
.woocommerce-pagination ul li a:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
    border-radius: 50%;
}
.woocommerce-pagination ul li a {
    color: var(--color-text) !important;
    font-weight: 600;
    padding: 10px 15px !important;
}

/* Responsive */
@media (max-width: 900px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .shop-sidebar {
        margin-bottom: 40px;
        order: -1; /* Sidebar on top or use JS to toggle */
    }
    .shop-main-content ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Sidebar Custom Design Elements */
.shop-sidebar .widget_categories ul li a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    padding: 5px 0;
    display: block;
    transition: color 0.3s;
    text-decoration: none;
}
.shop-sidebar .widget_categories ul li a:hover {
    color:white;
    padding-left: 5px;
}

/* Simulated Price Slider Visuals */
.widget_price_filter { margin-bottom: 30px; }
.visual-slider-track {
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    position: relative;
    margin: 20px 0 15px;
    border-radius: 2px;
}
.visual-slider-bar {
    position: absolute;
    left: 10%;
    right: 30%;
    height: 100%;
    background: var(--color-primary);
}
.visual-slider-handle {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1);
    cursor: pointer;
    transition: transform 0.2s;
}
.visual-slider-handle:hover { transform: translateY(-50%) scale(1.2); }
.visual-slider-handle.min-handle { left: 10%; }
.visual-slider-handle.max-handle { right: 30%; }
.filter-label {
    font-family: var(--font-heading);
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

/* =========================================
   Single Product Page — Area Scent Style
   ========================================= */

.product-page-container {
    padding-top: 80px;
    padding-bottom: 100px;
}

/* Wrapper */
.sp-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

/* Breadcrumb */
.sp-breadcrumb {
    font-size: 12px;
    color: #999;
    margin-bottom: 35px;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}
.sp-breadcrumb a { color: #888; transition: color 0.2s; }
.sp-breadcrumb a:hover { color:white; }
.sp-breadcrumb .sep { margin: 0 8px; color: #ccc; }
.sp-breadcrumb .current { color: var(--color-text); font-weight: 500; }

/* 2-Column Layout */
.sp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 70px;
    align-items: start;
}

/* ---- Gallery ---- */
.sp-gallery {
    display: flex;
    gap: 15px;
    position: sticky;
    top: 90px;
}

.sp-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
    flex-shrink: 0;
}
.sp-thumbs::-webkit-scrollbar { width: 4px; }
.sp-thumbs::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

.sp-thumb {
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    background: #ffffff;
    border-radius: 6px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.sp-thumb:hover { border-color: #bbb; }
.sp-thumb.active { border-color:white; }
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sp-main-image {
    position: relative;
    flex: 1;
    min-height: 0;
}
.sp-image-wrapper {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}
.sp-image-wrapper:hover img { transform: scale(1.03); }

.sp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.25s;
    color: #333;
    opacity: 0;
    z-index: 2;
}
.sp-main-image:hover .sp-arrow { opacity: 1; }
.sp-arrow:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.sp-arrow-left  { left: 12px; }
.sp-arrow-right { right: 12px; }

/* ---- Product Info ---- */
.sp-info { padding-top: 10px; }

.sp-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 12px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.sp-short-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0 0 18px;
}

.sp-price {
    font-size: 26px;
    font-weight: 600;
    color:white;
    margin-bottom: 5px;
}
.sp-price del { color: #bbb; font-size: 18px; margin-right: 8px; font-weight: 400; }
.sp-price ins { text-decoration: none; }

.sp-divider {
    border: none;
    border-top: 1px solid #e8e4dd;
    margin: 22px 0 25px;
}

/* Variation Form */
.sp-info .variations_form .variations { margin-bottom: 20px; }
.sp-info .variations_form .variations td,
.sp-info .variations_form .variations th { border: none; padding: 0; vertical-align: middle; }
.sp-info .variations_form .variations tr { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.sp-info .variations_form .variations .label label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text);
}
.sp-info .variations_form .variations .value select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #d5d0c8;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.sp-info .variations_form .variations .value select:focus { outline: none; border-color:white; }
.sp-info .variations_form .variations .reset_variations { font-size: 12px; color: #999; margin-top: 5px; display: inline-block; }

.sp-info .woocommerce-variation-price .price {
    font-size: 24px;
    font-weight: 600;
    color:white;
    margin-bottom: 15px;
    display: block;
}

/* Quantity */
.sp-quantity-row,
.sp-info .variations_form .quantity { margin-bottom: 18px; }
.sp-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text);
    margin-bottom: 10px;
}
.sp-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #d5d0c8;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.sp-qty-btn {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-qty-btn:hover { background: #f5f3ee; }
.sp-qty-input,
.sp-info .variations_form .quantity input.qty {
    width: 50px;
    height: 44px;
    border: none;
    border-left: 1px solid #e8e4dd;
    border-right: 1px solid #e8e4dd;
    text-align: center;
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 500;
    -moz-appearance: textfield;
    appearance: textfield;
    background: #fff;
    color: #333;
}
.sp-qty-input::-webkit-outer-spin-button,
.sp-qty-input::-webkit-inner-spin-button,
.sp-info .variations_form .quantity input.qty::-webkit-outer-spin-button,
.sp-info .variations_form .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
}

/* Buttons */
.sp-btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    border: none;
}
.hp-btn-cart{
    background-color: #d5d0c8;
     display: block !important;
}
.sp-btn-cart,
.sp-info .single_add_to_cart_button {
    background: #dcdcdc !important;
    color: #101F1D !important;
    border: 2px solid var(--color-primary) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    margin-bottom: 12px !important;
    max-width: 100% !important;
    transition: all 0.3s ease !important;
}
.sp-btn-cart:hover,
.sp-info .single_add_to_cart_button:hover {
    background: #f7f7f7 !important;
    border-color: #143728 !important;
}

.sp-btn-buy {
    background: #dcdcdc;
    color: #143728;
    border: 2px solid var(--color-primary);
    text-decoration: none;
}
 

.sp-info .woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Social Share */
.sp-share {
    display: flex;
    gap: 18px;
    padding: 25px 0;
    border-top: 1px solid #e8e4dd;
    border-bottom: 1px solid #e8e4dd;
    margin: 25px 0;
}
.sp-share a {
    color: #999;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f3ee;
}
.sp-share a:hover {
    color:white;
    background: #e8e4dd;
    transform: translateY(-2px);
}

/* Meta */
.sp-meta { font-size: 13px; color: #888; line-height: 1.8; }
.sp-meta p { margin: 3px 0; }
.sp-meta span { font-weight: 600; color: #666; }
.sp-meta a { color:white; text-decoration: underline; }

/* ---- Description Section ---- */
.sp-description-section { margin-bottom: 70px; }
.sp-desc-tabs {
    display: flex;
    border-bottom: 2px solid #e8e4dd;
    margin-bottom: 35px;
    gap: 0;
}
.sp-tab-btn {
    background: none;
    border: none;
    padding: 16px 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: #999;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.25s;
}
.sp-tab-btn:hover { color: #666; }
.sp-tab-btn.active {
    color:white;
    border-bottom-color:white;
}
.sp-tab-content { display: none; animation: spFadeIn 0.3s ease; }
.sp-tab-content.active { display: block; }

@keyframes spFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sp-desc-text {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    max-width: 800px;
}
.sp-desc-text p { margin-bottom: 16px; }

.sp-tab-content .woocommerce-product-attributes { width: 100%; max-width: 600px; border-collapse: collapse; }
.sp-tab-content .woocommerce-product-attributes th {
    font-weight: 600; text-transform: uppercase; font-size: 12px;
    letter-spacing: 0.5px; color: #555; padding: 14px 20px;
    background: #f9f7f3; border-bottom: 1px solid #e8e4dd; width: 180px;
}
.sp-tab-content .woocommerce-product-attributes td {
    padding: 14px 20px; font-size: 14px; color: #666; border-bottom: 1px solid #e8e4dd;
}
.sp-tab-content .woocommerce-product-attributes td p { margin: 0; }

/* ---- Related Products ---- */
.sp-related { padding-top: 60px; border-top: 1px solid #e8e4dd; }
.sp-related-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color:white;
    text-align: center;
    margin-bottom: 45px;
}
.sp-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.sp-related-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}
.sp-related-card:hover { transform: translateY(-5px); }
.sp-related-img {
    background: #f7f5f0;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    margin-bottom: 16px;
}
.sp-related-img img {
    width: 100%; height: 100%; object-fit: contain;
    display: block; transition: transform 0.3s;
}
.sp-related-card:hover .sp-related-img img { transform: scale(1.05); }
.sp-related-card h4 {
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    margin: 0 0 6px; color: var(--color-text);
}
.sp-related-price { font-size: 14px; color: #888; font-weight: 500; }

/* ---- Single Product Responsive ---- */
@media (max-width: 1024px) {
    .sp-layout { gap: 40px; }
    .sp-title { font-size: 28px; }
}
@media (max-width: 768px) {
    .product-page-container { padding: 15px 15px 40px; }
    .sp-layout { grid-template-columns: 1fr; gap: 30px; }
    .sp-gallery { flex-direction: column-reverse; position: static; }
    .sp-thumbs { flex-direction: row; max-height: none; overflow-x: auto; overflow-y: hidden; }
    .sp-thumb { width: 60px; height: 60px; }
    .sp-title { font-size: 24px; }
    .sp-price { font-size: 22px; }
    .sp-desc-tabs { overflow-x: auto; }
    .sp-tab-btn { padding: 12px 18px; font-size: 11px; white-space: nowrap; }
    .sp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
    .sp-share { gap: 12px; }
    .sp-share a { width: 36px; height: 36px; }
    .sp-related-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .sp-related-card h4 { font-size: 11px; }
}

/* =========================================
   Variation Swatches (Sizes)
   ========================================= */

.swatch-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.swatch-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 13px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
    min-width: 60px;
    text-align: center;
}

.swatch-btn:hover {
    border-color:white;
    color:white;
}

.swatch-btn.selected {
    background-color:white;
    color: #fff;
    border-color:white;
}

/* Hide default label if desired, but usually keeping it is fine. 
   Let's style the label slightly. */
table.variations label {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

table.variations tr {
    display: block;
    margin-bottom: 20px;
}
table.variations td {
    display: block;
    padding: 0;
}
table.variations td.label {
    margin-bottom: 10px;
}

/* =========================================
   Policy Pages (Shipping, Returns, etc.)
   ========================================= */

.policy-container {
    padding-top: 60px;
    padding-bottom: 80px;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    
    padding: 60px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    border-radius: 4px;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-header .page-title {
    font-size: 38px;
    color:white;
    margin-bottom: 20px;
}

.header-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.policy-section p, .policy-section li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.note {
    font-size: 13px;
    color: #888;
}

/* Area Grid for Remote Areas */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    margin-top: 20px;
}

.area-group h3 {
    font-size: 14px;
    text-transform: uppercase;
    color:white;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
}

.contact-highlight {
    background-color: #fdfbf7;
    border: 1px solid var(--color-accent);
    padding: 30px;
    text-align: center;
    border-radius: 4px;
}

.contact-highlight a {
    color:white;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .policy-wrapper {
        padding: 30px;
    }
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   About Us Page
   ========================================= */

.about-page-header {
   
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.about-page-header .page-title {
    color: white;
    font-size: 42px;
}

.about-content-wrapper {
    max-width: 1000px;
}

.about-section {
    margin-bottom: 100px;
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.story-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Location Section */
.location-section {
   
    padding: 0;
}

.location-details {
    padding: 40px 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.location-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.address-line {
    font-size: 20px;
    color:white;
    margin-bottom: 15px;
}

.contact-details {
    margin: 25px 0;
    font-size: 15px;
}

.map-embed-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
    height: 450px;
    background: #eee;
}

@media (max-width: 768px) {
    .story-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ============================
   Contact Page Styles
   ============================ */

.contact-page-header {
    background-color: var(--color-bg);
    padding: 80px 0 40px;
    text-align: center;
}

.contact-page-header .page-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-page-header .page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content-wrapper {
    padding-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-family: var(--font-heading);
    color:white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.contact-block p, 
.contact-block li {
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-list li i {
    color: var(--color-secondary);
    width: 20px;
    text-align: center;
}

.info-list li a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.3s;
}

.info-list li a:hover {
    color:white;
}

.direction-link {
    display: inline-block;
    margin-top: 10px;
    color:white;
    font-weight: 500;
    text-decoration: none;
}

.direction-link:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form-col {
   
    padding: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.form-intro {
    margin-bottom: 30px;
    background: #fff;
}

.aroma-contact-form .form-group {
    margin-bottom: 20px;
}

.aroma-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
}

.aroma-contact-form input,
.aroma-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.aroma-contact-form input:focus,
.aroma-contact-form textarea:focus {
    border-color: var(--color-secondary);
    outline: none;
}

.aroma-contact-form .btn-submit {
    width: 100%;
    background-color:white;
    color: #fff;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: background 0.3s;
}

.aroma-contact-form .btn-submit:hover {
    background-color: var(--color-text);
}

.contact-map-section iframe {
    filter: grayscale(100%) contrast(90%); /* Muted map style */
    display: block;
}

/* =========================================
   GLOBAL MOBILE / RESPONSIVE
   ========================================= */

/* ---- Hamburger Button ---- */
.mobile-menu-toggle {
    display: none;
    position: relative; /* Ensure z-index works */
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Overlay ---- */
body.mobile-menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 999;
}

/* =========================================
   Tablet  (max-width: 1024px)
   ========================================= */
@media (max-width: 1024px) {
    :root { --container-width: 95%; }

    /* Header */
    .main-navigation li { margin-left: 20px; }
    .main-navigation a { font-size: 11px; }
    .header-icons a { margin-left: 14px; }

    /* WooCommerce product grids */
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .shop-main-content ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

/* =========================================
   Mobile  (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

    /* --- Header & Mobile Nav --- */
    .mobile-menu-toggle { display: flex; }

    .site-header { padding: 14px 0; }
    
    /* Switch back to Flex for mobile to handle wrapping/stacking if needed, 
       or keep Grid but adjust columns if layout requires it. 
       Flex is usually easier for "Logo Left/Center + Icons Right" on mobile. */
    .header-inner { 
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide Desktop Nav triggers (it becomes off-canvas) */
    .site-branding { 
        position: static;
        transform: none;
        flex-grow: 1; 
        text-align: center;
    }
    
    /* Since Nav is fixed, it doesn't take space in flow */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: #06201D; /* Dark teal for mobile menu */
        z-index: 1050;
        padding: 80px 30px 40px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        transition: right 0.35s ease;
        font-size: 12px;
        overflow-y: auto;
    }
    .main-navigation.open { right: 0; }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    .main-navigation li {
        margin-left: 0;
        border-bottom: 1px solid rgba(254,254,227,0.1);
    }
    .main-navigation a {
        display: block;
        padding: 16px 0;
        font-size: 14px;
        letter-spacing: 1.5px;
        color: #FEFEE3;
    }

    .header-icons { gap: 15px; }
    .header-icons a { font-size: 16px; margin-left: 0; }
    .login-link { display: none; } /* Hide "Log In" text on mobile to save space */

    /* --- Container --- */
   

    /* --- Footer --- */
    .site-footer { padding: 40px 0 15px; }
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-widget ul { padding: 0; list-style: none; }
    .footer-widget ul li { margin-bottom: 8px; }
    .social-icons { justify-content: center; display: flex; gap: 16px; }

    /* --- WooCommerce Product Grids --- */
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .woocommerce ul.products li.product a img {
        height: 200px !important;
        padding: 8px;
    }
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 15px;
    }
    .shop-main-content ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .shop-main-content ul.products li.product img {
        height: 200px !important;
    }

    /* --- About Page --- */
    .about-page-header { padding: 50px 0; }
    .about-page-header .page-title { font-size: 30px; }
    .about-section { margin-bottom: 60px; }

    /* --- Contact Page --- */
    .contact-page-header { padding: 50px 0 30px; }
    .contact-page-header .page-title { font-size: 2rem; }
    .contact-form-col { padding: 25px; }
}

/* =========================================
   Small Phones  (max-width: 480px)
   ========================================= */
@media (max-width: 480px) {

    /* Header */
    .site-title { font-size: 18px; }
    .header-icons a { margin-left: 12px; font-size: 15px; }

    /* Hero */
    
    .hp-hero-content h1 { font-size: 26px; }
    .hp-hero-content p { font-size: 14px; margin-bottom: 25px; }
    .hp-btn { padding: 12px 28px; font-size: 11px; }

    /* Product grid — single column on very small */
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    .shop-main-content ul.products {
        grid-template-columns: 1fr !important;
    }
    .woocommerce ul.products li.product a img,
    .shop-main-content ul.products li.product img {
        height: 260px !important;
    }

    /* Sections */
    .hp-products, .hp-why, .hp-explore, .hp-contact { padding: 45px 0; }
    .hp-section-title { font-size: 28px; }
    .hp-section-subtitle { font-size: 13px; }

    /* Offers */
    .hp-offers { min-height: 280px; }
    .hp-offers-content h2 { font-size: 24px; }
    .hp-offers-content p { font-size: 13px; }

    /* Explore */
    .hp-explore-text h6 { font-size: 11px; }
    .hp-explore-text p { font-size: 14px; }

    /* Contact form */
    .hp-contact-form input,
    .hp-contact-form textarea { padding: 12px 14px; font-size: 13px; }

    /* Footer */
    .footer-widgets { gap: 25px; }
    .footer-widget h4 { font-size: 16px; }
    .footer-bottom { font-size: 11px; }

    /* Single product */
    .sp-title { font-size: 22px; }
    .sp-price { font-size: 20px; }
    .sp-btn, .sp-btn-cart, .sp-info .single_add_to_cart_button {
        padding: 13px !important;
        font-size: 12px !important;
        background-color: #bbb;
    }

    /* Policy pages */
    .policy-wrapper { padding: 20px; }
    .policy-header .page-title { font-size: 28px; }

    /* About */
    .about-page-header .page-title { font-size: 26px; }
    .story-section h2 { font-size: 24px; }
    .location-details h2 { font-size: 22px; }
    .address-line { font-size: 16px; }
    .map-embed-container { height: 300px; }

    /* Contact page */
    .contact-page-header .page-title { font-size: 1.6rem; }
    .contact-block h3 { font-size: 1.2rem; }
}

/* =========================================
   Mobile Filter Popup Styles
   ========================================= */

/* Default: hidden on desktop */
.mobile-filter-btn {
    display: none;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color:white;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 20px;
}
.mobile-filter-close {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

/* Overlay */
.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar behavior */
@media (max-width: 992px) { /* Adjust breakpoint as needed, usually tablet/mobile */
    
    .mobile-filter-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    /* Fixed Sidebar (Popup) */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px; /* Hidden off-canvas */
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding: 50px 20px 20px; /* Top padding for close button space */
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        overflow-y: auto;
    }

    .shop-sidebar.active {
        left: 0;
    }

    .mobile-filter-close {
        display: block;
    }
    
    body.filters-open {
        overflow: hidden; /* Prevent body scroll */
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: #849466; /* Sage Green */
    color: #fff;
    padding: 80px 50px 30px;
    font-family: var(--font-body);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

/* Col 1: Brand */
.brand-col .footer-logo {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.1;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

/* Col 2: Contact */
.contact-col p {
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}
.contact-col a {
    color: #fff;
    text-decoration: none;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer-social a {
    font-size: 18px;
    color: #fff;
}

/* Col 3: Links */
.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.links-col li {
    margin-bottom: 12px;
}
.links-col a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}
.links-col a:hover {
    opacity: 0.7;
}

/* Col 4: Newsletter */
.newsletter-col {
    flex: 1.3;
}
.footer-heading {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #fff;
}
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-field label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    color: #fff;
}
.footer-field input[type='email'] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 8px 0;
    outline: none;
    font-family: var(--font-body);
}
.footer-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
}
.footer-checkbox input {
    margin-top: 4px;
    background: transparent;
    border: 1px solid #fff;
    width: 16px;
    height: 16px;
    accent-color: #849466;
}
.footer-btn {
    background: #FEFEE3;
    color: #0d2119;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-transform: capitalize;
    transition: background 0.3s;
}
.footer-btn:hover {
    background: #fff;
}

.footer-bottom {
    text-align: right;
    margin-top: 80px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }
    .footer-bottom {
        text-align: center;
        margin-top: 40px;
    }
}

