@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ───────────────────────────────────────────
   CSS Variables
─────────────────────────────────────────── */
:root {
    --black: #0D0D0D;
    --dark-olive: #8A8264;
    --light-olive: #A8A68D;
    --grey-40: #999;
    --grey-60: #666;
    --border: #CCC;
    --white: #fff;
    --bg: #FAF9F7;

    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --max-width: 1280px;
    --header-main-h: 60px;
    --header-nav-h: 44px;
    --header-h: calc(var(--header-main-h) + var(--header-nav-h));
}

/* ───────────────────────────────────────────
   Reset overrides for OpenCart/Bootstrap
─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans) !important;
    font-size: 14px;
    color: var(--black);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* Force all elements to inherit Open Sans from body.
   The wokiee stylesheet has ~80 explicit "Hind" overrides on high-specificity
   selectors that the body rule alone cannot beat without this. */
* { font-family: inherit !important; }

/* Restore Font Awesome 5 icon fonts (they don't use !important in their CSS) */
.fa, .fas, .far { font-family: "Font Awesome 5 Free" !important; }
.fab            { font-family: "Font Awesome 5 Brands" !important; }
/* Wokiee icon font already uses !important in its source — no override needed */

body.is-loading { overflow: hidden; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.astonea-container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 24px;
}

/* Offset wokiee page content below fixed header (breadcrumb is the first element on all wokiee pages) */
.tt-breadcrumb {
    padding-top: var(--header-h);
}

@media (max-width: 1024px) {
    .tt-breadcrumb { padding-top: var(--header-main-h); }
}

/* Bottom breathing room before footer on all wokiee-wrapped pages */
.container-indent { padding-bottom: 64px; }

/* ───────────────────────────────────────────
   Splash Screen
─────────────────────────────────────────── */
#splash-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease;
}

#splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-logo {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(56px, 13vw, 180px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0;
}

.splash-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: splashCharIn 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.splash-char.space { width: 0.3em; }

@keyframes splashCharIn {
    to { opacity: 1; transform: translateY(0); }
}

/* The splash is the wordmark alone — no frame-preload bar or percentage
   caption. Both used to print across the middle of the lettering. The hold
   itself is unchanged: it still waits on the hero's heroFramesReady flag. */

/* ───────────────────────────────────────────
   Header
─────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease, transform 0.35s cubic-bezier(.16, 1, .3, 1);
    will-change: transform;
}

/* Slides out of the way on scroll down, returns on scroll up. */
.site-header.header-hidden {
    transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
    .site-header { transition: none; }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-main-h);
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 24px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.header-center { flex-shrink: 0; padding-inline: 16px; }

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.logo-link {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(17px, 2vw, 26px);
    font-weight: 900;
    letter-spacing: 0;
    color: inherit;
    line-height: 1;
    white-space: nowrap;
    display: block;
    transition: color 0.35s ease;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
}

.search-btn:hover { color: var(--dark-olive); }

.search-btn svg, .header-right svg {
    width: 20px; height: 20px;
    stroke: currentColor; fill: none; stroke-width: 1.5;
}

.search-btn svg { width: 18px; height: 18px; }

.get-directions {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
    transition: color 0.2s;
    flex-shrink: 0;
}

.get-directions:hover { color: var(--dark-olive); }

.header-right button {
    display: flex;
    align-items: center;
    position: relative;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    flex-shrink: 0;
}

.header-right button:hover { color: var(--dark-olive); }

.header-right a {
    display: flex;
    align-items: center;
    position: relative;
    color: var(--black);
    transition: color 0.2s;
    flex-shrink: 0;
}

.header-right a:hover { color: var(--dark-olive); }

.cart-btn { padding: 4px; }

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px; height: 16px;
    padding: 0 3px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: -4px; right: -6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--black);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav row */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border);
    height: var(--header-nav-h);
    padding-inline: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.header-nav::-webkit-scrollbar { display: none; }

.header-nav .nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-nav .nav-link {
    padding: 0 11px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: inherit;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
}

.header-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 11px; right: 11px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.header-nav .nav-item:hover > .nav-link::after { transform: scaleX(1); }
.header-nav .nav-link:hover { color: var(--dark-olive); }

/* Mega menu */
.nav-dropdown {
    position: absolute;
    top: 100%; left: 0;
    background: var(--white);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.nav-item:hover > .nav-dropdown {
    opacity: 1; visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.nav-mega {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 40px 0 0;
}

.mega-inner {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 24px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.mega-cols { display: flex; gap: 40px; flex: 1; min-width: 0; }

.mega-col { display: flex; flex-direction: column; gap: 0; min-width: 120px; }

.mega-heading {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--black); margin-bottom: 14px;
}

.mega-col > a {
    display: block;
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.02em; text-transform: none;
    color: var(--grey-60) !important;
    padding: 5px 0; height: auto;
    white-space: nowrap; transition: color 0.15s;
}

.mega-col > a::after { display: none !important; }
.mega-col > a:hover { color: var(--black) !important; }

.mega-footer-bar {
    max-width: var(--max-width);
    margin-inline: auto;
    padding: 18px 24px 20px;
    border-top: 1px solid var(--border);
    margin-top: 32px;
}

.mega-view-all {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--black); text-decoration: none;
    transition: color 0.2s;
}

.mega-view-all:hover { color: var(--dark-olive); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--white);
    z-index: 998;
    overflow-y: auto;
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.mobile-nav.open { transform: translateX(0); }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s ease 0.3s;
}
.nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition-delay: 0s;
}

.mobile-nav a {
    display: block;
    font-size: 15px; font-weight: 400;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--black);
}

.mobile-nav a:hover { color: var(--dark-olive); }

.mobile-nav-actions {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
}

.mobile-nav-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none; padding: 0;
}

.mobile-nav-actions svg {
    width: 22px; height: 22px;
    stroke: currentColor; fill: none; stroke-width: 1.5;
}

/* ───────────────────────────────────────────
   Transparent header on home page
─────────────────────────────────────────── */
.page-home .site-header {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.page-home .site-header .logo-link,
.page-home .site-header .search-btn,
.page-home .site-header .get-directions,
.page-home .site-header .header-right button,
.page-home .site-header .header-right a,
.page-home .site-header .nav-link,
.page-home .site-header .header-nav > a {
    color: var(--black);
    transition: color 0.35s ease;
}

.page-home .site-header .header-nav {
    border-top-color: var(--border) !important;
}

.page-home .site-header .hamburger span { background: var(--black); }
.page-home .site-header svg { stroke: var(--black); }

.page-home .site-header .cart-count {
    background: rgba(255,255,255,0.9) !important;
    color: var(--black) !important;
}

.page-home .site-header.scrolled,
.page-home .site-header:hover {
    background: rgba(255,255,255,0.97) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    backdrop-filter: blur(12px);
}

.page-home .site-header.scrolled .logo-link,
.page-home .site-header.scrolled .search-btn,
.page-home .site-header.scrolled .get-directions,
.page-home .site-header.scrolled .header-right button,
.page-home .site-header.scrolled .header-right a,
.page-home .site-header.scrolled .nav-link,
.page-home .site-header.scrolled .header-nav > a,
.page-home .site-header:hover .logo-link,
.page-home .site-header:hover .search-btn,
.page-home .site-header:hover .get-directions,
.page-home .site-header:hover .header-right button,
.page-home .site-header:hover .header-right a,
.page-home .site-header:hover .nav-link,
.page-home .site-header:hover .header-nav > a {
    color: var(--black);
}

.page-home .site-header.scrolled .header-nav,
.page-home .site-header:hover .header-nav {
    border-top-color: var(--border) !important;
}

.page-home .site-header.scrolled .hamburger span,
.page-home .site-header:hover .hamburger span { background: var(--black); }

.page-home .site-header.scrolled svg,
.page-home .site-header:hover svg { stroke: var(--black); }

.page-home .site-header.scrolled .cart-count,
.page-home .site-header:hover .cart-count {
    background: var(--black) !important;
    color: var(--white) !important;
}

/* ───────────────────────────────────────────
   Search Overlay
─────────────────────────────────────────── */
.search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0;
    max-height: 62vh;
    z-index: 1001;
    background: var(--white);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    overflow-y: auto;
    box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}
/* Backdrop for the bottom half when overlay is open */
.search-overlay.is-open::after {
    display: none; /* backdrop handled by JS-toggled body class below */
}
body.search-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.28);
    animation: searchBackdropIn 0.22s ease forwards;
}
@keyframes searchBackdropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.search-overlay.is-open {
    opacity: 1; visibility: visible; pointer-events: all;
    transform: translateY(0);
}

.search-overlay-header {
    display: flex;
    align-items: center;
    height: var(--header-main-h);
    padding-inline: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    position: sticky; top: 0;
    background: var(--white); z-index: 1;
}

.search-overlay-left {
    display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0;
}

.search-overlay-right {
    display: flex; align-items: center; justify-content: flex-end; gap: 16px; flex: 1; min-width: 0;
}

.search-overlay-right a {
    display: flex; align-items: center;
    color: var(--black); transition: color 0.2s; flex-shrink: 0;
}
.search-overlay-right a:hover { color: var(--dark-olive); }

.search-overlay-right svg {
    width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; display: block;
}

.search-overlay-close {
    flex-shrink: 0; display: flex; align-items: center;
    color: var(--black); background: none; border: none; cursor: pointer; padding: 4px; transition: color 0.2s;
}

.search-overlay-close svg {
    width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5;
}

.search-overlay-close:hover { color: var(--dark-olive); }

.search-overlay-input-wrap {
    flex: 1; display: flex; align-items: center; gap: 10px; min-width: 0;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.search-overlay-input-wrap:focus-within {
    border-color: var(--black);
}

.search-icon-svg {
    width: 17px; height: 17px; stroke: var(--grey-40); fill: none; stroke-width: 1.5; flex-shrink: 0;
    transition: stroke 0.2s;
}
.search-overlay-input-wrap:focus-within .search-icon-svg { stroke: var(--black); }

.search-overlay-input {
    width: 100%; border: none; outline: none;
    font-size: 16px; font-family: var(--font-sans);
    color: var(--black); background: transparent;
    letter-spacing: 0.01em; -webkit-appearance: none; appearance: none;
    min-width: 0;
}

.search-overlay-input::placeholder { color: var(--grey-40); font-size: 15px; }
.search-overlay-input::-webkit-search-cancel-button { display: none; }

/* Clear button */
.search-clear-btn {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    color: var(--grey-40); padding: 2px; transition: color 0.15s;
    width: 20px; height: 20px;
}
.search-clear-btn:hover { color: var(--black); }
.search-clear-btn svg { width: 14px; height: 14px; }

/* Loading spinner */
.search-spinner {
    flex-shrink: 0; display: none; width: 16px; height: 16px;
    border: 1.5px solid var(--border); border-top-color: var(--black);
    border-radius: 50%;
    animation: search-spin 0.7s linear infinite;
}
.search-spinner.active { display: block; }
@keyframes search-spin { to { transform: rotate(360deg); } }

.search-overlay-logo {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(17px, 2vw, 26px); font-weight: 900;
    letter-spacing: 0; color: var(--black);
    line-height: 1; white-space: nowrap; flex-shrink: 0;
    text-decoration: none;
}

.search-overlay-body {
    max-width: var(--max-width); margin-inline: auto;
    padding: 40px 24px 64px;
    display: flex; gap: 80px; align-items: flex-start;
    flex-wrap: wrap;
}

/* Recent searches */
.search-recent {
    width: 100%; flex: 0 0 100%;
    margin-bottom: -20px;
}
.search-recent-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
}
.search-recent-header .search-label-heading { margin-bottom: 0; }
.search-recent-clear-all {
    background: none; border: none; cursor: pointer;
    font-size: 12px; color: var(--grey-60); letter-spacing: 0.03em;
    padding: 0; transition: color 0.15s;
}
.search-recent-clear-all:hover { color: var(--black); }
#searchRecentList {
    display: flex; flex-wrap: wrap; gap: 8px;
    list-style: none; margin: 0; padding: 0;
}
#searchRecentList li {
    display: flex; align-items: center; gap: 6px;
}
#searchRecentList li a,
#searchRecentList li a:visited,
#searchRecentList li a:link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--grey-60) !important;
    background: #f4f3f1 !important; background-image: none !important;
    border-radius: 20px;
    padding: 5px 14px; text-decoration: none;
    -webkit-text-fill-color: var(--grey-60) !important;
    transition: background 0.15s, color 0.15s;
}
#searchRecentList li a:hover { background: #eae8e4 !important; color: var(--black) !important; -webkit-text-fill-color: var(--black) !important; }
#searchRecentList li a svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; opacity: 0.6; }
.search-recent-remove {
    background: none; border: none; cursor: pointer;
    color: var(--grey-40); padding: 2px 4px; font-size: 14px; line-height: 1;
    transition: color 0.15s; display: flex; align-items: center;
}
.search-recent-remove:hover { color: var(--black); }

