/* Theme colors and custom styling for Healing Hastha */
:root {
    /* Healing Hastha Brand Colors */
    --brand-forest: #1B4D3E;
    --brand-cream: #F9F6F0;
    --brand-terracotta: #E27D60;
    --brand-mint: #D4F1E8;
    --brand-peach: #FFE5D9;
    --brand-lavender: #E8E0F5;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;

    /* Base tokens */
    --background: var(--brand-cream);
    --foreground: #1a1a1a;
    --card: #ffffff;
    --radius: 20px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global resets & typography overrides */
body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-forest);
}
.index-about {
    margin: 0 0 10px !important;
    line-height: 35px !important;
    font-size: 20px !important;
    font-family:Manrope, sans-serif !important; 
}

/* Custom Selection styling */
::selection {
    background-color: var(--brand-terracotta);
    color: white;
}

/* Theme utility backgrounds and texts */
.bg-brand-forest {
    background-color: var(--brand-forest) !important;
}

.bg-brand-cream {
    background-color: var(--brand-cream) !important;
}

.bg-brand-terracotta {
    background-color: var(--brand-terracotta) !important;
}

.bg-brand-mint {
    background-color: var(--brand-mint) !important;
}

.bg-brand-peach {
    background-color: var(--brand-peach) !important;
}

.bg-brand-lavender {
    background-color: var(--brand-lavender) !important;
}

.text-brand-forest {
    color: var(--brand-forest) !important;
}

.text-brand-terracotta {
    color: var(--brand-terracotta) !important;
}

.text-brand-mint {
    color: var(--brand-mint) !important;
}

/* Custom Buttons matching React */
.btn-brand-terracotta {
    background-color: var(--brand-terracotta);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-brand-terracotta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--brand-forest);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-brand-terracotta:hover {
    color: white;
}

.btn-brand-terracotta:hover::before {
    left: 0;
}

.btn-outline-brand-forest {
    background-color: transparent;
    color: var(--brand-forest);
    border: 2px solid var(--brand-forest);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-outline-brand-forest:hover {
    background-color: var(--brand-forest);
    color: white;
}

/* Glassmorphism panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(27, 77, 62, 0.1);
    border-radius: var(--radius);
}

.glass-panel-dark {
    background: rgba(27, 77, 62, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brand-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-forest);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-terracotta);
}

/* Hide default cursor on desktop pointer-capable devices */
@media (pointer: fine) {

    body,
    a,
    button,
    input,
    textarea,
    [role="button"],
    select {
        cursor: none !important;
    }
}

/* Custom Cursor Styling */
.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--brand-terracotta);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-forest);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.3s, opacity 0.3s;
}

.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    opacity: 0.5;
    background-color: rgba(226, 125, 96, 0.2);
}

.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0);
}

/* Floating Contact & Social Buttons */
.floating-contact-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.floating-contact-trigger {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--brand-terracotta) !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(226, 125, 96, 0.3);
    position: relative;
    z-index: 10;
    transition: transform 0.3s;
}

.floating-contact-trigger:hover {
    transform: scale(1.1);
}

.floating-contact-trigger::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--brand-terracotta);
    animation: floating-contact-pulse 2s infinite ease-out;
    z-index: -1;
}

.floating-contact-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-contact-container.expanded .floating-contact-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-contact-item {
    display: flex;
    align-items: center;
    width:150px;
    gap: 12px;
    background-color: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.floating-contact-item:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    color: var(--brand-forest);
    width:150px !important;
}

.floating-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Header dynamic styles */
header {
    transition: padding 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    box-shadow: 0 10px 30px rgba(27, 77, 62, 0.05);
}

/* Header navigation links */
.nav-link-custom {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.nav-link-custom:hover {
    color: var(--brand-forest);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-terracotta);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
    width: 100%;
}

/* Image gallery custom styling */
.gallery-thumbnail {
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-thumbnail.active {
    border-color: var(--brand-terracotta);
    box-shadow: 0 10px 20px rgba(226, 125, 96, 0.15);
    transform: scale(1.05);
}

/* Scroll reveals (framer-motion substitute) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Product Cards */
.product-card {
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
}

/* Timeline Custom Styles */
.timeline-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-forest);
    z-index: 2;
    transition: all 0.3s;
}

.timeline-item:hover .timeline-dot {
    background-color: var(--brand-terracotta);
    border-color: var(--brand-terracotta);
    color: white;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #eee;
    z-index: 1;
}

/* Wave Footer Shape */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    margin-top: -95px;
    z-index: 2;
}

/* Carousel 3D perspective variables */
.perspective-stage {
    perspective: 1000px;
    perspective-origin: 50% 50%;
    height: 470px;
    position: relative;
    width: 100%;
}

.carousel-3d-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -170px;
    width: 340px;
    height: 470px;
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
}

/* Sparkles animation wrapper */
.sparkles-container {
    position: absolute;
    inset: -16px;
    pointer-events: none;
    z-index: 2;
}

/* Indicators */
.indicator-pill {
    height: 6px;
    border-radius: 3px;
    transition: width 0.5s ease, background-color 0.5s ease;
    border: none;
}

/* Background Floating Leaves Container */
.floating-leaves-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

/* Carousel 3D Card Image Fit */
.carousel-3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography & Layout Utility Classes mapping React styling */
.font-serif {
    font-family: var(--font-display) !important;
}

.font-sans {
    font-family: var(--font-body) !important;
}

.leading-relaxed {
    line-height: 1.625 !important;
}

.leading-snug {
    line-height: 1.375 !important;
}

.leading-none {
    line-height: 1 !important;
}

.aspect-square {
    aspect-ratio: 1 / 1 !important;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Max Width Utilities */
.max-w-md {
    max-width: 28rem !important;
}

.max-w-lg {
    max-width: 32rem !important;
}

.max-w-xl {
    max-width: 36rem !important;
}

.max-w-2xl {
    max-width: 42rem !important;
}

.max-w-3xl {
    max-width: 48rem !important;
}

/* Custom Newsletter Subscription Input styles */
.input-subscription::placeholder {
    color: #79988e !important;
    opacity: 0.8;
}

.input-subscription {
    color: white !important;
}

/* Gaussian Blur Utility mapping Tailwind blur-3xl */
.blur-3xl {
    filter: blur(64px) !important;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

/* Animations and keyframes for Healing Hastha website */

/* Float animation for decorative assets */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Pulsing glow effect behind active items */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(226, 125, 96, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(226, 125, 96, 0.6);
    }
}

/* Register property for custom angle animations in modern browsers */
@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

/* Spin active product card border */
@keyframes spinBorder {
    from {
        --border-angle: 0deg;
    }

    to {
        --border-angle: 360deg;
    }
}

/* Active carousel card float */
@keyframes heroCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Shimmer effect for loaders and gloss */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Film-reel horizontal translations (Left to Right, Right to Left) */
@keyframes filmScrollRTL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes filmScrollLTR {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Floating Contact Pulse */
@keyframes floating-contact-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Floating Leaf Keyframe animation */
@keyframes leafFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-30px) translateX(15px) rotate(15deg);
        opacity: 0.35;
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.15;
    }
}

/* Leaf Cluster rotation keyframes */
@keyframes leafClusterRotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes leafClusterRotateAlt {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Page Loader Spin */
@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Dynamic sparkle fade keyframes */
@keyframes sparkleAnim {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(90deg);
        opacity: 1;
    }

    100% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
}

/* Animation classes and triggers */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-spin-loader {
    animation: loaderSpin 2s linear infinite;
}

.animate-orbit-leaf {
    animation: loaderSpin 3s linear infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility: respect preference for reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Restore cursor for reduced motion users */
    body,
    a,
    button,
    input,
    textarea,
    select {
        cursor: auto !important;
    }

    .cursor-ring,
    .cursor-dot {
        display: none !important;
    }
}

/* Footer Overflow Override */
footer {
    overflow: visible !important;
}


/* Extracted Inline Styles */
.custom-z-99999 {
    z-index: 99999
}

.custom-w-80-h-80 {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, var(--brand-forest), var(--brand-terracotta), var(--brand-mint));
}

.custom-style-139c41c4 {
    font-family: var(--font-display)
}

.custom-mt-n12 {
    margin-top: -12px
}

.custom-fw-700 {
    font-family: var(--font-display);
    font-weight: 700
}

.custom-w-200-h-4 {
    width: 200px;
    height: 4px;
    background: linear-gradient(to right, var(--brand-forest), var(--brand-terracotta), var(--brand-mint));
}

.custom-bg-10b981 {
    background-color: #10b981
}

.custom-bg-f59e0b {
    background-color: #f59e0b
}

.custom-bg-1877f2 {
    background-color: #1877f2
}

.custom-bg-e4405f {
    background-color: #e4405f
}

.custom-bg-ff0000 {
    background-color: #ff0000
}

.custom-w-56-h-56-opacity-0-z-998-c21f7a {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(to bottom right, var(--brand-forest), var(--brand-terracotta));
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.custom-z-990 {
    z-index: 990;
    backdrop-filter: blur(10px)
}

.custom-h-48-w-auto {
    height: 48px;
    width: auto;
    object-fit: contain
}

.custom-has-transition {
    transition: var(--transition-smooth)
}

.custom-w-20-h-20-fs-10-fw-700-d--918b04 {
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.custom-style-f8c77e30 {
    background: linear-gradient(135deg, var(--brand-cream) 0%, rgba(212, 241, 232, 0.3) 50%, rgba(255, 229, 217, 0.4) 100%);
}

.custom-style-2959c3d0 {
    overflow: hidden
}

.custom-w-300-h-300 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    background: var(--brand-lavender);
    animation: float 12s infinite ease-in-out;
}

.custom-z-5 {
    max-width: 600px;
    z-index: 5
}

.custom-fw-900 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.15;
}

.custom-fw-300 {
    animation-delay: 0.4s;
    font-weight: 300
}

.custom-style-a82ecc18 {
    animation-delay: 0.6s
}

.custom-style-4d634477 {
    animation-delay: 0.8s
}

.custom-style-8e8a07b9 {
    backdrop-filter: blur(5px)
}

.custom-w-40-h-40 {
    width: 40px;
    height: 40px
}

.custom-fs-10 {
    font-size: 10px;
    line-height: 1.2
}

.custom-style-b307ebd5 {
    animation-delay: 1s
}

.custom-style-abe9be93 {
    animation-delay: 1.2s
}

.custom-opacity-0_6 {
    opacity: 0.6;
    animation: float 3s infinite ease-in-out
}

.custom-fs-11-fw-500 {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500
}

.custom-style-cf2217b5 {
    min-height: 620px
}

