/*! Vishwshraddha theme — assembled from assets/css/parts/ (do not edit directly). */

/* ===================== 00-base.css ===================== */
/* ============================================================
   00-base — app/globals.css (global tokens, resets, shared utils)
   ============================================================ */

/* ===== Design tokens (only these are global) ===== */
:root {
    /* Brand colors (constant across themes) */
    --primary: #0F5132;
    --primary-dark: #08311E;
    --primary-light: #1A7A4D;
    --accent: #C9A961;
    --accent-light: #E5C982;
    --charcoal: #1A2A33;
    --white: #FFFFFF;

    /* Theme-aware tokens (light defaults) */
    --page-bg: #FFFFFF;        /* root page background */
    --cream: #FBF7F0;          /* alt section bg */
    --sage: #E8F0E5;           /* small surface bg (tags, hover, icons) */
    --gray: #6B7280;           /* muted text */
    --light-gray: #F3F4F6;     /* borders & soft fills */
    --surface: #FFFFFF;        /* card bg */
    --text-base: #1A2A33;      /* body text */
    --text-strong: #08311E;    /* headings */
    --header-bg: rgba(255, 255, 255, 0.97);
    --shadow-color: 15, 81, 50;

    --gradient: linear-gradient(135deg, #0F5132 0%, #1A7A4D 100%);
    --gradient-gold: linear-gradient(135deg, #C9A961 0%, #E5C982 100%);
    --shadow-sm: 0 2px 8px rgba(15, 81, 50, 0.08);
    --shadow: 0 8px 24px rgba(15, 81, 50, 0.12);
    --shadow-lg: 0 20px 50px rgba(15, 81, 50, 0.18);
}

[data-theme="dark"] {
    --page-bg: #0b0d10;        /* near-black cool slate */
    --cream: #14171c;          /* alt section bg */
    --sage: #232830;           /* chips / icon backgrounds */
    --gray: #9aa2ad;           /* muted text (cool gray) */
    --light-gray: #2a3038;     /* borders */
    --surface: #1a1e24;        /* cards — clearly elevated */
    --text-base: #e6e9ee;      /* body text */
    --text-strong: #f4f6f9;    /* headings */
    --primary: #4fb389;        /* brighter mint for readable text/icons on dark */
    --header-bg: rgba(11, 13, 16, 0.88);
    --shadow-color: 0, 0, 0;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.45);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
    --shadow-lg: 0 22px 55px rgba(0, 0, 0, 0.65);
    color-scheme: dark;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page-bg); }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-base);
    background: var(--page-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(15, 81, 50, 0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Leave room for the mobile action bar (FloatingButtons) */
@media (max-width: 768px) {
    body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-base);
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
a, button { -webkit-tap-highlight-color: rgba(15, 81, 50, 0.15); }

/* ===== Shared layout container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Shared section padding ===== */
.section {
    padding: 90px 0;
}

/* ===== Shared animations ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes twinkle {
    0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
    50% { transform: scale(1.15) rotate(15deg); opacity: 0.85; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }
}


/* ===================== 01-topstrip.css ===================== */
/* ============================================================
   01-topstrip — components/TopStrip/TopStrip.module.css (ts-)
   ============================================================ */

.ts-strip {
    background: linear-gradient(135deg, #0F5132 0%, #1A7A4D 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    text-align: center;
}
.ts-strip a {
    color: var(--accent-light);
    font-weight: 600;
    border-bottom: 1px dotted;
}
.ts-strip i { color: var(--accent-light); margin-right: 6px; }

@media (max-width: 768px) {
    .ts-strip { font-size: 11px; padding: 8px 12px; line-height: 1.4; }
    .ts-strip a { display: inline-block; margin-top: 2px; }
}


/* ===================== 02-header.css ===================== */
/* ============================================================
   02-header — components/Header/Header.module.css (hdr-)
   ============================================================ */

/* Body scroll lock while the mobile bubble menu is open (toggled by 10-header.js) */
body.vs-no-scroll { overflow: hidden; }

.hdr-header {
    position: sticky;
    top: 0;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(var(--shadow-color), 0.08);
    border-bottom: 1px solid var(--sage);
    transition: box-shadow 0.3s, background-color 0.3s;
    width: 100%;
}

/* Full-width inner — no max-width cap, just edge padding */
.hdr-inner {
    width: 100%;
    padding: 0 32px;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.hdr-header.hdr-scrolled {
    box-shadow: 0 8px 20px rgba(var(--shadow-color), 0.18);
}

.hdr-navWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.hdr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1090;
}
.hdr-logo img {
    border-radius: 50%;
    border: 2px solid var(--accent);
    padding: 4px;
    background: var(--white);
}

.hdr-logoText { line-height: 1.1; }
.hdr-logoText strong {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}
.hdr-logoText span {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.5px;
}

.hdr-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}
.hdr-menu li { position: relative; }
.hdr-menu a, .hdr-dropParent {
    padding: 10px 16px;
    font-weight: 500;
    color: var(--text-base);
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    cursor: pointer;
}
.hdr-menu a:hover, .hdr-menu a.hdr-active,
.hdr-dropParent:hover, .hdr-dropParent.hdr-active {
    color: var(--primary);
    background: var(--sage);
}
/* Book Now CTA needs its gradient — restore it above .hdr-menu a specificity */
.hdr-menu a.hdr-btnCta {
    background: linear-gradient(135deg, #0F5132 0%, #1A7A4D 100%);
    color: var(--white);
}
.hdr-menu a.hdr-btnCta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.hdr-chev { font-size: 10px; transition: transform 0.3s ease; }

.hdr-dropdown { position: relative; }
.hdr-dropdownMenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(var(--shadow-color), 0.22);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent);
    list-style: none;
}
.hdr-dropdown:hover .hdr-dropdownMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.hdr-dropdownMenu li { margin: 4px 0; }
.hdr-dropdownMenu a {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    display: block;
}
.hdr-dropdownMenu a:hover {
    background: var(--sage);
    color: var(--primary);
    padding-left: 18px;
}

.hdr-btnCta {
    background: linear-gradient(135deg, #0F5132 0%, #1A7A4D 100%);
    color: var(--white) !important;
    padding: 12px 22px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 18px rgba(15, 81, 50, 0.3);
}
.hdr-btnCta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 81, 50, 0.4);
}

/* Compact mobile-only language toggle (sits beside hamburger) */
.hdr-langCompact {
    display: none;
    align-items: center;
    gap: 4px;
    background: var(--sage);
    border: 1.5px solid rgba(15, 81, 50, 0.18);
    color: var(--primary);
    padding: 7px 12px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    z-index: 1101;
    position: relative;
}
.hdr-langCompact:active { transform: scale(0.96); }
.hdr-langChipSm { opacity: 0.45; transition: opacity 0.2s ease, color 0.2s ease; }
.hdr-langChipSm.lang-on { opacity: 1; color: var(--primary-dark); }
.hdr-langDividerSm { opacity: 0.35; font-weight: 400; }

/* Clean hamburger: minimal circle with three equal bars */
.hdr-menuToggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1101;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.hdr-menuToggle:hover { background: var(--sage); }
.hdr-menuToggle:active { background: rgba(15, 81, 50, 0.15); }

.hdr-menuToggle .hdr-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 3px;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.25s ease,
                background-color 0.3s ease;
    transform-origin: center;
}

.hdr-themeItem { display: inline-flex; align-items: center; padding: 0 4px; }
.hdr-themeItem:hover { background: transparent !important; }

/* Language toggle */
.hdr-langItem { display: inline-flex; align-items: center; }
.hdr-langToggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sage);
    border: 1px solid rgba(15, 81, 50, 0.18);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.hdr-langToggle:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 81, 50, 0.12);
}
.hdr-langToggle i { font-size: 14px; }
.hdr-langChip {
    opacity: 0.55;
    transition: opacity 0.2s ease, color 0.2s ease;
}
.hdr-langChip.lang-on { opacity: 1; color: var(--primary-dark); }
.hdr-langDivider { opacity: 0.4; font-weight: 400; }

/* Social row — hidden on desktop, shown inside mobile bubble menu */
.hdr-socialRow { display: none; }
.hdr-socialLabel { display: none; }
.hdr-socialIcons { display: none; }
.hdr-socialIcon { display: none; }

/* Keep critical nav items only in dense desktop/tablet widths. */
@media (max-width: 1600px) and (min-width: 1201px) {
    .hdr-menu .hdr-hideBeforeMobile {
        display: none;
    }
}

@media (max-width: 1280px) {
    .hdr-inner { padding: 0 18px; }
    .hdr-menu { gap: 4px; }
    .hdr-menu a, .hdr-dropParent {
        padding: 9px 10px;
        font-size: 13.5px;
    }
    .hdr-logoText strong { font-size: 16px; }
    .hdr-logoText span { font-size: 10px; }
}

/* ============================================================
   Mobile (≤ 768px): bubble-expand fullscreen menu + stagger
   ============================================================ */