.search-popular { flex: 0 0 180px; }

.search-label-heading {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--black); margin-bottom: 20px;
}

.search-popular ul { display: flex; flex-direction: column; gap: 0; }

.search-popular ul li a,
.search-popular ul li a:visited,
.search-popular ul li a:link {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--grey-60) !important;
    -webkit-text-fill-color: var(--grey-60) !important;
    background: transparent !important; background-image: none !important;
    padding: 8px 0; letter-spacing: 0.01em; transition: color 0.15s;
    border-bottom: 1px solid transparent; text-decoration: none;
}
.search-popular ul li a::before {
    content: '';
    display: inline-block; width: 5px; height: 5px;
    border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor;
    transform: rotate(45deg); flex-shrink: 0; opacity: 0.5;
    transition: opacity 0.15s;
}
.search-popular ul li a:hover { color: var(--black) !important; -webkit-text-fill-color: var(--black) !important; }
.search-popular ul li a:hover::before { opacity: 1; }

.search-categories { flex: 1; min-width: 0; }

.search-cat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}

.search-cat-item { display: block; }

.search-cat-img {
    position: relative; aspect-ratio: 4/5; overflow: hidden; background: #f0ede8;
    border-radius: 4px;
}

.search-cat-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
}

.search-cat-item:hover .search-cat-img img { transform: scale(1.05); }

.search-cat-img span {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 12px 8px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--white); text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 55%);
    line-height: 1.35;
}