.custom-w-420-h-420-opacity-0_15 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--brand-terracotta) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.15;
}

.custom-w-520-h-520-opacity-0_03 {
    width: 520px;
    height: 520px;
    opacity: 0.03
}

.custom-w-720-h-720-opacity-0_02 {
    width: 720px;
    height: 720px;
    opacity: 0.02
}

.custom-w-44-h-44-has-transition {
    width: 44px;
    height: 44px;
    background: transparent;
    transition: var(--transition-smooth);
}

.custom-style-f70de704 {
    background: linear-gradient(to bottom right, var(--brand-cream) 0%, #ffffff 50%, rgba(212, 241, 232, 0.15) 100%);
}

.custom-fs-12 {
    font-size: 12px;
    letter-spacing: 2px
}

.custom-style-197a3178 {
    max-width: 528px
}

.custom-bg-e3ede9 {
    background-color: #e3ede9
}

.custom-w-120-h-120-z-5 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
    z-index: 5;
}

.custom-style-688ef4f2 {
    line-height: 1.1
}

.custom-fs-9 {
    font-size: 9px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.custom-w-48-h-48 {
    width: 48px;
    height: 48px
}

.custom-w-40-h-1 {
    width: 40px;
    height: 1px
}

.custom-fs-11 {
    font-size: 11px
}

.custom-fs-16 {
    font-size: 16px
}

.custom-w-60-h-60 {
    width: 60px;
    height: 60px
}

.custom-has-transition-bg-var---b-17ab94 {
    transition: var(--transition-smooth);
    background-color: var(--brand-cream);
}

.custom-h-220 {
    height: 220px;
    overflow: hidden
}

.custom-style-98af4011 {
    animation-delay: 0.15s
}

.custom-style-dd31b825 {
    animation-delay: 0.3s
}

.custom-style-d1cfba19 {
    background: linear-gradient(135deg, var(--brand-forest) 0%, #0f3329 100%);
}

.custom-w-250-h-250-bg-var---bran-5a600b {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
    background-color: var(--brand-terracotta);
}

.custom-w-250-h-250-bg-var---brand-mint- {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -50px;
    background-color: var(--brand-mint);
}

.custom-fs-15-opacity-0_85 {
    font-size: 15px;
    opacity: 0.85
}

.custom-style-fdee631a {
    max-width: 520px;
    margin: 0 auto
}

.custom-h-48-fs-14 {
    background: rgba(20, 52, 43, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 48px;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

.custom-h-48-fs-14-bg-var---brand-88eadf {
    height: 48px;
    font-size: 14px;
    background-color: var(--brand-terracotta);
    border: none;
}

.custom-opacity-0_1 {
    overflow: hidden;
    opacity: 0.1
}

.custom-style-57cd0b88 {
    backdrop-filter: blur(10px)
}

.custom-w-48-h-48-rounded-50pct-b-cee8d4 {
    top: -15px;
    left: -15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--brand-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.custom-mt-96 {
    margin-top: 96px
}

.custom-w-40-h-40-has-transition {
    width: 40px;
    height: 40px;
    transition: var(--transition-smooth);
}

.custom-w-16-h-16 {
    width: 16px;
    height: 16px
}

.custom-bg-bgcolor-has-transition {
    background-color: transparent;
    transition: var(--transition-smooth);
}

.custom-h-250 {
    height: 250px;
}

.custom-style-834b82af {
    font-family: var(--font-display);
}

.custom-w-56-h-56-opacity-0-z-998-21ef28 {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(to bottom right, var(--brand-forest), var(--brand-terracotta));
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.custom-style-a2ea57cf {
    min-height: 80vh;
}

.custom-style-07e5d618 {
    animation-delay: 0.15s;
}

.custom-style-ca497949 {
    backdrop-filter: blur(10px);
}

.custom-w-18-h-18 {
    width: 18px;
    height: 18px;
    border-color: var(--brand-forest);
}

.custom-style-93d5c15e {
    animation-delay: 0.3s;
}

.custom-w-6-h-6 {
    width: 6px;
    height: 6px;
}

.custom-style-f885e116 {
    border: 0;
}

.custom-style-c4f72d39 {
    animation-delay: 0.25s;
}

.custom-style-2339423a {
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.05) 0%, rgba(212, 241, 232, 0.1) 50%, rgba(255, 229, 217, 0.05) 100%);
    border: 1px solid rgba(27, 77, 62, 0.1);
}

.custom-bg-ff0000 !important {
    background-color: #FF0000 !important;
}

.custom-z-10000 {
    z-index: 10000;
}

.custom-fs-15 {
    font-size: 15px;
    max-width: 80%;
}

.custom-h-380 {
    height: 380px;
}

.custom-h-200 {
    height: 200px;
    overflow: hidden;
}

.custom-style-99b67d61 {
    background: linear-gradient(135deg, var(--brand-forest) 0%, #0f3329 100%);
}

.custom-style-09246fe9 {
    backdrop-filter: blur(5px);
    outline: none;
}

.custom-w-80 {
    width: 80px;
}

.custom-h-340 {
    height: 340px;
}

.custom-w-120-h-120 {
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: -20px;
}

.custom-w-64-h-64 {
    width: 64px;
    height: 64px;
}

.custom-w-30-h-2-bg-var---brand-t-26672d {
    width: 30px;
    height: 2px;
    background-color: var(--brand-terracotta);
}

.custom-w-180-h-180 {
    width: 180px;
    height: 180px;
    transform: translate(30px, 30px);
}

.custom-style-d0c22501 {
    scroll-snap-type: x mandatory;
}

.custom-w-260-h-360 {
    width: 260px;
    height: 360px;
    scroll-snap-align: start;
}

.custom-style-df925ce4 {
    max-width: 420px;
}

.custom-w-200-h-200 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: -30px;
}

.custom-w-56-h-56 {
    width: 56px;
    height: 56px;
}

.custom-z-10 {
    top: 100px;
    z-index: 10;
}

.custom-h-auto {
    aspect-ratio: 1/1;
    height: auto;
}

.custom-h-52-w-auto-opacity-0_85 {
    height: 52px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.custom-h-28-w-auto-opacity-0_85 {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.custom-w-32-h-32-d-flex-align-ce-533a15 {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-style-bba1cddb {
    min-width: 24px;
    text-align: center;
}

.custom-style-87426703 {
    outline: none;
}

.custom-w-96-h-96 {
    width: 96px;
    height: 96px;
    object-fit: cover;
}

/* Fixes for collapsible panels that originally had inline styles */
.our-story-acc-panel,
#dr-insight-panel {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* --- SEMANTIC HEADER STYLES --- */
.header {
    position: fixed;
    width:100%;
    top: 0;
    background-color: rgba(253, 246, 237, 0.95);
    /* brand-cream bg-opacity-95 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 990;
    backdrop-filter: blur(10px);
}

.header__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo-img {
    height: 58px;
    width: 200px;
    width: auto;
    object-fit: contain;
}

.header__nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .header__nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
        /* gap-8 */
    }
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__cart-btn {
    position: relative;
    padding: 0.5rem;
    border-radius: 50%;
    color: #212529;
    /* text-dark */
    transition: var(--transition-smooth);
    text-decoration: none;
}

.header__cart-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    /* hover-light-bg */
}

.header__cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    left: auto;
    transform: translate(20%, -20%);
    border-radius: 50%;
    background-color: var(--brand-terracotta);
    color: #fff;
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {}

@media (min-width: 768px) {}


/* --- SEMANTIC HERO STYLES --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
}

.hero__bg-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, var(--brand-cream) 0%, rgba(212, 241, 232, 0.3) 50%, rgba(255, 229, 217, 0.4) 100%);
}

.hero__bg-right {
    display: none;
}

@media (min-width: 992px) {
    .hero__bg-left {
        width: 50%;
    }

    .hero__bg-right {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(135deg, var(--brand-forest) 0%, #0f3329 100%);
    }
}

.hero__background-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__blur-circle-1 {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.2;
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    background: var(--brand-lavender);
    animation: float 12s infinite ease-in-out;
}

.hero__blur-circle-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.3;
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: var(--brand-mint);
    animation: float 15s infinite ease-in-out;
    animation-delay: 2s;
}

.hero__container-main {
    position: relative;
    z-index: 2;
    width: 100%;

    padding: 0 4vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;

    align-items: center;
}

.hero__left-content {
    width: 100%;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .hero__left-content {
        width: 50%;
        padding-right: 3rem;
        margin-bottom: 0;
    }
}

.hero__title {
    font-size: 64px !important;
    line-height: 70px !important;
    color: #1b4d3e;
    font-weight: 900;
}

.hero__title {
    color: var(--brand-forest);
    margin-bottom: 1.5rem;

    font-weight: 900;
    font-family: var(--font-display);

}

@media (min-width: 1200px) {
    .hero__title {
        font-size: 4rem;
    }
}

.hero__description {
    font-size: 18px !important;
    color: #4a5568;
    line-height: 31px;
    margin-bottom: 2rem;
    font-family: Manrope, sans-serif;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero__btn-primary {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background-color: var(--brand-terracotta);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.hero__btn-primary:hover {
    background-color: #d16b50;
    color: #fff;
}

.hero__btn-secondary {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid var(--brand-forest);
    color: var(--brand-forest);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.hero__btn-secondary:hover {
    background-color: var(--brand-forest);
    color: #fff;
}

.hero__badges-grid {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__badge-card {
    background: #fff;
    border-radius: 16px;
    padding: 1rem 0.5rem;
    text-align: center;
    width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__badge-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.hero__badge-icon-wrapper--success {
    background-color: rgba(25, 135, 84, 0.1);
}

.hero__badge-icon-wrapper--primary {
    background-color: rgba(13, 110, 253, 0.1);
}

.hero__badge-icon-wrapper--warning {
    background-color: rgba(255, 193, 7, 0.1);
}

.hero__badge-icon {
    width: 20px;
    height: 20px;
}

.hero__badge-icon--success {
    color: #198754;
}

.hero__badge-icon--primary {
    color: #0d6efd;
}

.hero__badge-icon--warning {
    color: #ffc107;
}

.hero__badge-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-forest);
    line-height: 1.2;
}

.hero__inline-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
}

.hero__inline-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__inline-badge-icon {
    width: 14px;
    height: 14px;
}

.text-success {
    color: #198754;
}

.text-primary {
    color: #0d6efd;
}

.text-warning {
    color: #ffc107;
}

.text-info {
    color: #0dcaf0;
}

/* Right Carousel Styles */
.hero__right-carousel {
    width: 100%;
}

@media (min-width: 992px) {
    .hero__right-carousel {
        width: 50%;
    }
}

.hero-carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero__carousel-indicators-top {
    margin-bottom: 4rem;
}

.hero__carousel-stage {
    position: relative;
    width: 100%;
    height: 450px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transform: scale(0.65);
    transform-origin: center center;
}

@media (min-width: 1200px) {
    .hero__carousel-stage {
        transform: scale(0.7);
    }
}

@media (min-width: 1400px) {
    .hero__carousel-stage {
        transform: scale(0.8);
    }
}

@media (min-width: 1600px) {
    .hero__carousel-stage {
        transform: scale(0.9);
    }
}

@media (min-width: 1800px) {
    .hero__carousel-stage {
        transform: scale(1);
    }
}

.hero__carousel-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.hero__carousel-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero__carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero__carousel-btn:hover {
    background: #fff;
    color: var(--brand-forest);
    border-color: #fff;
}

/* --- SEMANTIC FOUNDER STYLES --- */
.founder {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--brand-cream) 0%, #ffffff 50%, rgba(212, 241, 232, 0.15) 100%);
}

.founder__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.founder__header {
    text-align: center;
    margin-bottom: 3rem;
}

.founder__subtitle {
    text-transform: uppercase;
    color: var(--brand-terracotta);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
}

    .founder__title {
        font-weight: 700;
        font-size: 56px !important;
        font-family: "Playfair Display", serif;
        line-height: 67px;
    }

@media (min-width: 1200px) {
       .founder__title {
        font-weight: 700;
        font-size: 56px !important;
        font-family: "Playfair Display", serif;
        line-height: 67px;
    }
}

.founder__title-highlight {
    color: var(--brand-terracotta);
}

.founder__description {
    color: #6c757d;
    margin-top: 1rem;
}

.founder__grid {
    display: grid;
    gap: 3rem;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .founder__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.founder__image-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 528px;
}

.founder__image-card {
    border-radius: 2rem;
    overflow: hidden;
    padding: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border: 4px solid #fff;
    background-color: #e3ede9;
    max-height: none !important;
}

.founder__image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    border-radius: 1rem;
}

.founder__badge {
    position: absolute;
    background-color: var(--brand-terracotta);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    border: 4px solid #fff;
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
    z-index: 5;
}

.founder__badge-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.founder__badge-label {
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    font-size: 9px;
}

.founder__bio {
    /* spacing handled by grid */
}

@media (min-width: 992px) {
    .founder__bio {
        padding-left: 1.5rem;
    }
}

.founder__bio-text {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founder__bio-lead {
    font-weight: 500;
    color: var(--brand-forest);
    line-height: 42px !important;
    font-size: 24px !important;
}
.founder__bio-highlight {
    font-style: italic;
    color: var(--brand-forest);
    font-weight: 500;
}

.founder__bio-link {
    color: var(--brand-terracotta);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--brand-terracotta);
    text-decoration-thickness: 2px;
}

.founder__quote-block {
    position: relative;
    border-radius: 2rem;
    padding: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border: 4px solid #fff;
    background-color: #e3ede9;
}

@media (min-width: 768px) {
    .founder__quote-block {
        padding: 3rem;
    }
}

.founder__quote-icon {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    color: var(--brand-terracotta);
    opacity: 0.1;
    width: 48px;
    height: 48px;
}

.founder__quote-text {
    font-size: 1.5rem;
    font-style: italic;
    font-family: var(--font-display);
    color: var(--brand-forest);
    margin-bottom: 1rem;
}

.founder__quote-author-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.founder__quote-line {
    border-top: 1px solid rgba(226, 125, 96, 0.3);
    /* brand-terracotta rgb */
    width: 40px;
    height: 1px;
}

.founder__quote-author {
    color: var(--brand-terracotta);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
}

.founder__cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.founder__cta-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border-radius: 50rem;
    font-size: 16px;
    /* Composes with btn-brand-terracotta */
}

.founder__metrics {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(33, 37, 41, 0.175);
}

.founder__metrics-title {
    text-transform: uppercase;
    color: var(--brand-terracotta);
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    font-size: 12px;
}

.founder__metrics-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media(min-width: 576px) {
    .founder__metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width: 992px) {
    .founder__metrics-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.founder__metric-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    text-align: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder__metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.founder__metric-icon-wrapper {
    border-radius: 0.5rem;
    background-color: rgba(46, 172, 142, 0.2);
    /* brand-mint rgb */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    width: 60px;
    height: 60px;
}

.founder__metric-icon {
  color: var(--brand-forest);
    width: 30px !important;
    height: 30px !important;
}

.founder__metric-title {
    font-weight: 700;
    color: var(--brand-forest);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.founder__metric-desc {
    color: #6c757d !important;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 25px !important;
    margin-bottom: 0;
}


/* --- SEMANTIC PRODUCTS PAGE STYLES --- */
.products-page {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--brand-cream);
    min-height: 100vh;
}

.products-page__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.products-page__header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-page__title {
    color: var(--brand-forest);
    margin-bottom: 1rem;
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 700;
    font-family: var(--font-display);
}

@media (min-width: 1200px) {
    .products-page__title {
        font-size: 4rem;
    }
}

.products-page__description {
    color: #6c757d;
    max-width: 100%;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.75;
}

.products-page__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.products-page__filter-btn {
    border: none;
    border-radius: 50rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.6);
    color: #6c757d;
    cursor: pointer;
}

.products-page__filter-btn:hover {
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.products-page__filter-btn--active {
    background-color: var(--brand-terracotta) !important;
    color: #fff !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.products-page__count {
    text-align: center;
    color: #6c757d;
    font-size: 0.875em;
    margin-bottom: 3rem;
}

.products-page__grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .products-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .products-page__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.products-page__grid-col {
    display: flex;
    flex-direction: column;
}

.products-page__cta {
    background: linear-gradient(to right, var(--brand-cream), #ffffff);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.products-page__cta-title {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.products-page__cta-desc {
    color: #6c757d;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
}

.products-page__cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background-color: var(--brand-terracotta);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.products-page__cta-btn:hover {
    background-color: #d16b50;
    color: #fff;
}

/* --- SEMANTIC HOME PRODUCTS STYLES --- */
.home-products {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
    background-color: var(--brand-cream);
}

.home-products__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.home-products__header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-products__subtitle {
    text-transform: uppercase;
    color: var(--brand-terracotta);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
}

.home-products__title {
    font-size: calc(1.475rem + 2.7vw);
    color: var(--brand-forest);
    margin-top: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
}

@media (min-width: 1200px) {
    .home-products__title {
        font-size: 3rem;
    }
}

.home-products__title-highlight {
    color: var(--brand-terracotta);
}

.home-products__description {
    color: #6c757d;
    max-width: 100%;
    margin: 1rem auto 0 auto;
}

.home-products__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .home-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .home-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-products__trust-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .home-products__trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-products__trust-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    text-align: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
}

.home-products__trust-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.home-products__trust-title {
    font-weight: 700;
    color: var(--brand-forest);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.home-products__trust-desc {
    color: #6c757d;
    font-size: 0.875em;
    line-height: 1.75;
    margin-bottom: 0;
}


/* --- SEMANTIC PRODUCT DETAIL PAGE STYLES --- */
.product-detail-page {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--brand-cream);
    min-height: 100vh;
}

.product-detail-page__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.product-detail-page__top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-detail-page__gallery {
    width: 100%;
}

@media (min-width: 992px) {
    .product-detail-page__gallery {
        width: calc(50% - 1.5rem);
    }
}

.product-detail-page__info {
    width: 100%;
}

@media (min-width: 992px) {
    .product-detail-page__info {
        width: calc(50% - 1.5rem);
    }
}

.product-detail-page__gallery-main-wrapper {
    position: relative;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: 0;
    overflow: hidden;
    text-align: center;
    height: 580px;
    width: 580px;
}

.product-detail-page__save-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--brand-terracotta);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50rem;
    font-size: 0.875em;
    font-weight: 700;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    z-index: 5;
}

.product-detail-page__gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-detail-page__thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.product-detail-page__thumb-btn {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.product-detail-page__thumb-btn:hover,
.product-detail-page__thumb-btn.active {
    border-color: var(--brand-forest);
}

.product-detail-page__thumb-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-detail-page__category-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 50rem;
    font-size: 0.875em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-detail-page__title {
    color: var(--brand-forest);
    font-size: calc(1.475rem + 2.7vw);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 1200px) {
    .product-detail-page__title {
        font-size: 3rem;
    }
}

.product-detail-page__availability {
    padding-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-detail-page__availability-label {
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-detail-page__availability-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.product-detail-page__apollo-logo {
    height: 32px;
    width: auto;
    opacity: 0.85;
}

.product-detail-page__medplus-logo {
    height: 24px;
    width: auto;
    opacity: 0.85;
}

.product-detail-page__rating {
    display: flex;
    gap: 0.125rem;
    color: var(--brand-terracotta);
    margin-bottom: 1rem;
}

.product-detail-page__rating svg {
    width: 1.25rem;
    height: 1.25rem;
}

.product-detail-page__price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-detail-page__price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-forest);
}

.product-detail-page__price-original {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 1rem;
}

.product-detail-page__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-detail-page__badge {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(33, 37, 41, 0.175);
    border-radius: 50rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75em;
    font-weight: 600;
    color: var(--brand-forest);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-detail-page__badge i {
    width: 0.875rem;
    height: 0.875rem;
}

.product-detail-page__description {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.product-detail-page__quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-detail-page__quantity-label {
    color: #6c757d;
    font-weight: 500;
}

.product-detail-page__quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    border-radius: 50rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    padding: 0.25rem 1rem;
}

.product-detail-page__quantity-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-detail-page__quantity-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.product-detail-page__quantity-btn i {
    width: 1rem;
    height: 1rem;
}

.product-detail-page__quantity-value {
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0 0.5rem;
}

.product-detail-page__add-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 50rem;
    background-color: var(--brand-terracotta);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    margin-bottom: 1.5rem;
}

.product-detail-page__add-btn:hover {
    background-color: #d16b50;
    transform: translateY(-2px);
}

.product-detail-page__insight-panel {
    border: 1px solid rgba(33, 37, 41, 0.175);
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.product-detail-page__insight-trigger {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.product-detail-page__insight-trigger:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.product-detail-page__insight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-detail-page__insight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--brand-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.product-detail-page__insight-icon i {
    width: 1.25rem;
    height: 1.25rem;
}

.product-detail-page__insight-title {
    font-weight: 700;
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-size: 1rem;
}

.product-detail-page__insight-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-forest);
    transition: var(--transition-smooth);
}

.product-detail-page__insight-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-top: 1px solid rgba(33, 37, 41, 0.1);
}

.product-detail-page__insight-content-inner {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
}

.product-detail-page__insight-text {
    color: #6c757d;
    font-size: 0.875em;
    font-style: italic;
    line-height: 1.75;
    margin: 0;
}

/* Tabs */
.product-detail-page__tabs-wrapper {
    border-bottom: 1px solid rgba(33, 37, 41, 0.175);
    margin-bottom: 1.5rem;
}

.product-detail-page__tabs.nav-tabs {
    border-bottom: none;
}

.product-detail-page__tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
    overflow-x: auto;
}

.product-detail-page__tab-btn,
.nav-tabs .nav-link.product-detail-page__tab-btn {
    background: transparent !important;
    border: none !important;
    padding: 1rem 0 !important;
    color: #6c757d !important;
    font-weight: 600;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;

    background: transparent;
    border: none;
    padding: 1rem 0;
    color: #6c757d;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.product-detail-page__tab-btn:hover {
    color: var(--brand-forest);
}

.product-detail-page__tab-btn.active,
.nav-tabs .nav-link.product-detail-page__tab-btn.active {
    color: var(--brand-terracotta) !important;
    border-bottom-color: var(--brand-terracotta) !important;

    color: var(--brand-terracotta);
    border-bottom-color: var(--brand-terracotta);
}

.product-detail-page__tabs-content {
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.product-detail-page__credibility {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 1.5rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.product-detail-page__credibility-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .product-detail-page__credibility-inner {
        flex-direction: row;
        text-align: left;
    }
}

.product-detail-page__credibility-avatar {
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    width: 96px;
    height: 96px;
    object-fit: cover;
}

.product-detail-page__credibility-text {
    color: #6c757d;
    font-size: 0.875em;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.product-detail-page__credibility-highlight {
    color: var(--brand-forest);
}

.product-detail-page__credibility-link {
    color: var(--brand-terracotta);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.875em;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.product-detail-page__credibility-link:hover {
    text-decoration: underline;
}

.product-detail-page__credibility-link i {
    width: 1rem;
    height: 1rem;
}

.product-detail-page__related-title {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}


/* --- SEMANTIC OUR STORY PAGE STYLES --- */
.our-story-page {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--brand-cream);
    min-height: 100vh;
}

.our-story-page__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.our-story-page__header {
    text-align: center;
    margin-bottom: 4rem;
}

.our-story-page__title {
    font-family: "Playfair Display", serif;
        font-size: 64px;
        line-height: 77px;
        font-weight:700;
        color: #1b4d3e;
}

@media (min-width: 1200px) {
    .our-story-page__title {
        font-size:64px;
    }
}

.our-story-page__description {
    color: #6c757d;
    margin: 0 auto !important;
    font-weight: 400;
    text-align:center;
    align-items:center;
    width:600px;
    font-size: 20px !important;
    line-height: 35px !important;
}

.our-story-page__welcome {
    background-color: #fff;
    border-radius: 2rem;
    padding: 3rem 1.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(33, 37, 41, 0.175);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .our-story-page__welcome {
        padding: 4rem 3rem;
    }
}

.our-story-page__welcome-content {
    flex: 1 1 100%;
}

@media (min-width: 992px) {
    .our-story-page__welcome-content {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

.our-story-page__welcome-badge {
   display: inline-block;
    background-color: rgba(255, 193, 7, 0.25);
    color: #664d03;
    text-transform: uppercase;
    line-height: 16px;
    font-weight: 700;
    font-size: 10px;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    margin-bottom: 1.5rem;
}

.our-story-page__welcome-title {
    color: var(--brand-forest);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 38px;
    font-size: 32px;
}

.our-story-page__welcome-divider {
    height: 4px;
    width: 80px;
    background-color: var(--brand-terracotta);
    margin-bottom: 1.5rem;
}

.our-story-page__welcome-text {
    font-size: 20px;
    color: #6c757d;
    font-family: Manrope, sans-serif;
    line-height: 35px !important;
    font-weight: 300;
}

.our-story-page__welcome-image-wrapper {
    flex: 1 1 100%;
    position: relative;
}

@media (min-width: 992px) {
    .our-story-page__welcome-image-wrapper {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

.our-story-page__welcome-image-inner {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    height: 340px;
    position: relative;
    z-index: 2;
}

.our-story-page__welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-story-page__welcome-image-backdrop {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 120px;
    height: 120px;
    background-color: var(--brand-mint);
    border-radius: 1rem;
    z-index: 1;
}

.our-story-page__philosophy {
    background-color: rgba(43, 114, 84, 0.1);
    border-radius: 2rem;
    padding: 3rem 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .our-story-page__philosophy {
        padding: 4rem 3rem;
    }
}

.our-story-page__section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.our-story-page__section-title {
    color: var(--brand-forest);
    font-family: "Playfair Display", serif;
    line-height: 48px;
    font-weight: 700;
    font-size: 40px;
}

.our-story-page__section-subtitle {
        color: #6c757d;
    font-size: 14px;
    font-family: Manrope, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 21px !important;
    font-weight: 700;
}

.our-story-page__philosophy-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .our-story-page__philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.our-story-page__philosophy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.our-story-page__philosophy-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--brand-mint);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-forest);
}

.our-story-page__philosophy-icon i {
    width: 2rem;
    height: 2rem;
}

.our-story-page__philosophy-name {
   font-weight: 700;
    color: var(--brand-forest);
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin: 0;
}

.our-story-page__philosophy-desc {
        color: #6c757d;
    font-size: 14px;
    font-family: Manrope, sans-serif;
    font-weight: 400;
}

.our-story-page__details-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .our-story-page__details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.our-story-page__details-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.our-story-page__details-title {
    color: var(--brand-forest);
    font-weight: 700;
    font-size:20px;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.our-story-page__details-accent {
    width: 30px;
    height: 2px;
    background-color: var(--brand-terracotta);
}

.our-story-page__details-text {
        color: #6c757d;
    font-size: 14px;
    line-height: 25px !important;
    font-family:Manrope, sans-serif;
    margin: 0;
}

.our-story-page__quote-card {
    background-color: var(--brand-forest);
    color: #fff;
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .our-story-page__quote-card {
        padding: 3rem;
    }
}

.our-story-page__quote-content {
    position: relative;
    z-index: 3;
    max-width: 72rem;
}

.our-story-page__quote-text {
    font-size: 24px;
    font-style: italic;
    font-family: var(--font-display);
    line-height: 42px !important;
    margin: 0;
}

.our-story-page__quote-icon {
    position: absolute;
    right: 1rem;
    bottom: 0;
    color: #fff;
    opacity: 0.1;
    width: 180px;
    height: 180px;
}

.our-story-page__glance {
    background-color: #fff;
    border-radius: 2rem;
    padding: 3rem 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .our-story-page__glance {
        padding: 4rem 3rem;
    }
}

.our-story-page__glance-scroll {
    display: flex;
    overflow-x: auto;
    padding-bottom: 1rem;
    gap: 1.5rem;
    scrollbar-width: none;
}

.our-story-page__glance-scroll::-webkit-scrollbar {
    display: none;
}

.our-story-page__glance-card {
    flex-shrink: 0;
    width: 260px;
    height: 360px;
    border: 1px solid rgba(33, 37, 41, 0.175);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.our-story-page__glance-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-opacity: 0.35;
}

.our-story-page__glance-icon-wrap i {
    width: 1.25rem;
    height: 1.25rem;
}

.bg-brand-peach {
    background-color: rgba(245, 230, 211, 0.35);
}

.bg-brand-lavender {
    background-color: rgba(230, 230, 250, 0.35);
}

.bg-brand-mint {
    background-color: rgba(43, 114, 84, 0.15);
}

.our-story-page__glance-name {
    font-weight: 700;
    color: var(--brand-forest);
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.our-story-page__glance-tag {
    color: var(--brand-terracotta);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.55rem;
    margin-bottom: 1rem;
    display: block;
}

.our-story-page__glance-desc {
    color: #6c757d;
    font-size: 0.875em;
    line-height: 1.75;
    flex-grow: 1;
    margin: 0;
}

.our-story-page__glance-footer {
    border-top: 1px solid rgba(33, 37, 41, 0.175);
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.our-story-page__glance-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #6c757d;
}

.our-story-page__glance-stat span {
    text-transform: uppercase;
    font-weight: 600;
}

.our-story-page__glance-stat strong {
    color: var(--brand-forest);
    font-weight: 700;
}

.our-story-page__founder {
    background-color: #fff;
    border-radius: 2rem;
    padding: 3rem 1.5rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .our-story-page__founder {
        padding: 4rem 3rem;
    }
}

.our-story-page__founder-heading {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-size: 48px !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.our-story-page__founder-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.our-story-page__founder-photo {
    flex: 1 1 100%;
}

.our-story-page__founder-info {
    flex: 1 1 100%;
}

@media (min-width: 992px) {
    .our-story-page__founder-photo {
        flex: 1 1 calc(41.666% - 1.5rem);
    }

    .our-story-page__founder-info {
        flex: 1 1 calc(58.333% - 1.5rem);
    }
}

.our-story-page__founder-photo-inner {
    position: relative;
    margin: 0 auto;
    max-width: 400px;
}

.our-story-page__founder-photo-frame {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: rgba(43, 114, 84, 0.15);
    padding: 0.5rem;
}

.our-story-page__founder-photo-frame img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
}

.our-story-page__founder-photo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(245, 230, 211, 0.5);
    filter: blur(40px);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.our-story-page__founder-name {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px !important;
    margin-bottom: 0.25rem;
}

.our-story-page__founder-title {
    color: var(--brand-terracotta);
    font-weight: 600;
    margin-bottom: 16px;
}

.our-story-page__founder-bio {
        font-size: 20px;
    color: #6c757d;
    line-height: 35px !important;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.our-story-page__accordions {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.our-story-acc {
    border-bottom: 1px solid rgba(33, 37, 41, 0.175);
}

.our-story-acc-btn {
    width: 100%;
    padding: 1rem 0;
    border: none;
    background: transparent !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.our-story-acc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.our-story-acc-header i {
    color: var(--brand-terracotta);
    width: 1.25rem;
    height: 1.25rem;
}

.our-story-acc-header span {
   color: var(--brand-forest);
    font-weight: 700;
    font-size: 16px;
    line-height:24px;
}
svg {
    vertical-align: middle;
    
}

.our-story-acc-chevron {
    width: 1.25rem;
    height: 1.25rem;
    transition: var(--transition-smooth);
}

.our-story-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.our-story-acc-content {
    padding-bottom: 1rem;
    padding-left: 2.25rem;
    color: #6c757d;
    font-size: 0.875em;
}

.our-story-acc-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.our-story-acc-content p {
    margin: 0;
    line-height: 1.75;
}

.our-story-page__timeline-wrapper {
    padding-top: 3rem;
    border-top: 1px solid rgba(33, 37, 41, 0.175);
}

.our-story-page__timeline-heading {
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brand-terracotta);
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 3rem;
}

.our-story-page__timeline-desktop {
    display: none;
    position: relative;
    padding: 1rem 0;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .our-story-page__timeline-desktop {
        display: flex;
    }
}

.our-story-page__timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(33, 37, 41, 0.175);
    z-index: 0;
}

.our-story-page__timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1;
    background-color: #fff;
    padding: 0 1rem;
}

.our-story-page__timeline-dot {
    background-color: #fff;
    border: 2px solid var(--brand-forest);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-forest);
}

.our-story-page__timeline-text {
    text-align: center;
}

.our-story-page__timeline-text strong {
    display: block;
    color: var(--brand-forest);
    font-size: 20px;
    font-family: var(--font-display);
}

.our-story-page__timeline-text span {
    color: #6c757d;
    font-size: 14px;
}

.our-story-page__timeline-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 1rem;
}

@media (min-width: 992px) {
    .our-story-page__timeline-mobile {
        display: none;
    }
}

.our-story-page__timeline-mobile-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.our-story-page__timeline-mobile-dot {
    background-color: var(--brand-terracotta);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.our-story-page__vision-mission {
    background-color: var(--brand-forest);
    color: #fff;
    border-radius: 2rem;
    padding: 3rem 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .our-story-page__vision-mission {
        padding: 4rem 3rem;
    }
}

.our-story-page__vision-mission-heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
}

.our-story-page__vision-mission-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .our-story-page__vision-mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.our-story-page__vision,
.our-story-page__mission {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .our-story-page__vision {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 1.5rem;
    }
}

.our-story-page__vision-icon,
.our-story-page__mission-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-story-page__vision-icon {
    color: var(--brand-peach) !important;
}

.our-story-page__mission-icon {
    color: var(--brand-mint);
}

.our-story-page__vision-title {
    color: var(--brand-peach);
    font-family: var(--font-display);
    font-weight: 700;
    font-size:28px !important;
}

.our-story-page__mission-title {
    color: var(--brand-mint);
    font-family: var(--font-display);
    font-weight: 700;
}

.our-story-page__vision-text,
.our-story-page__mission-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    font-size:16px;
    margin: 0;
}

.our-story-page__vision-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--brand-peach);
    opacity: 0.6;
    font-family: var(--font-display);
    margin-top: 1rem;
}

.our-story-page__promises {
    margin-bottom: 4rem;
}

.our-story-page__promises-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .our-story-page__promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .our-story-page__promises-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.our-story-page__promise-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.our-story-page__promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.our-story-page__promise-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(43, 114, 84, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-forest);
}