@media (max-width: 1200px) {
    .hdr-inner { padding: 0 18px; }
    .hdr-navWrap { padding: 10px 0; }
    .hdr-logo img { width: 42px !important; height: 42px !important; padding: 2px; }
    .hdr-logoText strong { font-size: 14px; }
    .hdr-logoText span { font-size: 10px; }

    /* Show hamburger + place the compact lang toggle beside it */
    .hdr-navWrap nav { display: flex; align-items: center; gap: 8px; }
    .hdr-menuToggle { display: flex; }
    .hdr-menuToggle:hover { background: transparent; }
    .hdr-langCompact { display: inline-flex; }
    /* The in-menu language item is redundant on mobile (we have the header pill) */
    .hdr-langItem { display: none; }

    .hdr-menu .hdr-hideBeforeMobile {
        display: list-item;
    }

    /* Open state: bars cross into a clean X, color flips to white over bubble */
    .hdr-toggleOpen .hdr-bar { background: var(--white); }
    .hdr-toggleOpen .hdr-bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
    .hdr-toggleOpen .hdr-bar:nth-child(2) { opacity: 0; }
    .hdr-toggleOpen .hdr-bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

    /* When menu is open, header outer goes transparent and the inner becomes
       a solid green strip sitting above the bubble — so the logo + X always
       have a clean background and menu items scroll cleanly beneath it. */
    .hdr-header.hdr-menuOpen { background: transparent; box-shadow: none; border-bottom-color: transparent; }
    .hdr-header.hdr-menuOpen .hdr-inner {
        background: var(--primary);
        position: relative;
        z-index: 1090; /* above bubble (1080), below toggle (1101) */
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    }
    .hdr-header.hdr-menuOpen .hdr-logoText strong,
    .hdr-header.hdr-menuOpen .hdr-logoText span { color: var(--white); }
    .hdr-header.hdr-menuOpen .hdr-logo img { border-color: var(--accent-light); }
    /* Re-skin the compact lang toggle against the green strip */
    .hdr-header.hdr-menuOpen .hdr-langCompact {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        color: var(--white);
    }
    .hdr-header.hdr-menuOpen .hdr-langChipSm.lang-on { color: var(--accent-light); }

    /* The menu is a fullscreen overlay that reveals via clip-path bubble */
    .hdr-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100dvh;
        background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 96px 22px 120px;
        overflow-y: auto;
        z-index: 1080;
        clip-path: circle(0px at calc(100% - 48px) 44px);
        -webkit-clip-path: circle(0px at calc(100% - 48px) 44px);
        transition: clip-path 0.7s cubic-bezier(0.83, 0, 0.17, 1),
                    -webkit-clip-path 0.7s cubic-bezier(0.83, 0, 0.17, 1);
        pointer-events: none;
    }
    .hdr-menu.hdr-open {
        clip-path: circle(160% at calc(100% - 48px) 44px);
        -webkit-clip-path: circle(160% at calc(100% - 48px) 44px);
        pointer-events: auto;
    }

    /* Stagger: each li uses --i (set inline) */
    .hdr-menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
        transition-delay: 0s;
    }
    .hdr-menu.hdr-open li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.32s + var(--i, 0) * 0.07s);
    }

    /* Menu rows on the bubble */
    .hdr-menu a, .hdr-dropParent {
        width: 100%;
        padding: 14px 16px;
        font-size: 17px;
        color: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        gap: 10px;
    }
    .hdr-menu a:hover, .hdr-menu a.hdr-active,
    .hdr-dropParent:hover, .hdr-dropParent.hdr-active {
        background: rgba(255, 255, 255, 0.12);
        color: var(--white);
    }
    .hdr-menu a i, .hdr-dropParent i { color: var(--accent-light); }

    .hdr-dropParent {
        justify-content: flex-start;
    }
    .hdr-chev {
        margin-left: auto;
        font-size: 13px;
        opacity: 0.85;
    }
    .hdr-dropOpen > .hdr-dropParent { background: rgba(255, 255, 255, 0.14); color: var(--white); }
    .hdr-dropOpen .hdr-chev { transform: rotate(180deg); }

    /* Collapsible dropdown panel */
    .hdr-dropdownMenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.18);
        border: none;
        border-radius: 12px;
        padding: 0 10px;
        margin: 0;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        transition: max-height 0.45s ease, padding 0.3s ease, margin 0.3s ease;
    }
    .hdr-dropOpen .hdr-dropdownMenu {
        max-height: 900px;
        padding: 8px 10px;
        margin: 6px 0 10px;
    }
    .hdr-dropdownMenu li { opacity: 1; transform: none; transition: none; }
    .hdr-dropdownMenu a {
        padding: 11px 14px !important;
        font-size: 14.5px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        border-radius: 10px;
    }
    .hdr-dropdownMenu a:hover {
        background: rgba(255, 255, 255, 0.12) !important;
        color: var(--white) !important;
        padding-left: 18px !important;
    }
    .hdr-viewAll {
        background: rgba(255, 255, 255, 0.08);
        font-weight: 600 !important;
    }

    .hdr-btnCta {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
        background: var(--white) !important;
        color: var(--primary) !important;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    }

    /* Language toggle inside the bubble menu */
    .hdr-menu .hdr-langToggle {
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.25);
        color: var(--white);
        padding: 12px 16px;
        font-size: 15px;
    }
    .hdr-menu .hdr-langToggle:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: var(--accent);
        color: var(--white);
    }
    .hdr-menu .hdr-langChip.lang-on { color: var(--accent-light); }
    .hdr-btnCta:hover {
        background: var(--accent-light) !important;
        color: var(--primary-dark) !important;
    }

    .hdr-themeItem { width: auto; justify-content: center; margin: 12px auto 4px; display: flex; }

    /* Social row */
    .hdr-menu .hdr-socialRow {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
        padding: 24px 0 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        list-style: none;
    }
    .hdr-menu .hdr-socialLabel {
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--accent-light);
        text-align: center;
        line-height: 1;
        opacity: 0.85;
    }
    .hdr-menu .hdr-socialIcons {
        display: grid;
        grid-template-columns: repeat(5, 48px);
        gap: 14px;
        justify-content: center;
        align-items: center;
        width: auto;
    }
    .hdr-menu .hdr-socialIcon {
        --brand: var(--accent);
        position: relative;
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--white) !important;
        background: rgba(255, 255, 255, 0.08);
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        font-size: 18px;
        line-height: 1;
        padding: 0;
        margin: 0;
        gap: 0;
        overflow: hidden;
        isolation: isolate;
        transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                    border-color 0.3s ease,
                    color 0.3s ease,
                    box-shadow 0.3s ease,
                    background 0.3s ease;
    }
    .hdr-menu .hdr-socialIcon i {
        position: relative;
        z-index: 2;
        color: var(--white);
        font-size: 18px;
        line-height: 1;
        display: inline-block;
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }
    /* Brand-color ink rises from below on hover */
    .hdr-menu .hdr-socialIcon::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--brand);
        transform: translateY(101%);
        transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1;
    }
    /* Outward ripple ring */
    .hdr-menu .hdr-socialIcon::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        box-shadow: 0 0 0 0 var(--brand);
        opacity: 0.55;
        transition: box-shadow 0.6s ease, opacity 0.6s ease;
        z-index: 0;
        pointer-events: none;
    }
    .hdr-menu .hdr-socialIcon:hover {
        transform: translateY(-6px) scale(1.08);
        border-color: var(--brand);
        background: transparent;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    }
    .hdr-menu .hdr-socialIcon:hover::before { transform: translateY(0); }
    .hdr-menu .hdr-socialIcon:hover::after {
        box-shadow: 0 0 0 10px var(--brand);
        opacity: 0;
    }
    .hdr-menu .hdr-socialIcon:hover i { transform: rotate(-10deg) scale(1.15); }
    .hdr-menu .hdr-socialIcon:active { transform: translateY(-2px) scale(0.96); }

    /* When bubble is open, social icons cascade in after main items */
    .hdr-menu.hdr-open .hdr-socialIcon {
        animation: hdr-socialPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
        animation-delay: calc(0.85s + var(--delay, 0s));
    }
    @keyframes hdr-socialPop {
        from { opacity: 0; transform: translateY(18px) scale(0.6); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
}

@media (max-width: 480px) {
    .hdr-logoText span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hdr-menu, .hdr-menu li, .hdr-bar, .hdr-chev, .hdr-dropdownMenu {
        transition-duration: 0.01ms !important;
    }
}


/* ===================== 03-footer.css ===================== */
/* ============================================================
   03-footer — components/Footer/Footer.module.css (ftr-)
   ============================================================ */

.ftr-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.ftr-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.ftr-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 12px;
}
.ftr-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.ftr-col p { font-size: 14px; margin-bottom: 16px; line-height: 1.8; }

.ftr-col ul { list-style: none; }
.ftr-col ul li { margin-bottom: 10px; }
.ftr-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ftr-col ul li a:hover { color: var(--accent); padding-left: 6px; }

.ftr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.ftr-logo img {
    border-radius: 50%;
    background: var(--white);
    padding: 4px;
}
.ftr-logo strong {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    display: block;
}
.ftr-logo span { font-size: 12px; color: var(--accent); }

.ftr-contactItem {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    align-items: flex-start;
}
.ftr-contactItem a { color: white; }

.ftr-iconSmall {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ftr-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.ftr-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}
.ftr-socials a:hover { background: var(--accent); transform: translateY(-3px); }

.ftr-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0 14px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ftr-poweredBy {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ftr-poweredText {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
}
.ftr-poweredText > i {
    color: var(--accent);
    font-size: 11px;
}
.ftr-poweredLink {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.18);
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.ftr-poweredLink:hover {
    color: var(--accent-light);
    background: rgba(201, 169, 97, 0.18);
    border-color: rgba(201, 169, 97, 0.45);
    transform: translateY(-1px);
}
.ftr-poweredLink i {
    font-size: 9px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}
.ftr-poweredLink:hover i { transform: translate(2px, -2px); opacity: 1; }

@media (max-width: 1024px) {
    .ftr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ftr-footer { padding: 50px 0 0; }
    .ftr-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
    .ftr-col h4 { font-size: 16px; }
    .ftr-bottom { padding: 18px 0 10px; font-size: 11px; flex-direction: column; text-align: center; gap: 6px; }
    .ftr-poweredBy { padding: 10px 0 16px; }
    .ftr-poweredText { font-size: 11px; }
}


/* ===================== 04-floating.css ===================== */
/* ============================================================
   04-floating — components/FloatingButtons/FloatingButtons.module.css (fab-)
   ============================================================ */

/* Desktop: floating round buttons stacked on the right */
.fab-wrap { display: contents; }

.fab-btn {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(15, 81, 50, 0.12);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.fab-btn:hover { transform: scale(1.1); }
.fab-btn i { line-height: 1; }
.fab-call i { font-size: 22px; }

.fab-label { display: none; }

.fab-whatsapp {
    bottom: 24px;
    right: 24px;
    background: #25D366;
    animation: fab-pulse 2s infinite;
}
.fab-call {
    bottom: 90px;
    right: 24px;
    background: var(--primary);
}

@keyframes fab-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile: horizontal action bar pinned to bottom */
@media (max-width: 768px) {
    .fab-wrap {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        box-shadow: 0 -6px 22px rgba(15, 81, 50, 0.18);
        padding-bottom: env(safe-area-inset-bottom);
    }
    .fab-btn {
        position: static;
        width: auto;
        height: 56px;
        border-radius: 0;
        flex: 1;
        gap: 10px;
        font-size: 20px;
        font-weight: 600;
        box-shadow: none;
        animation: none !important;
    }
    .fab-btn:hover { transform: none; }
    .fab-btn i { font-size: 20px; }
    .fab-call i { font-size: 20px; }
    .fab-whatsapp { animation: none; }
    .fab-label {
        display: inline;
        font-size: 15px;
        letter-spacing: 0.3px;
    }
}


/* ===================== 05-backtotop.css ===================== */
/* ============================================================
   05-backtotop — components/BackToTop/BackToTop.module.css (btt-)
   ============================================================ */

/* Desktop: sits above the stacked Call + WhatsApp floating buttons */
.btt-btn {
    position: fixed;
    right: 24px;
    bottom: 156px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    pointer-events: none;
    box-shadow: 0 8px 22px rgba(15, 81, 50, 0.2);
    transition: opacity 0.35s ease,
                transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease;
}
.btt-btn.btt-show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.btt-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(15, 81, 50, 0.35);
}
.btt-btn:active { transform: translateY(0) scale(0.96); }

.btt-icon { transition: transform 0.3s ease; }
.btt-btn:hover .btt-icon { transform: translateY(-2px); }

/* Mobile: sits just above the bottom action bar */
@media (max-width: 768px) {
    .btt-btn {
        right: 16px;
        bottom: calc(72px + env(safe-area-inset-bottom));
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btt-btn { transition: opacity 0.2s ease; }
    .btt-btn:hover { transform: none; }
}


/* ===================== 10-hero.css ===================== */
.hero-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage) 100%);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-hero::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
}
.hero-hero::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.15;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 81, 50, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(15, 81, 50, 0.2);
}

.hero-hero h1 {
    font-size: 58px;
    color: var(--text-strong);
    margin-bottom: 20px;
}
.hero-accent { color: var(--accent); font-style: italic; }

.hero-sub {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ===== Stats ===== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}
.hero-stat {
    background: var(--surface);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid rgba(var(--shadow-color), 0.1);
    box-shadow: 0 4px 14px rgba(var(--shadow-color), 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.hero-stat::after {
    content: "";
    position: absolute;
    top: -24px; right: -24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    opacity: 0.08;
    transition: all 0.5s ease;
}
.hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 81, 50, 0.14);
    border-color: transparent;
}
.hero-stat:hover::after { transform: scale(3); opacity: 0.14; }