/* Live search results */
.search-live-results {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    max-height: 420px;
    overflow-y: auto;
}
.search-results-list {
    list-style: none; margin: 0; padding: 6px 0;
    max-width: var(--max-width); margin-inline: auto;
}
.search-results-list li a {
    display: flex; align-items: center; gap: 14px;
    padding: 10px 28px;
    color: var(--black); text-decoration: none;
    font-size: 14px;
    transition: background 0.12s;
    outline: none;
}
.search-results-list li a:hover,
.search-results-list li a.is-focused { background: #f7f6f4; }
.search-results-list li a img {
    width: 48px; height: 48px; object-fit: cover; border-radius: 4px;
    flex-shrink: 0; background: #f0ede8;
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { display: block; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-name mark {
    background: none; color: var(--dark-olive); font-weight: 600;
}
.search-result-price {
    display: block; font-size: 12px; color: var(--grey-60); margin-top: 2px;
}
.search-results-footer {
    padding: 10px 28px 14px;
    border-top: 1px solid var(--border);
    max-width: var(--max-width); margin-inline: auto;
}
.search-results-footer a {
    font-size: 13px; color: var(--dark-olive); text-decoration: none;
    font-weight: 600; letter-spacing: 0.02em; transition: color 0.15s;
}
.search-results-footer a:hover { color: var(--black); }
.search-no-results {
    padding: 36px 28px; font-size: 14px; color: var(--grey-40);
    margin: 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
    max-width: var(--max-width); margin-inline: auto;
}
.search-no-results svg {
    width: 32px; height: 32px; stroke: var(--border); fill: none; stroke-width: 1.2;
    margin-bottom: 4px;
}
.search-no-results strong { display: block; font-size: 15px; color: var(--grey-60); font-weight: 600; }

/* ───────────────────────────────────────────
   Scroll Reveal
─────────────────────────────────────────── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.reveal-on-scroll[data-reveal="left"] { transform: translateX(-32px); }
.reveal-on-scroll[data-reveal="right"] { transform: translateX(32px); }

.reveal-on-scroll.is-visible[data-reveal="left"],
.reveal-on-scroll.is-visible[data-reveal="right"] { transform: translateX(0); }

/* ───────────────────────────────────────────
   Footer
─────────────────────────────────────────── */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    overflow: clip;
}

.footer-body {
    display: flex;
    align-items: stretch;
    gap: clamp(24px, 4vw, 56px);
    min-height: clamp(420px, 42vw, 560px);
}

.footer-links {
    flex: 0 0 40%;
    display: flex;
    gap: 0;
    padding: 60px 40px 48px 40px;
    max-width: 560px;
}

.footer-col { flex: 1; min-width: 110px; }

.footer-col h5 {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--white); margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; padding: 0; }

.footer-col ul li a {
    font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-brand-col {
    flex: 1; min-width: 0;
    display: flex; align-items: flex-end;
    padding: 32px 40px 32px 0;
    --footer-wordmark-bottom-gap: clamp(20px,3vw,36px);
}

.footer-brand-sticky {
    position: sticky;
    bottom: var(--footer-wordmark-bottom-gap);
    width: 100%; margin-top: auto;
}

.footer-wordmark {
    display: block; width: 100%; max-width: 920px; height: auto; user-select: none;
}

.footer-contact {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-contact-address {
    font-size: 12.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.75;
    margin: 0 0 10px;
}
.footer-contact-links {
    margin: 0;
    line-height: 1.85;
}
.footer-contact-link {
    font-size: 12.5px;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}
.footer-contact-link:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}

.footer-bottom p {
    font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; margin: 0;
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
    font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ───────────────────────────────────────────
   Search Results Page
─────────────────────────────────────────── */

/* Search Hero */
.sr-hero {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 52px 24px 44px;
}
.sr-hero-inner {
    max-width: var(--max-width);
    margin-inline: auto;
}
.sr-eyebrow {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--grey-60); margin: 0 0 12px;
}
.sr-heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 400; color: var(--black);
    margin: 0 0 32px; line-height: 1.15;
}
.sr-heading em { font-style: italic; }

/* Refine form */
.sr-refine-wrap {
    display: flex; align-items: center; gap: 12px;
    max-width: 580px;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 10px;
    transition: border-color 0.2s;
}
.sr-refine-wrap:focus-within { border-color: var(--black); }
.sr-refine-wrap > svg {
    width: 17px; height: 17px; flex-shrink: 0;
    stroke: var(--grey-40); fill: none; stroke-width: 1.5;
    transition: stroke 0.2s;
}
.sr-refine-wrap:focus-within > svg { stroke: var(--black); }
.sr-refine-input {
    flex: 1; min-width: 0; border: none; outline: none;
    font-size: 16px; font-family: var(--font-sans);
    color: var(--black); background: transparent;
    -webkit-appearance: none; appearance: none;
}
.sr-refine-input::placeholder { color: var(--grey-40); }
.sr-refine-input::-webkit-search-cancel-button { display: none; }
.sr-refine-clear {
    flex-shrink: 0; display: flex; align-items: center;
    background: none; border: none; cursor: pointer;
    color: var(--grey-40); padding: 0; transition: color 0.15s;
}
.sr-refine-clear:hover { color: var(--black); }
.sr-refine-clear svg { width: 14px; height: 14px; }
.sr-refine-btn {
    flex-shrink: 0;
    background: var(--black); color: var(--white);
    border: none; cursor: pointer;
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 9px 20px;
    transition: background 0.2s; white-space: nowrap;
}
.sr-refine-btn:hover { background: var(--dark-olive); }

/* Sticky Filter / Sort bar */
.sr-bar {
    position: sticky;
    top: var(--header-h);
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.sr-bar-inner {
    max-width: var(--max-width);
    margin-inline: auto;
    padding: 10px 24px 20px;
    display: flex; align-items: center; gap: 12px;
}

/* Category filter chips */
.sr-chips {
    display: flex; align-items: center; gap: 6px;
    flex: 1; min-width: 0;
    overflow-x: auto; scrollbar-width: none;
    padding: 6px 0;
}
.sr-chips::-webkit-scrollbar { display: none; }
.sr-chip,
.sr-chip:visited,
.sr-chip:link {
    flex-shrink: 0;
    display: inline-flex; align-items: center;
    padding: 5px 15px; border-radius: 20px;
    border: 1px solid var(--border);
    font-size: 12px; font-weight: 500; letter-spacing: 0.03em;
    color: var(--grey-60) !important; text-decoration: none; white-space: nowrap;
    background: transparent !important; background-image: none !important;
    -webkit-text-fill-color: var(--grey-60) !important;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.sr-chip:hover { border-color: var(--black); color: var(--black) !important; -webkit-text-fill-color: var(--black) !important; }
.sr-chip.active { background: var(--black) !important; color: var(--white) !important; border-color: var(--black); -webkit-text-fill-color: var(--white) !important; }

/* Sort */
.sr-sort-wrap {
    flex-shrink: 0; display: flex; align-items: center; gap: 6px;
    border-left: 1px solid var(--border); padding-left: 14px; margin-left: 2px;
}
.sr-sort-icon {
    width: 15px; height: 15px; stroke: var(--grey-60); fill: none; stroke-width: 1.5; flex-shrink: 0;
}
.sr-select {
    border: none; outline: none;
    font-size: 12px; font-weight: 500; letter-spacing: 0.03em;
    color: var(--black); background: transparent; cursor: pointer;
    -webkit-appearance: none; appearance: none;
    padding-right: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' fill='none' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    font-family: var(--font-sans);
}

/* Product grid */
.sr-grid-wrap {
    max-width: var(--max-width);
    margin-inline: auto;
    padding: 36px 12px 52px;
}

/* Pagination */
.sr-pagination {
    max-width: var(--max-width);
    margin-inline: auto;
    padding: 20px 24px 72px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    border-top: 1px solid var(--border);
}
.sr-pagination .pagination {
    display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.sr-pagination .pagination > li > a,
.sr-pagination .pagination > li > span {
    display: flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 6px;
    font-size: 13px; font-family: var(--font-sans);
    color: var(--black); text-decoration: none;
    border: 1px solid var(--border); border-radius: 2px;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.sr-pagination .pagination > li > a:hover {
    background: var(--black); color: var(--white); border-color: var(--black);
}
.sr-pagination .pagination > li.active > span {
    background: var(--black); color: var(--white); border-color: var(--black);
}
.sr-pagination .pagination > li.disabled > span {
    color: var(--border); cursor: default; border-color: var(--border);
}
.sr-pagination-count {
    font-size: 12px; color: var(--grey-60); letter-spacing: 0.02em; margin: 0;
}

/* Empty State */
.sr-empty {
    max-width: 500px;
    margin: 80px auto 100px;
    text-align: center;
    padding-inline: 24px;
}
.sr-empty-icon {
    margin-bottom: 28px;
    color: #d0cec9;
}
.sr-empty-icon svg { width: 72px; height: 72px; }
.sr-empty-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 400; color: var(--black);
    margin: 0 0 12px; line-height: 1.25;
}
.sr-empty-title em { font-style: italic; }
.sr-empty-sub {
    font-size: 14px; color: var(--grey-60);
    line-height: 1.75; margin: 0 0 36px;
}
.sr-empty-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; margin-bottom: 52px; flex-wrap: wrap;
}
.sr-empty-btn {
    display: inline-flex; align-items: center;
    background: var(--black); color: var(--white);
    padding: 13px 28px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
}
.sr-empty-btn:hover { background: var(--dark-olive); color: var(--white); }
.sr-empty-link {
    font-size: 13px; color: var(--grey-60); text-decoration: none;
    letter-spacing: 0.02em; border-bottom: 1px solid var(--border);
    padding-bottom: 2px; transition: color 0.15s, border-color 0.15s;
}
.sr-empty-link:hover { color: var(--black); border-color: var(--black); }
.sr-empty-suggestions { margin-top: 0; }
.sr-empty-suggestions-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--black); margin-bottom: 16px;
}
.sr-empty-chips {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.sr-empty-chips a,
.sr-empty-chips a:visited,
.sr-empty-chips a:link {
    display: inline-flex; align-items: center;
    padding: 6px 16px; border-radius: 20px;
    border: 1px solid var(--border);
    font-size: 13px; color: var(--grey-60) !important; text-decoration: none;
    background: transparent !important;
    background-image: none !important;
    -webkit-text-fill-color: var(--grey-60) !important;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.sr-empty-chips a:hover {
    border-color: var(--black); color: var(--black) !important;
    -webkit-text-fill-color: var(--black) !important;
}

/* ───────────────────────────────────────────
   Responsive
─────────────────────────────────────────── */
@media (max-width: 1200px) {
    .footer-links { flex: 0 0 55%; padding: 48px 24px 40px 32px; }
    .footer-brand-col { padding-right: 24px; }
}

@media (max-width: 1024px) {
    :root { --header-h: var(--header-main-h); }
    .header-nav { display: none !important; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }
    .nav-mega { display: none !important; }
    .get-directions { display: none !important; }
    /* hide wokiee's own desktop nav/category bar */
    #tt-header .tt-desktop-header__nav,
    .tt-desktop-header__nav,
    #navigation { display: none !important; }
}

@media (max-width: 768px) {

    .footer-body { flex-direction: column; min-height: auto; }
    .footer-links { flex: none; width: 100%; max-width: 100%; padding: 48px 24px 32px; }
    .footer-brand-col { width: 100%; padding: 0 24px 32px; }
    .footer-brand-sticky { position: relative; bottom: auto; }
    .footer-bottom { padding: 20px 24px; }

    /* Search results page */
    .sr-hero { padding: 36px 16px 32px; }
    .sr-heading { margin-bottom: 24px; }
    .sr-bar-inner { padding-inline: 12px; }
    .sr-grid-wrap { padding: 24px 4px 40px; }
    .sr-pagination { padding: 16px 16px 56px; }
    .sr-refine-btn { padding: 9px 14px; font-size: 10px; }

    .search-overlay-body { flex-direction: column; gap: 32px; padding: 28px 16px 48px; }
    .search-popular { flex: none; width: 100%; }
    .search-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .search-overlay-logo { display: none; }
    .search-overlay-header { padding-inline: 16px; }
    .search-overlay-right a:not(:last-child) { display: none; }
    .search-overlay-input { font-size: 16px; }
    .search-results-list li a { padding: 10px 16px; }
    .search-results-footer { padding: 10px 16px 14px; }
    .search-no-results { padding: 28px 16px; }
    #searchRecentList li a { font-size: 12px; padding: 5px 12px; }
}

@media (max-width: 600px) {
    .footer-links { flex-direction: column; gap: 32px; }
    .footer-col { min-width: 0; }
}

@media (max-width: 500px) {
    :root { --header-main-h: 52px; --header-h: 52px; }
    .search-label { display: none; }
    .header-main { padding-inline: 12px; }
    .header-right { gap: 10px; }
    .logo-link { font-size: 15px; }

    /* Search results page */
    .sr-sort-wrap { display: none; }
    .sr-bar-inner { height: 44px; }
    .sr-empty { margin-block: 56px 72px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    #splash-screen, .reveal-on-scroll { transition: none !important; animation: none !important; }
    .splash-char, .reveal-on-scroll { opacity: 1; transform: none; }
}

/* ─── Wokiee product description area ─── */
section.extraarea {
    max-width: 1280px;
    margin-inline: auto;
    padding: 0 40px 48px !important;
    box-sizing: border-box;
}

/* Intro paragraph — padded top, bottom gap before first card */
section.extraarea > p:first-child {
    padding-top: 28px;
    margin-bottom: 0;
    line-height: 1.75;
    color: #444;
}

/* Reset krill wrapper to fill full width */
section.extraarea .krill-full-section {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* White content card (Benefits, Ingredients) */
section.extraarea .krill-top {
    padding: 28px 0 32px !important;
    background: transparent !important;
    border-top: 1px solid #e8e4dc;
    margin-top: 24px !important;
}
section.extraarea .krill-top h2 {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: #0D0D0D !important;
    margin: 0 0 16px !important;
}
section.extraarea .krill-top ul,
section.extraarea .krill-top ol {
    padding-left: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
section.extraarea .krill-top li {
    padding: 8px 0 8px 20px !important;
    border-bottom: 1px solid #f0ede8 !important;
    position: relative !important;
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}
section.extraarea .krill-top li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background: #8A8264;
    border-radius: 50%;
}
/* numbered list items: no extra bullet, normalize weight/case to match benefits */
section.extraarea .krill-top ol > li {
    padding-left: 8px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    color: #555 !important;
}
section.extraarea .krill-top ol > li::before {
    display: none !important;
}
section.extraarea .krill-top ol > li strong,
section.extraarea .krill-top ol > li b {
    font-weight: 600 !important;
}
section.extraarea .krill-top li:last-child { border-bottom: none !important; }

/* Ingredient blocks — hide empties */
section.extraarea .ing-block:empty,
section.extraarea li:empty,
section.extraarea ul:empty,
section.extraarea ol:empty { display: none !important; }

section.extraarea .ing-block {
    padding: 12px 0 !important;
    border-bottom: 1px solid #f0ede8 !important;
    margin: 0 !important;
}
section.extraarea .ing-block:last-child { border-bottom: none !important; }
section.extraarea .ing-block h3 {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    color: #0D0D0D !important;
    margin: 0 0 6px !important;
}
section.extraarea .ing-block p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Remove any browser/Bootstrap outline on lists */
section.extraarea ul,
section.extraarea ol {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Dark full-bleed section — breaks out of container */
section.extraarea .krill-dark {
    margin-inline: -40px !important;
    padding: 52px 40px 60px !important;
    background: #0D0D0D !important;
    color: #fff !important;
    margin-top: 0 !important;
    margin-bottom: 56px !important;
}
section.extraarea .krill-dark h2,
section.extraarea .krill-dark h3 {
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    margin: 0 0 20px !important;
}
section.extraarea .krill-dark p {
    color: rgba(255,255,255,0.75) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 0 10px !important;
}
section.extraarea .krill-dark p:last-of-type { margin-bottom: 0 !important; }
section.extraarea .krill-dark p:empty { display: none !important; }
section.extraarea .krill-dark br { display: none !important; }
section.extraarea .krill-dark li {
    color: rgba(255,255,255,0.75) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 0 8px !important;
}
section.extraarea .krill-dark ul,
section.extraarea .krill-dark ol {
    margin: 0 0 10px !important;
    padding-left: 0 !important;
    list-style: none !important;
}
section.extraarea .krill-dark-inner {
    display: block !important;
}
section.extraarea .krill-dark-inner > *:last-child:not(:first-child) {
    display: none !important;
}
section.extraarea .krill-dark img {
    display: none !important;
}
section.extraarea .krill-dark a.btn,
section.extraarea .krill-dark a[class*="btn"],
section.extraarea .krill-dark button {
    display: inline-block !important;
    margin-top: 24px !important;
    padding: 11px 28px !important;
    border: 1px solid rgba(255,255,255,0.6) !important;
    color: #fff !important;
    background: transparent !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    transition: border-color 0.2s, color 0.2s !important;
}
section.extraarea .krill-dark a.btn:hover,
section.extraarea .krill-dark a[class*="btn"]:hover,
section.extraarea .krill-dark button:hover {
    border-color: #fff !important;
    color: #fff !important;
}

@media (max-width: 900px) {
    section.extraarea { padding: 0 20px 36px !important; }
    section.extraarea .krill-dark { margin-inline: -20px !important; padding: 36px 20px 44px !important; margin-bottom: 40px !important; }
}
@media (max-width: 560px) {
    section.extraarea { padding: 0 16px 28px !important; }
    section.extraarea .krill-dark { margin-inline: -16px !important; padding: 28px 16px 36px !important; margin-bottom: 32px !important; }
    section.extraarea .krill-dark h2,
    section.extraarea .krill-dark h3 { font-size: 11px !important; letter-spacing: 2px !important; margin-bottom: 14px !important; }
    section.extraarea .krill-dark li { font-size: 13px !important; }
    section.extraarea .krill-dark p { font-size: 13px !important; }
}

/* ═══════════════════════════════════════════
   Inner Page Layout System
   (About Us, Wellness, A1 Academy, Join Us)
═══════════════════════════════════════════ */

/* Page container — replaces Bootstrap .container for full-bleed pages */
.pg-wrap {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
}

/* Main content area for full-bleed pages (no wokiee wrapper) */
.astonea-page {
    padding-top: var(--header-h);
}

/* ─── Sections ─── */
.section {
    padding-block: 72px;
}
.section-sm {
    padding-block: 48px;
}
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
    flex-wrap: wrap;
}
.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 44px);
    letter-spacing: 0.01em;
    color: var(--black);
    margin: 0;
}
.section-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
    white-space: nowrap;
}
.section-link:hover { color: var(--dark-olive); border-color: var(--dark-olive); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
    position: relative;
    overflow: hidden;
    background: #111;
    min-height: clamp(280px, 45vw, 500px);
    display: flex;
    align-items: flex-end;
}
.page-hero img.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.45;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    padding-block: clamp(40px, 8vw, 80px) clamp(32px, 5vw, 60px);
}

/* ─── Responsive Page Grids ─── */
.pg-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}
.pg-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
}
.pg-section-img {
    width: 100%;
    display: block;
    height: clamp(240px, 38vw, 520px);
    object-fit: cover;
    object-position: center top;
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-block;
    padding: 13px 36px;
    background: var(--white);
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
    border: 1px solid transparent;
    text-decoration: none;
}
.btn-primary:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn-outline {
    display: inline-block;
    padding: 13px 36px;
    background: transparent;
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--black);
    transition: background 0.25s, color 0.25s;
    text-decoration: none;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-dark {
    display: inline-block;
    padding: 13px 36px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all 0.25s;
    text-decoration: none;
}
.btn-dark:hover { background: var(--dark-olive); color: var(--white); }