.our-story-page__promise-title {
    font-weight: 700;
    color: var(--brand-forest);
    font-size: 1.25rem;
    margin: 0;
}

.our-story-page__promise-desc {
    color: #6c757d;
    font-size: 0.875em;
    margin: 0;
}

.our-story-page__legacy {
    text-align: center;
}

.our-story-page__legacy-content {
    max-width: 48rem;
    margin: 0 auto;
}

.our-story-page__legacy-text {
    font-size: 1.5rem;
    color: #6c757d;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 3rem;
}

.our-story-page__legacy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.our-story-page__btn-primary {
    background-color: var(--brand-terracotta);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.our-story-page__btn-primary:hover {
    background-color: #d16b50;
    color: #fff;
}

.our-story-page__btn-secondary {
    border: 2px solid var(--brand-forest);
    color: var(--brand-forest);
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.our-story-page__btn-secondary:hover {
    background-color: var(--brand-forest);
    color: #fff;
}


/* --- SEMANTIC KNOWLEDGE HUB STYLES --- */
.knowledge-hub-page {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--brand-cream);
    min-height: 100vh;
}

.knowledge-hub-page__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.knowledge-hub-page__header {
    text-align: center;
    margin-bottom: 4rem;
}

.knowledge-hub-page__title {
    color: var(--brand-forest);
    margin-bottom: 1rem;
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 700;
    font-family: var(--font-display);
}

@media (min-width: 1200px) {
    .knowledge-hub-page__title {
        font-size: 4rem;
    }
}

.knowledge-hub-page__description {
    color: #6c757d;
    max-width: 100%;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.75;
}

.knowledge-hub-page__section-title {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.knowledge-hub-page__section-subtitle {
    color: #6c757d;
    font-size: 0.875em;
    margin: 0;
}

.knowledge-hub-page__youtube-section {
    margin: 3rem 0;
    padding: 1.5rem 0;
}

.knowledge-hub-page__youtube-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

@media (min-width: 576px) {
    .knowledge-hub-page__youtube-header {
        flex-direction: row;
        align-items: center;
    }
}

.knowledge-hub-page__youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ff0000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.knowledge-hub-page__youtube-link:hover {
    background-color: #d80000;
    color: #fff;
}

.knowledge-hub-page__youtube-link i {
    width: 1.25rem;
    height: 1.25rem;
}

.knowledge-hub-page__youtube-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.knowledge-hub-page__youtube-loader {
    text-align: center;
    padding: 3rem 0;
    color: #6c757d;
}

.knowledge-hub-page__youtube-loader p {
    font-size: 0.875em;
    margin: 0;
}

.knowledge-hub-page__youtube-error {
    text-align: center;
    padding: 3rem 0;
    color: #6c757d;
}

.knowledge-hub-page__youtube-error span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.knowledge-hub-page__youtube-error p {
    font-size: 0.875em;
    margin-bottom: 1.5rem;
}

.knowledge-hub-page__youtube-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .knowledge-hub-page__youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .knowledge-hub-page__youtube-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.knowledge-hub-page__featured {
    margin: 3rem 0;
    padding: 1.5rem 0;
}

.knowledge-hub-page__featured-card {
    background-color: #fff;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(33, 37, 41, 0.175);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.knowledge-hub-page__featured-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.knowledge-hub-page__featured-image-col {
    width: 100%;
    height: 380px;
}

@media (min-width: 992px) {
    .knowledge-hub-page__featured-image-col {
        width: 58.333%;
    }
}

.knowledge-hub-page__featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.knowledge-hub-page__featured-content {
    width: 100%;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .knowledge-hub-page__featured-content {
        padding: 3rem;
    }
}

@media (min-width: 992px) {
    .knowledge-hub-page__featured-content {
        width: 41.666%;
    }
}

.knowledge-hub-page__article-tag {
    color: var(--brand-terracotta);
    font-size: 0.875em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.knowledge-hub-page__featured-title {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.knowledge-hub-page__featured-desc {
    color: #6c757d;
    font-size: 0.875em;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.knowledge-hub-page__article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #6c757d;
    font-size: 0.875em;
    margin-bottom: 1.5rem;
}

.knowledge-hub-page__article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.knowledge-hub-page__article-meta i {
    width: 1rem;
    height: 1rem;
}

.knowledge-hub-page__btn-read {
    background-color: var(--brand-terracotta);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.knowledge-hub-page__btn-read:hover {
    background-color: #d16b50;
}

.knowledge-hub-page__btn-read i {
    width: 1rem;
    height: 1rem;
}

.knowledge-hub-page__articles {
    margin: 3rem 0;
    padding: 1.5rem 0;
}

.knowledge-hub-page__articles-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .knowledge-hub-page__articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .knowledge-hub-page__articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.knowledge-hub-page__article-col {
    display: flex;
    flex-direction: column;
}

.knowledge-hub-page__article-card {
    height: 100%;
    border: 1px solid rgba(33, 37, 41, 0.175);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    transition: var(--transition-smooth);
}

.knowledge-hub-page__article-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.knowledge-hub-page__article-image-wrap {
    position: relative;
    height: 200px;
}

.knowledge-hub-page__article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.knowledge-hub-page__article-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50rem;
    font-size: 0.75rem;
    color: var(--brand-forest);
    font-weight: 500;
}

.knowledge-hub-page__article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.knowledge-hub-page__article-title {
    color: var(--brand-forest);
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.knowledge-hub-page__article-desc {
    color: #6c757d;
    font-size: 0.875em;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.knowledge-hub-page__btn-link {
    color: var(--brand-terracotta);
    font-weight: 700;
    border: none;
    background: transparent !important;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    transition: var(--transition-smooth);
}

.knowledge-hub-page__btn-link:hover {
    color: #d16b50;
}

.knowledge-hub-page__btn-link i {
    width: 1rem;
    height: 1rem;
}

.knowledge-hub-page__newsletter {
    background-color: #fff;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    background-color: #2b7254;
    /* Match brand-forest */
}

.knowledge-hub-page__newsletter-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    width: 250px;
    height: 250px;
}

.knowledge-hub-page__newsletter-glow--1 {
    background-color: #d16b50;
    top: -50px;
    left: -50px;
}

.knowledge-hub-page__newsletter-glow--2 {
    background-color: #2b7254;
    bottom: -50px;
    right: -50px;
}

.knowledge-hub-page__newsletter-content {
    position: relative;
    z-index: 3;
    max-width: 36rem;
    margin: 0 auto;
}

.knowledge-hub-page__newsletter-title {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.knowledge-hub-page__newsletter-desc {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.knowledge-hub-page__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) {
    .knowledge-hub-page__newsletter-form {
        flex-direction: row;
        justify-content: center;
    }
}

.knowledge-hub-page__newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    flex: 1;
}

.knowledge-hub-page__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.knowledge-hub-page__newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

.knowledge-hub-page__newsletter-btn {
    background-color: var(--brand-terracotta);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.knowledge-hub-page__newsletter-btn:hover {
    background-color: #d16b50;
}


/* --- SEMANTIC CART PAGE STYLES --- */
.cart-page {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--brand-cream);
    min-height: 100vh;
}

.cart-page__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.cart-page__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875em;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.cart-page__breadcrumb-link {
    color: #6c757d;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cart-page__breadcrumb-link:hover {
    color: var(--brand-forest);
}

.cart-page__breadcrumb i {
    width: 1rem;
    height: 1rem;
}

.cart-page__breadcrumb-current {
    color: var(--brand-forest);
    font-weight: 500;
}

.cart-page__header {
    margin-bottom: 3rem;
}

.cart-page__title {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: calc(1.525rem + 3.3vw);
    margin-bottom: 0.5rem;
}

@media (min-width: 1200px) {
    .cart-page__title {
        font-size: 4rem;
    }
}

.cart-page__count {
    color: #6c757d;
    font-size: 0.875em;
    margin: 0;
}

.cart-page__empty {
    text-align: center;
    padding: 3rem 0;
    margin: 3rem 0;
}

.cart-page__empty-icon-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(43, 114, 84, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cart-page__empty-icon {
    width: 56px;
    height: 56px;
    color: var(--brand-forest);
    opacity: 0.35;
}

.cart-page__empty-title {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cart-page__empty-text {
    color: #6c757d;
    font-size: 0.875em;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
}

.cart-page__btn-primary {
    background-color: var(--brand-terracotta);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.cart-page__btn-primary:hover {
    background-color: #d16b50;
    color: #fff;
}

.cart-page__btn-primary i {
    width: 1rem;
    height: 1rem;
}

.cart-page__content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.cart-page__items-col {
    width: 100%;
}

.cart-page__summary-col {
    width: 100%;
}

@media (min-width: 992px) {
    .cart-page__items-col {
        width: calc(65% - 1.25rem);
    }

    .cart-page__summary-col {
        width: calc(35% - 1.25rem);
    }
}

.cart-page__items-header {
    display: none;
    color: #6c757d;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .cart-page__items-header {
        display: flex;
    }
}

.cart-page__col-product {
    width: 50%;
}

.cart-page__col-price {
    width: 16.666%;
    text-align: center;
}

.cart-page__col-qty {
    width: 16.666%;
    text-align: center;
}

.cart-page__col-total {
    width: 16.666%;
    text-align: right;
}

.cart-page__items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Cart Item dynamic CSS */
.cart-page__item {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    position: relative;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .cart-page__item {
        flex-wrap: nowrap;
    }
}

.cart-page__item-product {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .cart-page__item-product {
        width: 50%;
    }
}

.cart-page__item-image-wrap {
    width: 80px;
    height: 80px;
    background-color: var(--brand-cream);
    border-radius: 0.5rem;
    padding: 0.5rem;
    flex-shrink: 0;
}

.cart-page__item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-page__item-details {
    display: flex;
    flex-direction: column;
}

.cart-page__item-name {
    color: var(--brand-forest);
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
    text-decoration: none;
    font-size: 1.125rem;
}

.cart-page__item-category {
    color: #6c757d;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.cart-page__item-price {
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: var(--brand-forest);
}

@media (min-width: 768px) {
    .cart-page__item-price {
        width: 16.666%;
        text-align: center;
    }
}

.cart-page__item-qty {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .cart-page__item-qty {
        width: 16.666%;
        justify-content: center;
    }
}

.cart-page__qty-controls {
    display: flex;
    align-items: center;
    background-color: rgba(33, 37, 41, 0.05);
    border-radius: 50rem;
    padding: 0.25rem;
}

.cart-page__qty-btn {
    border: none;
    background: transparent;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--brand-forest);
    transition: var(--transition-smooth);
}

.cart-page__qty-btn:hover {
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.cart-page__qty-btn i {
    width: 0.875rem;
    height: 0.875rem;
}

.cart-page__qty-val {
    width: 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875em;
    color: var(--brand-forest);
}

.cart-page__item-total {
    width: 100%;
    text-align: right;
    font-weight: 700;
    color: var(--brand-forest);
}

@media (min-width: 768px) {
    .cart-page__item-total {
        width: 16.666%;
    }
}

.cart-page__item-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .cart-page__item-remove {
        top: 50%;
        transform: translateY(-50%);
        right: -2rem;
    }
}

.cart-page__item-remove:hover {
    color: #dc3545;
}

.cart-page__item-remove i {
    width: 1.25rem;
    height: 1.25rem;
}

.cart-page__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.cart-page__link-continue {
    color: var(--brand-forest);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.cart-page__link-continue:hover {
    color: var(--brand-terracotta);
}

.cart-page__link-continue i {
    width: 1rem;
    height: 1rem;
}

.cart-page__btn-clear {
    border: none;
    background: transparent;
    color: #fff !important;
    font-size: 0.875em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-page__btn-clear:hover {
    color: #fff !important;
    opacity: 0.9;
}

/* Always show quantity spinners */
.cart-page__qty-val[type="number"]::-webkit-inner-spin-button,
.cart-page__qty-val[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
}

.cart-page__sticky-wrap {
    position: sticky;
    top: 6rem;
}

.cart-page__summary-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.cart-page__summary-title {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(33, 37, 41, 0.175);
}

.cart-page__summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.875em;
}

.cart-page__summary-row--total {
    color: var(--brand-forest);
    font-size: 1.25rem;
    font-weight: 700;
    border-top: 1px solid rgba(33, 37, 41, 0.175);
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.cart-page__summary-row--discount {
    color: var(--brand-terracotta);
}

.cart-page__btn-checkout {
    width: 100%;
    background-color: var(--brand-terracotta);
    color: #fff;
    padding: 0.75rem;
    border-radius: 50rem;
    border: none;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cart-page__btn-checkout:hover {
    background-color: #d16b50;
}

.cart-page__btn-checkout i {
    width: 1.25rem;
    height: 1.25rem;
}

.cart-page__trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.cart-page__trust-badge {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(33, 37, 41, 0.175);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.cart-page__trust-badge i {
    color: var(--brand-forest);
    width: 1.25rem;
    height: 1.25rem;
    margin-bottom: 0.5rem;
}

.cart-page__trust-badge span {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.6rem;
}



/* --- SEMANTIC CONTACT PAGE STYLES --- */
.contact-page {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--brand-cream);
    min-height: 100vh;
}

.contact-page__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.contact-page__header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-page__title {
   font-family: "Playfair Display", serif;
        font-size: 64px;
        line-height: 77px;
        font-weight:700;
        color: #1b4d3e;
}

@media (min-width: 1200px) {
    .contact-page__title {
        font-size: 64px;
    }
}

.contact-page__description {
    color: #6c757d;
    margin: 0 auto;
    font-weight: 400;
    font-size: 20px !important;
    line-height: 35px !important;
}

.contact-page__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.contact-page__col {
    width: 100%;
}

@media (min-width: 992px) {
    .contact-page__col {
        width: calc(50% - 1.5rem);
    }
}

.contact-page__card {
    background-color: #fff;
    border-radius: 2rem;
    padding: 1.5rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .contact-page__card--form {
        padding: 3rem;
        height: 100%;
    }

    .contact-page__card--detail {
        padding: 1.5rem;
    }
}

.contact-page__card-title {
    color: var(--brand-forest);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 35px;
    font-size: 28px;
    margin-bottom: 1.5rem;
}

.contact-page__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-page__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-page__label {
    font-size: 0.875em;
    font-weight: 600;
    color: #6c757d;
}

.contact-page__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(33, 37, 41, 0.2);
    border-radius: 0.5rem;
    background-color: #fff;
    transition: var(--transition-smooth);
    font-family: inherit;
    font-size: 1rem;
}

.contact-page__input:focus {
    outline: none;
    border-color: var(--brand-forest);
    box-shadow: 0 0 0 0.25rem rgba(43, 114, 84, 0.25);
}

.contact-page__form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-page__checkbox {
    width: 1.125rem;
    height: 1.125rem;
    margin: 0;
    accent-color: var(--brand-forest);
}

.contact-page__label-inline {
    font-size: 0.875em;
    color: #6c757d;
    cursor: pointer;
}

.contact-page__btn-submit {
    background-color: var(--brand-terracotta);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 50rem;
    font-weight: 600;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    cursor: pointer;
    width: 100%;
    margin-top: 0.5rem;
}

.contact-page__btn-submit:hover {
    background-color: #d16b50;
}

.contact-page__btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-page__details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    justify-content: space-between;
}

.contact-page__detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-page__detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page__detail-icon--peach {
    background-color: rgba(245, 230, 211, 0.35);
    color: var(--brand-terracotta);
}

.contact-page__detail-icon i {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-page__detail-title {
color: #1b4d3e;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
}

.contact-page__detail-link {
        font-family: Manrope, sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #6c757d;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-page__detail-link:hover {
    color: var(--brand-terracotta);
}

.contact-page__phones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.contact-page__phone-link {
    color: #6c757d;
    font-size: 14px !important;
    line-height: 21px;
    font-weight: 400;
    font-family: Manrope, sans-serif;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
}

.contact-page__phone-link:hover {
    color: var(--brand-terracotta);
}

.contact-page__address-text {
    color: #6c757d;
    font-size: 14px !important;
    line-height: 21px;
    font-weight: 400;
    font-family: Manrope, sans-serif;
    margin-bottom: 1rem;
}

.contact-page__address-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact-page__btn-maps {
    background-color: var(--brand-forest);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50rem;
    text-decoration: none;
    font-family:Manrope, sans-serif;
    font-size: 15px !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.contact-page__btn-maps:hover {
    background-color: #1e523c;
    color: #fff;
}

.contact-page__btn-maps i {
    width: 1rem;
    height: 1rem;
}

.contact-page__qr-code {
    width: 80px;
    height: 80px;
    background-color: #fff;
    padding: 0.25rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(33, 37, 41, 0.175);
}

.contact-page__qr-code img {
    width: 100%;
    height: 100%;
}

.contact-page__extra-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-page__extra-col {
    width: 100%;
}

@media (min-width: 768px) {
    .contact-page__extra-col {
        width: calc(50% - 0.75rem);
    }
}

.contact-page__card--links {
    height: 100%;
}

.contact-page__links-title {
    color: var(--brand-forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-page__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-page__link-item {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.875em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.contact-page__link-item:hover {
    color: var(--brand-terracotta);
}

.contact-page__link-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-terracotta);
    flex-shrink: 0;
}

.contact-page__map-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(33, 37, 41, 0.175);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.contact-page__map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* --- SEMANTIC HOME KNOWLEDGE STYLES --- */
.home-knowledge {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.home-knowledge__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.home-knowledge__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .home-knowledge__header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.home-knowledge__title-wrapper {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .home-knowledge__title-wrapper {
        margin-bottom: 0;
    }
}

.home-knowledge__subtitle {
    text-transform: uppercase;
    color: var(--brand-terracotta);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
}

.home-knowledge__title {
    font-size: calc(1.475rem + 2.7vw);
    color: var(--brand-forest);
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
}

@media (min-width: 1200px) {
    .home-knowledge__title {
        font-size: 3rem;
    }
}

.home-knowledge__title-highlight {
    color: var(--brand-terracotta);
}

.home-knowledge__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    /* Composes with nav-link-custom if needed */
}

.home-knowledge__view-all-icon {
    width: 1rem;
    height: 1rem;
}

.home-knowledge__grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .home-knowledge__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-knowledge__card {
    height: 100%;
    border: 1px solid rgba(33, 37, 41, 0.175);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-knowledge__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.home-knowledge__image-wrapper {
    position: relative;
    height: 220px;
}

.home-knowledge__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-knowledge__card:hover .home-knowledge__image {
    transform: scale(1.05);
}

.home-knowledge__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50rem;
    font-size: 0.875rem;
    color: var(--brand-forest);
    font-weight: 500;
}

.home-knowledge__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-knowledge__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.875em;
    margin-bottom: 0.5rem;
}

.home-knowledge__meta i {
    width: 1rem;
    height: 1rem;
}

.home-knowledge__card-title {
    color: var(--brand-forest);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.home-knowledge__card-desc {
    color: #6c757d;
    font-size: 0.875em;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.home-knowledge__read-more {
    color: var(--brand-terracotta);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home-knowledge__read-more i {
    width: 1rem;
    height: 1rem;
}

/* --- SEMANTIC TESTIMONIALS STYLES --- */
.home-testimonials {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--brand-forest);
    position: relative;
    overflow: hidden;
    color: #fff;
    display: none;
    /* d-none from original code */
}

.home-testimonials__spotlights {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.1;
}

.home-testimonials__spotlight-1 {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background-color: var(--brand-terracotta);
    filter: blur(3rem);
}

.home-testimonials__spotlight-2 {
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background-color: var(--brand-mint);
    filter: blur(3rem);
}

.home-testimonials__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 3;
}

.home-testimonials__header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-testimonials__subtitle {
    text-transform: uppercase;
    color: var(--brand-terracotta);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
}

.home-testimonials__title {
    font-size: calc(1.475rem + 2.7vw);
    color: #fff;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.home-testimonials__description {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.home-testimonials__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .home-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-testimonials__card {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .home-testimonials__card {
        padding: 3rem;
    }
}

.home-testimonials__quote-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #cee8d4;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -10px;
}

.home-testimonials__quote-icon i {
    color: #fff;
    fill: #fff;
    width: 1rem;
    height: 1rem;
}

.home-testimonials__stars {
    display: flex;
    gap: 0.25rem;
    color: var(--brand-terracotta);
    margin-bottom: 1.5rem;
}

.home-testimonials__stars i {
    fill: currentColor;
    width: 1.25rem;
    height: 1.25rem;
}

.home-testimonials__text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: italic;
}

.home-testimonials__author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-testimonials__avatar {
    border-radius: 50%;
    overflow: hidden;
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--brand-terracotta), var(--brand-mint));
}

.home-testimonials__author-name {
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 16px;
}

.home-testimonials__author-location {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875em;
}

.home-testimonials__stats-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 992px) {
    .home-testimonials__stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-testimonials__stat-value {
    font-size: calc(1.475rem + 2.7vw);
    color: var(--brand-terracotta);
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.home-testimonials__stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- SEMANTIC FOOTER STYLES --- */
.site-footer {
    position: relative;
    background-color: var(--brand-forest);
    color: #fff;
    overflow: hidden;
}


.site-footer__container {
    max-width: 1300px;
    padding: 0 5vw;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.site-footer__grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .site-footer__grid {
        grid-template-columns: 2fr 1fr 2fr 2fr;
    }
}

.site-footer__brand-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.site-footer__brand-icon {
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--brand-terracotta), var(--brand-mint));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.site-footer__brand-icon i {
    color: #fff;
    width: 1.25rem;
    height: 1.25rem;
}

.site-footer__brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display);
}

.site-footer__brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875em;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.site-footer__socials {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.site-footer__social-link {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.site-footer__social-link:hover {
    background-color: var(--brand-terracotta);
}

.site-footer__social-link i,
.site-footer__social-link svg {
    width: 1rem;
    height: 1rem;
}

.site-footer__heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.site-footer__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875em;
}

.site-footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__link:hover {
    color: #fff;
}

.site-footer__link-badge {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.site-footer__contact-item i {
    color: var(--brand-terracotta);
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
}

.site-footer__contact-item:hover {
    color: #fff;
}

.site-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875em;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site-footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.site-footer__bottom-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.site-footer__bottom-link:hover {
    color: #fff;
}

.site-footer__badges {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

/* --- SEMANTIC FLOATING CONTACT STYLES --- */
.floating-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

/* Already uses mostly custom CSS classes like .floating-contact-container, we leave as is or integrate */

/* --- SEMANTIC FLOATING CONTACTS & SCROLL TOP STYLES --- */
.floating-contact-icon--phone {
    background-color: #10b981;
}

.floating-contact-icon--email {
    background-color: #f59e0b;
}

.floating-contact-icon--facebook {
    background-color: #1877f2;
}

.floating-contact-icon--instagram {
    background-color: #e4405f;
}

.floating-contact-icon--youtube {
    background-color: #ff0000;
}

.floating-contact-trigger__icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.scroll-to-top-btn {
    position: fixed;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    width: 56px;
    height: 56px;
    opacity: 0;
    z-index: 998;
    background-color: var(--brand-terracotta);
    bottom: 2rem;
    left: 2rem;
    transition: opacity 0.3s ease;
}

.scroll-to-top-btn.visible {
    opacity: 1;
}

.scroll-to-top-btn__icon {
    width: 1.25rem;
    height: 1.25rem;
}


/* --- SEMANTIC MOBILE TAB BAR STYLES --- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 246, 237, 0.95);
    /* brand-cream bg-opacity-95 */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.75rem 0.5rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    width: 3.5rem;
    height: 3.5rem;
}

.mobile-bottom-nav__item i,
.mobile-bottom-nav__item svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-bottom: 0.125rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-bottom-nav__item span {
    font-size: 0.65rem;
    font-weight: 500;
}

.mobile-bottom-nav__item:hover {
    color: var(--brand-forest);
    background-color: rgba(0, 0, 0, 0.03);
}

.mobile-bottom-nav__item.active {
    color: var(--brand-terracotta);
}

.mobile-bottom-nav__item.active i,
.mobile-bottom-nav__item.active svg {
    transform: translateY(-2px);
}

/* --- SEMANTIC JS INJECTED PRODUCT STYLES --- */
.home-products__grid-col {
    /* transition class handled by js/css reveal */
}

.home-products__product-card {
    position: relative;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 1rem;
}

.home-products__product-card:hover {
    transform: scale(1.02);
}

.home-products__save-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--brand-terracotta);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50rem;
    font-size: 0.875em;
    font-weight: 700;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    z-index: 5;
}

.home-products__category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--brand-forest);
    padding: 0.25rem 1rem;
    border-radius: 50rem;
    font-size: 0.875em;
    font-weight: 500;
    z-index: 5;
}

.home-products__image-link {
    display: block;
    aspect-ratio: 1/1;
    border-radius: 1rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    margin-top: 1rem;
    height: 320px;
}

.home-products__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.home-products__product-card:hover .home-products__image {
    transform: scale(1.08);
}

.home-products__product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-products__product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.home-products__product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--brand-forest);
    font-family: var(--font-display);
}