.hero-s1::after { background: #0F5132; }
.hero-s2::after { background: #DC2626; }
.hero-s3::after { background: #F59E0B; }
.hero-s4::after { background: #6366F1; }

.hero-s1 .hero-iconWrap { background: linear-gradient(135deg, #E8F0E5 0%, #C6E0BD 100%); color: #0F5132; }
.hero-s2 .hero-iconWrap { background: linear-gradient(135deg, #FEE2E2 0%, #FCA5A5 100%); color: #B91C1C; }
.hero-s3 .hero-iconWrap { background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 100%); color: #B45309; }
.hero-s4 .hero-iconWrap { background: linear-gradient(135deg, #E0E7FF 0%, #A5B4FC 100%); color: #4338CA; }

.hero-iconWrap {
    width: 36px; height: 36px;
    margin: 0 auto 8px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.hero-stat:hover .hero-iconWrap {
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.hero-stat strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: var(--text-strong);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 3px;
    letter-spacing: -0.8px;
    position: relative;
    z-index: 1;
}
.hero-starInline { color: #FFB800; font-size: 14px; vertical-align: middle; margin-left: 1px; animation: hero-twinkle 2.5s ease-in-out infinite; }

.hero-stat span {
    display: block;
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 1;
}
.hero-s1 .hero-meta { background: rgba(15, 81, 50, 0.1); color: #0F5132; }
.hero-s2 .hero-meta { background: rgba(220, 38, 38, 0.1); color: #B91C1C; }
.hero-s3 .hero-meta { background: rgba(245, 158, 11, 0.12); color: #B45309; }
.hero-s4 .hero-meta { background: rgba(99, 102, 241, 0.1); color: #4338CA; }
.hero-meta i { font-size: 7px; }

/* ===== Buttons ===== */
.hero-btnGroup { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.hero-btnPrimary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(15, 81, 50, 0.3);
}
.hero-btnPrimary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(15, 81, 50, 0.4); }
.hero-btnOutline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.hero-btnOutline:hover { background: var(--primary); color: var(--white); }

/* Symptom quiz link — subtle but visible */
.hero-quizLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 18px;
    border-radius: 24px;
    background: rgba(201, 169, 97, 0.12);
    border: 1px dashed rgba(201, 169, 97, 0.55);
    color: var(--text-strong);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.hero-quizLink i:first-child { color: var(--accent); }
.hero-quizLink:hover {
    background: rgba(201, 169, 97, 0.22);
    border-style: solid;
    border-color: var(--accent);
    transform: translateY(-1px);
}
.hero-quizArrow { font-size: 11px; transition: transform 0.3s ease; }
.hero-quizLink:hover .hero-quizArrow { transform: translateX(4px); }

/* ===== Trust mini ===== */
.hero-trustMini {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 14px 18px;
    background: var(--surface);
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(var(--shadow-color), 0.12);
    border-left: 4px solid var(--accent);
    max-width: 460px;
}
.hero-avatars { display: flex; flex-shrink: 0; }
.hero-avatars span {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex; align-items: center; justify-content: center;
    margin-left: -12px;
    font-weight: 700;
    border: 3px solid var(--surface);
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-avatars span:nth-child(2) { background: linear-gradient(135deg, #C9A961, #8B6F2F); }
.hero-avatars span:nth-child(3) { background: linear-gradient(135deg, #DC2626, #B91C1C); }
.hero-plus { background: var(--gradient-gold) !important; font-size: 12px !important; }

.hero-miniText strong {
    display: block;
    color: var(--text-strong);
    font-size: 14px;
    font-weight: 600;
}
.hero-miniText span { color: var(--gray); font-size: 12px; }
.hero-miniText span i { color: var(--accent); margin-right: 2px; }

/* ===== Carousel area ===== */
.hero-imageWrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 18px 20px 0;
}
.hero-shell {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
}

/* Floating badges */
.hero-badge {
    position: absolute;
    background: var(--surface);
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(var(--shadow-color), 0.28);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    border: 1px solid rgba(var(--shadow-color), 0.08);
    max-width: 200px;
    transition: transform 0.3s ease;
    font-size: 12px;
}
.hero-badge:hover { transform: translateY(-3px); }
.hero-badgeTop { top: -14px; left: -18px; border-top: 3px solid var(--accent); }
.hero-badgeBot { bottom: -14px; right: -18px; border-top: 3px solid var(--primary); }
.hero-badge strong {
    display: block;
    color: var(--text-strong);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}
.hero-badge span { color: var(--gray); font-size: 11px; font-weight: 500; line-height: 1.3; display: block; }
.hero-badgeIcon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--gradient-gold);
    color: white;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.hero-badgeBot .hero-badgeIcon { background: var(--gradient); }

@keyframes hero-twinkle {
    0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
    50% { transform: scale(1.15) rotate(15deg); opacity: 0.85; }
}

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 34px;
        align-items: start;
    }
    .hero-hero h1 { font-size: 50px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero-shell { max-width: 400px; }
    .hero-badgeTop { left: -10px; }
    .hero-badgeBot { right: -10px; }
}

@media (max-width: 1400px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero-imageWrap, .hero-shell, .hero-badge { display: none !important; }
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
    .hero-hero h1 { font-size: 44px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-imageWrap { padding: 20px 0; justify-content: center; }
    .hero-shell { max-width: 380px; margin: 0 auto; }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .hero-hero { padding: 32px 0 50px; background: linear-gradient(180deg, var(--cream) 0%, var(--sage) 100%); }
    .hero-hero::before, .hero-hero::after { display: none; }
    .hero-grid { display: flex; flex-direction: column; gap: 0; }
    .hero-imageWrap, .hero-shell, .hero-badge { display: none !important; }
    .hero-content { text-align: center; }
    .hero-tag { font-size: 11px; padding: 7px 14px; margin-bottom: 16px; }
    .hero-hero h1 { font-size: 28px; margin-bottom: 12px; line-height: 1.2; }
    .hero-sub { font-size: 14px; margin-bottom: 22px; line-height: 1.6; }
    .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 18px; }
    .hero-stat { padding: 10px 4px 8px; border-radius: 10px; }
    .hero-iconWrap { width: 26px; height: 26px; margin-bottom: 6px; font-size: 11px; }
    .hero-stat strong { font-size: 16px; }
    .hero-stat span { font-size: 8.5px; }
    .hero-meta { font-size: 7px; padding: 1px 5px; }
    .hero-meta i { font-size: 6px; }
    /* Hide hero CTA buttons on mobile — the sticky floating bar already provides Call + WhatsApp */
    .hero-btnGroup { display: none; }
    .hero-quizLink { width: 100%; justify-content: center; font-size: 13px; padding: 12px 16px; margin-top: 4px; }
    .hero-trustMini { flex-direction: row; gap: 10px; padding: 10px 14px; margin: 16px auto 0; border-radius: 40px; }
    .hero-miniText strong { font-size: 12px; }
    .hero-miniText span { font-size: 10px; }
    .hero-avatars span { width: 32px; height: 32px; font-size: 11px; border-width: 2px; margin-left: -10px; }
}

@media (max-width: 480px) {
    .hero-hero h1 { font-size: 24px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .hero-stat { padding: 12px 8px; }
    .hero-iconWrap { width: 30px; height: 30px; font-size: 12px; }
    .hero-stat strong { font-size: 18px; }
}


/* ===================== 11-trustbar.css ===================== */
.tbar-bar {
    background: linear-gradient(180deg, var(--surface) 0%, var(--cream) 100%);
    padding: 70px 0 60px;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}
.tbar-bar::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.18;
    pointer-events: none;
}
.tbar-bar::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.tbar-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
    position: relative;
    z-index: 2;
}
.tbar-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 12.5px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: var(--sage);
    border-radius: 30px;
    border: 1px solid rgba(15, 81, 50, 0.18);
}
.tbar-tag i { color: var(--accent); font-size: 12px; }

.tbar-head h2 {
    font-size: 38px;
    margin-bottom: 14px;
    color: var(--text-strong);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    white-space: nowrap;
}
/* Decorative lines flanking the heading — fade from transparent to gold */
.tbar-head h2::before,
.tbar-head h2::after {
    content: '';
    flex: 0 0 auto;
    width: clamp(40px, 12vw, 110px);
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 100%);
    border-radius: 2px;
    position: relative;
}
.tbar-head h2::after {
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}
/* Small diamond dot at the inner end of each line */
.tbar-head h2 .tbar-accent {
    color: var(--accent);
    font-style: italic;
    position: relative;
}
.tbar-accent { color: var(--accent); font-style: italic; }

.tbar-head p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.tbar-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.tbar-item {
    padding: 18px 10px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tbar-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(var(--shadow-color), 0.12);
    border-color: rgba(201, 169, 97, 0.5);
}
.tbar-icon {
    width: 48px; height: 48px;
    background: var(--sage);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.tbar-item:hover .tbar-icon { background: var(--accent); color: white; transform: scale(1.05); }
.tbar-item strong { display: block; font-size: 13.5px; color: var(--text-strong); font-weight: 700; }
.tbar-item span { font-size: 11.5px; color: var(--gray); }

@media (max-width: 1024px) {
    .tbar-inner { grid-template-columns: repeat(3, 1fr); }
    .tbar-head h2 { font-size: 32px; }
}
@media (max-width: 768px) {
    .tbar-bar { padding: 48px 0 40px; }
    .tbar-head { margin-bottom: 30px; }
    .tbar-head h2 { font-size: 22px; gap: 12px; white-space: normal; flex-wrap: nowrap; }
    .tbar-head h2::before, .tbar-head h2::after { width: 28px; }
    .tbar-head p { font-size: 14px; }
    .tbar-tag { font-size: 11px; letter-spacing: 2px; padding: 5px 12px; }
    .tbar-inner { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tbar-item { padding: 16px 10px; border-radius: 12px; border: 1.5px solid var(--sage); }
    .tbar-icon { width: 44px; height: 44px; font-size: 18px; }
}


/* ===================== 12-conditions.css ===================== */
.cond-conditions {
    background: var(--cream);
}
.cond-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.cond-tag {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
}
.cond-tag i { margin-right: 6px; font-size: 11px; }
.cond-head h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-strong);
}
.cond-accent { color: var(--accent); font-style: italic; }
.cond-head p { color: var(--gray); font-size: 17px; }

.cond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.cond-card {
    background: var(--surface);
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(var(--shadow-color), 0.08);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: block;
}
.cond-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(15, 81, 50, 0.12);
}
.cond-icon {
    width: 54px; height: 54px;
    margin: 0 auto 12px;
    background: var(--sage);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}
.cond-card:hover .cond-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(-5deg);
}
.cond-card strong { display: block; color: var(--text-strong); font-size: 15px; margin-bottom: 4px; }
.cond-card span { font-size: 12px; color: var(--gray); }

@media (max-width: 768px) {
    .cond-head h2 { font-size: 24px; }
    .cond-head p { font-size: 14px; }
    .cond-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .cond-card { padding: 14px 6px; border-radius: 12px; }
    .cond-icon { width: 38px; height: 38px; font-size: 16px; margin-bottom: 6px; }
    .cond-card strong { font-size: 11px; }
    .cond-card span { font-size: 9px; }
}
@media (max-width: 480px) { .cond-grid { grid-template-columns: repeat(2, 1fr); } }


/* ===================== 13-services.css ===================== */
.svc-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.svc-tag {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
}
.svc-tag i { margin-right: 6px; font-size: 11px; }
.svc-head h2 { font-size: 42px; margin-bottom: 16px; color: var(--text-strong); }
.svc-accent { color: var(--accent); font-style: italic; }
.svc-head p { color: var(--gray); font-size: 17px; }

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.svc-card {
    background: var(--surface);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(var(--shadow-color), 0.08);
    border-top: 4px solid var(--accent);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .svc-card {
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.svc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(15, 81, 50, 0.18); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover .svc-icon, .svc-card:hover h3, .svc-card:hover p, .svc-card:hover .svc-tags span, .svc-card:hover .svc-learn { color: var(--white); position: relative; z-index: 1; }
.svc-card > * { position: relative; z-index: 1; }

.svc-icon {
    width: 64px; height: 64px;
    background: var(--sage);
    color: var(--primary);
    border-radius: 18px;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.svc-card:hover .svc-icon { background: var(--accent); color: var(--white) !important; transform: rotate(-6deg) scale(1.05); }

.svc-card h3 { font-size: 22px; margin-bottom: 14px; color: var(--text-strong); transition: color 0.4s ease; }
.svc-card p { color: var(--gray); font-size: 14.5px; margin-bottom: 20px; transition: color 0.4s ease; }

.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.svc-tags span {
    background: var(--sage);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.4s ease;
}
.svc-card:hover .svc-tags span { background: rgba(255, 255, 255, 0.2); color: var(--white); }

.svc-learn {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease, color 0.4s ease;
}
.svc-card:hover .svc-learn { gap: 12px; }

@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .svc-head h2 { font-size: 24px; }
    .svc-head p { font-size: 14px; }
    .svc-grid { grid-template-columns: 1fr; gap: 16px; }
    .svc-card { padding: 28px 22px; border-radius: 18px; }
    .svc-icon { width: 54px; height: 54px; font-size: 24px; margin-bottom: 16px; }
    .svc-card h3 { font-size: 19px; margin-bottom: 12px; }
    .svc-card p { font-size: 14px; margin-bottom: 16px; }
}


/* ===================== 14-doctors.css ===================== */
.docs-section { background: linear-gradient(135deg, var(--sage) 0%, var(--cream) 100%); }

.docs-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto; margin-right: auto;
}
.docs-tag {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
}
.docs-tag i { margin-right: 6px; font-size: 11px; }
.docs-head h2 { font-size: 42px; margin-bottom: 16px; color: var(--text-strong); }
.docs-accent { color: var(--accent); font-style: italic; }

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.docs-card {
    background: var(--surface);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(var(--shadow-color), 0.12);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 240px;
}
.docs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 81, 50, 0.18);
}

.docs-photo {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    min-height: 220px;
}
.docs-photo img {
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}
.docs-card:hover .docs-photo img { transform: scale(1.05); }
.docs-photo::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(8, 49, 30, 0.5));
    z-index: 1;
    pointer-events: none;
}

.docs-ribbon {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gradient-gold);
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.5);
    display: inline-flex;
    align-items: center; gap: 5px;
}
.docs-ribbon i { font-size: 10px; }

.docs-info { padding: 28px; }
.docs-info h3 { font-size: 24px; color: var(--text-strong); margin-bottom: 4px; }
.docs-cred {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.docs-info p { font-size: 14px; color: var(--gray); margin-bottom: 16px; }
.docs-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.docs-tags span {
    background: var(--sage);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}
.docs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}
.docs-btn:hover { background: var(--primary); color: var(--white); }

@media (max-width: 1024px) { .docs-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .docs-head h2 { font-size: 24px; }
    .docs-grid { grid-template-columns: 1fr; gap: 24px; }
    .docs-card { grid-template-columns: 1fr; border-radius: 20px; width: 100%; }
    .docs-photo { width: 100%; height: 340px; min-height: 0; }
    .docs-info { padding: 22px 20px 24px; }
    .docs-info h3 { font-size: 20px; margin-bottom: 4px; }
    .docs-cred { font-size: 11px; letter-spacing: 0.8px; }
    .docs-info p { font-size: 13px; margin-bottom: 14px; line-height: 1.55; }
    .docs-tags span { font-size: 11px; padding: 3px 9px; }
}
@media (max-width: 480px) { .docs-photo { height: 300px; } }


/* ===================== 15-whyus.css ===================== */
.why-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto; margin-right: auto;
}
.why-tag {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
}
.why-tag i { margin-right: 6px; font-size: 11px; }
.why-head h2 { font-size: 42px; margin-bottom: 16px; color: var(--text-strong); }
.why-accent { color: var(--accent); font-style: italic; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(var(--shadow-color), 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    background: var(--cream);
}
.why-icon {
    width: 84px; height: 84px;
    margin: 0 auto 22px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 34px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(15, 81, 50, 0.3);
    transition: all 0.4s ease;
}
.why-card:hover .why-icon { transform: rotate(8deg) scale(1.08); }
.why-card h3 { font-size: 19px; color: var(--text-strong); margin-bottom: 12px; }
.why-card p { color: var(--gray); font-size: 14px; }

@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .why-head h2 { font-size: 24px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .why-card { padding: 22px 14px; border-radius: 16px; }
    .why-icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 14px; }
    .why-card h3 { font-size: 15px; margin-bottom: 8px; }
    .why-card p { font-size: 12.5px; line-height: 1.5; }
}
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }


/* ===================== 16-testimonials.css ===================== */
.tst-section {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.tst-section::before {
    content: "❝";
    position: absolute;
    top: 40px; left: 40px;
    font-size: 300px;
    color: rgba(201, 169, 97, 0.1);
    line-height: 1;
    font-family: serif;
}

.tst-head {
    text-align: center;
    margin-bottom: 50px;
    max-width: 720px;
    margin-left: auto; margin-right: auto;
    position: relative;
    z-index: 2;
}
.tst-tag { display: inline-block; color: var(--accent); text-transform: uppercase; font-size: 13px; letter-spacing: 3px; font-weight: 600; margin-bottom: 12px; }
.tst-tag i { margin-right: 6px; font-size: 11px; }
.tst-head h2 { font-size: 42px; margin-bottom: 16px; color: var(--white); }
.tst-accent { color: var(--accent); font-style: italic; }
.tst-head p { color: rgba(255, 255, 255, 0.85); font-size: 17px; }

/* ===== Carousel ===== */
.tst-viewport {
    overflow: hidden;
    position: relative;
    padding: 28px 0;
    margin-bottom: 24px;
    z-index: 2;
    /* Soft fade on the sides so neighbor cards drift out of view */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.tst-track {
    display: flex;
    gap: 28px;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.tst-card {
    flex: 0 0 360px;
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    opacity: 0.45;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}
.tst-card.tst-focused {
    opacity: 1;
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45),
                0 0 0 1px rgba(201, 169, 97, 0.4);
}

.tst-rating { color: var(--accent); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.tst-rating i { margin-right: 2px; }

.tst-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    flex: 1;
}

.tst-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.tst-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center; justify-content: center;
    color: var(--charcoal);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.tst-author strong { display: block; color: var(--white); }
.tst-author span { color: rgba(255, 255, 255, 0.6); font-size: 12px; }

/* ===== Carousel controls ===== */
.tst-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.tst-navBtn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.tst-navBtn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--charcoal);
    transform: scale(1.08);
}

.tst-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.tst-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.4s ease, background 0.3s ease, border-radius 0.3s ease;
}
.tst-dot:hover { background: rgba(255, 255, 255, 0.6); }
.tst-dot.tst-dotActive {
    width: 28px;
    background: var(--accent);
    border-radius: 4px;
}

/* ===== Bottom banner ===== */
.tst-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.tst-bigNum { text-align: center; }
.tst-bigNum strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--accent);
    line-height: 1;
}
.tst-bigNum .tst-stars { color: var(--accent); font-size: 22px; margin-top: 8px; letter-spacing: 4px; }
.tst-bigNum span { display: block; color: rgba(255, 255, 255, 0.8); margin-top: 8px; font-size: 14px; }

.tst-btnGold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    background: var(--gradient-gold);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
    transition: transform 0.3s ease;
}
.tst-btnGold:hover { transform: translateY(-3px); }

@media (max-width: 1024px) {
    .tst-card { flex-basis: 320px; }
}
@media (max-width: 768px) {
    .tst-head h2 { font-size: 24px; }
    .tst-head p { font-size: 14px; }
    .tst-section::before { font-size: 180px; top: 20px; left: 20px; }
    .tst-viewport { padding: 16px 0; }
    .tst-track { gap: 16px; }
    .tst-card { flex-basis: 82vw; padding: 24px 22px; border-radius: 18px; min-height: 280px; }
    .tst-card.tst-focused { transform: scale(1.01); }
    .tst-card p { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
    .tst-rating { font-size: 14px; margin-bottom: 12px; }
    .tst-controls { gap: 14px; margin-bottom: 32px; }
    .tst-navBtn { width: 38px; height: 38px; font-size: 12px; }
    .tst-banner { flex-direction: column; gap: 16px; padding: 24px 18px; border-radius: 18px; }
    .tst-bigNum strong { font-size: 44px; }
    .tst-bigNum .tst-stars { font-size: 18px; }
}


/* ===================== 17-carousel.css ===================== */
.caro-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 6;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(var(--shadow-color), 0.32);
    background: var(--cream);
    border: 6px solid var(--surface);
}

.caro-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.caro-slide {
    flex: 0 0 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.caro-slide img {
    object-fit: cover;
    object-position: center top;
    transition: transform 8s ease;
}

.caro-slide.caro-active img { transform: scale(1.06); }

.caro-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 18px 42px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(8, 49, 30, 0.4) 25%,
        rgba(8, 49, 30, 0.85) 55%,
        rgba(8, 49, 30, 0.98) 100%);
    color: white;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    z-index: 2;
}

