@import url('../fonts/fonts.css');

:root {
    --bg-cream: #F9F8F4;
    --bg-sage: #E6EBE0;
    --text-charcoal: #333333;
    --text-brown: #5C3A1E;
    --primary-green: #4A5D44;
    --primary-green-light: #667866;
    --primary-green-dark: #2c3629;
    --accent-terracotta: #C07A5F;
    --white: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);

    --container-width: 1200px;
    --nav-height: 100px;
    --nav-scrolled-height: 80px;
}

/* View Transitions */
@media (prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }

    ::view-transition-old(root) {
        animation: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) both zoom-out-old;
    }

    ::view-transition-new(root) {
        animation: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) both zoom-in-new;
    }
}

@keyframes zoom-out-old {
    to {
        opacity: 0;
        transform: scale(0.96);
    }
}

@keyframes zoom-in-new {
    from {
        opacity: 0;
        transform: scale(1.04);
    }
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-sage);
}

.section-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.italic {
    font-style: italic;
    font-weight: 400;
}

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(249, 248, 244, 0);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
    color: rgb(212, 212, 212);
}

body:not(:has(.hero)) #main-nav {
    color: var(--text-charcoal);
    /* background-color: rgba(249, 248, 244, 0.85); */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(74, 93, 68, 0.05);
}

#main-nav.scrolled {
    height: var(--nav-scrolled-height);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(74, 93, 68, 0.1);
    color: var(--text-charcoal);
    background-color: rgba(249, 248, 244, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;

    span {
        line-height: 1.2;
    }
}

.nav-logo-img {
    height: 60px;
    object-fit: cover;
    transition: var(--transition);
    filter: none;
}

body:has(.hero) #main-nav:not(.scrolled) .nav-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.nav-header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
    padding: 0.25rem 0;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-terracotta);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links a:hover {
    color: var(--accent-terracotta);
}

.nav-links > li > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a i {
    font-size: 3rem;
    vertical-align: middle;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/brand/hero-2.webp') no-repeat center center/cover;
    position: relative;
    color: var(--white);
    padding-top: var(--nav-height);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;

    span.italic {
        font-size: 2.5rem;
    }
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 5.5vw, 3.5rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.3;

    span {
        font-family: var(--font-heading);
        font-style: italic;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0;
        /* text-decoration: underline; */
        display: inline;
    }
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--accent-terracotta);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 122, 95, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-green-light);
}

.btn-product {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border: 1.5px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    width: 100%;
}

.btn-product.link-small {
    padding: 0.6rem;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.product-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 1rem;
}

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

/* Disabled/Placeholder Buttons */
.btn.disabled,
.btn-product.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f1f1f1 !important;
    border-color: #ccc !important;
    color: #888 !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Mission Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.rounded-img {
    border-radius: 4px;
    box-shadow: var(--shadow);
}

/* Collections Section */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition);
    transform: translateX(-50%);
}

.tab-btn.active {
    color: var(--text-charcoal);
}

.tab-btn.active::after {
    width: 60%;
}

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

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
}

.product-card {
    background-color: var(--white);
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.product-img-slider-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.product-img-slider {
    display: flex;
    gap: 2px;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.product-img-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.product-img-slider-wrapper {
    min-width: 100%;
    height: 100%;
    scroll-snap-align: start;
    overflow: hidden;
}

.product-img-slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .slider-nav {
    opacity: 1;
}

.slider-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    color: var(--primary-green);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--white);
    color: var(--accent-terracotta);
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    pointer-events: none;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dot.active {
    width: 18px;
    background-color: var(--white);
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
}

.price {
    font-weight: 600;
    margin: 1rem 0;
    font-size: 1.3rem;
    display: block;
    color: var(--primary-green);
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.impact-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.impact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.impact-card p {
    color: #666;
}

/* Footer */
footer {
    /* background-color: var(--primary-green); */
    background-color: #EDE0D3;
    /* color: var(--bg-cream); */
    color: var(--text-brown);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 24px;
    align-items: center;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 400;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: inherit;
    margin-bottom: 1rem;
    flex-direction: column;

    p {
        font-weight: 900;
        font-family: var(--font-body);
    }
}

.footer-logo-img {
    height: 180px;
    aspect-ratio: 1;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
}



.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    width: fit-content;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.social-links a i {
    font-size: 1.2rem;
    width: 20px;
}

.social-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-charcoal);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.step-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--bg-sage);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
}