.home-products__product-name a {
    color: var(--brand-forest);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-products__product-name a:hover {
    color: var(--brand-terracotta);
}

.home-products__product-rating {
    display: flex;
    gap: 0.125rem;
    color: var(--brand-terracotta);
}

.home-products__product-rating svg {
    width: 1rem;
    height: 1rem;
}

.home-products__product-desc {
    color: #6c757d;
    font-size: 0.875em;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.home-products__product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.5rem;
}

.home-products__price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-forest);
}

.home-products__price-original {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.875em;
    margin-left: 0.5rem;
}

.home-products__add-btn {
    border: none;
    background-color: var(--brand-forest);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-products__add-btn:hover {
    background-color: var(--brand-terracotta);
    transform: scale(1.05);
}

.home-products__add-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

/* --- SEMANTIC PAGE LOADER STYLES --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brand-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.page-loader__content {
    text-align: center;
}

.page-loader__spinner-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.page-loader__spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 0.25rem;
    animation: spin 2s linear infinite;
    /* animate-spin-loader */
}

.page-loader__spinner-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--brand-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader__logo-letter {
    font-size: calc(1.3rem + 0.6vw);
    font-weight: 700;
    color: var(--brand-forest);
    font-family: var(--font-display);
    /* custom-style-139c41c4 */
}