.caro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    color: #FFD988;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
    margin-bottom: 7px;
    background: rgba(201, 169, 97, 0.22);
    padding: 3px 9px;
    border-radius: 30px;
    border: 1px solid rgba(201, 169, 97, 0.55);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.caro-eyebrow i { font-size: 9px; }

.caro-caption h4 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 4px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.55);
}

.caro-caption p {
    font-size: 11.5px;
    color: #ffffff;
    margin-bottom: 9px;
    line-height: 1.4;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
    opacity: 0.92;
}

.caro-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.caro-tags span {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: white;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.caro-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--primary-dark);
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}
.caro-carousel:hover .caro-arrow { opacity: 1; }
.caro-arrow:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}
.caro-prev { left: 14px; }
.caro-next { right: 14px; }

.caro-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.caro-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}
.caro-dotActive {
    background: var(--accent);
    width: 26px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(201, 169, 97, 0.6);
}

.caro-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 5;
    transition: width 0.1s linear;
}


/* ===================== 18-locations.css ===================== */
.loc-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto; margin-right: auto;
}
.loc-tag { display: inline-block; color: var(--accent); text-transform: uppercase; font-size: 13px; letter-spacing: 3px; font-weight: 600; margin-bottom: 12px; }
.loc-tag i { margin-right: 6px; font-size: 11px; }
.loc-head h2 { font-size: 42px; margin-bottom: 16px; color: var(--text-strong); }
.loc-accent { color: var(--accent); font-style: italic; }
.loc-head p { color: var(--gray); font-size: 17px; }

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}
.loc-card {
    background: var(--surface);
    border-radius: 22px;
    box-shadow: 0 8px 28px rgba(var(--shadow-color), 0.1);
    border: 1px solid rgba(var(--shadow-color), 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}
.loc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(var(--shadow-color), 0.18);
}

/* ===== Map area ===== */
.loc-mapWrap {
    position: relative;
    width: 100%;
    height: 240px;
    background: var(--sage);
    overflow: hidden;
}
.loc-mapFrame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(1.05);
    transition: filter 0.4s ease, transform 0.6s ease;
}
.loc-card:hover .loc-mapFrame {
    filter: saturate(1.2);
}
.loc-mapBadge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(15, 81, 50, 0.4);
    pointer-events: none;
}

/* ===== Card body ===== */
.loc-body {
    padding: 28px 30px 30px;
    border-left: 6px solid var(--accent);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.loc-card h3 { color: var(--text-strong); font-size: 22px; margin-bottom: 16px; }
.loc-card h3 i { color: var(--accent); margin-right: 8px; }

.loc-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 14.5px;
    align-items: flex-start;
}
.loc-icon {
    width: 36px; height: 36px;
    background: var(--sage);
    color: var(--primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.loc-actions { display: flex; gap: 12px; margin-top: auto; padding-top: 16px; flex-wrap: wrap; }
.loc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 30px; font-weight: 600; font-size: 13px; transition: all 0.3s ease; border: 2px solid transparent; }
.loc-btnPrimary { background: var(--gradient); color: var(--white); }
.loc-btnPrimary:hover { transform: translateY(-2px); }
.loc-btnOutline { background: transparent; color: var(--primary); border-color: var(--primary); }
.loc-btnOutline:hover { background: var(--primary); color: var(--white); }

.loc-areas {
    text-align: center;
    padding: 28px;
    background: var(--sage);
    border-radius: 16px;
}
.loc-areas strong { color: var(--text-strong); display: block; margin-bottom: 16px; font-size: 16px; }
.loc-areas strong i { color: var(--accent); margin-right: 6px; }

.loc-areaTags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.loc-areaTags span {
    background: var(--surface);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--accent);
}

@media (max-width: 1024px) {
    .loc-grid { grid-template-columns: 1fr; }
    .loc-mapWrap { height: 260px; }
}
@media (max-width: 768px) {
    .loc-head h2 { font-size: 24px; }
    .loc-head p { font-size: 14px; }
    .loc-grid { gap: 18px; }
    .loc-card { border-radius: 18px; }
    .loc-mapWrap { height: 200px; }
    .loc-mapBadge { width: 40px; height: 40px; font-size: 16px; border-radius: 12px; }
    .loc-body { padding: 22px 22px 24px; border-left-width: 4px; }
    .loc-card h3 { font-size: 17px; margin-bottom: 14px; }
    .loc-detail { font-size: 13px; gap: 10px; }
    .loc-actions { flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 4px; }
    .loc-actions .loc-btn { width: 100%; justify-content: center; }
    .loc-areas { padding: 22px 18px; border-radius: 14px; }
    .loc-areas strong { font-size: 14px; }
    .loc-areaTags span { font-size: 12px; padding: 6px 12px; }
}


/* ===================== 19-cta.css ===================== */
.cta-banner {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-iconLarge { font-size: 50px; color: var(--accent-light); margin-bottom: 14px; display: inline-block; }

.cta-banner small { color: var(--accent-light); text-transform: uppercase; letter-spacing: 3px; font-size: 13px; font-weight: 600; }

.cta-banner h2 { color: var(--white); font-size: 44px; margin: 16px 0 20px; }

.cta-banner p { font-size: 17px; margin-bottom: 32px; opacity: 0.95; max-width: 660px; margin-left: auto; margin-right: auto; }

.cta-btnGroup { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-btnGold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    background: var(--gradient-gold);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
    transition: transform 0.3s ease;
}
.cta-btnGold:hover { transform: translateY(-3px); }
.cta-btnOutline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}
.cta-btnOutline:hover { background: white; color: var(--primary); }

.cta-footnote { margin-top: 24px; font-size: 14px; opacity: 0.9; }

@media (max-width: 768px) {
    .cta-banner { padding: 50px 0; }
    .cta-banner small { letter-spacing: 2px; font-size: 11px; }
    .cta-banner h2 { font-size: 26px; margin: 12px 0 16px; }
    .cta-banner p { font-size: 14px; margin-bottom: 24px; }
    .cta-btnGroup { flex-direction: column; }
    .cta-btnGroup a { width: 100%; max-width: 320px; margin: 0 auto; justify-content: center; }
    .cta-iconLarge { font-size: 40px; margin-bottom: 10px; }
}


/* ===================== 30-pagehero.css ===================== */
/* ============================================================
   PageHero — from components/PageHero/PageHero.module.css (prefix: ph-)
   ============================================================ */

.ph-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ph-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.1), transparent 50%);
}
.ph-hero > * { position: relative; z-index: 2; }

.ph-heroIcon { font-size: 60px; color: var(--accent); margin-bottom: 16px; opacity: 0.9; }

.ph-hero h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 16px;
}

.ph-desc {
    opacity: 0.9;
    max-width: 720px;
    margin: 12px auto 16px;
}

.ph-breadcrumb { color: rgba(255, 255, 255, 0.8); font-size: 14px; }
.ph-breadcrumb a { color: var(--accent); }

@media (max-width: 768px) {
    .ph-hero { padding: 60px 0 50px; }
    .ph-hero h1 { font-size: 30px; }
    .ph-heroIcon { font-size: 44px; margin-bottom: 10px; }
    .ph-breadcrumb { font-size: 12px; }
}