/* Catalogue Page Styles */
.catalogue-header {
    padding-top: 160px;
    padding-bottom: 40px;
    text-align: center;
}

.catalogue-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.catalogue-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #555;
    padding: 0 1rem;
}

.catalogue-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 1px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 40px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-btn:hover:not(.active) {
    background: var(--bg-sage); 
    box-shadow: 0 4px 10px rgba(74, 93, 68, 0.08);
}

.filter-btn.active {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(74, 93, 68, 0.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 2rem auto;
    border: 1px dashed var(--bg-sage);
}

.empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.empty-state p {
    color: #666;
    line-height: 1.8;
}

/* Form & Interactive Component Styles */
.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}



.form-group {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--bg-sage);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-cream);
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-terracotta);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(192, 122, 95, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-success-message {
    padding: 1rem;
    border-radius: 4px;
    background-color: rgba(74, 93, 68, 0.1);
    border-left: 4px solid var(--primary-green);
    margin-top: 1.5rem;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Grid Adjustments for Inner Pages */
.about-hero,
.collab-hero {
    background-color: var(--bg-sage);
    padding: 140px 0 60px;
    text-align: center;
}

.about-hero h1,
.collab-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.about-hero p,
.collab-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* Card Grid for Principles & Collaborations */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-terracotta);
}

.info-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-terracotta);
}

.info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.cta-section {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-outline {
    border-color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
}

/* Navbar Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 200px;
    border-radius: 6px;
    box-shadow: var(--shadow-hover);
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li {
    width: 100%;
    display: block;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-charcoal) !important;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--accent-terracotta) !important;
    background-color: var(--bg-cream);
}

/* Hover Behavior for Desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* Filter Sticky Bar Styles */
.filter-sticky-bar {
    position: sticky;
    top: var(--nav-height); /* 80px */
    background-color: var(--white);
    padding: 1.2rem 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body:has(#main-nav.scrolled) .filter-sticky-bar {
    top: var(--nav-scrolled-height);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.filter-sticky-bar .catalogue-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding: 0 1rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Filters Wrapper & Scroll Indicator Arrow */
.filters-wrapper {
    position: relative;
    width: 100%;
}

.scroll-arrow {
    display: none; /* Hide on desktop */
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-green);
    text-align: left;
    transition: var(--transition);
}

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

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-hover);
    border-color: rgba(74, 93, 68, 0.15);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Tablet Viewports for Index page */
@media (max-width: 1024px) {
    .grid-2,
    .impact-grid {
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes nudgeArrow {
    0% {
        transform: translateX(0);
        opacity: 0.6;
    }
    100% {
        transform: translateX(4px);
        opacity: 1;
    }
}

/* Product Detail Page Styles */
.product-container {
    padding-top: 140px;
    padding-bottom: 80px;
}

.product-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #666;
    font-family: var(--font-body);
}

.breadcrumbs a {
    color: var(--primary-green);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--accent-terracotta);
}

.breadcrumbs span {
    color: #999;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--accent-terracotta);
    transform: translateX(-4px);
}

/* Product Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    margin-bottom: 5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-main-image-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.gallery-main-image-wrapper.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.thumbnail-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.thumbnail-item:hover {
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--primary-green);
}

/* Product Details Info */
.product-details-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-details-info .category-badge {
    background-color: var(--bg-sage);
    color: var(--primary-green);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.product-details-info h1 {
    font-size: 2.8rem;
    color: var(--text-brown);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.product-details-info .price-container {
    margin-bottom: 2rem;
}

.product-details-info .price {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green);
}

.product-details-info .description {
    font-size: 1rem;
    color: var(--text-charcoal);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Purchase Section */
.purchase-section {
    width: 100%;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--bg-sage);
    border-bottom: 1px solid var(--bg-sage);
    padding: 1.5rem 0;
}

.purchase-section h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 1rem;
}

.purchase-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
}