/* ─── Newsletter Section ─── */
.newsletter-section {
    background: #F2F2F2;
    text-align: center;
    padding-block: 100px 120px;
}
.newsletter-inner { max-width: 760px; margin-inline: auto; }
.newsletter-section h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(60px, 10vw, 112px);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 36px;
    color: var(--black);
}
.newsletter-section p {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 52px;
    line-height: 1.85;
    max-width: 440px;
    margin-inline: auto;
}
.newsletter-form {
    display: flex;
    border-bottom: 1.5px solid var(--black);
    max-width: 480px;
    margin-inline: auto;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 0;
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--black);
    background: transparent;
    border: none;
    outline: none;
}
.newsletter-form input::placeholder { color: var(--grey-40); }
.newsletter-form button {
    padding: 14px 0 14px 24px;
    background: transparent;
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s;
}
.newsletter-form button:hover { color: var(--dark-olive); }

/* ─── Wellness Journal Cards ─── */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
.journal-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.35s ease;
}
.journal-card:hover { transform: translateY(-6px); }
.journal-card-img { overflow: hidden; aspect-ratio: 3/2; background: #F0EDE8; }
.journal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.journal-card:hover .journal-card-img img { transform: scale(1.04); }
.journal-card-body { display: flex; flex-direction: column; gap: 8px; }
.journal-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark-olive); }
.journal-card-title { font-family: var(--font-serif); font-weight: 400; font-size: 20px; line-height: 1.3; color: var(--black); }
.journal-card-excerpt { font-size: 13px; color: var(--grey-60); line-height: 1.6; }
.journal-read-more {
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--black); border-bottom: 1px solid var(--black); padding-bottom: 1px;
    align-self: flex-start; margin-top: 4px; transition: color 0.2s, border-color 0.2s;
}
.journal-read-more:hover { color: var(--dark-olive); border-color: var(--dark-olive); }

/* ─── Page-level responsive rules ─── */
@media (max-width: 1200px) {
    .pg-wrap { padding-inline: 32px; }
}
@media (max-width: 1024px) {
    .section { padding-block: 56px; }
}
@media (max-width: 900px) {
    .pg-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .pg-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding-block: 48px; }
    .pg-wrap { padding-inline: 20px; }
    .page-hero { min-height: clamp(220px, 55vw, 380px); }
    .newsletter-section { padding-block: 72px 80px; }
    .newsletter-section h2 { font-size: clamp(40px, 12vw, 72px); }
    .journal-grid { gap: 20px; }
}
@media (max-width: 560px) {
    .pg-grid-3, .pg-grid-4 { grid-template-columns: 1fr; }
    .pg-wrap { padding-inline: 16px; }
    .section { padding-block: 40px; }
}
@media (max-width: 480px) {
    .page-hero { min-height: 260px; }
}

/* ═══════════════════════════════════════════
   CanCan-inspired Home Page
═══════════════════════════════════════════ */

.common-home,
.page-home {
    background: #F7F4EF;
}

.common-home .site-header,
.page-home .site-header {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

.common-home .site-header:not(.scrolled):not(:hover) .logo-link,
.common-home .site-header:not(.scrolled):not(:hover) .search-btn,
.common-home .site-header:not(.scrolled):not(:hover) .get-directions,
.common-home .site-header:not(.scrolled):not(:hover) .header-right button,
.common-home .site-header:not(.scrolled):not(:hover) .header-right a,
.common-home .site-header:not(.scrolled):not(:hover) .nav-link,
.page-home .site-header:not(.scrolled):not(:hover) .logo-link,
.page-home .site-header:not(.scrolled):not(:hover) .search-btn,
.page-home .site-header:not(.scrolled):not(:hover) .get-directions,
.page-home .site-header:not(.scrolled):not(:hover) .header-right button,
.page-home .site-header:not(.scrolled):not(:hover) .header-right a,
.page-home .site-header:not(.scrolled):not(:hover) .nav-link {
    color: #fff !important;
    text-shadow: 0 1px 18px rgba(0,0,0,0.32);
}

.common-home .site-header:not(.scrolled):not(:hover) .header-nav,
.page-home .site-header:not(.scrolled):not(:hover) .header-nav {
    border-top-color: rgba(255,255,255,0.35) !important;
}

.common-home .site-header:not(.scrolled):not(:hover) svg,
.page-home .site-header:not(.scrolled):not(:hover) svg {
    stroke: #fff !important;
}

.common-home .site-header:not(.scrolled):not(:hover) .hamburger span,
.page-home .site-header:not(.scrolled):not(:hover) .hamburger span {
    background: #fff !important;
}

.common-home .site-header.scrolled,
.common-home .site-header:hover,
.page-home .site-header.scrolled,
.page-home .site-header:hover {
    background: rgba(255,255,255,0.97) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    backdrop-filter: blur(12px);
}

.common-home .site-header.scrolled .logo-link,
.common-home .site-header.scrolled .search-btn,
.common-home .site-header.scrolled .get-directions,
.common-home .site-header.scrolled .header-right button,
.common-home .site-header.scrolled .header-right a,
.common-home .site-header.scrolled .nav-link,
.common-home .site-header:hover .logo-link,
.common-home .site-header:hover .search-btn,
.common-home .site-header:hover .get-directions,
.common-home .site-header:hover .header-right button,
.common-home .site-header:hover .header-right a,
.common-home .site-header:hover .nav-link {
    color: var(--black) !important;
    text-shadow: none;
}

.common-home .site-header.scrolled svg,
.common-home .site-header:hover svg {
    stroke: var(--black) !important;
}

.common-home .site-header.scrolled .hamburger span,
.common-home .site-header:hover .hamburger span {
    background: var(--black) !important;
}

.common-home .site-header.scrolled .header-nav,
.common-home .site-header:hover .header-nav {
    border-top-color: var(--border) !important;
}

/* ─── homev2: transparent on mobile, hidden on desktop during scroll hero ─── */

@media (max-width: 1023px) {
    .common-homev2 .site-header {
        background: transparent !important;
        border-bottom-color: transparent !important;
        box-shadow: none !important;
    }
    .common-homev2 .site-header:not(.scrolled):not(:hover) .logo-link,
    .common-homev2 .site-header:not(.scrolled):not(:hover) .search-btn,
    .common-homev2 .site-header:not(.scrolled):not(:hover) .get-directions,
    .common-homev2 .site-header:not(.scrolled):not(:hover) .header-right button,
    .common-homev2 .site-header:not(.scrolled):not(:hover) .header-right a {
        color: #fff !important;
        text-shadow: 0 1px 18px rgba(0,0,0,0.32);
    }
    .common-homev2 .site-header:not(.scrolled):not(:hover) svg {
        stroke: #fff !important;
    }
    .common-homev2 .site-header:not(.scrolled):not(:hover) .hamburger span {
        background: #fff !important;
    }
    .common-homev2 .site-header.scrolled,
    .common-homev2 .site-header:hover {
        background: rgba(255,255,255,0.97) !important;
        border-bottom: 1px solid var(--border) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
        backdrop-filter: blur(12px);
    }
    .common-homev2 .site-header.scrolled .logo-link,
    .common-homev2 .site-header.scrolled .search-btn,
    .common-homev2 .site-header.scrolled .get-directions,
    .common-homev2 .site-header.scrolled .header-right button,
    .common-homev2 .site-header.scrolled .header-right a,
    .common-homev2 .site-header:hover .logo-link,
    .common-homev2 .site-header:hover .search-btn,
    .common-homev2 .site-header:hover .get-directions,
    .common-homev2 .site-header:hover .header-right button,
    .common-homev2 .site-header:hover .header-right a {
        color: var(--black) !important;
        text-shadow: none;
    }
    .common-homev2 .site-header.scrolled svg,
    .common-homev2 .site-header:hover svg { stroke: var(--black) !important; }
    .common-homev2 .site-header.scrolled .hamburger span,
    .common-homev2 .site-header:hover .hamburger span { background: var(--black) !important; }
}

@media (min-width: 1024px) {
    .common-homev2 .site-header {
        background: transparent !important;
        border-bottom-color: transparent !important;
        box-shadow: none !important;
        transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }
    .common-homev2 .site-header:not(.v2-after-hero) .logo-link,
    .common-homev2 .site-header:not(.v2-after-hero) .search-btn,
    .common-homev2 .site-header:not(.v2-after-hero) .get-directions,
    .common-homev2 .site-header:not(.v2-after-hero) .header-right button,
    .common-homev2 .site-header:not(.v2-after-hero) .header-right a,
    .common-homev2 .site-header:not(.v2-after-hero) .nav-link,
    .common-homev2 .site-header:not(.v2-after-hero) .header-nav > a {
        color: #fff !important;
        text-shadow: 0 1px 14px rgba(0,0,0,0.35);
    }
    .common-homev2 .site-header:not(.v2-after-hero) .header-nav {
        border-top-color: rgba(255,255,255,0.25) !important;
    }
    .common-homev2 .site-header:not(.v2-after-hero) svg { stroke: #fff !important; }
    .common-homev2 .site-header:not(.v2-after-hero) .hamburger span { background: #fff !important; }
    .common-homev2 .site-header.v2-after-hero {
        background: rgba(255,255,255,0.97) !important;
        border-bottom: 1px solid var(--border) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
        backdrop-filter: blur(12px);
    }
    .common-homev2 .site-header.v2-after-hero .logo-link,
    .common-homev2 .site-header.v2-after-hero .search-btn,
    .common-homev2 .site-header.v2-after-hero .get-directions,
    .common-homev2 .site-header.v2-after-hero .header-right button,
    .common-homev2 .site-header.v2-after-hero .header-right a,
    .common-homev2 .site-header.v2-after-hero .nav-link,
    .common-homev2 .site-header.v2-after-hero .header-nav > a {
        color: var(--black) !important;
        text-shadow: none;
    }
    .common-homev2 .site-header.v2-after-hero svg { stroke: var(--black) !important; }
    .common-homev2 .site-header.v2-after-hero .hamburger span { background: var(--black) !important; }
    .common-homev2 .site-header.v2-after-hero .header-nav { border-top-color: var(--border) !important; }
}

.astonea-home {
    overflow: hidden;
    background: #F7F4EF;
    color: var(--black);
}

.home-wrap {
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 48px);
}

.home-eyebrow {
    margin: 0 0 12px;
    color: #295F50;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-section-head {
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 50px);
}

.home-section-head h2,
.home-brand-copy h2,
.home-feature-copy h2,
.home-editorial-copy h2,
.home-testimonials h2,
.home-final-copy h2 {
    margin: 0;
    color: var(--black);
    font-family: var(--font-sans);
    font-size: clamp(28px, 4.8vw, 64px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 0;
}

.home-section-head-row {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.home-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-bottom: 1px solid currentColor;
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.6;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
}

.home-link:hover {
    color: #295F50;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    min-height: 40px;
    padding: 12px 30px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-btn-light {
    background: #fff;
    color: var(--black);
}

.home-btn-light:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.home-btn-dark {
    background: var(--black);
    color: #fff;
}

.home-btn-dark:hover {
    background: #295F50;
    color: #fff;
}

/* Hero */
.home-hero {
    position: relative;
    isolation: isolate;
    height: 100svh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #29332C;
}

.home-hero-media,
.home-hero-media img,
.home-hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.home-hero-media {
    overflow: hidden;
}

.home-hero-media img,
.home-hero-media video {
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95);
}

.home-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.46) 0%, rgba(0,0,0,0.12) 36%, rgba(0,0,0,0.36) 100%),
        rgba(96,76,49,0.24);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 32px));
    padding-top: calc(var(--header-h) + clamp(48px, 9vh, 98px));
    text-align: center;
    color: #fff;
}