/* ===================== 31-about.css ===================== */
/* ============================================================
   About page — from app/about/about.module.css (prefix: about-)
   ============================================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
}
.about-story i { margin-right: 6px; font-size: 11px; }

.about-title { font-size: 38px; color: var(--text-strong); margin-bottom: 20px; line-height: 1.2; }
.about-lead { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }

.about-features { list-style: none; margin: 24px 0; padding: 0; }
.about-features li { padding: 10px 0 10px 32px; position: relative; font-size: 15px; line-height: 1.55; }
.about-check {
    position: absolute;
    left: 0; top: 10px;
    width: 22px; height: 22px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 11px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(15, 81, 50, 0.3);
    transition: transform 0.3s ease;
}
.about-btn:hover { transform: translateY(-3px); }

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(var(--shadow-color), 0.22);
    position: relative;
    aspect-ratio: 5 / 6;
}
/* next/image fill emulation (source: <Image fill style={{objectFit:'cover'}} />) */
.about-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .about-grid { gap: 40px; }
    .about-title { font-size: 32px; }
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-title { font-size: 24px; margin-bottom: 14px; }
    .about-lead { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
    .about-story { font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; }
    .about-features { margin: 18px 0; }
    .about-features li { font-size: 14px; padding: 8px 0 8px 28px; }
    .about-check { width: 20px; height: 20px; top: 9px; font-size: 10px; }
    .about-btn { padding: 12px 22px; font-size: 14px; width: 100%; justify-content: center; }
    .about-image { aspect-ratio: 4 / 5; max-width: 100%; }
}


/* ===================== 32-doctorprofile.css ===================== */
/* ============================================================
   DoctorProfile — from components/DoctorProfile/DoctorProfile.module.css (prefix: dprof-)
   ============================================================ */

.dprof-bgCream { background: var(--cream); }

.dprof-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.dprof-reverse { direction: rtl; }
.dprof-reverse > * { direction: ltr; }

.dprof-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 81, 50, 0.22);
    aspect-ratio: 4 / 5;
    background: var(--gradient);
}
/* position/inset/size = next/image fill emulation; rest from source rule */
.dprof-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}
.dprof-image:hover img { transform: scale(1.05); }

.dprof-ribbon {
    position: absolute;
    top: 18px; left: 18px;
    background: var(--gradient);
    color: white;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(15, 81, 50, 0.4);
    display: inline-flex;
    align-items: center; gap: 6px;
}
.dprof-gold { background: var(--gradient-gold); box-shadow: 0 6px 16px rgba(201, 169, 97, 0.5); }

.dprof-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 22px 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 49, 30, 0.85) 60%, rgba(8, 49, 30, 0.98) 100%);
    color: white;
    z-index: 2;
}
.dprof-caption h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    font-family: 'Poppins', sans-serif;
}
.dprof-sub {
    color: #FFD988;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center; gap: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.dprof-block h2 { font-size: 38px; color: var(--text-strong); margin-bottom: 20px; }
.dprof-block p { color: var(--gray); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.dprof-tag {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
}
.dprof-tag i { margin-right: 6px; font-size: 11px; }

.dprof-features { list-style: none; margin: 24px 0; }
.dprof-features li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-base);
    font-size: 15px;
}
.dprof-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0; top: 10px;
    width: 22px; height: 22px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 12px;
}

.dprof-btnGroup { display: flex; gap: 14px; flex-wrap: wrap; }
.dprof-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 30px; font-weight: 600; font-size: 15px; transition: all 0.3s ease; }
.dprof-btnPrimary { background: var(--gradient); color: white; box-shadow: 0 8px 24px rgba(15, 81, 50, 0.3); }
.dprof-btnPrimary:hover { transform: translateY(-3px); }
.dprof-btnOutline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.dprof-btnOutline:hover { background: var(--primary); color: white; }

@media (max-width: 768px) {
    .dprof-grid { grid-template-columns: 1fr; gap: 28px; }
    .dprof-reverse { direction: ltr; }
    .dprof-image { width: 100%; aspect-ratio: auto; height: 420px; }
    .dprof-ribbon { font-size: 9.5px; padding: 6px 11px; top: 14px; left: 14px; }
    .dprof-caption { padding: 50px 18px 18px; }
    .dprof-caption h3 { font-size: 19px; }
    .dprof-sub { font-size: 10px; letter-spacing: 1.2px; }
    .dprof-block h2 { font-size: 26px; }
    .dprof-block p { font-size: 14px; }
    .dprof-btnGroup { flex-direction: column; }
    .dprof-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) { .dprof-image { height: 380px; } }


/* ===================== 33-treatments.css ===================== */
/* ============================================================
   TreatmentsGrid — from components/TreatmentsGrid/TreatmentsGrid.module.css (prefix: tgrid-)
   ============================================================ */

.tgrid-bgCream { background: var(--cream); }

.tgrid-head { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.tgrid-tag {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
}
.tgrid-tag i { margin-right: 6px; font-size: 11px; }
.tgrid-head h2 { font-size: 42px; margin-bottom: 16px; color: var(--text-strong); }
.tgrid-head p { color: var(--gray); font-size: 17px; }

.tgrid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.tgrid-card {
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(var(--shadow-color), 0.08);
    transition: all 0.3s ease;
}
.tgrid-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(15, 81, 50, 0.18); }

.tgrid-head2 {
    height: 180px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.tgrid-head2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
}
.tgrid-iconBig { font-size: 58px; margin-bottom: 10px; z-index: 1; color: var(--white); }
.tgrid-head2 span { z-index: 1; font-size: 14px; opacity: 0.9; }

.tgrid-body { padding: 24px; }
.tgrid-body h3 { font-size: 20px; color: var(--text-strong); margin-bottom: 10px; }
.tgrid-body p { color: var(--gray); font-size: 14px; margin-bottom: 16px; }
.tgrid-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tgrid-tags span { background: var(--sage); color: var(--primary); padding: 4px 10px; border-radius: 14px; font-size: 12px; font-weight: 500; }

.tgrid-learn { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.tgrid-learn:hover { gap: 12px; }

@media (max-width: 1024px) { .tgrid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .tgrid-head h2 { font-size: 24px; }
    .tgrid-head p { font-size: 14px; }
    .tgrid-grid { grid-template-columns: 1fr; gap: 16px; }
    .tgrid-head2 { height: 140px; }
    .tgrid-iconBig { font-size: 46px; }
}


/* ===================== 34-bloggrid.css ===================== */
/* ============================================================
   BlogGrid — from components/BlogGrid/BlogGrid.module.css (prefix: blog-)
   ============================================================ */

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.blog-card {
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(var(--shadow-color), 0.08);
    transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15, 81, 50, 0.18); }

.blog-img {
    height: 220px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: var(--white);
}
.blog-b1 { background: linear-gradient(135deg, #0F5132, #1A7A4D); }
.blog-b2 { background: linear-gradient(135deg, #C9A961, #8B6F2F); }
.blog-b3 { background: linear-gradient(135deg, #1A2A33, #2D4A5A); }
.blog-b4 { background: linear-gradient(135deg, #6B3FA0, #8B5FBF); }
.blog-b5 { background: linear-gradient(135deg, #B23A48, #D55864); }
.blog-b6 { background: linear-gradient(135deg, #2C5F2D, #97BC62); }

.blog-iconBig { position: absolute; top: 24px; right: 24px; font-size: 44px; opacity: 0.45; color: white; }

.blog-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.blog-body h3 { font-size: 19px; color: var(--text-strong); margin-bottom: 12px; line-height: 1.4; }
.blog-body p { color: var(--gray); font-size: 14px; margin-bottom: 16px; }
.blog-learn { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.blog-learn:hover { gap: 12px; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; gap: 18px; }
    .blog-img { height: 180px; }
    .blog-body { padding: 20px; }
    .blog-body h3 { font-size: 17px; }
}


/* ===================== 35-article.css ===================== */
/* Single blog article (single.php) — art- ; header reuses ph- from 30-pagehero.css */

.art-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sage);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.art-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--gray);
    font-size: 14px;
    margin: 10px 0 18px;
}

.art-meta i {
    color: var(--accent);
    margin-right: 6px;
}

.art-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.art-body {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-base);
}

.art-body h2 {
    font-size: 28px;
    color: var(--text-strong);
    margin: 42px 0 16px;
}

.art-body h3 {
    font-size: 20px;
    color: var(--text-strong);
    margin: 30px 0 12px;
}

.art-body p {
    margin: 0 0 18px;
}

.art-body ul,
.art-body ol {
    margin: 0 0 18px 22px;
}

.art-body li {
    margin-bottom: 8px;
}

.art-body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
}

.art-body a:hover {
    color: var(--primary-light);
}

.art-body strong {
    color: var(--text-strong);
}

.art-body blockquote {
    border-left: 4px solid var(--accent);
    background: var(--cream);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    margin: 0 0 18px;
    font-style: italic;
}

.art-disclaimer {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--sage);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 36px;
    font-size: 14px;
    color: var(--gray);
}

.art-disclaimer i {
    color: var(--primary);
    margin-top: 3px;
}

.art-back {
    margin-top: 28px;
}

.art-backLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.art-backLink:hover {
    gap: 12px;
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .art-body {
        font-size: 16px;
        line-height: 1.8;
    }

    .art-body h2 {
        font-size: 23px;
        margin: 34px 0 12px;
    }

    .art-body h3 {
        font-size: 18px;
    }
}


/* ===================== 40-contactform.css ===================== */
/* ============================================================
   40 — ContactForm
   1:1 from components/ContactForm/ContactForm.module.css (prefix: cf-)
   ============================================================ */

.cf-section { background: var(--cream); }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.cf-infoCard {
    background: var(--gradient);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.cf-infoCard::before {
    content: "🌿";
    position: absolute;
    font-size: 220px;
    bottom: -60px; right: -50px;
    opacity: 0.08;
}
.cf-infoCard h3 { color: var(--white); font-size: 28px; margin-bottom: 14px; }
.cf-infoCard > p { opacity: 0.9; margin-bottom: 32px; }

.cf-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.cf-item > i {
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.cf-item strong { display: block; margin-bottom: 4px; font-size: 15px; }
.cf-item span { font-size: 13px; opacity: 0.85; line-height: 1.6; display: block; }
.cf-item a { color: white; }

.cf-form {
    background: var(--surface);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(var(--shadow-color), 0.12);
}
.cf-form h3 { color: var(--text-strong); font-size: 26px; margin-bottom: 28px; }
.cf-form h3 i { color: var(--accent); }

.cf-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
    border-left: 4px solid #16a34a;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cf-errorBanner {
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
    border-left: 4px solid #dc2626;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cf-errorBanner i { color: #dc2626; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { margin-bottom: 20px; }
.cf-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-base);
    font-weight: 500;
}
.cf-group label i { color: var(--accent); margin-right: 4px; }

.cf-group input, .cf-group select, .cf-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--light-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--cream);
    transition: all 0.3s ease;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
    color: var(--text-base);
}

/* Field-level error state */
.cf-hasError input,
.cf-hasError select,
.cf-hasError textarea {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.04);
}
.cf-hasError input:focus,
.cf-hasError select:focus,
.cf-hasError textarea:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}
.cf-errorMsg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    color: #dc2626;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.4;
    animation: cf-errSlide 0.25s ease;
}
.cf-errorMsg i { font-size: 11px; }
@keyframes cf-errSlide {
    from { opacity: 0; transform: translateY(-3px); }
    to { opacity: 1; transform: translateY(0); }
}

.cf-group input, .cf-group select, .cf-group textarea { color: var(--text-base); }
.cf-group textarea { min-height: 130px; resize: vertical; }

.cf-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(15, 81, 50, 0.3);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}
.cf-submit:hover { transform: translateY(-3px); }
.cf-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}
.cf-note { text-align: center; margin-top: 14px; font-size: 13px; color: var(--gray); }

@media (max-width: 768px) {
    .cf-grid { grid-template-columns: 1fr; gap: 24px; }
    .cf-infoCard, .cf-form { padding: 30px 24px; border-radius: 18px; }
    .cf-infoCard h3, .cf-form h3 { font-size: 22px; margin-bottom: 14px; }
    .cf-item > i { width: 38px; height: 38px; font-size: 16px; }
    .cf-row { grid-template-columns: 1fr; gap: 0; }
    .cf-group input, .cf-group select, .cf-group textarea { padding: 12px 16px; font-size: 14px; }
}

/* --- Theme additions (WP conversion only; not in the source module) --- */
/* Banners are server-rendered hidden and toggled by 30-contact.js; the [hidden]
   attribute must beat the author display:flex above. */
.cf-success[hidden],
.cf-errorBanner[hidden],
.cf-bannerFallback[hidden] { display: none !important; }
.cf-bannerFallback a { color: inherit; font-weight: 600; text-decoration: underline; }
/* Honeypot field — visually removed, still submitted. */
.cf-hp {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}


