/* =====================================================================
   Orchestra Albania – main.css
   Mobile-first. Tokens mirror the Orchestra design-system (v26.x).
   ===================================================================== */

:root {
	/* Brand */
	--c-red: #e32438;
	--c-red-600: #c81e30;
	--c-promo: #e62e36;
	--c-ink: #222930;
	--c-ink-2: #262626;
	--c-beige: #e5c797;
	--c-beige-200: #eedbba;
	--c-beige-100: #f7efdd;
	--c-beige-50: #fcf8f0;
	--c-tertiary: #f3e1c5;
	/* Neutrals */
	--c-white: #fff;
	--c-tile: #f5f5f5;
	--c-grey-100: #f0f0f0;
	--c-grey-200: #dbdbdb;
	--c-grey-300: #c4c4c4;
	--c-grey-500: #707070;
	--c-grey-700: #4a4a4a;
	/* Pastels (decoration) */
	--c-green: #2b7f54; --c-green-bg: #e1fcee;
	--c-aqua: #2a7c7c;  --c-aqua-bg: #e1fcfc;
	--c-blue: #324485;  --c-blue-bg: #e1e7fc;
	--c-purple: #533285;--c-purple-bg: #ece1fc;
	--c-pink: #853269;  --c-pink-bg: #fce1f3;
	--c-peach: #853832; --c-peach-bg: #fce3e1;
	--c-rose-bg: #ffe1e4;
	/* Type */
	--f-body: 'Lato', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--f-display: 'OrchestraDisplay', 'Lato', sans-serif;
	--fs-xs: 12px; --fs-sm: 13px; --fs-base: 15px; --fs-md: 16px; --fs-lg: 18px; --fs-xl: 22px; --fs-2xl: 28px;
	/* Layout */
	--wrap: 1250px;
	--gutter: 16px;
	--header-h: 60px;
	--nav-h: 44px;
	/* Radii */
	--r-2: 2px; --r-4: 4px; --r-8: 8px; --r-12: 12px; --r-16: 16px; --r-24: 24px; --r-32: 32px; --r-full: 999px;
	/* Motion */
	--ease: cubic-bezier(.2,.7,.2,1);
	--shadow-1: 0 1px 2px rgba(0,0,0,.06), 0 4px 14px rgba(34,41,48,.08);
	--shadow-2: 0 8px 30px rgba(34,41,48,.14);
}
@media (min-width: 992px) {
	:root { --gutter: 24px; --header-h: 80px; --fs-base: 16px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } }
body { margin: 0; font: 400 var(--fs-base)/1.5 var(--f-body); color: var(--c-ink); background: var(--c-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.is-locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
h1, h2, h3, .o-display { font-family: var(--f-display); font-weight: 700; line-height: 1.1; letter-spacing: .01em; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
:focus-visible { outline: 2px solid var(--c-ink); outline-offset: 2px; border-radius: var(--r-4); }
.screen-reader-text, .o-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.o-skip { position: absolute; left: -999px; top: 8px; background: var(--c-ink); color: #fff; padding: 8px 14px; border-radius: var(--r-full); z-index: 1000; }
.o-skip:focus { left: 8px; }
.o-hide-sm { display: none !important; }
@media (min-width: 992px) { .o-hide-sm { display: inline-flex !important; } .o-show-sm { display: none !important; } }
.o-muted { color: var(--c-grey-500); }
.o-ico { flex: none; }

/* ---------- Layout ---------- */
.o-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.o-sec { padding-block: 28px; }
.o-sec--tight { padding-block: 16px; }
.o-sec--band { background: var(--c-beige-50); }
.o-sec--chips { padding-block: 24px 8px; }
@media (min-width: 992px) { .o-sec { padding-block: 44px; } .o-sec--tight { padding-block: 24px; } }
.o-sec__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.o-sec__title { font-size: clamp(22px, 2.6vw, 30px); text-transform: uppercase; }
.o-page__title { font-size: clamp(24px, 3vw, 34px); margin-bottom: 18px; }
.o-main { min-height: 50vh; }

/* ---------- Buttons ---------- */
.o-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 45px; padding: 0 26px; border-radius: var(--r-full); font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; border: 1.5px solid transparent; transition: background .2s var(--ease), color .2s var(--ease), transform .15s var(--ease), border-color .2s; white-space: nowrap; }
.o-btn:active { transform: scale(.98); }
.o-btn--dark { background: var(--c-ink-2); color: #fff; border-color: var(--c-ink-2); }
.o-btn--dark:hover { background: #000; }
.o-btn--light { background: #fff; color: var(--c-ink-2); border-color: #fff; }
.o-btn--light:hover { background: var(--c-grey-100); }
.o-btn--outline { background: transparent; color: var(--c-ink-2); border-color: var(--c-ink-2); }
.o-btn--outline:hover { background: var(--c-ink-2); color: #fff; }
.o-btn--beige { background: var(--c-beige); color: var(--c-ink-2); border-color: var(--c-beige); }
.o-btn--beige:hover { background: #dcb97f; }
.o-btn--red, .o-btn--club { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.o-btn--red:hover, .o-btn--club:hover { background: var(--c-red-600); }
.o-btn--sm { min-height: 36px; padding: 0 16px; font-size: 12px; }
.o-btn--block { width: 100%; }
.o-btn--checkout { justify-content: space-between; padding-left: 22px; padding-right: 8px; min-height: 50px; }
.o-btn--checkout b { background: #fff; color: var(--c-ink-2); border-radius: var(--r-full); padding: 6px 14px; font-size: 15px; }
.o-btn[disabled], .o-btn.disabled { opacity: .45; pointer-events: none; }
.o-iconbtn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-full); position: relative; color: var(--c-ink); transition: background .2s; }
.o-iconbtn:hover { background: var(--c-grey-100); }

/* Chips */
.o-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.o-chips--center { justify-content: center; }
.o-chips--scroll { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
.o-chips--scroll::-webkit-scrollbar { display: none; }
.o-chip { display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 16px; border-radius: var(--r-full); border: 1px solid var(--c-grey-200); background: #fff; font-size: 13px; font-weight: 600; white-space: nowrap; transition: all .2s var(--ease); }
.o-chip:hover, .o-chip.is-active { background: var(--c-ink-2); color: #fff; border-color: var(--c-ink-2); }
.o-chip--light { background: #fff; border-color: #fff; color: var(--c-ink); }
.o-chip--xs { min-height: 28px; padding: 0 10px; font-size: 12px; font-weight: 600; }
.o-chip--red { background: var(--c-red); color: #fff; border-color: var(--c-red); }

/* Badge */
.o-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--c-promo); margin-bottom: 4px; }
.o-badge--new { color: var(--c-green); }

/* Price */
.o-price { display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px; font-weight: 700; }
.o-price__std { color: var(--c-ink); }
.o-price__std del, .o-price del { color: var(--c-grey-500); font-weight: 400; margin-right: 4px; }
.o-price__std ins, .o-price ins { text-decoration: none; color: var(--c-promo); }
.o-price__club { display: inline-flex; align-items: center; gap: 5px; color: var(--c-red); font-weight: 700; font-style: normal; }
.o-price__club > i { font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--c-red); color: #fff; padding: 2px 6px; border-radius: var(--r-4); line-height: 1.2; }
.o-price__club em { font-style: normal; font-weight: 400; color: var(--c-grey-500); font-size: .85em; }
.o-price--member .o-price__std { text-decoration: line-through; color: var(--c-grey-500); font-weight: 400; }
.o-price .woocommerce-Price-amount { white-space: nowrap; }

/* ---------- Promo bar ---------- */
.o-promo { position: relative; background: var(--c-red); color: #fff; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .03em; padding: 9px 40px; line-height: 1.3; }
.o-promo__text { display: block; }
.o-promo__close { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--r-full); color: #fff; }
.o-promo__close:hover { background: rgba(255,255,255,.15); }
.o-promo.is-hidden { display: none; }

/* ---------- Header ---------- */
.o-header { position: sticky; top: 0; z-index: 90; background: #fff; box-shadow: 0 1px 0 var(--c-grey-100); transition: box-shadow .2s; }
.o-header.is-scrolled { box-shadow: var(--shadow-1); }
.o-header__row { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; height: var(--header-h); gap: 8px; }
.o-logo { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; }
.o-logo__img { height: 34px; width: auto; max-width: 180px; }
.o-logo__word { font-family: var(--f-display); font-weight: 800; font-size: 24px; letter-spacing: .12em; color: var(--c-red); text-transform: uppercase; }
.o-logo__tag { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--c-ink); margin-top: 3px; }
.o-header__logo { justify-self: center; }
.o-header__icons { display: flex; align-items: center; gap: 0; justify-self: end; }
.o-header__searchbtn { display: inline-flex; }
.o-cart-count { position: absolute; top: 4px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: var(--r-full); background: var(--c-red); color: #fff; font-size: 10px; font-weight: 700; display: none; align-items: center; justify-content: center; line-height: 1; }
.o-cart-count.is-on { display: inline-flex; }
.o-clubpill { display: none; align-items: center; height: 40px; padding: 0 4px; border-radius: 8px; margin-right: 6px; transition: transform .2s var(--ease), opacity .2s; }
.o-clubpill:hover { transform: translateY(-1px); opacity: .9; }
.o-clubbadge { display: inline-block; height: auto; border-radius: 6px; vertical-align: middle; flex: 0 0 auto; }
.o-clubbanner__logo .o-clubbadge, .o-clubcard__logo .o-clubbadge, .o-edito__clublogo .o-clubbadge { box-shadow: 0 0 0 2px #fff; border-radius: 8px; }
.o-search { display: none; }
.o-nav { display: none; }
@media (min-width: 992px) {
	.o-header__row { grid-template-columns: 220px 1fr auto; gap: 24px; }
	.o-header__burger { display: none; }
	.o-header__logo { justify-self: start; }
	.o-logo__img { height: 44px; max-width: 220px; }
	.o-logo__word { font-size: 30px; }
	.o-header__searchbtn { display: none; }
	.o-clubpill { display: inline-flex; }
	.o-search { display: flex; align-items: center; max-width: 520px; width: 100%; height: 44px; border: 1px solid var(--c-grey-200); border-radius: var(--r-full); padding: 0 6px 0 16px; background: #fff; transition: border-color .2s, box-shadow .2s; justify-self: center; }
	.o-search:focus-within { border-color: var(--c-ink); box-shadow: 0 0 0 3px rgba(34,41,48,.08); }
	.o-search__input { flex: 1; border: 0; outline: 0; background: none; padding: 0 12px; height: 100%; font-size: 14px; min-width: 0; }
	.o-search__go { width: 32px; height: 32px; border-radius: var(--r-full); background: var(--c-ink-2); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
	.o-search__ico { color: var(--c-grey-500); }
	.o-header__icons { gap: 2px; }
	.o-nav { display: block; height: var(--nav-h); }
	.o-nav__list { display: flex; justify-content: center; gap: 4px; height: 100%; }
	.o-nav__item { position: relative; height: 100%; display: flex; align-items: center; }
	.o-nav__link { display: inline-flex; align-items: center; height: 34px; padding: 0 14px; border-radius: var(--r-full); font-weight: 700; font-size: 14px; letter-spacing: .02em; transition: background .2s, color .2s; }
	.o-nav__item:hover > .o-nav__link, .o-nav__item.is-open > .o-nav__link { background: var(--c-ink-2); color: #fff; }
	.o-nav__item.is-hl > .o-nav__link { color: var(--c-red); }
	.o-nav__item.is-hl:hover > .o-nav__link { background: var(--c-red); color: #fff; }
	/* Mega panel */
	.o-mega { position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: var(--shadow-2); border-top: 1px solid var(--c-grey-100); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s .18s; z-index: 95; }
	.o-nav__item { position: static; }
	.o-nav__item:hover > .o-mega, .o-nav__item.is-open > .o-mega, .o-nav__item:focus-within > .o-mega { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
	.o-mega__inner { padding-block: 28px 32px; }
	.o-mega__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px 32px; }
	.o-mega__title { display: block; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 2px solid var(--c-beige); }
	.o-mega__title:hover { color: var(--c-red); }
	.o-mega__list li { margin-bottom: 6px; }
	.o-mega__link { font-size: 14px; color: var(--c-grey-700); }
	.o-mega__link:hover { color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; }
}
/* Immersive header on home (transparent over hero) – only desktop */
@media (min-width: 992px) {
	.o-body.o-home .o-header--immersive { position: sticky; }
}

/* ---------- Drawer / overlay / search ---------- */
.o-overlay { position: fixed; inset: 0; background: rgba(34,41,48,.5); z-index: 120; opacity: 0; transition: opacity .25s; }
.o-overlay.is-on { opacity: 1; }
.o-drawer, .o-filters { position: fixed; top: 0; bottom: 0; width: min(92vw, 400px); background: #fff; z-index: 130; display: flex; flex-direction: column; transform: translateX(-100%); transition: transform .28s var(--ease); overflow: hidden; }
.o-drawer.is-on, .o-filters.is-on { transform: none; }
.o-drawer { left: 0; }
.o-filters { right: 0; transform: translateX(100%); }
.o-drawer[hidden], .o-filters[hidden], .o-overlay[hidden], .o-searchbox[hidden] { display: none; }
.o-drawer__head, .o-filters__head { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px 10px 20px; border-bottom: 1px solid var(--c-grey-100); min-height: 60px; }
.o-logo--drawer .o-logo__word { font-size: 22px; }
.o-drawer__account { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 20px; background: var(--c-beige-50); font-size: 13px; }
.o-drawer__account a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }
.o-drawer__nav { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.o-drawer__row { display: flex; align-items: center; gap: 12px; padding: 13px 20px; font-weight: 700; font-size: 15px; border-bottom: 1px solid var(--c-grey-100); }
.o-drawer__row .o-drawer__chev { margin-left: auto; transition: transform .2s; }
.o-drawer__acc[open] > summary .o-drawer__chev { transform: rotate(90deg); }
.o-drawer__thumb { width: 44px; height: 44px; border-radius: var(--r-full); object-fit: cover; }
.o-drawer__sub { background: var(--c-tile); }
.o-drawer__sub .o-drawer__row { padding-left: 32px; font-weight: 600; font-size: 14px; border-bottom-color: #fff; }
.o-drawer__sub--1 .o-drawer__row { padding-left: 46px; font-weight: 400; }
.o-drawer__all { display: block; padding: 10px 32px; font-size: 13px; color: var(--c-red); font-weight: 700; background: var(--c-tile); }
.o-drawer__foot { border-top: 1px solid var(--c-grey-100); }
.o-drawer__foot .o-drawer__row { font-size: 14px; }
.o-searchbox { position: fixed; top: 0; left: 0; right: 0; z-index: 130; background: #fff; box-shadow: var(--shadow-2); transform: translateY(-100%); transition: transform .25s var(--ease); }
.o-searchbox.is-on { transform: none; }
.o-searchbox__form { display: flex; align-items: center; gap: 10px; height: 64px; }
.o-searchbox__form input { flex: 1; border: 0; outline: 0; font-size: 18px; min-width: 0; }

/* ---------- Hero ---------- */
.o-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; background: var(--c-beige-100); }
.o-hero--plain { background: linear-gradient(135deg, var(--c-beige-100), var(--c-beige)); }
.o-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.o-hero__cover { position: absolute; inset: 0; z-index: 1; }
.o-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.45) 100%); pointer-events: none; }
.o-hero__content { position: relative; z-index: 2; padding-block: 28px; color: #fff; pointer-events: none; }
.o-hero__content .o-chips { pointer-events: auto; margin-top: 16px; }
.o-hero__kicker { font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.o-hero__title { font-size: clamp(40px, 9vw, 92px); line-height: .95; text-transform: uppercase; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.o-hero__pricechip { position: absolute; z-index: 2; right: var(--gutter); top: 20px; background: #fff; border-radius: var(--r-16); padding: 12px 16px; display: flex; flex-direction: column; gap: 2px; font-size: 12px; box-shadow: var(--shadow-1); min-width: 130px; }
.o-hero__pricechip b { font-size: 20px; }
.o-hero__pricechip .o-price__club { font-size: 14px; }
@media (min-width: 992px) {
	.o-hero { min-height: 560px; height: calc(100vh - var(--header-h) - var(--nav-h) - 40px); max-height: 720px; }
	.o-hero__content { padding-block: 56px; }
	.o-hero__pricechip { right: auto; left: 62%; top: 44%; padding: 16px 20px; }
	.o-hero__pricechip b { font-size: 26px; }
}

/* ---------- Category quick cards ---------- */
.o-scroll { position: relative; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
.o-scroll::-webkit-scrollbar { display: none; }
.o-scroll__track { display: flex; gap: 12px; }
.o-quick__card { flex: 0 0 auto; width: 108px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; scroll-snap-align: start; font-size: 13px; font-weight: 700; }
.o-quick__img { width: 96px; height: 96px; border-radius: var(--r-full); object-fit: cover; background: var(--c-tile); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--c-grey-200); transition: transform .25s var(--ease), box-shadow .25s; }
.o-quick__card:hover .o-quick__img { transform: scale(1.04); box-shadow: 0 0 0 2px var(--c-red); }
@media (min-width: 992px) {
	.o-quick { justify-content: center; gap: 28px; }
	.o-quick__card { width: 150px; font-size: 15px; }
	.o-quick__img { width: 130px; height: 130px; }
}

/* ---------- MEA grid ---------- */
.o-mea { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.o-mea__card { position: relative; display: block; border-radius: var(--r-16); overflow: hidden; background: var(--c-tile); aspect-ratio: 1; }
.o-mea__card--1, .o-mea__card--4 { grid-column: span 2; aspect-ratio: 16/9; }
.o-mea__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.o-mea__card:hover .o-mea__img { transform: scale(1.04); }
.o-mea__img--empty { background: linear-gradient(135deg, var(--c-beige-100), var(--c-beige-200)); }
.o-mea__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.5)); }
.o-mea__title { font-family: var(--f-display); font-weight: 800; font-size: 20px; text-transform: uppercase; line-height: 1; }
.o-mea__sub { font-size: 12px; font-weight: 700; }
.o-mea__body .o-btn { margin-top: 6px; }
@media (min-width: 768px) {
	.o-mea { grid-template-columns: 2fr 1fr 1fr 2fr; grid-template-rows: 320px 320px; gap: 20px; }
	.o-mea__card, .o-mea__card--1, .o-mea__card--4 { aspect-ratio: auto; grid-column: auto; }
	.o-mea__card--1 { grid-column: 1 / 3; }
	.o-mea__card--2 { grid-column: 3 / 5; }
	.o-mea__card--3 { grid-column: 1 / 3; }
	.o-mea__card--4 { grid-column: 3 / 5; }
	.o-mea__body { padding: 24px; }
	.o-mea__title { font-size: 30px; }
	.o-mea__sub { font-size: 14px; }
}
@media (min-width: 992px) {
	.o-mea { grid-template-columns: 2fr 1fr 1fr 2fr; }
	.o-mea__card--1 { grid-column: 1 / 3; } .o-mea__card--2 { grid-column: 3 / 5; }
	.o-mea__card--3 { grid-column: 1 / 2; } .o-mea__card--4 { grid-column: 2 / 5; }
}

/* ---------- Tabs (featured) ---------- */
.o-tabs__nav { margin-bottom: 16px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
.o-tabs__nav::-webkit-scrollbar { display: none; }
.o-tabs__panel[hidden] { display: none; }

/* ---------- Brands ---------- */
.o-brand { flex: 0 0 auto; width: 140px; display: flex; flex-direction: column; align-items: center; gap: 8px; scroll-snap-align: start; }
.o-brand img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-12); background: #fff; }
.o-brand__name { font-size: 13px; font-weight: 700; text-align: center; }
@media (min-width: 992px) { .o-brand { width: calc((100% - 5 * 16px) / 6); } }

/* ---------- Edito cards ---------- */
.o-edito { display: grid; gap: 16px; }
.o-edito__card { border-radius: var(--r-16); padding: 20px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.o-edito__card--red { background: var(--c-red); color: #fff; }
.o-edito__card--beige { background: var(--c-beige-100); }
.o-edito__card--green { background: var(--c-green-bg); }
.o-edito__card--blue { background: var(--c-blue-bg); }
.o-edito__card--pink { background: var(--c-pink-bg); }
.o-edito__card--aqua { background: var(--c-aqua-bg); }
.o-edito__media { width: 100%; aspect-ratio: 4/3; border-radius: var(--r-12); overflow: hidden; background: rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; }
.o-edito__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.o-edito__card:hover .o-edito__media img { transform: scale(1.03); }
.o-edito__clublogo, .o-clubbanner__logo, .o-clubcard__logo { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; font-family: var(--f-display); }
.o-edito__clublogo b, .o-clubbanner__logo b, .o-clubcard__logo b { font-size: 44px; font-weight: 800; }
.o-edito__clublogo span, .o-clubbanner__logo span, .o-clubcard__logo span { font-size: 12px; letter-spacing: .3em; margin-top: 4px; }
.o-edito__title { font-size: 22px; text-transform: uppercase; }
.o-edito__text { font-size: 14px; }
.o-edito__ph { width: 60%; aspect-ratio: 1; border-radius: var(--r-full); background: rgba(255,255,255,.6); }
@media (min-width: 768px) { .o-edito { grid-template-columns: repeat(3, 1fr); gap: 20px; } .o-edito__card { padding: 24px; } }

/* ---------- Reassurance ---------- */
.o-reassure { background: var(--c-beige-50); border-top: 1px solid var(--c-beige-100); padding-block: 30px; }
.o-reassure__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 10px; }
.o-reassure__item { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; font-size: 12px; font-weight: 700; line-height: 1.3; color: var(--c-ink); }
.o-reassure__ico { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: var(--r-full); background: var(--c-rose-bg); color: var(--c-red); box-shadow: 0 6px 16px rgba(34,41,48,.06), inset 0 0 0 3px #fff; transition: transform .25s var(--ease), box-shadow .25s; }
.o-reassure__ico--beige { background: var(--c-beige-100); color: #8a6a2f; }
.o-reassure__ico--green { background: var(--c-green-bg); color: var(--c-green); }
.o-reassure__ico--blue  { background: var(--c-blue-bg);  color: var(--c-blue); }
.o-reassure__ico--aqua  { background: var(--c-aqua-bg);  color: var(--c-aqua); }
.o-reassure__ico--pink  { background: var(--c-pink-bg);  color: var(--c-pink); }
.o-reassure__ico--peach { background: var(--c-peach-bg); color: var(--c-peach); }
.o-reassure__item:hover .o-reassure__ico { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 22px rgba(34,41,48,.12), inset 0 0 0 3px #fff; }
.o-reassure__label { max-width: 150px; }
@media (min-width: 768px) { .o-reassure__row { grid-template-columns: repeat(5, 1fr); } .o-reassure__item { font-size: 13px; } .o-reassure__ico { width: 72px; height: 72px; } .o-reassure__ico svg { width: 34px; height: 34px; } }

/* ---------- Product tile ---------- */
.o-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
@media (min-width: 768px) { .o-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; } }
@media (min-width: 992px) { .o-grid { grid-template-columns: repeat(4, 1fr); gap: 32px 20px; } }
.o-tile { position: relative; display: flex; flex-direction: column; min-width: 0; }
.o-car__track .o-tile { flex: 0 0 auto; width: 46%; scroll-snap-align: start; }
@media (min-width: 768px) { .o-car__track .o-tile { width: calc((100% - 2 * 16px) / 3); } }
@media (min-width: 992px) { .o-car__track .o-tile { width: calc((100% - 3 * 20px) / 4); } .o-car__track { gap: 20px; } }
.o-tile__media { position: relative; border-radius: var(--r-12); overflow: hidden; background: var(--c-tile); aspect-ratio: 1; }
.o-tile__imglink { display: block; height: 100%; }
.o-tile__img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s var(--ease), transform .5s var(--ease); }
.o-tile__img--hover { position: absolute; inset: 0; opacity: 0; }
@media (hover: hover) {
	.o-tile:hover .o-tile__img--hover { opacity: 1; }
	.o-tile:hover .o-tile__img:not(.o-tile__img--hover) { transform: scale(1.02); }
}
.o-tile__media .o-wish { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; border-radius: var(--r-full); background: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-1); transition: transform .2s var(--ease), color .2s; z-index: 2; }
.o-tile__media .o-wish:hover { transform: scale(1.1); }
.o-wish.is-on { color: var(--c-red); }
.o-wish.is-on .o-ico path { fill: currentColor; }
.o-tile__add { position: absolute; right: 8px; bottom: 8px; width: 34px; height: 34px; border-radius: var(--r-full); background: #fff; color: var(--c-ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-1); transition: background .2s, color .2s, transform .2s; z-index: 2; }
.o-tile__add:hover { background: var(--c-ink-2); color: #fff; }
.o-tile__add.loading { opacity: .5; }
.o-tile__add.added { background: var(--c-green); color: #fff; }
.o-tile__body { padding: 10px 2px 0; display: flex; flex-direction: column; gap: 3px; }
.o-tile__brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-grey-500); }
.o-tile__title { font-size: 13px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.o-tile__title:hover { text-decoration: underline; text-underline-offset: 3px; }
.o-tile__price { font-size: 14px; margin-top: 2px; }
.o-tile__price .o-price { gap: 4px 8px; }
.o-stars { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; color: var(--c-grey-700); }
.o-stars .o-ico { color: var(--c-beige); }
.o-stars i { font-style: normal; color: var(--c-grey-500); }
@media (min-width: 992px) { .o-tile__title { font-size: 14px; } .o-tile__price { font-size: 15px; } }

/* ---------- Carousel ---------- */
.o-car { position: relative; }
.o-car__track { scroll-snap-type: x mandatory; }
.o-car__nav { display: none; }
@media (min-width: 992px) {
	.o-car__nav { display: flex; gap: 8px; position: absolute; right: 0; top: -58px; }
	.o-sec__head + .o-car .o-car__nav { top: -66px; }
	.o-sec__head:has(+ .o-car) > .o-btn { margin-right: 100px; }
	.o-car__btn { width: 40px; height: 40px; border-radius: var(--r-full); border: 1.5px solid var(--c-ink-2); display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s; background: #fff; }
	.o-car__btn:hover { background: var(--c-ink-2); color: #fff; }
	.o-car__btn[disabled] { opacity: .3; pointer-events: none; }
}

/* ---------- Shop archive ---------- */
.o-crumb { font-size: 12px; color: var(--c-grey-500); padding: 12px 0; display: flex; flex-wrap: wrap; gap: 4px; }
.o-crumb a:hover { color: var(--c-ink); text-decoration: underline; }
.o-crumb__sep { margin: 0 2px; }
.o-shop__head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.o-shop__title { font-size: clamp(24px, 3vw, 34px); text-transform: uppercase; }
.o-shop__tools { display: flex; flex-direction: column; gap: 12px; }
.o-shop__filterbtn { align-self: flex-start; }
.o-shop__count { font-size: 12px; color: var(--c-grey-500); margin-bottom: 14px; }
.o-shop__count .woocommerce-result-count { margin: 0; }
.o-shop__desc { margin-bottom: 20px; font-size: 14px; color: var(--c-grey-700); }
@media (min-width: 992px) {
	.o-shop__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
	.o-shop__tools { flex-direction: row; align-items: center; }
	.o-shop__filterbtn { align-self: auto; }
}
.o-more { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 40px auto; max-width: 320px; }
.o-more__count { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--c-grey-500); }
.o-progress__bar { width: 100%; height: 4px; background: var(--c-grey-200); border-radius: var(--r-full); overflow: hidden; }
.o-progress__bar i { display: block; height: 100%; background: var(--c-ink-2); border-radius: var(--r-full); transition: width .4s var(--ease); }
.o-more__btn.is-loading { opacity: .6; pointer-events: none; }
.o-filters__body { flex: 1; overflow-y: auto; padding: 8px 20px; }
.o-filters__foot { display: flex; gap: 10px; padding: 14px 20px; border-top: 1px solid var(--c-grey-100); }
.o-filters__foot .o-btn--dark { flex: 1; }
.o-filters__hint { font-size: 13px; padding: 12px 0; }
.o-filters .woocommerce-ordering select, .o-filters select { width: 100%; height: 44px; border: 1px solid var(--c-grey-200); border-radius: var(--r-8); padding: 0 12px; background: #fff; }
.o-filter-widget ul li { padding: 6px 0; font-size: 14px; }
.o-filter-widget .chosen { font-weight: 700; }
.o-filter-widget .count { color: var(--c-grey-500); font-size: 12px; }

/* Accordions */
.o-acc { border-bottom: 1px solid var(--c-grey-200); }
.o-acc__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-weight: 700; font-size: 15px; }
.o-acc__head::after { content: ''; width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; flex: none; margin-left: 12px; }
.o-acc[open] > .o-acc__head::after { transform: rotate(225deg); }
.o-acc__body { padding: 0 0 18px; font-size: 14px; }
.o-acc--pdp .o-acc__head { padding: 18px 0; text-transform: uppercase; letter-spacing: .03em; font-size: 14px; }

/* ---------- PDP ---------- */
.o-pdp { display: grid; gap: 22px; padding-bottom: 20px; }
@media (min-width: 992px) { .o-pdp { grid-template-columns: minmax(0, 1fr) 440px; gap: 48px; align-items: start; } }
.o-pdp__gallery { margin-inline: calc(-1 * var(--gutter)); }
.o-mosaic { position: relative; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.o-mosaic::-webkit-scrollbar { display: none; }
.o-mosaic__item { flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 1; background: var(--c-tile); transition: outline-color .2s; outline: 2px solid transparent; outline-offset: -2px; }
.o-mosaic__item.is-active { outline-color: var(--c-ink); }
.o-mosaic__img { width: 100%; height: 100%; object-fit: cover; }
.o-mosaic__dots { display: flex; justify-content: center; gap: 6px; padding: 10px 0 0; }
.o-mosaic__arrow { position: absolute; top: 50%; z-index: 2; width: 40px; height: 40px; margin-top: -32px; border-radius: var(--r-full); background: rgba(255,255,255,.92); color: var(--c-ink); box-shadow: 0 2px 10px rgba(0,0,0,.15); display: inline-flex; align-items: center; justify-content: center; transition: opacity .2s, transform .15s; }
.o-mosaic__arrow--prev { left: 10px; } .o-mosaic__arrow--next { right: 10px; }
.o-mosaic__arrow:active { transform: scale(.92); }
.o-mosaic__arrow[disabled] { opacity: .35; pointer-events: none; }
.o-mosaic__dots i { width: 6px; height: 6px; border-radius: var(--r-full); background: var(--c-grey-300); transition: background .2s, transform .2s; }
.o-mosaic__dots i.is-on { background: var(--c-ink); transform: scale(1.3); }
@media (min-width: 992px) {
	.o-pdp__gallery { margin-inline: 0; }
	.o-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; overflow: visible; }
	.o-mosaic__item { border-radius: var(--r-12); overflow: hidden; }
	.o-mosaic--1 .o-mosaic__item, .o-mosaic--3 .o-mosaic__item:first-child, .o-mosaic--5 .o-mosaic__item:first-child { grid-column: 1 / -1; }
	.o-mosaic__dots, .o-mosaic__arrow { display: none; }
}
.o-pdp__sticky { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 992px) { .o-pdp__sticky { position: sticky; top: calc(var(--header-h) + var(--nav-h) + 16px); } }
.o-pdp__title { font-family: var(--f-body); font-size: 20px; font-weight: 700; line-height: 1.3; }
.o-pdp__ref { font-size: 12px; color: var(--c-grey-500); }
.o-pdp__excerpt { font-size: 14px; color: var(--c-grey-700); }
.o-pdp__price { font-size: 20px; margin-top: 4px; }
.o-pdp__price .o-price__club { font-size: 18px; }
.o-pdp__form { margin-top: 6px; }
.o-pdp__guide a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.o-pdp__store { display: flex; gap: 12px; align-items: center; padding: 14px; border: 1px solid var(--c-grey-200); border-radius: var(--r-12); font-size: 13px; margin-top: 6px; }
.o-pdp__store b { display: block; }
.o-pdp__store a { text-decoration: underline; text-underline-offset: 3px; }
.o-clubbanner { display: flex; align-items: center; gap: 14px; background: var(--c-red); color: #fff; border-radius: var(--r-12); padding: 12px 16px; margin-top: 4px; }
.o-clubbanner__logo b { font-size: 28px; } .o-clubbanner__logo span { font-size: 9px; }
.o-clubbanner__cta { font-weight: 700; font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.o-pdp__shiptitle { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; margin: 12px 0 8px; }
.o-shipgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; list-style: none; margin: 0; padding: 0; }
.o-shipcard { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--c-grey-100); border-radius: var(--r-12); background: #fff; font-size: 13px; line-height: 1.3; transition: border-color .2s, box-shadow .2s; }
.o-shipcard:hover { border-color: var(--c-grey-200); box-shadow: var(--shadow-1); }
.o-shipcard__ico { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--r-full); background: var(--c-beige-100); color: var(--c-ink); flex: 0 0 auto; }
.o-shipcard:nth-child(2n) .o-shipcard__ico { background: var(--c-rose-bg); }
.o-shipcard:nth-child(3) .o-shipcard__ico { background: var(--c-green-bg); }
.o-shipcard:nth-child(4) .o-shipcard__ico { background: var(--c-blue-bg); }
.o-shipcard__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.o-shipcard__body b { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 13px; }
.o-shipcard__ico svg { width: 18px; height: 18px; }
.o-shipcard__body b { font-weight: 700; }
.o-shipcard__body small { color: var(--c-grey-500); font-size: 12px; }
.o-shipcard__price { font-style: normal; font-weight: 800; font-size: 12px; padding: 4px 8px; border-radius: var(--r-full); background: var(--c-tile); color: var(--c-ink); white-space: nowrap; }
.o-shipcard__price.is-free { background: var(--c-green-bg); color: var(--c-green); }
.o-shiplist li { display: grid; grid-template-columns: 28px 1fr auto; gap: 4px 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--c-grey-100); }
.o-shiplist span { font-weight: 700; color: var(--c-red); } .o-shiplist em { grid-column: 2 / -1; font-style: normal; font-size: 12px; color: var(--c-grey-500); }
.o-pdp__accs { margin-bottom: 20px; }
.o-pdp__accs .o-acc { max-width: 820px; }

/* Variation form (Woo markup) */
.variations { width: 100%; border-collapse: collapse; }
.variations tr { display: block; margin-bottom: 14px; }
.variations th, .variations td { display: block; padding: 0; text-align: left; }
.variations th.label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.variations th.label label::after { content: ''; }
.variations select { display: none; }
.o-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.o-sw { min-width: 46px; height: 40px; padding: 0 12px; border-radius: var(--r-full); border: 1.5px solid var(--c-grey-200); background: #fff; font-size: 13px; font-weight: 700; transition: all .15s var(--ease); }
.o-sw:hover { border-color: var(--c-ink); }
.o-sw.is-selected { background: var(--c-ink-2); color: #fff; border-color: var(--c-ink-2); }
.o-sw.is-unavailable { color: var(--c-grey-300); border-style: dashed; text-decoration: line-through; }
.o-sw.is-unavailable.is-selected { background: var(--c-grey-100); color: var(--c-grey-500); }
.o-swatches--color .o-sw { min-width: 0; width: 34px; height: 34px; padding: 0; border-radius: var(--r-full); background: var(--sw, #ddd); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--c-grey-300); }
.o-swatches--color .o-sw.is-selected { box-shadow: 0 0 0 2px var(--c-ink); }
.o-swatches--color .o-sw.is-unavailable { opacity: .35; text-decoration: none; }
.woocommerce-variation-price { margin: 8px 0; font-size: 18px; }
.woocommerce-variation-availability { font-size: 13px; }
.woocommerce-variation-availability .out-of-stock { color: var(--c-red); font-weight: 700; }
.woocommerce-variation-availability .in-stock { color: var(--c-green); }
.woocommerce-variation-add-to-cart, form.cart:not(.variations_form) { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
form.cart .single_add_to_cart_button { flex: 1; min-width: 200px; min-height: 48px; padding: 0 24px; border-radius: var(--r-full); background: var(--c-ink-2); color: #fff; font-weight: 700; font-size: 14px; letter-spacing: .05em; text-transform: uppercase; transition: background .2s; }
form.cart .single_add_to_cart_button:hover { background: #000; }
form.cart .single_add_to_cart_button.disabled, form.cart .single_add_to_cart_button[disabled] { opacity: .45; cursor: not-allowed; }
.woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button { opacity: .45; }
.single_variation_wrap .woocommerce-variation-description { font-size: 13px; }
.stock.out-of-stock { color: var(--c-red); font-weight: 700; }

/* Sticky mobile buy bar */
.o-stickybuy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,.08); display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); transform: translateY(100%); transition: transform .25s var(--ease); }
.o-stickybuy.is-on { transform: none; }
.o-stickybuy[hidden] { display: none; }
.o-stickybuy__price { font-size: 15px; }
.o-stickybuy .o-btn { min-height: 44px; padding-inline: 20px; font-size: 12px; }
@media (min-width: 992px) { .o-stickybuy { display: none !important; } }

/* ---------- Cart ---------- */
.o-sec--tunnel { padding-top: 16px; }
.o-cart { display: grid; gap: 24px; }
@media (min-width: 992px) { .o-cart { grid-template-columns: minmax(0, 1fr) 400px; gap: 40px; align-items: start; } .o-cart__side { position: sticky; top: 90px; } }
.o-cartlist { width: 100%; border-collapse: collapse; }
.o-cartitem { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 4px 14px; padding: 16px 0; border-bottom: 1px solid var(--c-grey-200); }
.o-cartitem td { display: block; padding: 0; vertical-align: top; }
.o-cartitem__media { grid-row: 1 / 3; }
.o-cartitem__media img { width: 96px; height: 96px; object-fit: cover; border-radius: var(--r-8); background: var(--c-tile); }
.o-cartitem__name { display: block; font-weight: 700; font-size: 14px; line-height: 1.35; }
.o-cartitem__ref { display: block; font-size: 11px; color: var(--c-grey-500); margin: 2px 0 4px; }
.o-cartitem .variation { display: flex; flex-wrap: wrap; gap: 2px 10px; font-size: 12px; color: var(--c-grey-700); margin: 0 0 6px; }
.o-cartitem .variation dt, .o-cartitem .variation dd { margin: 0; display: inline; } .o-cartitem .variation dd p { display: inline; margin: 0; }
.o-cartitem__price { font-size: 14px; font-weight: 700; display: flex; gap: 10px; align-items: baseline; }
.o-cartitem__actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.o-cartitem__actions .o-chip { gap: 4px; }
.o-cartitem__qty { grid-column: 2; display: flex !important; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.o-cartitem__sub { font-weight: 700; font-size: 15px; }
.o-cartitem__sub .o-price__club { display: none; }
@media (min-width: 768px) {
	.o-cartitem { grid-template-columns: 120px minmax(0, 1fr) 200px; }
	.o-cartitem__media { grid-row: auto; } .o-cartitem__media img { width: 120px; height: 120px; }
	.o-cartitem__qty { grid-column: auto; flex-direction: column; align-items: flex-end; margin-top: 0; }
}
.o-cart__actionsrow td { display: block; padding: 14px 0 0; }
.o-cart__actionsrow .o-btn { display: none; }
.o-cart__actionsrow .o-btn.is-dirty { display: inline-flex; }
.o-qty { display: inline-flex; align-items: center; border: 1px solid var(--c-grey-200); border-radius: var(--r-full); height: 40px; overflow: hidden; }
.o-qty__btn { width: 36px; height: 100%; display: inline-flex; align-items: center; justify-content: center; }
.o-qty__btn:hover { background: var(--c-grey-100); }
.o-qty__input { width: 44px; height: 100%; text-align: center; border: 0; outline: 0; font-weight: 700; -moz-appearance: textfield; background: #fff; }
.o-qty__input::-webkit-outer-spin-button, .o-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.o-progress { margin-top: 20px; padding: 14px 16px; background: var(--c-beige-50); border-radius: var(--r-12); font-size: 13px; }
.o-progress p { margin-top: 8px; }
.o-cart__summary { background: var(--c-tile); border-radius: var(--r-16); padding: 18px; }
.o-totals__cta { margin-bottom: 14px; }
.o-totals__clubhint { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 10px; font-size: 12px; }
.o-totals__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.o-totals__table th, .o-totals__table td { padding: 8px 0; text-align: left; vertical-align: top; font-weight: 400; }
.o-totals__table td { text-align: right; }
.o-totals__table tr { border-bottom: 1px solid var(--c-grey-200); }
.o-totals__table .order-total { border-bottom: 0; }
.o-totals__table .order-total th, .o-totals__table .order-total td { padding-top: 12px; font-weight: 700; font-size: 17px; }
.o-totals__table .shipping td { text-align: left; }
.o-totals__table .shipping th { display: none; }
.o-totals__table .shipping td::before { content: attr(data-title); display: block; font-size: 12px; color: var(--c-grey-500); margin-bottom: 6px; }
.o-totals__table .woocommerce-shipping-destination { font-size: 12px; color: var(--c-grey-500); margin: 6px 0 0; }
.o-totals__table .shipping-calculator-button { font-size: 12px; text-decoration: underline; }
.o-acc--coupon { margin-top: 12px; border: 1px solid var(--c-grey-200); border-radius: var(--r-12); padding: 0 16px; }
.o-acc--coupon .o-acc__head { gap: 8px; justify-content: flex-start; }
.o-acc--coupon .o-acc__head::after { margin-left: auto; }
.o-coupon { display: flex; gap: 8px; padding-bottom: 16px; }
.o-coupon input { flex: 1; min-width: 0; height: 40px; border: 1px solid var(--c-grey-200); border-radius: var(--r-full); padding: 0 14px; }
.o-cart__reassure { margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; list-style: none; padding: 0; }
.o-cart__reassure li { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; font-size: 11px; line-height: 1.3; padding: 12px 6px; background: #fff; border: 1px solid var(--c-grey-100); border-radius: var(--r-12); color: var(--c-grey-500); }
.o-cart__reassure li svg { width: 26px; height: 26px; color: var(--c-ink); }
.o-cart__reassure b { display: block; font-size: 12px; color: var(--c-ink); }
.o-cart__secure { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--c-grey-500); margin-top: 14px; justify-content: center; }
.o-empty { text-align: center; padding: 40px 0 20px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.o-empty__title { font-size: 20px; font-weight: 700; }
.o-club-row th, .o-club-row td { color: var(--c-red); }

/* ---------- Checkout ---------- */
.o-checkout { display: grid; gap: 20px; }
@media (min-width: 992px) { .o-checkout { grid-template-columns: minmax(0, 1fr) 420px; gap: 40px; align-items: start; } .o-checkout__side { position: sticky; top: 90px; } }
.o-card { background: #fff; border: 1px solid var(--c-grey-200); border-radius: var(--r-16); padding: 18px; }
.o-card__title { display: flex; align-items: center; gap: 8px; font-family: var(--f-body); font-size: 16px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .03em; }
.o-checkout .col2-set { display: flex; flex-direction: column; gap: 10px; }
.o-checkout h3 { font-family: var(--f-body); font-size: 14px; font-weight: 700; margin: 8px 0 10px; }
.o-checkout .form-row { margin: 0 0 12px; display: flex; flex-direction: column; gap: 4px; }
.o-checkout .form-row label { font-size: 12px; font-weight: 700; color: var(--c-grey-700); }
.o-checkout .form-row label .required { color: var(--c-red); text-decoration: none; }
.o-checkout .form-row label .optional { font-weight: 400; color: var(--c-grey-500); }
.o-checkout .input-text, .o-checkout select, .o-checkout textarea, .woocommerce-account .input-text, .woocommerce-form .input-text, .woocommerce-account select, .woocommerce-EditAccountForm .input-text { width: 100%; height: 46px; border: 1px solid var(--c-grey-200); border-radius: var(--r-8); padding: 0 14px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.o-checkout textarea { height: auto; min-height: 90px; padding: 10px 14px; }
.o-checkout .input-text:focus, .o-checkout select:focus, .o-checkout textarea:focus, .woocommerce-form .input-text:focus { border-color: var(--c-ink); box-shadow: 0 0 0 3px rgba(34,41,48,.08); outline: 0; }
.o-checkout .form-row.woocommerce-invalid .input-text { border-color: var(--c-red); }
.o-checkout .select2-container .select2-selection--single { height: 46px; border: 1px solid var(--c-grey-200); border-radius: var(--r-8); }
.o-checkout .select2-container .select2-selection--single .select2-selection__rendered { line-height: 44px; padding-left: 14px; }
.o-checkout .select2-container .select2-selection--single .select2-selection__arrow { height: 44px; }
.o-checkout .woocommerce-form__label-for-checkbox, .woocommerce-form__label-for-checkbox { display: flex; gap: 8px; align-items: center; font-size: 13px; }
.o-checkout .create-account, .o-checkout #ship-to-different-address { font-size: 14px; }
.o-checkout .woocommerce-additional-fields h3 { display: none; }
@media (min-width: 768px) {
	.o-checkout .form-row-first, .o-checkout .form-row-last { width: calc(50% - 6px); display: inline-flex; }
	.o-checkout .form-row-first { margin-right: 12px; }
	.o-checkout .col2-set { gap: 16px; }
	.o-card { padding: 24px; }
}
.woocommerce-checkout-review-order-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.woocommerce-checkout-review-order-table thead { display: none; }
.woocommerce-checkout-review-order-table td, .woocommerce-checkout-review-order-table th { padding: 8px 0; text-align: left; vertical-align: top; }
.woocommerce-checkout-review-order-table td.product-total, .woocommerce-checkout-review-order-table tfoot td { text-align: right; }
.woocommerce-checkout-review-order-table .cart_item { border-bottom: 1px solid var(--c-grey-100); }
.woocommerce-checkout-review-order-table .product-name { font-weight: 600; }
.woocommerce-checkout-review-order-table .product-quantity { font-weight: 400; color: var(--c-grey-500); }
.woocommerce-checkout-review-order-table .variation { font-size: 12px; color: var(--c-grey-500); margin: 2px 0 0; display: flex; flex-wrap: wrap; gap: 0 8px; }
.woocommerce-checkout-review-order-table .variation dt, .woocommerce-checkout-review-order-table .variation dd { display: inline; margin: 0; } .woocommerce-checkout-review-order-table .variation dd p { display: inline; margin: 0; }
.woocommerce-checkout-review-order-table tfoot th { font-weight: 400; }
.woocommerce-checkout-review-order-table tfoot tr { border-top: 1px solid var(--c-grey-100); }
.woocommerce-checkout-review-order-table .order-total th, .woocommerce-checkout-review-order-table .order-total td { font-weight: 700; font-size: 17px; padding-top: 12px; }
.woocommerce-shipping-methods li { display: flex; gap: 8px; margin-bottom: 6px; }
#payment { margin-top: 16px; }
.wc_payment_methods { display: flex; flex-direction: column; gap: 8px; }
.wc_payment_method { border: 1px solid var(--c-grey-200); border-radius: var(--r-12); padding: 12px 14px; }
.wc_payment_method > label { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; cursor: pointer; }
.wc_payment_method > label img { max-height: 24px; }
.wc_payment_method .payment_box { margin-top: 8px; font-size: 13px; color: var(--c-grey-700); }
.woocommerce-terms-and-conditions-wrapper { font-size: 12px; color: var(--c-grey-500); margin: 14px 0 8px; }
.woocommerce-privacy-policy-text p { margin: 0 0 8px; }
#place_order, .woocommerce #place_order { width: 100%; min-height: 50px; border-radius: var(--r-full); background: var(--c-beige); color: var(--c-ink-2); font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; transition: background .2s; }
#place_order:hover { background: #dcb97f; }
.o-join { display: flex; gap: 12px; align-items: flex-start; background: var(--c-rose-bg); border-radius: var(--r-12); padding: 14px; margin: 14px 0; font-size: 13px; cursor: pointer; }
.o-join input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--c-red); }
.o-join b { color: var(--c-red); }
.woocommerce-form-login-toggle, .woocommerce-form-coupon-toggle { margin-bottom: 14px; }
.woocommerce-form-login, .woocommerce-form-coupon { background: var(--c-tile); border-radius: var(--r-12); padding: 16px; margin-bottom: 16px; }
.blockUI.blockOverlay { border-radius: var(--r-16); }
.o-thanks__club { margin-top: 24px; }
.woocommerce-order { display: flex; flex-direction: column; gap: 20px; }
.woocommerce-thankyou-order-received { font-family: var(--f-display); font-size: 26px; }
.woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 14px 18px; background: var(--c-tile); border-radius: var(--r-12); font-size: 13px; }
.woocommerce-order-overview li strong { display: block; font-size: 15px; }
.woocommerce-table--order-details, .woocommerce-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.woocommerce-table th, .woocommerce-table td { padding: 10px 6px; text-align: left; border-bottom: 1px solid var(--c-grey-100); }
.woocommerce-customer-details address { font-style: normal; font-size: 14px; }

/* ---------- Tunnel header / steps ---------- */
.o-tunnel-head { background: #fff; border-bottom: 1px solid var(--c-grey-100); }
.o-tunnel__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; flex-wrap: wrap; padding-block: 8px; }
.o-tunnel__back { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--r-full); }
.o-tunnel__back:hover { background: var(--c-grey-100); }
.o-logo--tunnel .o-logo__word { font-size: 22px; }
.o-steps { display: flex; align-items: center; gap: 4px; width: 100%; justify-content: center; background: var(--c-tile); border-radius: var(--r-full); padding: 4px; }
.o-steps__item { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 12px; border-radius: var(--r-full); font-size: 12px; font-weight: 700; color: var(--c-grey-500); }
.o-steps__item span { display: none; }
.o-steps__item.active { background: var(--c-ink-2); color: #fff; }
.o-steps__item.active span { display: inline; }
.o-steps__item.done { color: var(--c-green); }
@media (min-width: 768px) { .o-steps { width: auto; } .o-steps__item span { display: inline; } .o-steps__item { padding: 0 16px; } .o-tunnel__bar { flex-wrap: nowrap; } }
.o-tunnel-foot { border-top: 1px solid var(--c-grey-100); padding: 20px 0 40px; font-size: 12px; color: var(--c-grey-500); }
.o-tunnel-foot .o-wrap { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; justify-content: center; }
.o-legal { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 12px; }

/* ---------- Account ---------- */
.woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.woocommerce-MyAccount-navigation a { display: inline-flex; align-items: center; min-height: 36px; padding: 0 16px; border-radius: var(--r-full); border: 1px solid var(--c-grey-200); font-size: 13px; font-weight: 600; }
.woocommerce-MyAccount-navigation .is-active a, .woocommerce-MyAccount-navigation a:hover { background: var(--c-ink-2); color: #fff; border-color: var(--c-ink-2); }
.woocommerce-MyAccount-content { font-size: 14px; }
.woocommerce-MyAccount-content p { margin-bottom: 12px; }
.woocommerce-form-login, .woocommerce-form-register { max-width: 460px; }
.woocommerce-account .u-columns { display: grid; gap: 30px; }
@media (min-width: 992px) { .woocommerce-account .u-columns { grid-template-columns: 1fr 1fr; } }
.woocommerce-form .form-row { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.woocommerce-form .form-row label { font-size: 12px; font-weight: 700; }
.woocommerce-form .button:not(.o-btn), .woocommerce-MyAccount-content .button:not(.o-btn), .woocommerce button.button:not(.o-btn), .woocommerce a.button:not(.o-btn):not(.o-tile__add), .woocommerce input.button:not(.o-btn) { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 24px; border-radius: var(--r-full); background: var(--c-ink-2); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; border: 0; }
.woocommerce-form .button:hover { background: #000; }
.woocommerce-LostPassword { font-size: 13px; }
.woocommerce-orders-table { width: 100%; font-size: 13px; }
.woocommerce-orders-table th, .woocommerce-orders-table td { padding: 10px 4px; border-bottom: 1px solid var(--c-grey-100); text-align: left; }
.woocommerce-orders-table .button { min-height: 32px; padding: 0 14px; font-size: 11px; }
.o-clubcard { background: var(--c-beige-50); border: 1px solid var(--c-beige-200); border-radius: var(--r-16); padding: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; max-width: 520px; }
.o-clubcard__logo { color: var(--c-red); }
.o-clubcard__state { font-weight: 700; }
.o-clubcard__state.is-on { color: var(--c-green); }
.woocommerce-Address { border: 1px solid var(--c-grey-200); border-radius: var(--r-12); padding: 16px; margin-bottom: 14px; }
.woocommerce-Address-title { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.woocommerce-Address-title h2, .woocommerce-Address-title h3 { font-family: var(--f-body); font-size: 15px; }

/* ---------- Notices ---------- */
.o-notices:empty { display: none; }
.o-notices { padding-top: 10px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-notice { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; padding: 12px 16px; border-radius: var(--r-12); font-size: 14px; margin: 0 0 10px; background: var(--c-green-bg); color: var(--c-green); }
.woocommerce-info { background: var(--c-blue-bg); color: var(--c-blue); }
.woocommerce-error { background: var(--c-rose-bg); color: var(--c-red-600); }
.woocommerce-error li { list-style: none; }
.woocommerce-message .button, .woocommerce-info .button { min-height: 32px; padding: 0 14px; font-size: 11px; margin-left: auto; }
.woocommerce-NoticeGroup { width: 100%; }
.wc-block-components-notice-banner { margin-bottom: 10px; border-radius: var(--r-12); }

/* ---------- Footer ---------- */
.o-footer { background: var(--c-tile); padding: 28px 0 24px; font-size: 14px; }
.o-footer__grid { display: grid; gap: 0; }
.o-footer__col { border-bottom: 1px solid var(--c-grey-200); }
.o-footer__title { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; padding: 14px 0; }
.o-footer__chev { transition: transform .2s; }
.o-footer__col[open] .o-footer__chev { transform: rotate(180deg); }
.o-footer__list { padding-bottom: 14px; display: flex; flex-direction: column; gap: 8px; }
.o-footer__list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.o-footer__hours { color: var(--c-grey-500); font-size: 13px; }
.o-footer__col--social { padding: 14px 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.o-socials { display: flex; gap: 8px; }
.o-social { width: 38px; height: 38px; border-radius: var(--r-full); background: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.o-social:hover { background: var(--c-ink-2); color: #fff; }
.o-footer__bottom { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; font-size: 12px; color: var(--c-grey-500); }
@media (max-width: 767px) { .o-footer__col:not([open]) .o-footer__list { display: none; } }
@media (min-width: 768px) {
	.o-footer { padding: 48px 0 32px; }
	.o-footer__grid { grid-template-columns: repeat(5, 1fr); gap: 24px; }
	.o-footer__col { border: 0; }
	.o-footer__title { padding: 0 0 12px; pointer-events: none; }
	.o-footer__chev { display: none; }
	.o-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; margin-top: 36px; }
}

/* ---------- Prose / posts / 404 ---------- */
.o-prose { font-size: 15px; line-height: 1.65; }
.o-prose p, .o-prose ul, .o-prose ol { margin-bottom: 14px; }
.o-prose ul { list-style: disc; padding-left: 20px; } .o-prose ol { list-style: decimal; padding-left: 20px; }
.o-prose h2 { font-size: 24px; margin: 24px 0 10px; } .o-prose h3 { font-size: 19px; margin: 18px 0 8px; }
.o-prose--page { max-width: 820px; }
.o-prose table { width: 100%; border-collapse: collapse; } .o-prose th, .o-prose td { padding: 8px; border-bottom: 1px solid var(--c-grey-200); text-align: left; }
.o-prose img { border-radius: var(--r-12); }
.o-prose a { text-decoration: underline; text-underline-offset: 3px; }
.o-posts { display: grid; gap: 24px; }
@media (min-width: 768px) { .o-posts { grid-template-columns: repeat(3, 1fr); } }
.o-post__media img { border-radius: var(--r-12); aspect-ratio: 1; object-fit: cover; width: 100%; }
.o-post__title { font-family: var(--f-body); font-size: 17px; margin-top: 10px; }
.o-post__meta { font-size: 12px; color: var(--c-grey-500); margin: 4px 0 8px; }
.o-post__hero { margin-bottom: 20px; }
.o-404 { text-align: center; padding-block: 60px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.o-404__code { color: var(--c-red); text-shadow: none; font-size: 120px; }
.o-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.o-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; border-radius: var(--r-full); border: 1px solid var(--c-grey-200); font-size: 13px; }
.o-pagination .page-numbers.current { background: var(--c-ink-2); color: #fff; border-color: var(--c-ink-2); }
.o-comments { margin-top: 30px; }
.o-comments__list li { padding: 12px 0; border-bottom: 1px solid var(--c-grey-100); }
.comment-form p { margin-bottom: 10px; display: flex; flex-direction: column; gap: 4px; }
.comment-form input:not([type=submit]), .comment-form textarea { border: 1px solid var(--c-grey-200); border-radius: var(--r-8); padding: 10px 14px; width: 100%; }
.comment-form .submit { display: inline-flex; align-items: center; min-height: 44px; padding: 0 24px; border-radius: var(--r-full); background: var(--c-ink-2); color: #fff; font-weight: 700; text-transform: uppercase; font-size: 13px; width: auto; }

/* Reviews (Woo) */
#reviews .commentlist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
#reviews .comment_container { display: flex; gap: 12px; }
#reviews .avatar { width: 40px; height: 40px; border-radius: var(--r-full); }
#reviews .meta { font-size: 12px; color: var(--c-grey-500); margin: 2px 0 6px; }
#reviews .star-rating { font-size: 12px; }
.star-rating { position: relative; display: inline-block; width: 5.4em; height: 1em; line-height: 1; overflow: hidden; font-family: var(--f-body); }
.star-rating::before { content: '★★★★★'; color: var(--c-grey-300); position: absolute; top: 0; left: 0; letter-spacing: .1em; }
.star-rating span { position: absolute; top: 0; left: 0; overflow: hidden; padding-top: 1.5em; }
.star-rating span::before { content: '★★★★★'; color: var(--c-beige); position: absolute; top: 0; left: 0; letter-spacing: .1em; }
.comment-form-rating .stars a { color: var(--c-grey-300); font-size: 22px; text-decoration: none; }
.comment-form-rating .stars a.active, .comment-form-rating .stars:hover a { color: var(--c-beige); }
.comment-form-rating .stars a:hover ~ a { color: var(--c-grey-300); }
.comment-form-rating .stars { display: inline-flex; gap: 2px; }
.comment-form-rating .stars a::before { content: '★'; }
.comment-form-rating .stars a { width: auto; text-indent: 0; }
.comment-form-rating .stars.selected a.active ~ a::before { color: var(--c-grey-300); }
.comment-form-rating .stars a.active::before, .comment-form-rating .stars.selected a:not(.active)::before { color: var(--c-beige); }
.comment-form-rating .stars.selected a.active ~ a::before { color: var(--c-grey-300); }
.woocommerce-noreviews { font-size: 14px; color: var(--c-grey-500); }
#review_form .comment-reply-title { font-weight: 700; font-size: 15px; display: block; margin-bottom: 10px; }

/* Woo generic */
.woocommerce-result-count { font-size: 12px; }
.woocommerce-ordering { margin: 0; }
.onsale { display: none; }
.woocommerce-no-products-found { padding: 30px 0; }
table.shop_attributes { width: 100%; border-collapse: collapse; }
table.shop_attributes th, table.shop_attributes td { padding: 8px 6px; border-bottom: 1px solid var(--c-grey-100); text-align: left; font-size: 14px; }
table.shop_attributes th { width: 40%; font-weight: 700; }
table.shop_attributes p { margin: 0; }
.woocommerce-shipping-calculator .form-row { margin-bottom: 8px; }
.woocommerce-shipping-calculator .input-text, .woocommerce-shipping-calculator select { width: 100%; height: 40px; border: 1px solid var(--c-grey-200); border-radius: var(--r-8); padding: 0 10px; }
.select2-dropdown { border-color: var(--c-grey-200); border-radius: var(--r-8); }

/* ---------- Entrance animation ---------- */
@keyframes o-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.o-home .o-hero__content > * { animation: o-rise .6s var(--ease) both; }
.o-home .o-hero__content > :nth-child(2) { animation-delay: .08s; } .o-home .o-hero__content > :nth-child(3) { animation-delay: .16s; }
.o-tile.is-new { animation: o-rise .4s var(--ease) both; }

/* ---------- Toast ---------- */
.o-toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); z-index: 200; background: var(--c-ink-2); color: #fff; border-radius: var(--r-full); padding: 10px 10px 10px 20px; display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 700; white-space: nowrap; box-shadow: var(--shadow-2); opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s var(--ease), visibility 0s .25s; max-width: calc(100vw - 32px); }
.o-toast.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s; }
.added_to_cart { display: none !important; }

/* =====================================================================
   Header mini-cart (hover dropdown)
   ===================================================================== */
.o-minicart { position: relative; display: inline-flex; }
.o-minicart__panel { display: none; position: absolute; top: calc(100% + 6px); right: -4px; width: min(380px, calc(100vw - 32px)); background: #fff; border-radius: var(--r-12, 12px); box-shadow: 0 12px 40px rgba(0,0,0,.16), 0 0 0 1px var(--c-grey-100); padding: 18px; z-index: 95; text-align: left; }
.o-minicart__panel::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; } /* hover bridge */
.o-minicart__panel::after { content: ''; position: absolute; top: -6px; right: 16px; width: 12px; height: 12px; background: #fff; transform: rotate(45deg); box-shadow: -1px -1px 0 var(--c-grey-100); }
@media (hover: hover) and (min-width: 992px) {
	.o-minicart:hover .o-minicart__panel, .o-minicart:focus-within .o-minicart__panel, .o-minicart.is-open .o-minicart__panel { display: block; animation: oal-fade .18s var(--ease, ease); }
}
@keyframes oal-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.o-minicart__title { margin: 0 0 12px; font-family: var(--f-display); font-weight: 800; font-size: 17px; }
.o-minicart__list { list-style: none; margin: 0; padding: 0; max-height: 46vh; overflow: auto; overscroll-behavior: contain; }
.o-minicart__item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-top: 1px solid var(--c-grey-100); }
.o-minicart__item:first-child { border-top: 0; padding-top: 0; }
.o-minicart__thumb img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; background: var(--c-tile); display: block; }
.o-minicart__body { min-width: 0; font-size: 13px; line-height: 1.35; }
.o-minicart__name { display: block; font-weight: 700; color: var(--c-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.o-minicart__body .variation { display: flex; flex-wrap: wrap; gap: 0 6px; margin: 2px 0; font-size: 12px; color: var(--c-grey-500); }
.o-minicart__body .variation dt, .o-minicart__body .variation dd, .o-minicart__body .variation p { display: inline; margin: 0; }
.o-minicart__qty { display: block; color: var(--c-grey-700); }
.o-minicart__qty .o-price__club { display: none; }
.o-minicart__remove { display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: var(--r-full); color: var(--c-grey-500); }
.o-minicart__remove:hover { background: var(--c-grey-100); color: var(--c-red); }
.o-minicart__total { display: flex; justify-content: space-between; align-items: baseline; margin: 12px 0; padding-top: 12px; border-top: 1px solid var(--c-grey-200); font-size: 14px; }
.o-minicart__total b { font-size: 18px; }
.o-minicart__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.o-minicart__btns .o-btn { padding: 0 10px; }
.o-minicart__empty { text-align: center; padding: 8px 0 4px; color: var(--c-grey-500); }
.o-minicart__empty svg { margin-bottom: 6px; opacity: .5; }
.o-minicart__empty p { margin: 0 0 12px; font-size: 14px; }
.o-minicart.is-loading .o-minicart__inner { opacity: .5; pointer-events: none; }

/* Checkout tunnel – exit */
.o-tunnel__exit { display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 6px 0 14px; border-radius: var(--r-full); font-size: 13px; font-weight: 700; color: var(--c-grey-700); text-transform: uppercase; letter-spacing: .04em; order: 3; }
.o-tunnel__exit:hover { background: var(--c-grey-100); color: var(--c-red); }
.o-tunnel__exit span { display: none; }
@media (min-width: 768px) { .o-tunnel__exit span { display: inline; } .o-tunnel__exit { padding-right: 10px; } }
@media (max-width: 767px) { .o-steps { order: 4; } }

/* Brand marks: logos are usually wide – contain instead of cover */
.o-brand img { object-fit: contain; padding: 18px; border: 1px solid var(--c-grey-100); }

/* =====================================================================
   Live search suggestions
   ===================================================================== */
.o-search, .o-searchbox__form { position: relative; }
.o-suggest { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.16), 0 0 0 1px var(--c-grey-100); padding: 10px; z-index: 96; text-align: left; max-height: min(70vh, 560px); overflow: auto; overscroll-behavior: contain; }
.o-suggest[hidden] { display: none; }
.o-suggest--overlay { top: 100%; left: var(--gutter); right: var(--gutter); border-radius: 0 0 14px 14px; max-height: calc(100vh - 80px); }
.o-suggest__head { margin: 6px 10px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--c-grey-500); }
.o-suggest__item { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; padding: 8px 10px; border-radius: 10px; color: var(--c-ink); }
.o-suggest__item:hover, .o-suggest__item.is-active { background: var(--c-tile); }
.o-suggest__item img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; background: var(--c-tile); }
.o-suggest__name { font-weight: 700; font-size: 14px; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.o-suggest__name mark { background: none; color: var(--c-red); }
.o-suggest__meta { font-size: 12px; color: var(--c-grey-500); }
.o-suggest__price { font-size: 13px; font-weight: 700; white-space: nowrap; text-align: right; }
.o-suggest__price .o-price__club { display: block; font-size: 12px; }
.o-suggest__cat { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; font-size: 14px; font-weight: 700; color: var(--c-ink); }
.o-suggest__cat:hover, .o-suggest__cat.is-active { background: var(--c-tile); }
.o-suggest__cat small { font-weight: 400; color: var(--c-grey-500); }
.o-suggest__cat svg { color: var(--c-grey-500); }
.o-suggest__all { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 6px; padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--c-red); border-top: 1px solid var(--c-grey-100); }
.o-suggest__all:hover, .o-suggest__all.is-active { background: var(--c-tile); }
.o-suggest__empty { padding: 16px 10px; text-align: center; color: var(--c-grey-500); font-size: 14px; }
.o-suggest.is-loading { opacity: .6; }

/* =====================================================================
   Shop filters (drawer)
   ===================================================================== */
.o-shop__fcount { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 4px; border-radius: var(--r-full); background: var(--c-red); color: #fff; font-size: 11px; font-style: normal; font-weight: 800; }
.o-active { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 14px; }
.o-active__chip { background: var(--c-ink-2); color: #fff; border-color: var(--c-ink-2); }
.o-active__chip svg { opacity: .7; }
.o-active__chip:hover { background: var(--c-red); border-color: var(--c-red); }
.o-active__clear { font-size: 12px; font-weight: 700; color: var(--c-grey-500); text-decoration: underline; text-underline-offset: 3px; }
.o-active__clear:hover { color: var(--c-red); }
.o-filterform .o-acc:first-child .o-acc__head { padding-top: 6px; }
.o-acc__n { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; margin-left: auto; margin-right: 12px; border-radius: var(--r-full); background: var(--c-red); color: #fff; font-size: 11px; font-style: normal; }
.o-fsort { display: flex; flex-direction: column; gap: 2px; }
.o-fradio { display: flex; align-items: center; gap: 12px; padding: 9px 4px; border-radius: 8px; cursor: pointer; font-size: 14px; }
.o-fradio:hover { background: var(--c-tile); }
.o-fradio input { appearance: none; width: 20px; height: 20px; border: 2px solid var(--c-grey-300); border-radius: var(--r-full); margin: 0; display: grid; place-content: center; transition: border-color .15s; }
.o-fradio input::before { content: ''; width: 10px; height: 10px; border-radius: var(--r-full); background: var(--c-ink-2); transform: scale(0); transition: transform .15s; }
.o-fradio input:checked { border-color: var(--c-ink-2); }
.o-fradio input:checked::before { transform: scale(1); }
.o-fradio input:checked + span { font-weight: 700; }
.o-fswatches { display: flex; flex-wrap: wrap; gap: 8px; }
.o-fsw { position: relative; display: inline-flex; align-items: center; gap: 6px; min-height: 40px; padding: 0 14px; border-radius: var(--r-full); border: 1.5px solid var(--c-grey-200); background: #fff; font-size: 13px; font-weight: 700; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.o-fsw input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.o-fsw small { font-weight: 400; color: var(--c-grey-500); font-size: 11px; }
.o-fsw:hover { border-color: var(--c-ink); }
.o-fsw.is-selected { background: var(--c-ink-2); border-color: var(--c-ink-2); color: #fff; }
.o-fsw.is-selected small { color: rgba(255,255,255,.7); }
.o-fsw:focus-within { box-shadow: 0 0 0 3px rgba(34,41,48,.12); }
.o-fswatches--color .o-fsw { padding-left: 8px; }
.o-fsw__dot { width: 24px; height: 24px; border-radius: var(--r-full); background: var(--sw, #ddd); box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.o-fswatches--color .o-fsw.is-selected .o-fsw__dot { box-shadow: 0 0 0 2px #fff; }
.o-frange { position: relative; height: 32px; margin: 6px 6px 10px; }
.o-frange__track { position: absolute; left: 0; right: 0; top: 50%; height: 4px; margin-top: -2px; border-radius: 2px; background: var(--c-grey-200); }
.o-frange__track i { position: absolute; top: 0; bottom: 0; background: var(--c-red); border-radius: 2px; }
.o-frange input[type=range] { position: absolute; inset: 0; width: 100%; margin: 0; appearance: none; -webkit-appearance: none; background: none; pointer-events: none; height: 32px; }
.o-frange input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 22px; height: 22px; border-radius: var(--r-full); background: #fff; border: 2px solid var(--c-ink-2); box-shadow: 0 2px 6px rgba(0,0,0,.15); cursor: grab; }
.o-frange input[type=range]::-moz-range-thumb { pointer-events: auto; width: 18px; height: 18px; border-radius: var(--r-full); background: #fff; border: 2px solid var(--c-ink-2); box-shadow: 0 2px 6px rgba(0,0,0,.15); cursor: grab; }
.o-frange input[type=range]::-moz-range-track { background: none; }
.o-fprice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.o-fprice label { display: flex; align-items: center; gap: 6px; height: 44px; padding: 0 12px; border: 1px solid var(--c-grey-200); border-radius: var(--r-8); font-size: 12px; color: var(--c-grey-500); }
.o-fprice label:focus-within { border-color: var(--c-ink); }
.o-fprice input { flex: 1; min-width: 0; border: 0; outline: 0; font: inherit; font-size: 15px; font-weight: 700; color: var(--c-ink); text-align: right; -moz-appearance: textfield; }
.o-fprice input::-webkit-outer-spin-button, .o-fprice input::-webkit-inner-spin-button { -webkit-appearance: none; }
.o-fprice b { color: var(--c-ink); }
.o-fswitch { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 14px; padding: 4px 0; }
.o-fswitch input { position: absolute; opacity: 0; }
.o-fswitch i { position: relative; width: 44px; height: 26px; border-radius: 13px; background: var(--c-grey-300); transition: background .2s; flex: 0 0 auto; }
.o-fswitch i::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: var(--r-full); background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .2s; }
.o-fswitch input:checked + i { background: var(--c-red); }
.o-fswitch input:checked + i::after { transform: translateX(18px); }
.o-fswitch input:focus-visible + i { box-shadow: 0 0 0 3px rgba(227,36,56,.25); }
.o-filters.is-busy .o-filters__foot .o-btn--dark { opacity: .6; pointer-events: none; }

/* Wishlist page */
.o-wishpage { padding-block: 10px 30px; }
.o-empty[hidden], .o-shop__count[hidden] { display: none; }
.o-drawer__count { position: static; margin-left: auto; }

/* Checkout: login / coupon toggles + coupon form */
.woocommerce-form-login-toggle .woocommerce-info, .woocommerce-form-coupon-toggle .woocommerce-info { background: #fff; border: 1px dashed var(--c-grey-300); color: var(--c-ink); border-radius: var(--r-12); padding: 14px 18px; font-size: 14px; }
.woocommerce-form-login-toggle .woocommerce-info a, .woocommerce-form-coupon-toggle .woocommerce-info a { color: var(--c-red); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.woocommerce-form-login-toggle .woocommerce-info::before, .woocommerce-form-coupon-toggle .woocommerce-info::before { content: ''; width: 34px; height: 34px; border-radius: var(--r-full); background-color: var(--c-rose-bg); background-repeat: no-repeat; background-position: center; background-size: 18px; flex: 0 0 auto; }
.woocommerce-form-coupon-toggle .woocommerce-info::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e32638' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9V7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2a2 2 0 0 0 0 6v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 0 0-6z'/><path d='M13 5v2M13 11v2M13 17v2'/></svg>"); }
.woocommerce-form-login-toggle .woocommerce-info::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e32638' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='4'/><path d='M4 21c0-4 3.6-7 8-7s8 3 8 7'/></svg>"); }
form.checkout_coupon, form.woocommerce-form-login.login { background: #fff; border: 1px solid var(--c-grey-200); border-radius: var(--r-12); padding: 18px; margin: 0 0 16px; }
form.checkout_coupon { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
form.checkout_coupon > p:not(.form-row) { flex-basis: 100%; margin: 0 0 4px; font-size: 13px; color: var(--c-grey-700); }
form.checkout_coupon .form-row { margin: 0; display: flex; }
form.checkout_coupon .form-row-first { flex: 1 1 220px; }
form.checkout_coupon .form-row-last { flex: 0 0 auto; }
form.checkout_coupon .input-text { width: 100%; height: 46px; border: 1px solid var(--c-grey-200); border-radius: var(--r-full); padding: 0 18px; font: inherit; font-size: 14px; outline: 0; }
form.checkout_coupon .input-text:focus { border-color: var(--c-ink); box-shadow: 0 0 0 3px rgba(34,41,48,.08); }
form.checkout_coupon .button { min-height: 46px; padding: 0 22px; border-radius: var(--r-full); background: var(--c-ink-2); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; border: 0; cursor: pointer; }
form.checkout_coupon .button:hover { background: var(--c-red); }
form.checkout_coupon .clear { display: none; }
form.woocommerce-form-login.login .form-row { margin: 0 0 12px; }
form.woocommerce-form-login.login .button { min-height: 44px; padding: 0 22px; border-radius: var(--r-full); background: var(--c-ink-2); color: #fff; font-weight: 700; text-transform: uppercase; font-size: 13px; border: 0; }

/* Checkout: shipping methods as an option list (full-width row under the items) */
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals > th { display: none; }
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals > td { text-align: left; padding: 12px 0 8px; }
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals > td::before { content: attr(data-title); display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--c-grey-700); margin-bottom: 10px; }
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals > td::before { padding-left: 26px; background-color: transparent; }
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals > td { position: relative; }
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals > td::after { content: ''; position: absolute; top: 12px; left: 0; width: 18px; height: 18px; background: var(--c-grey-700); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 7h11v9H3zM14 10h4l3 3v3h-7z'/><circle cx='7' cy='17.5' r='1.8'/><circle cx='17' cy='17.5' r='1.8'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 7h11v9H3zM14 10h4l3 3v3h-7z'/><circle cx='7' cy='17.5' r='1.8'/><circle cx='17' cy='17.5' r='1.8'/></svg>") center/contain no-repeat; }
.woocommerce-shipping-methods { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.woocommerce-shipping-methods li { position: relative; display: flex; align-items: center; gap: 12px; margin: 0; padding: 12px 14px; border: 1.5px solid var(--c-grey-200); border-radius: var(--r-12); background: #fff; transition: border-color .15s, background .15s; }
.woocommerce-shipping-methods li:hover { border-color: var(--c-ink); }
.woocommerce-shipping-methods li:has(input:checked) { border-color: var(--c-ink-2); background: var(--c-beige-50); box-shadow: 0 0 0 1px var(--c-ink-2); }
.woocommerce-shipping-methods input[type=radio] { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; margin: 0; border: 2px solid var(--c-grey-300); border-radius: var(--r-full); display: grid; place-content: center; flex: 0 0 auto; cursor: pointer; }
.woocommerce-shipping-methods input[type=radio]::before { content: ''; width: 10px; height: 10px; border-radius: var(--r-full); background: var(--c-red); transform: scale(0); transition: transform .15s; }
.woocommerce-shipping-methods input[type=radio]:checked { border-color: var(--c-red); }
.woocommerce-shipping-methods input[type=radio]:checked::before { transform: scale(1); }
.woocommerce-shipping-methods input[type=hidden] + label { padding-left: 0; }
.woocommerce-shipping-methods label { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0; font-size: 14px; font-weight: 600; cursor: pointer; }
.woocommerce-shipping-methods label::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.woocommerce-shipping-methods label .woocommerce-Price-amount { font-weight: 700; white-space: nowrap; }
.woocommerce-shipping-methods li:has(input:checked) label .woocommerce-Price-amount { color: var(--c-red); }
.woocommerce-checkout-review-order-table .woocommerce-shipping-destination, .woocommerce-checkout-review-order-table .woocommerce-shipping-calculator { font-size: 12px; color: var(--c-grey-500); margin: 8px 0 0; }

/* Icon-only chip (cart remove) */
.o-chip--icon { width: 34px; padding: 0; justify-content: center; }
.o-chip--icon:hover { color: var(--c-red); border-color: var(--c-red); }

/* Cart totals: shipping row styled like checkout */
.o-totals__table .shipping td { position: relative; padding: 12px 0 10px; }
.o-totals__table .shipping td::before { content: attr(data-title); display: block; padding-left: 26px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--c-grey-700); margin-bottom: 10px; }
.o-totals__table .shipping td::after { content: ''; position: absolute; top: 12px; left: 0; width: 18px; height: 18px; background: var(--c-grey-700); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 7h11v9H3zM14 10h4l3 3v3h-7z'/><circle cx='7' cy='17.5' r='1.8'/><circle cx='17' cy='17.5' r='1.8'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 7h11v9H3zM14 10h4l3 3v3h-7z'/><circle cx='7' cy='17.5' r='1.8'/><circle cx='17' cy='17.5' r='1.8'/></svg>") center/contain no-repeat; }
.o-totals__table .woocommerce-shipping-destination { margin-top: 10px; }
.o-totals__table .woocommerce-shipping-destination .shipping-calculator-button { margin-left: 6px; }
.o-totals__table .woocommerce-shipping-calculator { margin-top: 10px; }

/* Club join state */
.o-join.is-on { background: var(--c-green-bg); }
.o-join.is-on b { color: var(--c-green); }
.o-join b em { font-style: normal; font-weight: 400; color: var(--c-grey-500); font-size: 12px; }
.o-join__ok { color: var(--c-green); font-weight: 700; }
.o-totals__clubhint.is-on { color: var(--c-green); }

/* Club savings display */
.o-stdprice { color: var(--c-grey-500); font-weight: 400; margin-right: 4px; }
.o-clubsave th, .o-clubsave td { color: var(--c-green); font-weight: 700; }
.o-clubsave th small { display: block; font-weight: 400; font-size: 11px; color: var(--c-grey-500); }
.o-cartitem__price .o-stdprice { font-size: 13px; }

/* =====================================================================
   Modal (size guide popup)
   ===================================================================== */
.o-modal { position: fixed; inset: 0; z-index: 130; display: flex; align-items: flex-end; justify-content: center; padding: 0; opacity: 0; transition: opacity .25s var(--ease); pointer-events: none; }
.o-modal[hidden] { display: none; }
.o-modal.is-on { opacity: 1; pointer-events: auto; }
.o-modal__box { width: 100%; max-width: 760px; max-height: 92vh; background: #fff; border-radius: 18px 18px 0 0; box-shadow: 0 -10px 40px rgba(0,0,0,.25); display: flex; flex-direction: column; transform: translateY(30px); transition: transform .3s var(--ease); }
.o-modal.is-on .o-modal__box { transform: none; }
.o-modal__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px 14px 20px; border-bottom: 1px solid var(--c-grey-100); font-size: 16px; }
.o-modal__head b { display: inline-flex; align-items: center; gap: 8px; }
.o-modal__body { overflow: auto; overscroll-behavior: contain; padding: 18px 20px 28px; font-size: 14px; }
@media (min-width: 768px) {
	.o-modal { align-items: center; padding: 24px; }
	.o-modal__box { border-radius: 18px; max-height: 86vh; }
	.o-modal__body { padding: 22px 28px 30px; }
}
.o-sizeguide h2, .o-sizeguide h3 { font-family: var(--f-display); font-size: 18px; margin: 18px 0 8px; }
.o-sizeguide h2:first-child, .o-sizeguide h3:first-child { margin-top: 0; }
.o-sizeguide p { margin: 0 0 10px; color: var(--c-grey-700); }
.o-sizeguide table { width: 100%; border-collapse: collapse; margin: 6px 0 18px; font-size: 13px; }
.o-sizeguide th, .o-sizeguide td { padding: 9px 10px; text-align: center; border-bottom: 1px solid var(--c-grey-100); }
.o-sizeguide th { background: var(--c-beige-50); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
.o-sizeguide td:first-child, .o-sizeguide th:first-child { text-align: left; font-weight: 700; }
.o-sizeguide tbody tr:nth-child(even) td { background: var(--c-tile); }
.o-sizeguide ul { margin: 0 0 12px 18px; padding: 0; }
.o-sizeguide li { margin: 0 0 4px; }

/* Brands */
.o-brand__ph { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1; border-radius: var(--r-12); background: var(--c-tile); font-family: var(--f-display); font-size: 40px; color: var(--c-grey-300); }
.o-brand__name small { font-weight: 400; color: var(--c-grey-500); }
.o-brandgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 14px; padding-block: 10px 30px; }
@media (min-width: 600px) { .o-brandgrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .o-brandgrid { grid-template-columns: repeat(5, 1fr); gap: 24px 20px; } }
.o-brandgrid .o-brand { width: auto; }
.o-brandgrid .o-brand img, .o-brandgrid .o-brand__ph { transition: transform .25s var(--ease), box-shadow .25s; }
.o-brandgrid .o-brand:hover img, .o-brandgrid .o-brand:hover .o-brand__ph { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.o-shop__brand { display: flex; align-items: center; gap: 16px; }
.o-shop__brand img { width: 72px; height: 72px; object-fit: contain; padding: 10px; background: #fff; border: 1px solid var(--c-grey-100); border-radius: var(--r-12); }
.o-prose .o-brandgrid a { text-decoration: none; }

/* Focus rings: none for mouse clicks; round ring for round controls on keyboard focus */
:focus:not(:focus-visible) { outline: none; }
.o-car__btn:focus-visible, .o-iconbtn:focus-visible, .o-sw:focus-visible, .o-chip:focus-visible, .o-btn:focus-visible, .o-tile__add:focus-visible, .o-wish:focus-visible, .o-qty__btn:focus-visible, .o-tunnel__back:focus-visible, .o-tunnel__exit:focus-visible, .o-minicart__remove:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(34,41,48,.18); border-radius: var(--r-full); }
.o-car__btn:active { transform: scale(.94); }

/* WhatsApp button */
.o-btn--wa { background: #25d366; border-color: #25d366; color: #fff; }
.o-btn--wa:hover { background: #1ebe5a; border-color: #1ebe5a; color: #fff; }

/* Account: honeypot, verify / OTP boxes */
.oal-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.o-authbox { max-width: 440px; margin: 10px auto 40px; padding: 28px 24px 22px; background: #fff; border: 1px solid var(--c-grey-200); border-radius: 18px; text-align: center; box-shadow: var(--shadow-1); }
.o-authbox__ico { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: var(--r-full); background: var(--c-rose-bg); color: var(--c-red); margin-bottom: 10px; }
.o-authbox h2 { font-family: var(--f-display); font-size: 24px; margin: 0 0 8px; }
.o-authbox p { color: var(--c-grey-700); font-size: 14px; margin: 0 0 16px; }
.o-authform { display: flex; flex-direction: column; gap: 12px; }
.o-code { width: 100%; height: 60px; border: 1.5px solid var(--c-grey-200); border-radius: var(--r-12); font-size: 30px; font-weight: 800; letter-spacing: .4em; text-align: center; font-variant-numeric: tabular-nums; outline: 0; }
.o-code:focus { border-color: var(--c-ink); box-shadow: 0 0 0 3px rgba(34,41,48,.08); }
.o-authform__resend { margin-top: 14px; font-size: 13px; color: var(--c-grey-500); }
.o-link { background: none; border: 0; padding: 0; color: var(--c-red); font: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.o-authbox__foot { margin: 14px 0 0; font-size: 13px; }
.o-authbox__foot a { color: var(--c-grey-700); text-decoration: underline; text-underline-offset: 3px; }
.o-otp { margin-top: 18px; }
.o-otp__or { display: flex; align-items: center; gap: 12px; margin: 0 0 12px; color: var(--c-grey-500); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.o-otp__or::before, .o-otp__or::after { content: ''; flex: 1; height: 1px; background: var(--c-grey-200); }
.o-otp__form { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.o-otp__form label { font-size: 12px; font-weight: 700; color: var(--c-grey-700); }
.o-otp__form[hidden] { display: none; }
.o-verifychoice { display: flex; flex-direction: column; gap: 8px; }
.o-verifychoice__label { font-size: 12px; font-weight: 700; color: var(--c-grey-700); }
.o-verifychoice__opts { display: grid; gap: 8px; }
@media (min-width: 480px) { .o-verifychoice__opts { grid-template-columns: 1fr 1fr; } }
.o-optcard { position: relative; display: flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1.5px solid var(--c-grey-200); border-radius: var(--r-12); background: #fff; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; }
.o-optcard:hover { border-color: var(--c-ink); }
.o-optcard input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.o-optcard__ico { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: var(--r-full); color: #fff; flex: 0 0 auto; }
.o-optcard__ico svg { width: 15px; height: 15px; }
.o-optcard__ico--wa { background: #25d366; }
.o-optcard__ico--mail { background: var(--c-ink-2); }
.o-optcard__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.o-optcard__body b { font-size: 13px; font-weight: 700; }
.o-optcard__body small { font-size: 10.5px; color: var(--c-grey-500); font-weight: 400; line-height: 1.25; }
.o-optcard__check { width: 16px; height: 16px; border: 2px solid var(--c-grey-300); border-radius: var(--r-full); display: grid; place-content: center; flex: 0 0 auto; transition: border-color .15s; }
.o-optcard__check::before { content: ''; width: 8px; height: 8px; border-radius: var(--r-full); background: var(--c-red); transform: scale(0); transition: transform .15s; }
.o-optcard:has(input:checked) { border-color: var(--c-ink-2); background: var(--c-beige-50); box-shadow: 0 0 0 1px var(--c-ink-2); }
.o-optcard:has(input:checked) .o-optcard__check { border-color: var(--c-red); }
.o-optcard:has(input:checked) .o-optcard__check::before { transform: scale(1); }
.o-optcard:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(34,41,48,.15); }
.woocommerce-form-register .button, .woocommerce-form-login .button { min-height: 46px; padding: 0 24px; border-radius: var(--r-full); background: var(--c-ink-2); color: #fff; font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; border: 0; cursor: pointer; }
.woocommerce-form-register .button:hover, .woocommerce-form-login .button:hover { background: var(--c-red); }
.woocommerce-account .u-columns h2 { font-family: var(--f-display); font-size: 22px; margin: 0 0 14px; }
.woocommerce-form-register, .woocommerce-form-login.login { background: #fff; border: 1px solid var(--c-grey-200); border-radius: var(--r-12); padding: 22px; }
.woocommerce-form-register .form-row, .woocommerce-form-login .form-row { margin: 0 0 12px; display: flex; flex-direction: column; gap: 4px; }
.woocommerce-form-register label, .woocommerce-form-login label { font-size: 12px; font-weight: 700; color: var(--c-grey-700); }
.woocommerce-form-register .woocommerce-privacy-policy-text { font-size: 12px; color: var(--c-grey-500); }
.woocommerce-form-login .woocommerce-LostPassword { font-size: 13px; margin: 10px 0 0; }
.woocommerce-form-login .woocommerce-LostPassword a { text-decoration: underline; text-underline-offset: 3px; }

/* OTP button icons */
.o-otp__btn { gap: 6px; }
.o-otp__wa, .o-otp__mail { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: var(--r-full); color: #fff; }
.o-otp__wa { background: #25d366; }
.o-otp__mail { background: var(--c-ink-2); margin-left: -8px; box-shadow: 0 0 0 2px #fff; }
.o-authbox .woocommerce-error, .o-authbox .woocommerce-message, .o-authbox .woocommerce-info { text-align: left; margin-bottom: 14px; }

/* My Account: temporary-password notice as a card */
.o-account-in .woocommerce-MyAccount-content .woocommerce-info { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "ico text" "ico btn"; gap: 6px 14px; align-items: center; background: #fff; border: 1px solid var(--c-grey-200); border-left: 4px solid var(--c-red); border-radius: var(--r-12); padding: 16px 18px; color: var(--c-ink); font-size: 14px; line-height: 1.45; margin-bottom: 20px; }
.o-account-in .woocommerce-MyAccount-content .woocommerce-info::before { grid-area: ico; content: ''; width: 40px; height: 40px; border-radius: var(--r-full); background: var(--c-rose-bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e32638' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='10' width='16' height='11' rx='2'/><path d='M8 10V7a4 4 0 0 1 8 0v3'/></svg>") center/20px no-repeat; align-self: start; }
.o-account-in .woocommerce-MyAccount-content .woocommerce-info .button { grid-area: btn; justify-self: start; margin: 4px 0 0; min-height: 36px; padding: 0 16px; border-radius: var(--r-full); background: var(--c-ink-2); color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.o-account-in .woocommerce-MyAccount-content .woocommerce-info .button:hover { background: var(--c-red); }
@media (min-width: 768px) { .o-account-in .woocommerce-MyAccount-content .woocommerce-info { grid-template-columns: auto 1fr auto; grid-template-areas: "ico text btn"; } .o-account-in .woocommerce-MyAccount-content .woocommerce-info .button { margin: 0; } }

/* Category page header: tiles + inline size chips */
.o-shop__kicker { display: block; font-family: var(--f-body); font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--c-grey-500); margin-bottom: 4px; }
.o-shop__tiles { margin: 6px 0 14px; }
.o-quick__card.is-active .o-quick__img { box-shadow: 0 0 0 2.5px var(--c-red); }
.o-quick__card.is-active .o-quick__label { color: var(--c-red); }
.o-quick__img--empty { display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 34px; color: var(--c-grey-300); background: var(--c-beige-50); }
.o-quick--shop .o-quick { justify-content: flex-start; }
@media (min-width: 992px) { .o-quick--shop .o-quick__img { width: 96px; height: 96px; } .o-quick--shop .o-quick__card { width: 116px; font-size: 13px; } .o-quick--shop .o-quick { gap: 14px; } }
.o-shop__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 14px; }
.o-shop__bar .o-shop__filterbtn { flex: 0 0 auto; }
.o-sizechips { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
.o-sizechips__label { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--c-grey-500); flex: 0 0 auto; }
.o-sizechips__scroll { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding: 4px 2px; }
.o-sizechips__scroll::-webkit-scrollbar { display: none; }
.o-sizechip { flex: 0 0 auto; min-height: 32px; padding: 0 12px; border-radius: var(--r-full); border: 1.5px solid var(--c-grey-200); background: #fff; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; white-space: nowrap; transition: border-color .15s, background .15s, color .15s; }
.o-sizechip:hover { border-color: var(--c-ink); }
.o-sizechip.is-on { background: var(--c-ink-2); border-color: var(--c-ink-2); color: #fff; }
@media (max-width: 767px) { .o-shop__bar { flex-direction: column; align-items: stretch; } .o-shop__filterbtn { align-self: flex-start; } }
/* Carousel with small edge arrows (category circles) */
.o-car--edge .o-car__nav { display: none; }
@media (min-width: 992px) {
	.o-car--edge { position: relative; }
	.o-car--edge .o-car__nav { display: contents; }
	.o-car--edge .o-car__btn { position: absolute; top: 44px; z-index: 2; width: 32px; height: 32px; box-shadow: 0 2px 8px rgba(0,0,0,.12); background: #fff; }
	.o-car--edge .o-car__btn[data-dir="-1"] { left: -12px; } .o-car--edge .o-car__btn[data-dir="1"] { right: -12px; }
	.o-car--edge .o-car__btn[disabled] { opacity: 0; }
	.o-quick--shop + .o-car__nav .o-car__btn { top: 32px; }
}

.o-shop__kicker { display: flex; width: max-content; align-items: center; gap: 4px; margin-bottom: 6px; }
a.o-shop__kicker:hover { color: var(--c-red); }
.o-quick__card--all .o-quick__img { box-shadow: 0 0 0 1px var(--c-grey-200); filter: saturate(.85); }
.o-quick__card--all .o-quick__label { line-height: 1.15; }
.o-quick__card--all .o-quick__label small { display: block; font-weight: 400; color: var(--c-grey-500); font-size: 11px; }

/* Club card meta */
.o-clubcard__meta { display: grid; grid-template-columns: 1fr; gap: 10px 20px; margin: 12px 0 14px; padding: 12px 0; border-top: 1px solid var(--c-beige-200); border-bottom: 1px solid var(--c-beige-200); }
.o-clubcard__meta div { display: flex; flex-direction: column; gap: 2px; }
.o-clubcard__meta dt { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-grey-500); }
.o-clubcard__meta dd { margin: 0; font-size: 16px; font-weight: 700; }
.o-clubcard__meta dd small { font-weight: 400; color: var(--c-grey-500); font-size: 12px; }
.o-clubcard__state.is-off { color: var(--c-red); }
.o-clubcard__warn { color: var(--c-red-600); font-weight: 700; }

@media (min-width: 600px) { .o-clubcard__meta { grid-template-columns: repeat(3, 1fr); } .o-clubcard__meta div + div { border-left: 1px solid var(--c-beige-200); padding-left: 20px; } }
.woocommerce-account .o-clubcard { max-width: none; }
.o-clubcard__meta { width: 100%; }

.o-join--member { background: var(--c-green-bg); color: var(--c-ink); }
.o-join--member b { color: var(--c-green); }
.o-join__badge { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: var(--r-full); background: var(--c-green); color: #fff; flex: 0 0 auto; margin-top: 2px; }

.o-quick__card--all.is-active .o-quick__img { box-shadow: 0 0 0 2.5px var(--c-red); filter: none; }
.o-quick__card--all.is-active .o-quick__label { color: var(--c-red); }
.o-quick__img--empty svg { color: var(--c-grey-300); }

.o-quick__card--all.o-quick__card--shop .o-quick__img { object-fit: contain; background: #e32638; padding: 0; }

/* Shipping cards on phones: 2×2, compact */
@media (max-width: 479px) {
	.o-shipgrid { gap: 6px; }
	.o-shipcard { position: relative; display: grid; grid-template-columns: 26px 1fr; grid-template-areas: "ico name" "ico time"; column-gap: 8px; row-gap: 1px; align-items: start; padding: 8px 9px; border-radius: 10px; }
	.o-shipcard__ico { grid-area: ico; width: 26px; height: 26px; margin-top: 1px; }
	.o-shipcard__ico svg { width: 13px; height: 13px; }
	.o-shipcard__body { display: contents; }
	.o-shipcard__body b { grid-area: name; white-space: normal; font-size: 12px; line-height: 1.2; }
	.o-shipcard__body small { grid-area: time; font-size: 10.5px; line-height: 1.2; }
	.o-shipcard__price { position: absolute; top: 6px; right: 6px; font-size: 10.5px; padding: 2px 6px; }
	.o-shipcard__body b { padding-right: 46px; }
}