.btn-buy.whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-buy.whatsapp-btn:hover {
    background-color: #20ba59;
    border-color: #20ba59;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.out-of-stock-badge {
    background-color: #f1f1f1;
    color: #777;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    font-size: 0.95rem;
    border: 1px dashed #ccc;
}

/* Sustainability Highlight Card */
.sustainability-highlight {
    display: flex;
    gap: 1.5rem;
    background-color: var(--bg-cream);
    border: 1px solid var(--bg-sage);
    padding: 1.5rem;
    border-radius: 6px;
    align-items: flex-start;
    margin-top: auto;
    width: 100%;
}

.sustainability-highlight .icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    background-color: var(--bg-sage);
    width: 50px;
    height: 50px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sustainability-highlight .text h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-green-dark);
}

.sustainability-highlight .text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Error & Loading States */
.loading-state,
.product-error-state {
    text-align: center;
    padding: 5rem 2rem;
    width: 100%;
    grid-column: 1 / -1;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-sage);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.product-error-state h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: var(--text-brown);
}

/* Related Products Section */
.related-products-section {
    border-top: 1px solid var(--bg-sage);
    padding-top: 50px;
    margin-top: 4rem;
}

.related-products-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Shimmer Loading Animation */
.shimmer-heading {
    height: 38px;
    width: 250px;
    margin-bottom: 2.5rem;
    border-radius: 4px;
    background: linear-gradient(90deg, #F0F3ED 25%, var(--bg-sage) 50%, #F0F3ED 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

.shimmer-card {
    background-color: var(--white);
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    pointer-events: none;
    user-select: none;
}

.shimmer-img {
    height: 350px;
    border-radius: 4px;
    background: linear-gradient(90deg, #F0F3ED 25%, var(--bg-sage) 50%, #F0F3ED 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

.shimmer-title {
    height: 24px;
    width: 70%;
    border-radius: 4px;
    background: linear-gradient(90deg, #F0F3ED 25%, var(--bg-sage) 50%, #F0F3ED 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

.shimmer-price {
    height: 20px;
    width: 30%;
    border-radius: 4px;
    background: linear-gradient(90deg, #F0F3ED 25%, var(--bg-sage) 50%, #F0F3ED 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

.shimmer-desc {
    height: 45px;
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #F0F3ED 25%, var(--bg-sage) 50%, #F0F3ED 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Image Shimmer Overlays */
.image-shimmer-wrapper {
    position: relative;
    overflow: hidden;
}

.image-shimmer-wrapper.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F0F3ED 25%, var(--bg-sage) 50%, #F0F3ED 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    z-index: 10;
}

.image-shimmer-wrapper.loading img {
    opacity: 0 !important;
}

/* Timeline Section */
.timeline-section {
    position: relative;
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    top: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-sage);
    /* border: 2px solid var(--primary-green); */
    color: var(--primary-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-badge {
    background-color: var(--primary-green-dark);
    color: #fff;
}

.timeline-item:nth-child(odd) .timeline-badge {
    right: -22px;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -22px;
}

.timeline-panel {
    position: relative;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.timeline-date {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.timeline-panel p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-badge,
    .timeline-item:nth-child(even) .timeline-badge {
        left: 8px;
        right: auto;
    }
}

/* ==========================================================================
   Shopping Cart, Drawer & Toast Notifications
   ========================================================================== */

/* Shopping Cart Nav & Badge */
.nav-cart-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: inherit;
    padding: 0.5rem;
    transition: var(--transition);
    border-radius: 50%;
}

.nav-cart-btn:hover {
    color: var(--accent-terracotta);
    transform: scale(1.08);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    background-color: var(--accent-terracotta);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bump {
    transform: scale(1.4);
}

/* Card & Product Detail Add to Cart Buttons & Steppers */
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.product-card-action-container {
    display: inline-flex;
    align-items: center;
}

.btn-add-cart-card {
    background-color: var(--bg-sage);
    color: var(--primary-green-dark);
    border: 1px solid var(--primary-green);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}

.btn-add-cart-card:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-add-cart-card.added {
    background-color: var(--primary-green);
    color: var(--white);
}

.card-qty-stepper {
    background-color: var(--primary-green) !important;
    color: var(--white) !important;
    border-radius: 20px;
    padding: 3px 6px;
    display: inline-flex !important;
    align-items: center !important;
    box-shadow: 0 2px 8px rgba(74, 93, 68, 0.25);
    border: 1px solid var(--primary-green-dark);
}

.card-qty-stepper button.qty-btn {
    color: var(--white) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.15s !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.qty-btn i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.72rem !important;
}

.detail-qty-stepper button.qty-btn i {
    font-size: 0.85rem !important;
}

.card-qty-stepper button.qty-btn:hover {
    background-color: var(--primary-green-dark) !important;
    transform: scale(1.1);
}

.card-qty-stepper .qty-val {
    font-family: 'Consolas', 'Courier New', monospace !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    padding: 0 0.6rem !important;
    min-width: 22px !important;
    text-align: center !important;
    color: var(--white) !important;
    font-variant-numeric: tabular-nums;
}

.btn-secondary.add-to-cart-detail-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary.add-to-cart-detail-btn:hover {
    background-color: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.detail-qty-stepper {
    display: inline-flex !important;
    align-items: center !important;
    background-color: var(--primary-green) !important;
    color: var(--white) !important;
    border-radius: 30px;
    padding: 5px 12px;
    height: 48px;
    box-shadow: 0 4px 15px rgba(74, 93, 68, 0.3);
    border: 1px solid var(--primary-green-dark);
}

.detail-qty-stepper button.qty-btn {
    color: var(--white) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.15s !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.detail-qty-stepper button.qty-btn:hover {
    background-color: var(--primary-green-dark) !important;
    transform: scale(1.1);
}

.detail-qty-val {
    font-family: 'Consolas', 'Courier New', monospace !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    padding: 0 1rem !important;
    letter-spacing: 0.5px;
    color: var(--white) !important;
    font-variant-numeric: tabular-nums;
}

/* Cart Drawer Overlay & Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -460px;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background-color: var(--bg-cream);
    z-index: 2001;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 1.4rem 1.75rem;
    background-color: var(--white);
    border-bottom: 1px solid rgba(74, 93, 68, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    color: var(--primary-green-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-charcoal);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-close-btn:hover {
    background-color: var(--bg-sage);
    color: var(--primary-green-dark);
}

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

.cart-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cart-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cart-empty-state h4 {
    font-size: 1.2rem;
    color: var(--primary-green-dark);
    margin-bottom: 0.5rem;
}

.cart-empty-state p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(74, 93, 68, 0.08);
    align-items: center;
    position: relative;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cart-item-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-charcoal);
    line-height: 1.3;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.cart-item-controls .qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid rgba(74, 93, 68, 0.2);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-cream);
}

.cart-item-controls .qty-btn {
    background: none;
    border: none;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    transition: background 0.2s;
}

.cart-item-controls .qty-btn:hover {
    background: var(--bg-sage);
}

.cart-item-controls .qty-val {
    font-family: 'Consolas', 'Courier New', monospace !important;
    padding: 0 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 22px;
    text-align: center;
    color: var(--text-charcoal);
    font-variant-numeric: tabular-nums;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.4rem;
    transition: color 0.2s;
    margin-left: auto;
}

.cart-item-remove:hover {
    color: var(--accent-terracotta);
}

.cart-footer {
    padding: 1.4rem 1.75rem;
    background-color: var(--white);
    border-top: 1px solid rgba(74, 93, 68, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-eco-banner {
    background-color: var(--bg-sage);
    border-left: 3px solid var(--primary-green);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--primary-green-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-charcoal);
}

.cart-subtotal-row .total-amount {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.cart-shipping-note {
    font-size: 0.74rem;
    color: #777;
    font-weight: 400;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

.btn-whatsapp-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.cart-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.btn-clear-cart {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
}

.btn-clear-cart:hover {
    color: var(--accent-terracotta);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast-notification {
    background-color: var(--primary-green-dark);
    color: var(--white);
    padding: 0.85rem 1.3rem;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: auto;
    animation: toastIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast-notification .toast-view-cart {
    color: var(--bg-sage);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 0.25rem;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}