/* ===================== 41-symptom.css ===================== */
/* ============================================================
   41 — SymptomChecker
   1:1 from components/SymptomChecker/SymptomChecker.module.css (prefix: sx-)
   ============================================================ */

.sx-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 24px 60px rgba(var(--shadow-color), 0.16);
    border: 1px solid rgba(var(--shadow-color), 0.06);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.sx-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.25;
    pointer-events: none;
}

/* ---------- Intro ---------- */
.sx-iconBig {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 14px 36px rgba(15, 81, 50, 0.32);
    position: relative;
    z-index: 1;
}
.sx-title {
    text-align: center;
    color: var(--text-strong);
    font-size: 30px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.sx-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.sx-primaryBtn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding: 16px 32px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(15, 81, 50, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}
.sx-primaryBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 81, 50, 0.4);
}
.sx-disclaimer {
    margin-top: 24px;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.08);
    border-left: 3px solid #F59E0B;
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--gray);
    line-height: 1.5;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.sx-disclaimer i { color: #F59E0B; margin-top: 2px; flex-shrink: 0; }

/* ---------- Progress ---------- */
.sx-progressWrap {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.sx-progressText {
    display: block;
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}
.sx-progressBar {
    height: 6px;
    background: var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
}
.sx-progressFill {
    height: 100%;
    background: var(--gradient);
    border-radius: 6px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Question ---------- */
.sx-question {
    font-size: 24px;
    color: var(--text-strong);
    margin-bottom: 24px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    animation: sx-slideUp 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sx-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.sx-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--cream);
    border: 1.5px solid var(--light-gray);
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    color: var(--text-base);
    opacity: 0;
    animation: sx-optionIn 0.4s ease forwards;
}
@keyframes sx-optionIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.sx-option:hover {
    border-color: var(--primary);
    background: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 81, 50, 0.1);
}
.sx-optionActive {
    border-color: var(--primary);
    background: var(--sage);
}
.sx-optionIcon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;
}
.sx-option:hover .sx-optionIcon {
    background: var(--primary);
    color: var(--white);
}
.sx-optionLabel {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}
.sx-optionArrow {
    color: var(--gray);
    font-size: 12px;
    transition: transform 0.25s ease, color 0.25s ease;
}
.sx-option:hover .sx-optionArrow { color: var(--primary); transform: translateX(4px); }

/* ---------- Footer ---------- */
.sx-footer {
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}
.sx-backBtn {
    background: none;
    border: none;
    color: var(--gray);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.25s ease, color 0.25s ease;
}
.sx-backBtn:hover { background: var(--light-gray); color: var(--text-base); }

/* ---------- Result ---------- */
.sx-resultHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.sx-resultLabel {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.sx-confidence {
    font-size: 12px;
    color: var(--primary);
    background: var(--sage);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.sx-resultCard {
    --accent: var(--primary);
    padding: 28px;
    border-radius: 18px;
    background: var(--cream);
    border-left: 5px solid var(--accent);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    animation: sx-slideUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sx-resultIcon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 26px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.sx-resultName {
    font-size: 26px;
    color: var(--text-strong);
    margin-bottom: 10px;
}
.sx-resultDesc {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

.sx-nextStep { margin-bottom: 20px; position: relative; z-index: 1; }
.sx-nextStep h3 {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}
.sx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sx-actionBtn {
    flex: 1;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sx-actionBtn:hover { transform: translateY(-2px); }
.sx-actionWa {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.32);
}
.sx-actionWa:hover { box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45); }
.sx-actionCall {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(15, 81, 50, 0.28);
}
.sx-actionCall:hover { box-shadow: 0 10px 22px rgba(15, 81, 50, 0.4); }
.sx-actionLearn {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.sx-actionLearn:hover { background: var(--primary); color: var(--white); }

.sx-restartBtn {
    margin: 8px auto 0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px dashed var(--gray);
    color: var(--gray);
    padding: 10px 18px;
    border-radius: 22px;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
    position: relative;
    z-index: 1;
}
.sx-restartBtn:hover { color: var(--primary); border-color: var(--primary); }

@keyframes sx-slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
    .sx-card { padding: 28px 22px; border-radius: 18px; }
    .sx-iconBig { width: 64px; height: 64px; font-size: 28px; border-radius: 18px; }
    .sx-title { font-size: 22px; }
    .sx-subtitle { font-size: 13.5px; margin-bottom: 22px; }
    .sx-question { font-size: 19px; }
    .sx-option { padding: 14px 16px; gap: 12px; }
    .sx-optionIcon { width: 36px; height: 36px; font-size: 14px; }
    .sx-optionLabel { font-size: 14px; }
    .sx-resultName { font-size: 22px; }
    .sx-resultCard { padding: 22px; }
    .sx-actions { flex-direction: column; }
    .sx-actionBtn { width: 100%; }
}


/* ===================== 50-woocommerce.css ===================== */
/* ============================================================
   50 — WooCommerce
   Skins WooCommerce 8/9 classic templates (shop archive, single
   product, cart, checkout, my-account, notices) with the theme
   design tokens so the store reads as native to the site.
   Every rule is scoped under .woocommerce / .woocommerce-page /
   body.woocommerce-* so nothing leaks into the rest of the site.
   Loads after WooCommerce core CSS, so equal-specificity rules
   win by source order — !important is used only where WC itself
   ships !important (noted inline).
   ============================================================ */

/* ============================================================
   1. Shared — buttons
   ============================================================ */

/* Mirrors WC core's own selector list so we tie on specificity
   and win by load order. Pill language from .hero-btnPrimary. */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border: none;
    border-radius: 30px;
    background: var(--gradient);
    color: var(--white);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.4;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 81, 50, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 81, 50, 0.4);
}

/* .alt (primary action) — same pill, slightly heavier */
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--gradient);
    color: var(--white);
    font-weight: 600;
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--gradient);
    color: var(--white);
}

/* Disabled — mirrors WC's disabled selector list */
.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
    background: var(--gradient);
    color: var(--white);
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    padding: 13px 26px;
}

/* AJAX loading state — keep WC's ::after spinner, just soften */
.woocommerce a.button.loading,
.woocommerce button.button.loading {
    opacity: 0.75;
}

/* Accessibility — visible focus ring on all shop controls */
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible,
.woocommerce #respond input#submit:focus-visible,
.woocommerce-page a.button:focus-visible,
.woocommerce nav.woocommerce-pagination ul li a:focus-visible,
.woocommerce-MyAccount-navigation ul li a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ============================================================
   2. Shared — misc
   ============================================================ */

/* Theme page-hero provides breadcrumbs; hide WC's own */
.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
    display: none;
}

/* Native controls pick up the brand color */
.woocommerce input[type="checkbox"],
.woocommerce input[type="radio"],
.woocommerce-page input[type="checkbox"],
.woocommerce-page input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

/* Required-field asterisk — gold, like the contact form icons */
.woocommerce form .form-row .required {
    color: var(--accent);
    text-decoration: none;
}

/* Price color consistency everywhere an amount is printed */
.woocommerce .price,
.woocommerce .price .woocommerce-Price-amount {
    color: var(--primary);
}
.woocommerce .price del {
    color: var(--gray);
    font-weight: 400;
    opacity: 0.7;
}
.woocommerce .price ins {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
}

/* Stock messages */
.woocommerce div.product p.stock,
.woocommerce p.stock.in-stock {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 14px;
}
.woocommerce p.stock.out-of-stock,
.woocommerce div.product p.stock.out-of-stock {
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
}

/* Sale badge — gradient-gold pill (loop + single) */
.woocommerce span.onsale {
    position: absolute;
    top: 14px;
    left: 14px;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 6px 16px;
    border-radius: 30px;
    background: var(--gradient-gold);
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
    box-shadow: 0 6px 18px rgba(201, 169, 97, 0.4);
    z-index: 3;
}

/* Quantity input — theme form-input language, spinners removed */
.woocommerce .quantity .qty {
    width: 86px;
    padding: 12px 10px;
    text-align: center;
    border: 1.5px solid var(--light-gray);
    border-radius: 10px;
    background: var(--cream);
    color: var(--text-base);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
    appearance: textfield;
}
.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.woocommerce .quantity .qty:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
}

/* Star ratings — gold fill on a muted track */
.woocommerce .star-rating {
    color: var(--accent);
}
.woocommerce .star-rating::before {
    color: var(--light-gray);
}
.woocommerce .star-rating span {
    color: var(--accent);
}
.woocommerce p.stars a {
    color: var(--accent);
}
.woocommerce p.stars a:hover,
.woocommerce p.stars.selected a {
    color: var(--accent);
}

/* Pagination — pill buttons, current = gradient */
.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin: 12px 0 24px;
}
.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    border: none;
    margin: 0;
    white-space: normal;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    float: none;
    overflow: visible;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 30px;
    background: var(--surface);
    border: 1.5px solid var(--light-gray);
    color: var(--text-base);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    transition: all 0.3s ease;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
    background: var(--sage);
    border-color: var(--primary);
    color: var(--primary);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(15, 81, 50, 0.3);
}

/* Store-wide demo/notice bar */
.woocommerce-store-notice,
p.demo_store {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    z-index: 999;
}
.woocommerce-store-notice a,
p.demo_store a {
    color: var(--accent-light);
    font-weight: 600;
}

/* ============================================================
   3. Notices — banner language from 40-contactform
   ============================================================ */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: none;
    border-radius: 10px;
    padding: 15px 20px 15px 48px;
    margin: 0 0 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    list-style: none;
    background-color: var(--sage);
    color: var(--primary);
    border-left: 4px solid var(--primary);
    box-shadow: none;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    top: 15px;
    left: 18px;
}

/* Success — matches .cf-success */
.woocommerce-message {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-left-color: #16a34a;
}
.woocommerce-message::before {
    color: #16a34a;
}

/* Info — sage/primary tint */
.woocommerce-info {
    background-color: var(--sage);
    color: var(--primary);
    border-left-color: var(--primary);
}
.woocommerce-info::before {
    color: var(--accent);
}

/* Error — matches .cf-errorBanner */
.woocommerce-error {
    background-color: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    border-left-color: #dc2626;
}
.woocommerce-error::before {
    color: #dc2626;
}
.woocommerce-error li {
    list-style: none;
    margin: 0 0 4px;
}
.woocommerce-error li:last-child {
    margin-bottom: 0;
}

/* Action button inside a notice (e.g. "Continue shopping") —
   compact pill so it sits inside the banner */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
    padding: 7px 16px;
    font-size: 13px;
    margin-left: 12px;
    box-shadow: none;
}
.woocommerce-message a:not(.button),
.woocommerce-info a:not(.button),
.woocommerce-error a:not(.button) {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================================
   4. Product archive (/shop/)
   ============================================================ */

/* Result count + ordering — subtle toolbar above the grid */
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
    color: var(--gray);
    font-size: 14px;
    margin: 10px 0 30px;
}
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    margin: 0 0 30px;
}
.woocommerce .woocommerce-ordering select.orderby {
    appearance: none;
    -webkit-appearance: none;
    padding: 10px 42px 10px 18px;
    border: 1.5px solid var(--light-gray);
    border-radius: 30px;
    background-color: var(--surface);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236B7280' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    color: var(--text-base);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.woocommerce .woocommerce-ordering select.orderby:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--shadow-color), 0.12);
}
[data-theme="dark"] .woocommerce .woocommerce-ordering select.orderby {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%239aa2ad' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* --- Grid: replace WC's float/columns-N system with CSS grid.
   Extra [class*="columns-"] selectors tie WC layout-css
   specificity; source order wins. --- */
.woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce[class*="columns-"] ul.products,
.woocommerce-page[class*="columns-"] ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
}
/* WC's clearfix pseudo-elements would become ghost grid cells */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    content: none;
}
.woocommerce.columns-2 ul.products,
.woocommerce-page.columns-2 ul.products {
    grid-template-columns: repeat(2, 1fr);
}
.woocommerce.columns-1 ul.products,
.woocommerce-page.columns-1 ul.products {
    grid-template-columns: 1fr;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce[class*="columns-"] ul.products li.product,
.woocommerce-page[class*="columns-"] ul.products li.product {
    width: 100%;
    margin: 0;
    padding: 0;
    float: none;
}

/* --- Card language from .svc-card / .blog-card --- */
.woocommerce ul.products li.product {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: all 0.3s ease;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Image header — uniform crop, subtle zoom on card hover */
.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin: 0;
    box-shadow: none;
    transition: transform 0.4s ease;
}
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}
/* Content painted above the zooming image so scale bleed hides
   behind the card body instead of overlapping the gap */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    position: relative;
    z-index: 1;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title {
    background: var(--surface);
}