.home-hero-content .home-eyebrow {
    color: rgba(255,255,255,0.82);
}

.home-hero-content h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(34px, 4.8vw, 78px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 0;
}

.home-hero-content p:not(.home-eyebrow) {
    width: min(100%, 520px);
    max-width: 100%;
    margin: 0 auto 24px;
    color: rgba(255,255,255,0.92);
    font-size: clamp(13px, 1.4vw, 16px);
    line-height: 1.7;
}

/* Outer clip — 42% of hero height keeps letters visible at any zoom level */
.home-hero-wordmark-clip {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 42%;
    overflow: hidden;
    pointer-events: none;
}

/* Inner wordmark — font-size set to X vw by JS to always fill viewport width */
.home-hero-wordmark {
    position: absolute;
    bottom: -0.11em;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 200px;
    font-weight: 1000;
    line-height: 0.78;
    letter-spacing: 0;
    text-transform: uppercase;
    user-select: none;
    white-space: nowrap;
}

/* Marquee */
.home-logo-marquee {
    overflow: hidden;
    background: #111111;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-block: 18px;
}

.home-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: clamp(28px, 5vw, 70px);
    animation: homeMarquee 26s linear infinite;
}

.home-marquee-track img {
    width: auto;
    height: clamp(34px, 4vw, 54px);
    max-width: 150px;
    object-fit: contain;
    opacity: 0.72;
    filter: grayscale(1);
}

@keyframes homeMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ─── Discover Essentials (CanCan-style) ─── */
.home-discover-essentials {
    background: #f8f8f6;
    padding-block: clamp(48px, 6vw, 80px);
}

.home-discover-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: clamp(24px, 3.5vw, 40px);
}

.home-discover-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 2.8vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--black);
    margin: 0;
}

.home-discover-link {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.5;
    transition: opacity .2s;
}
.home-discover-link:hover { opacity: 1; }

/* Uniform scrollable track */
.home-discover-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}
.home-discover-track::-webkit-scrollbar { display: none; }

.home-discover-tile {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: clamp(200px, 22vw, 280px);
    border-radius: 16px;
    overflow: hidden;
    display: block;
    background: #e8e8e4;
    text-decoration: none !important;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
}
.home-discover-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.home-discover-tile-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.home-discover-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}
.home-discover-tile:hover img { transform: scale(1.06); }

.home-discover-tile span {
    display: block;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    background: #fff;
    line-height: 1.3;
}

.home-discover-tile:hover img {
    transform: scale(1.05);
}

/* ─── Shop Bestsellers (CanCan-style) ─── */
.home-bestsellers {
    background: #fff;
    padding-block: clamp(52px, 7vw, 90px);
}

.home-bestsellers-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: clamp(24px, 3.5vw, 44px);
    gap: 20px;
}

.home-bestsellers-title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 7vw, 104px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
}

.home-bestsellers-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-bottom: 6px;
}

.home-bs-prev,
.home-bs-next {
    background: none;
    border: 1px solid rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 15px;
    color: var(--black);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}

.home-bs-prev:hover,
.home-bs-next:hover {
    background: var(--black);
    border-color: var(--black);
    color: #fff;
}

.home-bestsellers-track {
    overflow-x: visible;
    scrollbar-width: none;
}

.home-bestsellers-track::-webkit-scrollbar { display: none; }

.home-bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-bs-card {
    display: block;
    color: var(--black);
    text-decoration: none;
}

.home-bs-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F0EDE8;
    margin-bottom: 14px;
}

.home-bs-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-bs-card:hover .home-bs-img img {
    transform: scale(1.04);
}

.home-bs-wish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    background: rgba(255,255,255,0.85);
    border: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
}

.home-bs-card:hover .home-bs-wish {
    opacity: 1;
}

.home-bs-wish:hover { background: #fff; }

.home-bs-wish svg {
    width: 15px;
    height: 15px;
    stroke: var(--black);
    fill: none;
    stroke-width: 1.5;
    display: block;
}

.home-bs-body h3 {
    margin: 0 0 7px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--black);
}

.home-bs-body p {
    margin: 0;
    font-size: 13px;
    color: var(--grey-60);
}

/* ─── Responsive overrides ─── */
@media (max-width: 1100px) {
    /* discover grid now uses horizontal scroll — no grid overrides needed */
}

@media (max-width: 1024px) {
    .home-bestsellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .home-bs-prev,
    .home-bs-next { display: none; }
}

@media (max-width: 760px) {
    .home-discover-tile { width: clamp(160px, 58vw, 220px); }
    .home-bestsellers-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .home-bestsellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .home-discover-tile { width: clamp(150px, 65vw, 200px); }
    .home-bestsellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .home-bestsellers-title {
        font-size: clamp(32px, 11vw, 52px);
    }
    .home-bs-wish { opacity: 1; }
    .home-bs-body h3 { font-size: 13px; }
    .home-bs-body p { font-size: 12px; }
}

/* Brand statement */
.home-brand-statement {
    background: #F7F4EF;
    padding-block: clamp(58px, 8vw, 112px);
}

.home-brand-statement-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.88fr) 1.12fr;
    gap: clamp(28px, 6vw, 78px);
    align-items: center;
}

.home-brand-copy h2 {
    max-width: 640px;
    font-size: clamp(30px, 4.2vw, 58px);
    margin-bottom: 28px;
}

.home-brand-media {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 2px;
    align-items: stretch;
}

.home-brand-media img {
    width: 100%;
    height: clamp(280px, 42vw, 560px);
    display: block;
    object-fit: cover;
    background: #E8EEE7;
}

.home-brand-media img:first-child {
    margin-top: clamp(36px, 7vw, 92px);
}

/* Proof */
.home-proof {
    background: #0D0D0D;
    color: #fff;
    padding-block: clamp(64px, 9vw, 120px);
}

.home-proof .home-section-head h2 {
    color: #fff;
    max-width: 800px;
}

.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    background: rgba(255,255,255,0.18);
}

.home-proof-item {
    min-height: 260px;
    padding: clamp(28px, 4vw, 46px);
    background: #17201B;
}

.home-proof-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.home-proof-item h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.home-proof-item p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.75;
}

/* Wide feature */
.home-feature-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    min-height: clamp(520px, 58vw, 760px);
    background: #E7E9DE;
}

.home-feature-image,
.home-feature-image img {
    min-height: inherit;
}

.home-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 7vw, 88px);
}

.home-feature-copy h2 {
    max-width: 560px;
    margin-bottom: 20px;
}

.home-feature-copy p:not(.home-eyebrow) {
    max-width: 470px;
    margin: 0 0 30px;
    color: #4A4A4A;
    font-size: 15px;
    line-height: 1.85;
}

/* Collection cards */
.home-collection-slider {
    background: #fff;
    padding-block: clamp(58px, 8vw, 110px);
}

.home-collection-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.home-collection-card {
    position: relative;
    min-height: clamp(360px, 45vw, 610px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    color: #fff;
    background: #111;
}

.home-collection-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.home-collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 25%, rgba(0,0,0,0.64) 100%);
}

.home-collection-card span,
.home-collection-card strong {
    position: relative;
    z-index: 1;
    color: #fff;
    text-transform: uppercase;
}

.home-collection-card span {
    margin-bottom: 10px;
    font-size: clamp(22px, 3vw, 42px);
    font-weight: 900;
    line-height: 0.96;
}

.home-collection-card strong {
    width: fit-content;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.home-collection-card:hover img {
    transform: scale(1.04);
}

/* Editorial bands */
.home-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: center;
    background: #fff;
}

.home-editorial-light {
    background: #F0F6F1;
}

.home-editorial-reverse {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.home-editorial-reverse .home-editorial-image {
    order: 2;
}

.home-editorial-image {
    min-height: clamp(420px, 54vw, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.home-editorial-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-editorial-copy {
    padding: clamp(40px, 7vw, 92px);
}

.home-editorial-copy h2 {
    max-width: 560px;
    margin-bottom: 22px;
}

.home-editorial-copy p:not(.home-eyebrow) {
    max-width: 500px;
    margin: 0 0 30px;
    color: #4F4F4F;
    font-size: 15px;
    line-height: 1.85;
}

/* Testimonials */
.home-testimonials {
    background: #0D0D0D;
    color: #fff;
    padding-block: clamp(64px, 9vw, 120px);
}

.home-testimonial-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
    gap: clamp(34px, 6vw, 84px);
}

.home-testimonials h2 {
    color: #fff;
    max-width: 620px;
}

.home-quote-list {
    display: grid;
    gap: 2px;
    background: rgba(255,255,255,0.14);
}

.home-quote-list blockquote {
    margin: 0;
    padding: clamp(28px, 4vw, 46px);
    background: #17201B;
}

.home-quote-list p {
    margin: 0 0 22px;
    color: rgba(255,255,255,0.84);
    font-size: clamp(18px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1.32;
}

.home-quote-list cite {
    color: rgba(255,255,255,0.58);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Journal */
.home-journal {
    background: #fff;
    padding-block: clamp(58px, 8vw, 110px);
}

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

.home-journal-card {
    display: block;
    color: var(--black);
}

.home-journal-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #F0F4EF;
}

.home-journal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-journal-card:hover img {
    transform: scale(1.04);
}

.home-journal-body {
    padding-top: 18px;
}

.home-journal-body span {
    display: block;
    margin-bottom: 10px;
    color: #295F50;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-journal-body h3 {
    margin: 0 0 8px;
    color: var(--black);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    line-height: 1.16;
}

.home-journal-body p {
    margin: 0;
    color: #6C6C6C;
    font-size: 13px;
}

/* Shorts */
.home-shorts {
    background: #F7F4EF;
    padding-block: clamp(58px, 8vw, 110px);
}

.home-shorts-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 280px);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.home-short-media {
    aspect-ratio: 9 / 14;
    overflow: hidden;
    background: #111;
}

.home-short-media video,
.home-short-media iframe,
.home-short-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
}

.home-short-card h3 {
    min-height: 44px;
    margin: 12px 0 0;
    color: var(--black);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

/* Final CTA */
.home-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    min-height: clamp(440px, 52vw, 680px);
    background: #295F50;
    color: #fff;
}

.home-final-image,
.home-final-image img {
    min-height: inherit;
}

.home-final-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-final-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 7vw, 92px);
}

.home-final-copy .home-eyebrow,
.home-final-copy h2 {
    color: #fff;
}