.page-loader__orbit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: orbit 3s linear infinite;
    /* animate-orbit-leaf */
}

.page-loader__orbit-leaf {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 1.5rem;
    margin-top: -3rem;
    /* custom-mt-n12 */
}

.page-loader__title {
    font-size: calc(1.3rem + 0.6vw);
    color: var(--brand-forest);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-loader__subtitle {
    color: #6c757d;
    /* text-secondary */
    font-size: 0.875em;
}

.page-loader__progress-bar {
    margin-left: auto;
    margin-right: auto;
    border-radius: 50rem;
    width: 200px;
    height: 4px;
    background-color: rgba(33, 37, 41, 0.1);
    position: relative;
    overflow: hidden;
}

.page-loader__progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-color: var(--brand-terracotta);
    animation: load 2s ease-in-out infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes orbit {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Fix missing icons for floating contacts */
.floating-contact-icon i,
.floating-contact-icon svg {
    width: 1rem;
    height: 1rem;
}

.home-testimonials__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* YouTube Knowledge Hub Dynamic Elements */
.knowledge-hub-page__youtube-filter {
    background-color: rgba(255, 255, 255, 0.6);
    color: var(--brand-forest);
    border: 1px solid rgba(33, 37, 41, 0.175);
    padding: 0.375rem 1rem;
    border-radius: 50rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.knowledge-hub-page__youtube-filter:hover {
    border-color: var(--brand-forest);
}

.knowledge-hub-page__youtube-filter.active {
    background-color: var(--brand-forest);
    color: #fff;
    border-color: var(--brand-forest);
}

.knowledge-hub-page__youtube-card-wrap {
    display: flex;
}

.knowledge-hub-page__youtube-card {
    width: 100%;
    padding: 0;
    border: none;
    text-align: left;
    background-color: #000;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.knowledge-hub-page__youtube-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.knowledge-hub-page__youtube-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.4s ease;
}

.knowledge-hub-page__youtube-card:hover .knowledge-hub-page__youtube-thumb {
    transform: scale(1.05);
}

.knowledge-hub-page__youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.knowledge-hub-page__youtube-card:hover .knowledge-hub-page__youtube-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.knowledge-hub-page__youtube-play-btn {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.knowledge-hub-page__youtube-play-btn svg {
    width: 24px;
    height: 24px;
    transform: translateX(2px);
    /* Center play icon optically */
}

.knowledge-hub-page__youtube-card:hover .knowledge-hub-page__youtube-play-btn {
    transform: scale(1.1);
}

.knowledge-hub-page__youtube-title-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.knowledge-hub-page__youtube-title-text {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

/* --- SEMANTIC RELATED PRODUCTS GRID --- */
.related-products__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 576px) {
    .related-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .related-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .related-products__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* --- SEMANTIC RELATED PRODUCT CARD --- */
.related-product-card {
    border-radius: 20px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.related-product-card__badges {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    min-height: 24px;
}

.related-product-card__badge-category {
    background-color: #fff;
    color: var(--brand-forest);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.related-product-card__badge-save {
    background-color: var(--brand-terracotta);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.related-product-card__image-link {
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-card__image-link img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-card__image-link img {
    transform: scale(1.05);
}

.related-product-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.related-product-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-forest);
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.2;
}

.related-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.related-product-card__title a:hover {
    color: var(--brand-terracotta);
}

.related-product-card__rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.related-product-card__rating svg {
    width: 14px;
    height: 14px;
}

.related-product-card__desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.related-product-card__price-wrapper {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.related-product-card__price-current {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-forest);
}

.related-product-card__price-original {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #999;
}

.related-product-card__add-btn {
    width: 100%;
    background-color: var(--brand-forest);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.related-product-card__add-btn i,
.related-product-card__add-btn svg {
    width: 16px;
    height: 16px;
}

.related-product-card__add-btn:hover {
    background-color: var(--brand-terracotta);
    color: #fff;
}

/* --- PRODUCTS PAGE SPECIFIC OVERRIDES --- */
.products-page__grid .home-products__product-card {
    height: 560px;
}

.products-page__grid .home-products__image {
    object-fit: cover;
}

.products-page__grid .home-products__image-link {
    padding: 0;
}

/* --- MINI SIDE CART DRAWER STYLES --- */
.side-cart {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.35s ease, opacity 0.35s ease;
}

.side-cart.active {
    visibility: visible;
    opacity: 1;
}

.side-cart__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.side-cart__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background-color: var(--brand-cream, #F9F6F0);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.side-cart.active .side-cart__panel {
    transform: translateX(0);
}

.side-cart__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-cart__close-btn:hover {
    color: var(--brand-forest) !important;
}


/* ==========================================================================
   PURE CSS WOOCOMMERCE CART REDESIGN (MATCHING CART.HTML)
   ========================================================================== */

/* 1. Main 2-Column Split Grid */
/* Removed .woocommerce grid as custom template handles it */

.woocommerce-cart .woocommerce-cart-form {
    width: 100% !important;
}

/* 2. Reset WooCommerce Table to Flex Layout */
.woocommerce-cart table.shop_table,
.woocommerce-cart table.shop_table thead,
.woocommerce-cart table.shop_table tbody,
.woocommerce-cart table.shop_table tr,
.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    display: block !important;
    border: none !important;
}

.woocommerce-cart table.shop_table {
    background: transparent !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
}

/* Hide default mobile table labels (e.g. data-title) */
.woocommerce-cart table.shop_table td::before {
    display: none !important;
}

/* 3. Table Column Headers */
.woocommerce-cart table.shop_table thead tr {
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 1.5rem 0.5rem 1.5rem !important;
}

.woocommerce-cart table.shop_table thead th {
    color: #718096 !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 0 !important;
}

/* 4. Product Card Rows */
.woocommerce-cart table.shop_table tbody tr.cart_item {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 1.25rem 1.5rem !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-cart table.shop_table tbody tr.cart_item td {
    padding: 0 !important;
    background: transparent !important;
}

/* Product Thumbnail */
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-thumbnail {
    margin-right: 0.5rem !important;
}

.woocommerce-cart table.shop_table tbody tr.cart_item td.product-thumbnail img {
    width: 75px !important;
    height: 75px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
    background: #f9f6f0 !important;
}

/* Product Title */
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-name {
    flex: 1 1 180px !important;
}

.woocommerce-cart table.shop_table tbody tr.cart_item td.product-name a {
    color: #1b4d3e !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
}

/* Prices & Subtotals */
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-price,
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-subtotal {
    color: #1b4d3e !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    white-space: nowrap !important;
}

/* Quantity Input Pill */
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-quantity .quantity input.qty {
    width: 60px !important;
    height: 40px !important;
    border-radius: 50px !important;
    border: 1px solid #e2e8f0 !important;
    background: #f9f6f0 !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: #1b4d3e !important;
}

/* Remove Icon */
.woocommerce-cart table.shop_table tbody tr.cart_item td.product-remove a.remove {
    color: #e27d60 !important;
    font-size: 1.25rem !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #ffe5d9 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

/* Update Cart Button */
.woocommerce-cart table.shop_table td.actions button[name="update_cart"] {
    background-color: #1b4d3e !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border: none !important;
}

/* 5. Right Column Order Summary Box (.cart_totals) */
.woocommerce-cart .cart-collaterals {
    width: 100% !important;
}

.woocommerce-cart .cart_totals {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 1.75rem 2rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(27, 77, 62, 0.08) !important;
    width: 100% !important;
    float: none !important;
}

.woocommerce-cart .cart_totals h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    color: #1b4d3e !important;
    margin-bottom: 1.25rem !important;
    border-bottom: none !important;
}

.woocommerce-cart .cart_totals table.shop_table tr {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid #f0ecdf !important;
    padding: 12px 0 !important;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
    border: none !important;
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    padding: 0 !important;
}

.woocommerce-cart .cart_totals table.shop_table th {
    color: #4a5568 !important;
    font-weight: 500 !important;
}

.woocommerce-cart .cart_totals table.shop_table td {
    text-align: right !important;
    color: #1b4d3e !important;
    font-weight: 700 !important;
}

.woocommerce-cart .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart_totals table.shop_table tr.order-total td {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    border-bottom: none !important;
}

/* Proceed to Checkout Button */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background-color: #E27D60 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 16px 28px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    box-shadow: 0 10px 25px rgba(226, 125, 96, 0.3) !important;
    border: none !important;
    text-decoration: none !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #d16b50 !important;
}

/* ==========================================================================
   ELEMENTOR SHORTCODE WIDGET WOOCOMMERCE CART OVERRIDE
   ========================================================================== */

/* 1. Force Elementor Wrapper to 100% Full Width & 2-Column Grid */
/* Removed elementor .woocommerce grid as custom template handles it */

.elementor-widget-shortcode .woocommerce-cart-form {
    width: 100% !important;
}

/* 2. Reset Table to Flex Layout inside Elementor */
.elementor-widget-shortcode table.shop_table,
.elementor-widget-shortcode table.shop_table thead,
.elementor-widget-shortcode table.shop_table tbody,
.elementor-widget-shortcode table.shop_table tr,
.elementor-widget-shortcode table.shop_table th,
.elementor-widget-shortcode table.shop_table td {
    display: block !important;
    border: none !important;
    background: transparent !important;
}

.elementor-widget-shortcode table.shop_table td::before {
    display: none !important;
}

/* 3. Table Headers */
.elementor-widget-shortcode table.shop_table thead tr {
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 1.5rem 0.5rem 1.5rem !important;
}

.elementor-widget-shortcode table.shop_table thead th {
    color: #718096 !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 0 !important;
}

/* 4. Product Card Item Rows */
.elementor-widget-shortcode table.shop_table tbody tr.cart_item {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 1.25rem 1.5rem !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.elementor-widget-shortcode table.shop_table tbody tr.cart_item td {
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-widget-shortcode table.shop_table tbody tr.cart_item td.product-thumbnail img {
    width: 75px !important;
    height: 75px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
    background: #f9f6f0 !important;
}

.elementor-widget-shortcode table.shop_table tbody tr.cart_item td.product-name {
    flex: 1 1 180px !important;
}

.elementor-widget-shortcode table.shop_table tbody tr.cart_item td.product-name a {
    color: #1b4d3e !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
}

.elementor-widget-shortcode table.shop_table tbody tr.cart_item td.product-price,
.elementor-widget-shortcode table.shop_table tbody tr.cart_item td.product-subtotal {
    color: #1b4d3e !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    white-space: nowrap !important;
}

.elementor-widget-shortcode table.shop_table tbody tr.cart_item td.product-quantity .quantity input.qty {
    width: 60px !important;
    height: 40px !important;
    border-radius: 50px !important;
    border: 1px solid #e2e8f0 !important;
    background: #f9f6f0 !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: #1b4d3e !important;
}

.elementor-widget-shortcode table.shop_table tbody tr.cart_item td.product-remove a.remove {
    color: #e27d60 !important;
    font-size: 1.25rem !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #ffe5d9 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

/* 5. Right Column Order Summary Box (.cart_totals) */
.elementor-widget-shortcode .cart-collaterals {
    width: 100% !important;
}

.elementor-widget-shortcode .cart_totals {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 1.75rem 2rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(27, 77, 62, 0.08) !important;
    width: 100% !important;
    float: none !important;
}

.elementor-widget-shortcode .cart_totals h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    color: #1b4d3e !important;
    margin-bottom: 1.25rem !important;
    border-bottom: none !important;
}

.elementor-widget-shortcode .cart_totals table.shop_table tr {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid #f0ecdf !important;
    padding: 12px 0 !important;
}

.elementor-widget-shortcode .cart_totals table.shop_table th,
.elementor-widget-shortcode .cart_totals table.shop_table td {
    border: none !important;
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    padding: 0 !important;
}

.elementor-widget-shortcode .cart_totals table.shop_table th {
    color: #4a5568 !important;
    font-weight: 500 !important;
}

.elementor-widget-shortcode .cart_totals table.shop_table td {
    text-align: right !important;
    color: #1b4d3e !important;
    font-weight: 700 !important;
}

/* Proceed to Checkout Button */
.elementor-widget-shortcode .wc-proceed-to-checkout a.checkout-button {
    background-color: #E27D60 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 16px 28px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    box-shadow: 0 10px 25px rgba(226, 125, 96, 0.3) !important;
    border: none !important;
    text-decoration: none !important;
}

.header__mobile-toggle {
    display:none !important;
}

.forminator-ui#forminator-module-2169.forminator-design--default .forminator-label {
    font-size: 14px !important;
    color: #6c757d;
    font-family: Manrope, sans-serif  !important;
    line-height: 21px  !important;
    font-weight: 600 !important;
}

.forminator-ui#forminator-module-2169.forminator-design--default .forminator-input {
        width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(33, 37, 41, 0.2);
    border-radius: 0.5rem;
    background-color: #fff;
    transition: var(--transition-smooth);
    font-family: inherit;
    font-size: 1rem;
}