/* Push the CTA to the card bottom so buttons align across a row */
.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
    display: block;
    flex: 1 1 auto;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-strong);
    padding: 18px 22px 4px;
    transition: color 0.3s ease;
}
.woocommerce ul.products li.product a:hover .woocommerce-loop-product__title {
    color: var(--primary);
}
.woocommerce ul.products li.product .woocommerce-loop-category__title mark.count {
    background: transparent;
    color: var(--gray);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

.woocommerce ul.products li.product .star-rating {
    font-size: 0.8em;
    margin: 8px 22px 0;
}

.woocommerce ul.products li.product .price {
    display: block;
    padding: 6px 22px 0;
    margin: 0;
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
}
.woocommerce ul.products li.product .price del {
    display: inline-block;
    margin-right: 6px;
}

/* Add-to-cart — full-width pill CTA at the card foot */
.woocommerce ul.products li.product .button {
    margin: 16px 22px 22px;
    align-self: stretch;
}
/* "View cart" link injected after an AJAX add */
.woocommerce ul.products li.product .added_to_cart {
    align-self: center;
    margin: -12px 22px 18px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13.5px;
}
.woocommerce ul.products li.product .added_to_cart:hover {
    color: var(--primary-light);
}

/* ============================================================
   5. Single product
   ============================================================ */

.woocommerce div.product {
    position: relative;
}

.woocommerce div.product .product_title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    color: var(--text-strong);
    margin-bottom: 10px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    font-size: 0.65em;
    vertical-align: middle;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    text-decoration: none;
    font-weight: 700;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--gray);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 14px;
}
.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
    color: var(--gray);
    font-size: 13.5px;
}
.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link:hover {
    color: var(--primary);
}

/* --- Gallery — rounded, elevated, gold-ring thumbnails --- */
.woocommerce div.product div.images {
    margin-bottom: 32px;
}
.woocommerce div.product div.images .flex-viewport,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.woocommerce div.product div.images img {
    border-radius: 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    background: var(--surface);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    top: 14px;
    right: 14px;
}
.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: 76px;
    float: none;
    margin: 0;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    border-radius: 12px;
    border: 2px solid transparent;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
}
.woocommerce div.product div.images .flex-control-thumbs li img:hover,
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* --- Purchase form --- */
.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin: 20px 0 24px;
    padding: 0;
    border: none;
}
.woocommerce div.product form.cart div.quantity {
    float: none;
    margin: 0;
}
.woocommerce div.product form.cart table.variations,
.woocommerce div.product form.cart .single_variation_wrap,
.woocommerce div.product form.cart table.group_table {
    flex: 0 0 100%;
}
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 14px;
}
.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
    padding: 6px 0;
    border: none;
    background: transparent;
    vertical-align: middle;
}
.woocommerce div.product form.cart .variations label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-base);
    margin: 0;
}
.woocommerce div.product form.cart .variations select {
    padding: 11px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: 10px;
    background: var(--cream);
    color: var(--text-base);
    font-family: inherit;
    font-size: 14.5px;
    margin: 0;
    transition: all 0.3s ease;
}
.woocommerce div.product form.cart .variations select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
}
.woocommerce div.product form.cart .reset_variations {
    color: var(--gray);
    font-size: 12.5px;
}
.woocommerce div.product form.cart .reset_variations:hover {
    color: var(--primary);
}

/* Add-to-cart pill with a Font Awesome cart glyph (FA is loaded
   globally by the theme) */
.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart .single_add_to_cart_button {
    float: none;
    padding: 14px 32px;
    font-size: 15px;
}
.woocommerce div.product form.cart .single_add_to_cart_button::before {
    content: "\f07a";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    margin-right: 2px;
}

/* Meta — SKU / categories / tags */
.woocommerce div.product .product_meta {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
    color: var(--gray);
    font-size: 13.5px;
}
.woocommerce div.product .product_meta > span {
    display: block;
    margin-bottom: 4px;
}
.woocommerce div.product .product_meta a {
    color: var(--primary);
    font-weight: 500;
}
.woocommerce div.product .product_meta a:hover {
    color: var(--primary-light);
}

/* --- Tabs — pill nav, gradient active, card panel --- */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 44px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0 0 26px;
    overflow: visible;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: var(--sage);
    border: none;
    border-radius: 30px;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover {
    background: var(--sage);
    transform: translateY(-2px);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--gradient);
    box-shadow: 0 6px 16px rgba(15, 81, 50, 0.3);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--white);
}
.woocommerce div.product .woocommerce-tabs .panel {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    margin: 0;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 24px;
    color: var(--text-strong);
    margin-bottom: 14px;
}
.woocommerce div.product .woocommerce-tabs .panel p {
    color: var(--text-base);
    font-size: 15px;
}

/* Attributes table inside the "Additional information" tab */
.woocommerce table.shop_attributes {
    border-top: none;
}
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    border-top: none;
    border-bottom: 1px solid var(--light-gray);
    padding: 12px 14px;
    background: transparent;
    font-style: normal;
    line-height: 1.6;
}
.woocommerce table.shop_attributes th {
    color: var(--text-strong);
    font-weight: 600;
}
.woocommerce table.shop_attributes td p {
    padding: 0;
    color: var(--gray);
}
.woocommerce table.shop_attributes tr:nth-child(even) th,
.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(odd) th,
.woocommerce table.shop_attributes tr:nth-child(odd) td {
    background: transparent;
}

/* --- Related / upsells / cross-sells — reuse the card grid --- */
.woocommerce .related.products,
.woocommerce .up-sells.products {
    margin-top: 56px;
    clear: both;
}
.woocommerce .related.products > h2,
.woocommerce .up-sells.products > h2,
.woocommerce .cross-sells > h2 {
    font-size: 30px;
    color: var(--text-strong);
    margin-bottom: 26px;
}

/* ============================================================
   6. Reviews
   ============================================================ */

.woocommerce #reviews #comments h2 {
    font-size: 22px;
    color: var(--text-strong);
    margin-bottom: 18px;
}
.woocommerce #reviews #comments ol.commentlist {
    padding: 0;
    margin: 0;
    list-style: none;
}
.woocommerce #reviews #comments ol.commentlist li {
    margin-bottom: 18px;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
    width: 46px;
    height: 46px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: var(--shadow-sm);
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin-left: 62px;
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    padding: 18px 20px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 8px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
    color: var(--text-strong);
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .description p {
    font-size: 14.5px;
    color: var(--text-base);
}

/* Review form */
.woocommerce #review_form #respond {
    background: var(--cream);
    border-radius: 20px;
    padding: 28px;
}
.woocommerce #review_form #respond .comment-reply-title {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 16px;
}
.woocommerce #review_form #respond p {
    margin-bottom: 16px;
}
.woocommerce #review_form #respond label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-base);
}
.woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond input[type="email"],
.woocommerce #review_form #respond textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text-base);
    font-family: inherit;
    font-size: 14.5px;
    transition: all 0.3s ease;
}
.woocommerce #review_form #respond input[type="text"]:focus,
.woocommerce #review_form #respond input[type="email"]:focus,
.woocommerce #review_form #respond textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--shadow-color), 0.12);
}
.woocommerce #review_form #respond textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============================================================
   7. Tables — shared card treatment (cart, orders, totals)
   ============================================================ */

.woocommerce table.shop_table {
    background: var(--surface);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}
.woocommerce table.shop_table th {
    background: var(--cream);
    color: var(--text-strong);
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 16px;
    border: none;
}
.woocommerce table.shop_table td {
    padding: 14px 16px;
    border: none;
    border-top: 1px solid var(--light-gray);
    color: var(--text-base);
    font-size: 14.5px;
    vertical-align: middle;
}
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
    border-top: 1px solid var(--light-gray);
    font-weight: 600;
}
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot th {
    background: transparent;
    color: var(--text-base);
    text-transform: none;
    letter-spacing: 0;
    font-size: 14.5px;
}

/* ============================================================
   8. Cart page
   ============================================================ */

.woocommerce-cart table.cart td.product-thumbnail img {
    width: 68px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.woocommerce-cart table.cart td.product-name a {
    color: var(--text-strong);
    font-weight: 600;
}
.woocommerce-cart table.cart td.product-name a:hover {
    color: var(--primary);
}
.woocommerce-cart table.cart td.product-price,
.woocommerce-cart table.cart td.product-subtotal {
    color: var(--primary);
    font-weight: 600;
}

/* Remove (×) control */
.woocommerce a.remove {
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 50%;
    color: var(--gray) !important; /* WC core hardcodes color:red!important */
    font-weight: 400;
    transition: all 0.3s ease;
}
.woocommerce a.remove:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626 !important; /* must out-gun the same WC !important on hover */
}

/* Actions row — coupon + update cart */
.woocommerce-cart table.cart td.actions {
    background: var(--cream);
    padding: 16px;
}
.woocommerce-cart table.cart td.actions .coupon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    float: left;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 200px;
    padding: 11px 16px;
    margin: 0;
    border: 2px solid var(--light-gray);
    border-radius: 30px;
    background: var(--surface);
    color: var(--text-base);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}
.woocommerce-cart table.cart td.actions .coupon .input-text:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--shadow-color), 0.12);
}
.woocommerce-cart table.cart td.actions .coupon .button,
.woocommerce-cart table.cart td.actions > .button {
    padding: 11px 22px;
    font-size: 14px;
}

/* Totals — side card */
.woocommerce-cart .cart-collaterals .cart_totals {
    background: var(--surface);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 26px;
}
.woocommerce-cart .cart-collaterals .cart_totals h2 {
    font-size: 24px;
    color: var(--text-strong);
    margin-bottom: 16px;
}
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 16px;
}
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th {
    background: transparent;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14.5px;
    padding-left: 0;
}
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
    padding-right: 0;
    text-align: right;
}
.woocommerce-cart .cart-collaterals .cart_totals .order-total td,
.woocommerce-cart .cart-collaterals .cart_totals .order-total .amount {
    color: var(--primary);
    font-size: 19px;
    font-weight: 700;
}
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination {
    color: var(--gray);
    font-size: 13px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shipping-calculator-button {
    color: var(--primary);
    font-weight: 600;
    font-size: 13.5px;
}

/* Shipping method choices */
.woocommerce ul#shipping_method,
.woocommerce-page ul#shipping_method {
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce ul#shipping_method li {
    margin: 0 0 6px;
    padding: 0;
    text-indent: 0;
}

/* Proceed to checkout — gold gradient pill (mirrors .cta-btnGold) */
.woocommerce-cart .wc-proceed-to-checkout {
    padding: 4px 0 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: flex;
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
    background: var(--gradient-gold);
    color: var(--charcoal);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
    margin-bottom: 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--gradient-gold);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.5);
}

/* Cross-sells reuse the product-card grid automatically */
.woocommerce-cart .cart-collaterals .cross-sells {
    margin-bottom: 32px;
}

/* ============================================================
   9. Forms — shared field language (checkout, account, login)
   Contact-form language: full width, 2px border, radius 12px,
   focus = primary border + soft ring.
   ============================================================ */

.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 18px;
}
.woocommerce form .form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-base);
    line-height: 1.5;
}
.woocommerce form .form-row label.checkbox,
.woocommerce form .form-row label.woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    font-weight: 500;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    background: var(--cream);
    color: var(--text-base);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(var(--shadow-color), 0.12);
}
.woocommerce form .form-row textarea {
    min-height: 110px;
    resize: vertical;
    height: auto;
}

/* Validation states — mirror .cf-hasError */
.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.04);
}
.woocommerce form .form-row.woocommerce-invalid input.input-text:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
    border-color: var(--primary-light);
}

/* Password visibility toggle (WC positions it absolutely) */
.woocommerce form .show-password-input {
    top: 15px;
    right: 14px;
    color: var(--gray);
}

/* Password strength meter */
.woocommerce form .woocommerce-password-strength {
    padding: 6px 0 0;
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    text-align: left;
}
.woocommerce form .woocommerce-password-strength.short,
.woocommerce form .woocommerce-password-strength.bad {
    color: #dc2626;
}
.woocommerce form .woocommerce-password-strength.good {
    color: var(--accent);
}
.woocommerce form .woocommerce-password-strength.strong {
    color: var(--primary-light);
}
.woocommerce form .woocommerce-password-hint {
    color: var(--gray);
    font-size: 12.5px;
}

/* ============================================================
   10. Checkout
   ============================================================ */

/* Section headings */
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
    font-size: 26px;
    color: var(--text-strong);
    margin-bottom: 18px;
}

/* Inline coupon form (revealed by the "Have a coupon?" notice) */
.woocommerce form.checkout_coupon {
    border: 1px dashed rgba(201, 169, 97, 0.55);
    border-radius: 16px;
    background: rgba(201, 169, 97, 0.08);
    padding: 20px;
    margin: 0 0 24px;
}
.woocommerce form.checkout_coupon .form-row {
    margin-bottom: 0;
}
.woocommerce form.checkout_coupon .button {
    padding: 13px 24px;
}