.home-final-copy h2 {
    max-width: 560px;
    margin-bottom: 30px;
}

@media (max-width: 1180px) {
    .home-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-category-tile.is-featured {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .home-hero {
        height: 100svh;
        min-height: 640px;
    }

    .home-brand-statement-grid,
    .home-feature-banner,
    .home-editorial,
    .home-editorial-reverse,
    .home-testimonial-grid,
    .home-final-cta {
        grid-template-columns: 1fr;
    }

    .home-editorial-reverse .home-editorial-image {
        order: 0;
    }

    .home-brand-media img,
    .home-feature-image,
    .home-feature-image img,
    .home-editorial-image,
    .home-final-image,
    .home-final-image img {
        min-height: auto;
        height: auto;
    }

    .home-feature-image img,
    .home-final-image img {
        aspect-ratio: 4 / 3;
    }

    .home-editorial-image {
        padding: 0;
        background: inherit;
    }
    .home-editorial-image img {
        aspect-ratio: auto;
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }

    .home-journal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .home-section-head-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .home-category-tile,
    .home-category-tile.is-featured {
        grid-column: auto;
        grid-row: auto;
        min-height: clamp(190px, 54vw, 280px);
    }

    .home-category-tile:first-child {
        grid-column: span 2;
    }

    .home-brand-media {
        grid-template-columns: 1fr;
    }

    .home-brand-media img:first-child {
        margin-top: 0;
    }

    .home-proof-grid {
        grid-template-columns: 1fr;
    }

    .home-collection-row {
        grid-auto-flow: column;
        grid-auto-columns: minmax(250px, 82vw);
        grid-template-columns: none;
    }
}

@media (max-width: 560px) {
    .home-hero {
        height: 100svh;
        min-height: 580px;
    }

    .home-hero-content {
        width: 100%;
        padding: calc(var(--header-main-h) + 54px) 20px 0;
    }

    .home-hero-content h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .home-hero-content p:not(.home-eyebrow) {
        width: min(100%, 330px);
    }

    .home-hero-wordmark-clip {
        height: 38%;
    }

    .home-hero-wordmark {
        bottom: -0.03em;
    }

    .home-category-grid {
        grid-template-columns: 1fr;
    }

    .home-category-tile:first-child {
        grid-column: auto;
    }

    .home-category-tile img {
        padding: 34px;
    }

    .home-proof-item,
    .home-feature-copy,
    .home-editorial-copy,
    .home-quote-list blockquote,
    .home-final-copy {
        padding-inline: 24px;
    }
    .site-footer {
        margin-top: 0 !important;
    }
}

/* ───────────────────────────────────────────
   Shared Policy Page Layout
─────────────────────────────────────────── */
.policy-hero {
    background: var(--bg, #faf9f7);
    padding: calc(var(--header-h, 70px) + 14px) 0 24px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}
.policy-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--black, #181818);
    margin: 0;
    padding: 0 24px;
}
.policy-body {
    max-width: 740px;
    margin: 0 auto;
    padding: 32px 24px 64px;
    font-size: 14.5px;
    line-height: 1.85;
    color: #555;
}
.policy-body h2, .policy-body h3, .policy-body h4 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: var(--black, #181818);
    margin-top: 44px !important;
    margin-bottom: 0 !important;
    padding-bottom: 6px !important;
}
.policy-body h2:first-child,
.policy-body h3:first-child,
.policy-body h4:first-child { margin-top: 0 !important; }
.policy-body h2 { font-size: 22px; }
.policy-body h3 { font-size: 18px; }
.policy-body p { margin: 0 0 13px; }
.policy-body ul, .policy-body ol { padding-left: 20px; margin: 0 0 13px; }
.policy-body li { margin-bottom: 5px; }
.policy-body strong { color: var(--black, #181818); font-weight: 600; }
.policy-body a { color: var(--black, #181818); }
.policy-body a:hover { text-decoration: underline; }

/* ───────────────────────────────────────────
   Shipping Policy Page
─────────────────────────────────────────── */
.sp-section {
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}
.sp-section:last-child { border-bottom: none; }
.sp-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black, #181818);
    margin: 0 0 7px;
    letter-spacing: 0.01em;
}
.sp-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 6px;
}
.sp-section p:last-child { margin-bottom: 0; }
.sp-section ul {
    margin: 4px 0 0;
    padding-left: 20px;
    list-style: disc;
}
.sp-section ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 4px;
}
.sp-section ul li strong {
    color: var(--black);
    font-weight: 600;
}
.sp-callout {
    background: #fef9ef;
    border-left: 3px solid #e6a817;
    padding: 12px 16px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
    color: #7a5e1a;
    border-radius: 0 4px 4px 0;
}
.sp-callout strong { color: #5c450f; }
.sp-email { color: var(--black, #181818); text-decoration: underline; }

@media (max-width: 768px) {
    .policy-hero { padding-bottom: 7px; }
    .policy-body { padding-top: 15px; }
}
@media (max-width: 600px) {
    .policy-hero h1 { font-size: 24px; }
}

/* ───────────────────────────────────────────
   Direct Seller Agreement Page
─────────────────────────────────────────── */
.dsa-hero {
    background: var(--bg, #faf9f7);
    padding: calc(var(--header-h, 70px) + 14px) 0 28px;
    text-align: center;
}
.dsa-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 38px;
    color: var(--black, #181818);
    margin: 0 0 12px;
    font-weight: 400;
}
.dsa-hero p {
    font-size: 15px;
    color: var(--grey-60, #717171);
    margin: 0;
}
.dsa-wrap {
    display: flex;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 24px 64px;
}
.dsa-toc {
    flex: 0 0 220px;
    position: sticky;
    top: 24px;
    align-self: flex-start;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}
.dsa-toc h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black, #181818);
    margin: 0 0 16px;
}
.dsa-toc ul { list-style: none; padding: 0; margin: 0; }
.dsa-toc li { margin-bottom: 6px; }
.dsa-toc a {
    display: block;
    font-size: 13px;
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    padding: 6px 12px;
    border-left: 2px solid transparent;
    border-radius: 2px;
    transition: all 0.2s;
    line-height: 1.4;
}
.dsa-toc a:hover { color: var(--black, #181818); }
.dsa-toc a.active {
    color: var(--black, #181818);
    font-weight: 600;
    border-left-color: var(--black, #181818);
    background: rgba(0,0,0,0.03);
}
.dsa-content { flex: 1; min-width: 0; }
.dsa-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}
.dsa-card-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.dsa-card-btn:hover { background: rgba(0,0,0,0.02); }
.dsa-card-num {
    flex: 0 0 36px;
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    color: rgba(0,0,0,0.3);
}
.dsa-card-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--black, #181818);
    line-height: 1.35;
}
.dsa-chevron {
    flex: 0 0 20px;
    font-size: 14px;
    color: rgba(0,0,0,0.35);
    transition: transform 0.25s;
}
.dsa-card-btn[aria-expanded="true"] .dsa-chevron { transform: rotate(180deg); }
.dsa-card-body {
    padding: 0 24px 28px 76px;
}
.dsa-clause {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    line-height: 1.85;
}
.dsa-clause:last-child { margin-bottom: 0; }
.dsa-clause-num {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    color: rgba(0,0,0,0.3);
    padding-top: 2px;
    white-space: nowrap;
}
.dsa-clause-text {
    font-size: 14.5px;
    color: var(--grey-60, #555);
}
.dsa-clause-text p { margin: 0 0 10px; }
.dsa-clause-text p:last-child { margin-bottom: 0; }
.dsa-clause-text ul { padding-left: 20px; margin: 8px 0; }
.dsa-clause-text ul li {
    font-size: 14px;
    color: var(--grey-60, #555);
    line-height: 1.85;
    margin-bottom: 4px;
}
.dsa-preamble {
    font-size: 14.5px;
    color: var(--grey-60, #555);
    line-height: 1.85;
    padding: 0 24px 28px 76px;
}
.dsa-preamble p { margin: 0 0 14px; }
.dsa-preamble p:last-child { margin-bottom: 0; }
.dsa-final-declaration {
    background: var(--bg, #faf9f7);
    border-radius: 8px;
    padding: 28px 32px;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.85;
    color: var(--grey-60, #555);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 991px) {
    .dsa-toc { display: none; }
    .dsa-wrap { padding: 32px 16px 60px; }
    .dsa-card-body { padding-left: 24px; }
    .dsa-preamble { padding-left: 24px; }
}
@media (max-width: 768px) {
    .dsa-hero { padding-bottom: 7px; }
    .dsa-wrap { padding-top: 10px; }
}
@media (max-width: 600px) {
    .dsa-hero h1 { font-size: 28px; }
    .dsa-card-btn { padding: 16px 18px; gap: 12px; }
    .dsa-card-body { padding: 0 18px 7px 18px; }
    .dsa-preamble { padding: 0 18px 7px 18px; }
    .dsa-clause { flex-direction: column; gap: 4px; }
}

/* ========================================
   Astonea brand overrides — product cards & product page
   ======================================== */

/* Brand tokens (extending the existing :root) */
:root {
    --brand-dark: #29332C;
    --brand-dark-hover: #1a221d;
    --brand-accent: #8A8264;
}

/* --- Category grid: hide hover-reveal "Add to Cart" button --- */
.tt-product .tt-product-inside-hover .tt-row-btn:has(.tt-btn-addtocart),
.tt-product-design02 .tt-product-inside-hover .tt-row-btn:has(.tt-btn-addtocart) {
    display: none !important;
}
.tt-product .tt-btn-addtocart,
.tt-product-design02 .tt-btn-addtocart {
    display: none !important;
}

/* --- Product detail page: replace blue with brand colors --- */

/* Price */
#product .tt-price,
#product .tt-price #price-old,
#product .tt-price .new-price,
#product .tt-price #price-special,
#product .tt-price .old-price {
    color: var(--brand-dark) !important;
}
#product .tt-price .old-price,
#product .tt-price #price-old + .old-price {
    color: var(--grey-40) !important;
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 0.85em;
}

/* Reviews link */
#product .tt-review a,
#product .tt-review a:link,
#product .tt-review a:visited {
    color: var(--brand-dark) !important;
    text-decoration: none;
}
#product .tt-review a:hover {
    color: var(--brand-dark-hover) !important;
    text-decoration: underline;
}

/* Bv / reward / model values — neutral dark */
#product .text-prodecor,
#product .reward,
#product .tt-add-info {
    color: var(--grey-60) !important;
}

/* Main "Add to Cart" button on product page */
#product .astonea-btn-cart,
#product #button-cart.astonea-btn-cart {
    width: 100% !important;
    max-width: 320px;
    height: 52px !important;
    border-radius: 999px !important;
    background: var(--brand-dark) !important;
    color: #fff !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    box-shadow: 0 8px 20px rgba(41, 51, 44, 0.22) !important;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
#product .astonea-btn-cart:hover,
#product #button-cart.astonea-btn-cart:hover {
    background: var(--brand-dark-hover) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 12px 26px rgba(41, 51, 44, 0.30) !important;
}
#product .astonea-btn-cart i {
    font-size: 16px;
}

/* Wishlist / Compare links */
#product .tt-list-btn .btn-link,
#product .tt-list-btn .btn-link:link,
#product .tt-list-btn .btn-link:visited {
    color: var(--brand-dark) !important;
    background: transparent !important;
    text-decoration: none !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 8px 0;
    transition: color 0.2s ease;
}
#product .tt-list-btn .btn-link:hover {
    color: var(--brand-accent) !important;
    text-decoration: none !important;
}
#product .tt-list-btn .btn-link i {
    margin-right: 6px;
    font-size: 14px;
}

/* --- Product description (.extraarea): tighten heading-to-content gaps --- */
.extraarea,
.extraarea * {
    /* override inline style="margin:..." that the WYSIWYG embedded */
    margin-block-start: revert;
    margin-block-end: revert;
}
.extraarea {
    line-height: 1.65;
    padding: 20px 0;
}
/* Force-collapse vertical spacing on every direct child */
.extraarea > * {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}
.extraarea > p,
.extraarea > div > p {
    min-height: 0 !important;
    padding: 0 !important;
}
/* Empty paragraphs even with inline height/padding from WYSIWYG */
.extraarea p[style*="margin"],
.extraarea p[style*="padding"],
.extraarea p[style*="height"] {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}
body .extraarea h1,
body .extraarea h2,
body .extraarea h3,
body .extraarea h4,
body .extraarea h5,
body .extraarea h6,
section.extraarea h1,
section.extraarea h2,
section.extraarea h3,
section.extraarea h4,
section.extraarea h5,
section.extraarea h6 {
    margin-top: 24px !important;
    margin-bottom: 6px !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}
body .extraarea h2 + p,
body .extraarea h2 + ul,
body .extraarea h2 + ol,
body .extraarea h3 + p,
body .extraarea h3 + ul,
body .extraarea h3 + ol {
    margin-top: 0 !important;
}
/* Heading-immediately-after-heading: collapse the gap between them */
body .extraarea h1 + h2,
body .extraarea h1 + h3,
body .extraarea h1 + h4,
body .extraarea h2 + h3,
body .extraarea h2 + h4,
body .extraarea h2 + h5,
body .extraarea h3 + h4,
body .extraarea h3 + h5 {
    margin-top: 8px !important;
}
/* Tighter dedicated h2 spacing — divider above, generous top, tight bottom */
body .extraarea h2,
section.extraarea h2 {
    margin-top: 56px !important;
    margin-bottom: 6px !important;
    padding-top: 28px !important;
    border-top: 1px solid #e5e3dc !important;
}
body .extraarea h2:first-child,
section.extraarea h2:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
}
.extraarea h1:first-child,
.extraarea h2:first-child,
.extraarea h3:first-child,
.extraarea h4:first-child,
.extraarea h5:first-child,
.extraarea h6:first-child {
    margin-top: 0 !important;
}
.extraarea p {
    margin: 0 0 10px !important;
}
/* Paragraphs used as inline headings: "1. ANTI-TUMOUR PROPERTIES" */
.extraarea p:has(> strong:only-child),
.extraarea p:has(> b:only-child) {
    margin: 18px 0 4px !important;
    font-weight: 700;
}
.extraarea p:has(> strong:only-child):first-child,
.extraarea p:has(> b:only-child):first-child {
    margin-top: 0 !important;
}
.extraarea ul,
.extraarea ol {
    margin: 4px 0 14px !important;
    padding-left: 22px;
}
.extraarea ul li,
.extraarea ol li {
    margin: 0 0 4px !important;
    padding: 4px 0 !important;
}
/* collapse empty paragraphs left by the WYSIWYG editor */
.extraarea p:empty,
.extraarea p:has(> br:only-child) {
    display: none !important;
}
/* tighter rule between sections */
.extraarea hr {
    margin: 18px 0 !important;
    border: 0;
    border-top: 1px solid #eee;
}

/* ========================================
   About page — Management team cards
   ======================================== */
.team-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
    will-change: transform;
}

.team-card-img {
    position: relative;
}

.team-card-img img {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
                filter 0.6s ease;
    filter: grayscale(35%) saturate(0.92);
}

.team-card-name {
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
}

.team-card-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--dark-olive);
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* --- Hover state --- */
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(41, 51, 44, 0.14),
                0 4px 10px rgba(41, 51, 44, 0.06);
}