/* Login-on-checkout form */
.woocommerce form.woocommerce-form-login {
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin: 0 0 24px;
}

/* Ship-to-different-address toggle row */
.woocommerce-checkout #ship-to-different-address {
    font-size: 18px;
    color: var(--text-strong);
    margin: 8px 0 16px;
}
.woocommerce-checkout #ship-to-different-address label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    cursor: pointer;
}
.woocommerce-checkout #ship-to-different-address input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    margin: 0;
}

/* Order notes */
.woocommerce-checkout .woocommerce-additional-fields h3 {
    font-size: 20px;
    color: var(--text-strong);
    margin: 8px 0 14px;
}

/* Order review — side card */
.woocommerce-checkout #order_review {
    background: var(--surface);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 26px;
}
.woocommerce-checkout #order_review table.shop_table {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 20px;
}
.woocommerce-checkout #order_review table.shop_table th {
    background: transparent;
    padding-left: 0;
}
.woocommerce-checkout #order_review table.shop_table td {
    padding-right: 0;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
    color: var(--text-base);
    font-weight: 500;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total .amount,
.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-subtotal .amount {
    color: var(--text-base);
    font-weight: 600;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th {
    font-size: 15px;
    color: var(--text-strong);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total .amount {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

/* Payment box */
.woocommerce-checkout #payment {
    background: var(--cream);
    border-radius: 16px;
}
.woocommerce-checkout #payment ul.payment_methods {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    list-style: none;
}
.woocommerce-checkout #payment ul.payment_methods li {
    line-height: 1.6;
}
.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600;
    color: var(--text-base);
    cursor: pointer;
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    accent-color: var(--primary);
    margin-right: 8px;
}
.woocommerce-checkout #payment div.payment_box {
    background: var(--sage);
    border-radius: 12px;
    color: var(--text-base);
    font-size: 13.5px;
}
.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: var(--sage);
}
.woocommerce-checkout #payment div.form-row {
    padding: 16px 20px 20px;
}

/* Terms + privacy text */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    color: var(--gray);
    font-size: 13px;
}
.woocommerce-checkout .woocommerce-privacy-policy-text p {
    color: var(--gray);
    font-size: 13px;
}
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a,
.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: var(--primary);
    font-weight: 500;
}

/* Place order — full-width primary gradient pill */
.woocommerce-checkout #payment #place_order {
    display: flex;
    float: none;
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
}

/* --- Select2 dropdowns — match the input language. The open
   dropdown is appended to <body>, which carries .woocommerce-page
   on WC pages, so scoping still holds. --- */
.woocommerce-page .select2-container--default .select2-selection--single,
.woocommerce .select2-container--default .select2-selection--single {
    height: 50px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    background: var(--cream);
    transition: all 0.3s ease;
}
.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
    padding-left: 16px;
    color: var(--text-base);
    font-size: 15px;
}
.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__arrow,
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 10px;
}
.woocommerce-page .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce-page .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(var(--shadow-color), 0.12);
}
.woocommerce-page .select2-dropdown {
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.woocommerce-page .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    background: var(--cream);
    color: var(--text-base);
    padding: 8px 12px;
}
.woocommerce-page .select2-container--default .select2-results__option {
    color: var(--text-base);
    font-size: 14px;
    padding: 9px 14px;
}
.woocommerce-page .select2-container--default .select2-results__option--highlighted[aria-selected],
.woocommerce-page .select2-container--default .select2-results__option--highlighted[data-selected] {
    background: var(--primary);
    color: var(--white);
}
.woocommerce-page .select2-container--default .select2-results__option[aria-selected="true"],
.woocommerce-page .select2-container--default .select2-results__option[data-selected="true"] {
    background: var(--sage);
    color: var(--primary);
}

/* ============================================================
   11. Order received / order details
   ============================================================ */

.woocommerce-order .woocommerce-thankyou-order-received {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 24px;
}
.woocommerce ul.order_details,
.woocommerce ul.woocommerce-order-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}
.woocommerce ul.order_details li,
.woocommerce ul.woocommerce-order-overview li {
    float: none;
    margin: 0;
    padding: 14px 18px;
    border: 1px solid var(--light-gray);
    border-right-style: solid;
    border-radius: 14px;
    background: var(--cream);
    color: var(--gray);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.woocommerce ul.order_details li strong,
.woocommerce ul.woocommerce-order-overview li strong {
    display: block;
    margin-top: 4px;
    color: var(--text-strong);
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
}
.woocommerce .woocommerce-customer-details address {
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    font-style: normal;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================================
   12. My Account
   ============================================================ */

/* Navigation — card with pill links, active = gradient */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 28%;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0 0 6px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    margin-bottom: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 11px 18px;
    border-radius: 30px;
    color: var(--text-base);
    font-size: 14.5px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--sage);
    color: var(--primary);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(15, 81, 50, 0.3);
}

/* Content — card */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 68%;
    background: var(--surface);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 32px;
}
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    color: var(--text-strong);
    margin-bottom: 16px;
}
.woocommerce-account .woocommerce-MyAccount-content p {
    color: var(--text-base);
    font-size: 15px;
}
.woocommerce-account .woocommerce-MyAccount-content p a {
    color: var(--primary);
    font-weight: 500;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset {
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 20px;
    margin: 0 0 20px;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--text-strong);
    padding: 0 8px;
}

/* Orders table action buttons — compact pills */
.woocommerce-account .woocommerce-orders-table__cell-order-actions .button {
    padding: 8px 18px;
    font-size: 13px;
    margin: 2px 4px 2px 0;
    box-shadow: none;
}
.woocommerce-account .woocommerce-orders-table__cell-order-number a {
    color: var(--primary);
    font-weight: 600;
}

/* Address boxes */
.woocommerce-account .woocommerce-Addresses .woocommerce-Address .title h3,
.woocommerce-account .addresses .title h3 {
    font-size: 20px;
    color: var(--text-strong);
}
.woocommerce-account .addresses .title .edit {
    color: var(--primary);
    font-weight: 600;
    font-size: 13.5px;
}
.woocommerce-account .addresses .title .edit:hover {
    color: var(--primary-light);
}
.woocommerce-account .woocommerce-Address address,
.woocommerce-account .addresses address {
    background: var(--cream);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 20px;
    font-style: normal;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================================
   13. Login / register
   ============================================================ */

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.woocommerce-ResetPassword {
    max-width: 520px;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    margin: 0 0 32px;
}
.woocommerce form.login .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-weight: 500;
    cursor: pointer;
}
.woocommerce form.login .woocommerce-form-login__submit,
.woocommerce form.register .woocommerce-form-register__submit,
.woocommerce form.woocommerce-ResetPassword .woocommerce-Button {
    width: 100%;
}
.woocommerce .woocommerce-LostPassword,
.woocommerce .lost_password {
    font-size: 13.5px;
}
.woocommerce .woocommerce-LostPassword a,
.woocommerce .lost_password a {
    color: var(--primary);
    font-weight: 600;
}
.woocommerce .woocommerce-LostPassword a:hover,
.woocommerce .lost_password a:hover {
    color: var(--primary-light);
}
/* Side-by-side login/register on the account landing page */
.woocommerce-account .u-columns.col2-set#customer_login h2 {
    font-size: 26px;
    color: var(--text-strong);
    margin-bottom: 18px;
}

/* ============================================================
   14. Dark-theme touches
   Tokens do the heavy lifting; cards just get the same faint
   edge the theme gives .svc-card in dark mode.
   ============================================================ */

[data-theme="dark"] .woocommerce ul.products li.product {
    border: 1px solid rgba(255, 255, 255, 0.04);
}
[data-theme="dark"] .woocommerce div.product .woocommerce-tabs .panel,
[data-theme="dark"] .woocommerce-cart .cart-collaterals .cart_totals,
[data-theme="dark"] .woocommerce-checkout #order_review,
[data-theme="dark"] .woocommerce-account .woocommerce-MyAccount-content,
[data-theme="dark"] .woocommerce-account .woocommerce-MyAccount-navigation ul {
    border-color: rgba(255, 255, 255, 0.06);
}

/* ============================================================
   15. Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce[class*="columns-"] ul.products,
    .woocommerce-page[class*="columns-"] ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .woocommerce div.product .product_title {
        font-size: 30px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 32%;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 64%;
        padding: 26px;
    }
}

@media (max-width: 768px) {
    /* --- Archive --- */
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce[class*="columns-"] ul.products,
    .woocommerce-page[class*="columns-"] ul.products {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .woocommerce ul.products li.product {
        border-radius: 18px;
    }
    .woocommerce .woocommerce-result-count,
    .woocommerce-page .woocommerce-result-count {
        margin-bottom: 12px;
    }
    .woocommerce .woocommerce-ordering,
    .woocommerce-page .woocommerce-ordering {
        float: none;
        margin-bottom: 20px;
    }
    .woocommerce .woocommerce-ordering select.orderby {
        width: 100%;
    }

    /* --- Single product --- */
    .woocommerce div.product .product_title {
        font-size: 26px;
    }
    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 22px;
    }
    .woocommerce div.product .woocommerce-tabs .panel {
        padding: 22px 18px;
        border-radius: 18px;
    }
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 9px 18px;
        font-size: 13px;
    }
    .woocommerce div.product form.cart .single_add_to_cart_button {
        flex: 1 1 auto;
    }
    .woocommerce #reviews #comments ol.commentlist li .comment-text {
        margin-left: 0;
        margin-top: 8px;
    }
    .woocommerce #reviews #comments ol.commentlist li img.avatar {
        position: static;
        margin-bottom: 4px;
    }

    /* --- Stacked responsive tables (cart / orders). Written in
       full so the card look holds whether or not WC's
       woocommerce-smallscreen.css is enqueued. --- */
    .woocommerce table.shop_table_responsive thead,
    .woocommerce-page table.shop_table_responsive thead {
        display: none;
    }
    .woocommerce table.shop_table_responsive tbody tr,
    .woocommerce-page table.shop_table_responsive tbody tr {
        display: block;
        padding: 6px 0;
        border-top: 1px solid var(--light-gray);
    }
    .woocommerce table.shop_table_responsive tbody tr:first-child {
        border-top: none;
    }
    .woocommerce table.shop_table_responsive tr td,
    .woocommerce-page table.shop_table_responsive tr td {
        display: block;
        /* !important matches the one WC ships in
           woocommerce-smallscreen.css so this wins either way */
        text-align: right !important;
        border-top: none;
        padding: 10px 16px;
    }
    .woocommerce table.shop_table_responsive tr td::before,
    .woocommerce-page table.shop_table_responsive tr td::before {
        content: attr(data-title) ": ";
        float: left;
        font-weight: 600;
        color: var(--text-strong);
    }
    .woocommerce table.shop_table_responsive tr td.product-remove::before,
    .woocommerce table.shop_table_responsive tr td.actions::before,
    .woocommerce-page table.shop_table_responsive tr td.product-remove::before,
    .woocommerce-page table.shop_table_responsive tr td.actions::before {
        content: none;
    }
    .woocommerce table.shop_table_responsive tr td.product-thumbnail,
    .woocommerce-page table.shop_table_responsive tr td.product-thumbnail {
        display: none;
    }

    /* Cart actions stack */
    .woocommerce-cart table.cart td.actions .coupon {
        display: flex;
        flex-direction: column;
        float: none;
        gap: 10px;
        margin-bottom: 12px;
    }
    .woocommerce-cart table.cart td.actions .coupon .input-text,
    .woocommerce-cart table.cart td.actions .coupon .button,
    .woocommerce-cart table.cart td.actions > .button {
        width: 100%;
    }
    .woocommerce-cart .cart-collaterals .cart_totals {
        width: 100%;
        float: none;
        padding: 22px 18px;
    }
    .woocommerce-cart .cart-collaterals .cross-sells {
        width: 100%;
        float: none;
    }

    /* --- Checkout --- */
    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last,
    .woocommerce-page form .form-row-first,
    .woocommerce-page form .form-row-last {
        width: 100%;
        float: none;
    }
    .woocommerce-checkout #order_review {
        padding: 22px 18px;
    }
    .woocommerce-checkout #customer_details h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 22px;
    }

    /* --- Account --- */
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
        float: none;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 20px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li {
        margin: 0;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
        padding: 9px 16px;
        font-size: 13.5px;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 22px 18px;
    }
    .woocommerce form.login,
    .woocommerce form.register,
    .woocommerce form.woocommerce-ResetPassword {
        padding: 24px 18px;
        border-radius: 18px;
    }

    /* --- Shared --- */
    .woocommerce table.shop_table th,
    .woocommerce table.shop_table td {
        font-size: 13.5px;
    }
    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span {
        min-width: 38px;
        height: 38px;
    }
    .woocommerce ul.order_details li,
    .woocommerce ul.woocommerce-order-overview li {
        flex: 1 1 calc(50% - 6px);
    }
}