.team-card:hover .team-card-img img {
    transform: scale(1.06);
    filter: grayscale(0%) saturate(1.05);
}

.team-card:hover .team-card-name::after {
    width: 56px;
}

/* Respect motion-reduction preference */
@media (prefers-reduced-motion: reduce) {
    .team-card,
    .team-card-img img,
    .team-card-name::after {
        transition: none !important;
    }
    .team-card:hover {
        transform: none;
    }
    .team-card:hover .team-card-img img {
        transform: none;
    }
}


/* ════════════════════════════════════════════════
   PRODUCT PAGE REDESIGN
   Scope: #product  (product detail page only)
   ════════════════════════════════════════════════ */

/* 1 — Page shell */
#product {
    background: var(--bg, #FAF9F7);
    padding: 48px 0 80px;
}
#product > .container {
    max-width: 1200px;
}

/* 2 — Outer row: flex so we can align columns */
#product .row.airSticky_stop-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* 2b — Inner two-column row: reverse so images appear LEFT, info RIGHT */
#product .col-lg-12 > .row,
#product .col-lg-9 > .row,
#product .col-lg-12 > .row.custom-single-page,
#product .col-lg-9 > .row.custom-single-page {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row-reverse !important;
    gap: 0;
}
#product .col-lg-12 > .row > div,
#product .col-lg-9 > .row > div,
#product .col-lg-12 > .row.custom-single-page > div,
#product .col-lg-9 > .row.custom-single-page > div {
    float: none !important;
}

/* 3 — Product info card */
#product .tt-product-single-info {
    background: #fff;
    padding: 40px 40px 40px 36px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 32px rgba(0,0,0,0.07);
    min-height: 520px;
}

/* 4 — Product labels */
#product .tt-label-sale {
    background: var(--black, #0D0D0D);
    color: #fff;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
}
#product .tt-label-new {
    background: var(--dark-olive, #8A8264);
    color: #fff;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
}

/* 5 — Product title */
#product h1.tt-title {
    font-family: 'DM Serif Display', serif !important;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
    color: var(--black, #0D0D0D) !important;
    letter-spacing: -0.01em !important;
    margin: 12px 0 8px !important;
}

/* 6 — Short description */
#product .tt-product-single-info > .tt-wrapper:first-of-type {
    font-size: 14px;
    color: var(--grey-60, #666);
    line-height: 1.65;
}

/* 7 — Star rating */
#product .tt-review .tt-rating [class^="icon-star"] {
    color: var(--dark-olive, #8A8264);
    font-size: 14px;
}
#product .tt-review a {
    font-size: 12px;
    color: var(--grey-60, #666);
    text-decoration: none;
}
#product .tt-review a:hover {
    color: var(--black, #0D0D0D);
}

/* 8 — Price block */
#product .tt-price {
    margin: 20px 0 0;
    padding: 20px 0 16px;
    border-top: 1px solid var(--border, #CCC);
    border-bottom: 1px solid var(--border, #CCC);
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
#product .tt-price .new-price #price-special,
#product .tt-price #price-old:not(.old-price) {
    font-family: 'DM Serif Display', serif !important;
    font-size: 2.4rem !important;
    font-weight: 400 !important;
    color: var(--black, #0D0D0D) !important;
    line-height: 1 !important;
}
#product .tt-price .old-price,
#product .tt-price #price-old.old-price {
    font-size: 1rem !important;
    color: var(--grey-40, #999) !important;
    text-decoration: line-through !important;
    font-family: 'Open Sans', sans-serif !important;
}
#product .text-prodecor {
    font-size: 11px;
    color: var(--dark-olive, #8A8264);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    background: var(--bg, #FAF9F7);
    padding: 4px 10px;
    border: 1px solid var(--border, #CCC);
}

/* 9 — Model / Stock info box */
#product .tt-product-single-info .tt-add-info:first-of-type {
    background: var(--bg, #FAF9F7);
    border: 1px solid var(--border, #CCC);
    border-radius: 2px;
    padding: 12px 16px;
    margin: 16px 0;
}
#product .tt-product-single-info .tt-add-info:first-of-type ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#product .tt-product-single-info .tt-add-info:first-of-type li {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--black, #0D0D0D);
    padding: 3px 0;
}
#product .tt-product-single-info .tt-add-info:first-of-type li span {
    font-weight: 700;
    min-width: 70px;
    color: var(--dark-olive, #8A8264);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.06em;
}

/* 10 — Option labels and form controls */
#product .tt-title-options label {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--grey-60, #666) !important;
    margin-bottom: 6px !important;
}
#product .form-control {
    border: 1.5px solid var(--border, #CCC) !important;
    border-radius: 0 !important;
    padding: 9px 13px !important;
    font-size: 14px !important;
    color: var(--black, #0D0D0D) !important;
    background: #fff !important;
}
#product .form-control:focus {
    border-color: var(--black, #0D0D0D) !important;
    box-shadow: 0 0 0 2px rgba(13,13,13,0.1) !important;
    outline: none !important;
}

/* 11 — Quantity counter */
#product .tt-input-counter.style-01 {
    border: 1.5px solid var(--border, #CCC) !important;
    background: #fff !important;
    border-radius: 0 !important;
}
#product .tt-input-counter.style-01 .minus-btn,
#product .tt-input-counter.style-01 .plus-btn {
    color: var(--black, #0D0D0D) !important;
}
#product .tt-input-counter.style-01 input {
    color: var(--black, #0D0D0D) !important;
    font-weight: 600 !important;
}

/* 12 — Add to Cart button */
#product #button-cart {
    display: block !important;
    width: 100% !important;
    background: var(--black, #0D0D0D) !important;
    color: #fff !important;
    border: 2px solid var(--black, #0D0D0D) !important;
    padding: 14px 24px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    transition: background 180ms ease, border-color 180ms ease !important;
    text-align: center !important;
    cursor: pointer !important;
    min-height: 48px !important;
}
#product #button-cart:hover {
    background: var(--dark-olive, #8A8264) !important;
    border-color: var(--dark-olive, #8A8264) !important;
}
#product #button-cart i {
    margin-right: 8px;
}

/* 13 — Wishlist / Compare */
#product .tt-list-btn {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 14px 0 0;
    margin: 0;
    border-top: 1px solid var(--border, #CCC);
}
#product .tt-list-btn li a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey-60, #666);
    text-decoration: none;
}
#product .tt-list-btn li a:hover {
    color: var(--black, #0D0D0D);
}

/* 14 — Manufacturer / Tags */
#product .tt-product-single-info .tt-add-info + .tt-add-info li {
    font-size: 12px;
    color: var(--grey-60, #666);
}
#product .tt-product-single-info .tt-add-info + .tt-add-info li span {
    color: var(--black, #0D0D0D);
    font-weight: 600;
}
#product .tt-product-single-info .tt-add-info + .tt-add-info li a {
    color: var(--dark-olive, #8A8264);
    text-decoration: none;
}
#product .tt-product-single-info .tt-add-info + .tt-add-info li a:hover {
    text-decoration: underline;
}

/* 15 — Tabs / Accordion */
#product .tt-collapse-block {
    margin-top: 24px;
    border-top: 1px solid var(--border, #CCC);
}
#product .tt-collapse-block .tt-item .tt-collapse-title {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--grey-60, #666) !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--border, #CCC) !important;
    cursor: pointer;
    transition: color 150ms;
}
#product .tt-collapse-block .tt-item.open .tt-collapse-title {
    color: var(--black, #0D0D0D) !important;
}
#product .tt-collapse-block .tt-collapse-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey-60, #666);
    padding: 16px 0;
}
#product .tt-collapse-content table th {
    color: var(--black, #0D0D0D);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
#product .tt-collapse-content table td {
    font-size: 13px;
    color: var(--grey-60, #666);
}

/* 16 — Image column: sticky panel */
/* Image column — no sticky (causes scroll overlap) */
#product .col-lg-12 > .row > .col-lg-6.hidden-xs,
#product .col-lg-9 > .row > .col-lg-6.hidden-xs,
#product .col-lg-12 > .row.custom-single-page > .col-lg-6.hidden-xs,
#product .col-lg-9 > .row.custom-single-page > .col-lg-6.hidden-xs {
    position: relative !important;
    top: auto !important;
    align-self: flex-start !important;
}

/* Image container — transparent, no padding */
#product .tt-product-single-img {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}
#product .tt-product-single-img img.zoom-product {
    max-height: none !important;
    min-height: unset !important;
    object-fit: contain !important;
    width: 100% !important;
    display: block !important;
}
/* product_type 4 — vertical thumbnail layout */
#product .tt-product-vertical-layout .tt-product-single-img {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
#product .tt-product-vertical-layout .tt-product-single-img img.zoom-product {
    max-height: none !important;
    min-height: unset !important;
    object-fit: contain !important;
    width: 100% !important;
}

/* Zoom button — hidden */
#product .tt-btn-zomm {
    display: none !important;
}

/* Thumbnail strip */
#product .product-images-carousel {
    margin-top: 8px;
    padding-top: 8px;
}
#product #smallGallery li {
    padding: 0 3px;
}
/* Thumbnails: opacity-only active/hover indicator — no borders */
#product #smallGallery li a {
    display: block;
    border: none !important;
    outline: none !important;
    padding: 2px;
    background: transparent;
    opacity: 0.5;
    transition: opacity 150ms;
}
#product #smallGallery li a img {
    display: block;
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1;
}
#product #smallGallery li a.zoomGalleryActive,
#product #smallGallery li a:hover {
    border: none !important;
    opacity: 1;
}
/* Suppress Wokiee's white overlay pseudo-element on vertical carousel thumbnails */
#product .tt-product-vertical-layout .tt-product-single-carousel-vertical .slick-slide a::before {
    display: none !important;
}
#product .tt-product-vertical-layout .tt-product-single-carousel-vertical .slick-slide a {
    opacity: 0.5;
    transition: opacity 150ms;
}
#product .tt-product-vertical-layout .tt-product-single-carousel-vertical .slick-slide:hover a,
#product .tt-product-vertical-layout .tt-product-single-carousel-vertical .slick-slide .zoomGalleryActive {
    opacity: 1;
}

/* Static/column image layouts */
#product .product-images-static li,
#product .product-images-col .item {
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid var(--border, #CCC);
    padding: 16px;
}
#product .product-images-static img,
#product .product-images-col img {
    width: 100%;
    object-fit: contain;
    max-height: 400px;
    display: block;
}

/* 17 — Quantity + cart row: better layout */
#product .tt-row-custom-01 {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}
#product .tt-row-custom-01 .col-item {
    width: 100% !important;
}

/* 18 — Divider before CTA zone */
#product .tt-swatches-container {
    border-top: 1px solid var(--border, #CCC);
    padding-top: 20px;
    margin-top: 20px;
}

/* 19 — Responsive ≤991px */
@media (max-width: 991px) {
    #product .col-lg-12 > .row > .col-lg-6.hidden-xs,
    #product .col-lg-9 > .row > .col-lg-6.hidden-xs {
        position: relative;
        top: auto;
    }
}

/* 19b — Below desktop (768–1199px): col-lg-6 hasn't kicked in yet, columns are
   still full-width and stacking — reverse so image appears on top */
@media (min-width: 768px) and (max-width: 1199px) {
    #product .col-lg-12 > .row,
    #product .col-lg-9 > .row,
    #product .col-lg-12 > .row.custom-single-page,
    #product .col-lg-9 > .row.custom-single-page {
        flex-direction: column-reverse !important;
    }
    #product .tt-product-single-info {
        min-height: unset;
        padding: 28px 24px !important;
    }
}

/* 20 — Responsive ≤767px */
@media (max-width: 767px) {
    #product {
        background: #fff;
        padding: 20px 0 40px;
    }
    #product .col-lg-12 > .row,
    #product .col-lg-9 > .row {
        flex-direction: column;
    }
    #product .tt-product-single-info {
        padding: 20px 16px;
        box-shadow: none;
    }
    #product h1.tt-title {
        font-size: 1.4rem !important;
    }
    #product #button-cart {
        padding: 13px 20px !important;
    }
    #product .tt-price .new-price #price-special {
        font-size: 1.6rem !important;
    }
}

/* Product page: reduced motion */
@media (prefers-reduced-motion: reduce) {
    #product #button-cart,
    #product .tt-product-single-img img.zoom-product,
    #product .tt-collapse-block .tt-item .tt-collapse-title,
    #product #smallGallery li a,
    #product .tt-btn-zomm {
        transition: none !important;
        animation: none !important;
    }
}


/* ════════════════════════════════════════════════
   RELATED PRODUCTS — "People Also Bought" Slider
   ════════════════════════════════════════════════ */

.astonea-related-section {
    background: var(--bg, #FAF9F7);
    border-top: 1px solid var(--border, #CCC);
    padding: 60px 0 72px;
}
.astonea-related-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header row: title left, arrows right */
.astonea-related-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}
.astonea-related-header-left { flex: 1; }
.astonea-related-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark-olive, #8A8264);
    border: 1px solid var(--border, #CCC);
    padding: 4px 14px;
    margin-bottom: 12px;
}
.astonea-related-heading {
    font-family: 'DM Serif Display', serif !important;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem) !important;
    font-weight: 400 !important;
    color: var(--black, #0D0D0D) !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    letter-spacing: -0.01em;
}

/* Arrow buttons */
.astonea-related-arrows { display: flex; gap: 4px; flex-shrink: 0; }
.astonea-slide-prev,
.astonea-slide-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--black, #0D0D0D);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 150ms;
    border-radius: 0;
    padding: 0;
}
.astonea-slide-prev:hover,
.astonea-slide-next:hover { background: var(--dark-olive, #8A8264); }
.astonea-slide-prev.slick-disabled,
.astonea-slide-next.slick-disabled { background: var(--border, #CCC); cursor: default; }

/* Slick slider track — 24px gutter between cards */
.astonea-related-slider { margin: 0 -12px; }
.astonea-related-slider .slick-list { overflow: hidden; padding: 10px 0 16px; }
.astonea-related-slider .slick-slide { padding: 0 12px; height: auto !important; }
.astonea-related-slider .slick-track { display: flex !important; align-items: stretch; }
.astonea-related-slider .slick-slide > div { height: 100%; }
.astonea-related-slider .tt-product { height: 100%; }

/* Cards in slider — match category page card style */
.astonea-related-slider .tt-product {
    border: 1px solid #EAE7E1 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #fff;
    display: flex !important;
    flex-direction: column !important;
    transition: box-shadow 0.25s ease, transform 0.25s ease !important;
}
.astonea-related-slider .tt-product:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.09) !important;
    transform: translateY(-5px);
}

/* Description area — flex column so button sticks to bottom */
.astonea-related-slider .tt-product .tt-description {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 14px 16px 16px !important;
}
.astonea-related-slider .tt-product .tt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.astonea-related-slider .tt-product .tt-add-info { list-style: none; padding: 0; margin: 0; }
.astonea-related-slider .tt-product .tt-add-info li a {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #295F50;
    text-decoration: none;
}
.astonea-related-slider .tt-product .tt-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 8px;
    color: #0D0D0D;
}
.astonea-related-slider .tt-product .tt-title a { color: inherit; text-decoration: none; }
.astonea-related-slider .tt-product .tt-title a:hover { color: #295F50; }
.astonea-related-slider .tt-product .tt-price {
    font-size: 15px;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 14px;
}
.astonea-related-slider .tt-product .tt-price .new-price { color: #295F50; margin-right: 6px; }
.astonea-related-slider .tt-product .tt-price .old-price {
    font-size: 12px;
    font-weight: 400;
    color: #AAA;
    text-decoration: line-through;
}

/* Push ADD TO CART button to bottom */
.astonea-related-slider .tt-product .csp-quickadd {
    margin-top: auto !important;
    padding-top: 4px;
    display: flex !important;
    justify-content: center;
}

/* Hide redundant hover icon row */
.astonea-related-slider .tt-product .tt-product-inside-hover { display: none !important; }

/* Responsive */
@media (max-width: 767px) {
    .astonea-related-section { padding: 44px 0 52px; }
    .astonea-related-inner { padding: 0 16px; }
    .astonea-related-header { flex-direction: column; align-items: flex-start; margin-bottom: 24px; }
    .astonea-related-slider .tt-product .tt-description { padding: 10px 12px 12px !important; }
    .astonea-related-slider .tt-product .tt-title { font-size: 12px; margin-bottom: 6px; }
    .astonea-related-slider .tt-product .tt-price { font-size: 13px; margin-bottom: 10px; }
}

/* ════════════════════════════════════════════════
   QUICK ADD BUTTON + STEPPER — shared globally
   ════════════════════════════════════════════════ */
.csp-quickadd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 11px 14px;
    background: #0D0D0D;
    color: #fff;
    border: 1px solid #0D0D0D;
    font-family: 'Open Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.csp-quickadd-btn:hover,
.csp-quickadd-btn:focus {
    background: #fff;
    color: #0D0D0D;
    text-decoration: none;
    outline: none;
}
.csp-quickadd-btn svg { flex-shrink: 0; }
.csp-quickadd-btn.csp-loading { opacity: 0.6; pointer-events: none; }

.csp-stepper {
    display: inline-flex;
    align-items: stretch;
    border: 2px solid #295F50;
    border-radius: 8px;
    overflow: hidden;
    height: 42px;
    width: 100%;
    max-width: 170px;
    background: #fff;
}
.csp-s-btn {
    flex: 0 0 42px;
    background: transparent;
    border: none;
    font-size: 22px;
    font-weight: 300;
    color: #295F50;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}
.csp-s-btn:hover { background: #295F50; color: #fff; }
.csp-s-btn:disabled { opacity: 0.25; cursor: default; }
.csp-s-btn:disabled:hover { background: transparent; color: #295F50; }
.csp-s-qty {
    flex: 1;
    min-width: 48px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #295F50;
    border-left: 1px solid #c5ddd8;
    border-right: 1px solid #c5ddd8;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    letter-spacing: -0.01em;
}
@media (max-width: 575px) {
    .csp-stepper { height: 38px; max-width: 150px; }
    .csp-s-btn { flex: 0 0 38px; font-size: 19px; }
    .csp-s-qty { font-size: 14px; min-width: 40px; }
}
@media (max-width: 767px) {
    .csp-quickadd-btn { padding: 10px 10px; font-size: 10px; letter-spacing: 0.07em; }
}
