/* ============================================================
   oloi theme — translated faithfully from the React prototype
   ============================================================ */

@font-face {
	font-family: "Duality";
	src: url("../fonts/duality.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg:       oklch(95% 0.022 78);
	--bg2:      oklch(91% 0.028 74);
	--bg3:      oklch(87% 0.035 68);
	--text:     oklch(18% 0.040 55);
	--dim:      oklch(48% 0.038 60);
	--amber:    oklch(60% 0.160 72);
	--amber-l:  oklch(76% 0.110 76);
	--terra:    oklch(50% 0.150 38);
	--border:   oklch(80% 0.038 74);
	--border-l: oklch(88% 0.024 76);
	--pattern:  url("../img/pattern.jpg");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
	background: linear-gradient(oklch(95% 0.022 78 / 0.68), oklch(95% 0.022 78 / 0.68)), var(--pattern);
	background-repeat: repeat;
	background-size: 460px;
	background-attachment: fixed;
	color: var(--text);
	font-family: 'DM Sans', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
}

img { max-width: 100%; }
a { color: inherit; }

::selection { background: var(--amber-l); color: var(--text); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
input, textarea, select { font-family: 'DM Sans', sans-serif; }

@keyframes oloi-fadein { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes oloi-scrollhint { 0%,100%{opacity:.4;transform:translateX(-50%) translateY(0)} 50%{opacity:.9;transform:translateX(-50%) translateY(7px)} }
@keyframes oloi-spin { to { transform: rotate(360deg); } }

.oloi-container { max-width: 1200px; margin: 0 auto; }

/* Padded wrapper for regular pages + WooCommerce pages (clears the fixed nav) */
.oloi-wc { padding: 120px 24px 80px; }
.oloi-wc__inner { max-width: 1080px; margin: 0 auto; }
.oloi-page-title { font-family: "Cormorant Garamond", serif; font-weight: 400; font-size: clamp(30px, 4vw, 46px); margin-bottom: 24px; }
@media (max-width: 767px) { .oloi-wc { padding: 96px 16px 64px; } }

/* Section backgrounds (pattern tinted differently per section) */
.oloi-sec {
	background: linear-gradient(oklch(95% 0.022 78 / 0.68), oklch(95% 0.022 78 / 0.68)), var(--pattern);
	background-size: 460px;
	background-attachment: fixed;
}
.oloi-sec--bg3 {
	background: linear-gradient(oklch(87% 0.035 68 / 0.62), oklch(87% 0.035 68 / 0.62)), var(--pattern);
	background-size: 460px;
	background-attachment: fixed;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.oloi-nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	height: 68px; padding: 0 40px;
	display: flex; align-items: center; justify-content: space-between;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background 0.4s ease, border 0.4s ease, backdrop-filter 0.4s ease;
}
.oloi-nav.is-scrolled, .oloi-nav.is-menu-open {
	background: oklch(95% 0.022 78 / 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-l);
}
.oloi-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.oloi-nav__logo img { height: 76.5px; width: auto; display: block; }
.oloi-nav__right { display: flex; gap: 36px; align-items: center; }
.oloi-nav__links { display: flex; gap: 36px; align-items: center; }
.oloi-nav__link {
	color: var(--amber); text-decoration: none; font-size: 12px;
	letter-spacing: 0.14em; text-transform: uppercase;
	transition: color 0.2s; font-weight: 400;
}
.oloi-nav__link:hover { color: #fff; }

.oloi-iconbtn {
	border: 1px solid var(--amber); cursor: pointer;
	border-radius: 50%; width: 38px; height: 38px; padding: 0;
	display: flex; align-items: center; justify-content: center;
	transition: all 0.2s; background: transparent; color: var(--amber); flex-shrink: 0;
}
.oloi-iconbtn:hover { border-color: #fff; color: #fff; }
.oloi-iconbtn svg { width: 13px; height: 13px; }
.oloi-iconbtn--menu { display: none; }
.oloi-iconbtn--menu svg { width: 16px; height: 16px; }

.oloi-cartbtn {
	border: 1px solid var(--amber); cursor: pointer;
	border-radius: 40px; padding: 8px 20px;
	font-size: 12px; letter-spacing: 0.12em;
	display: flex; align-items: center; gap: 8px;
	transition: all 0.2s; background: transparent; color: var(--amber); position: relative;
}
.oloi-cartbtn:hover { border-color: #fff; color: #fff; }
.oloi-cartbtn svg { width: 13px; height: 13px; }
.oloi-cartbtn__count {
	background: var(--amber); color: #fff; border-radius: 50%;
	width: 18px; height: 18px; display: none;
	align-items: center; justify-content: center; font-size: 10px; font-weight: 500;
}
.oloi-cartbtn__count.is-visible { display: flex; }

.oloi-mobile-menu {
	position: absolute; top: 100%; left: 0; right: 0;
	background: oklch(95% 0.022 78 / 0.97); backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-l);
	display: none; flex-direction: column; padding: 8px 18px 16px;
	animation: oloi-fadein 0.25s ease;
}
.oloi-mobile-menu.is-open { display: flex; }
.oloi-mobile-menu a {
	color: var(--amber); text-decoration: none; font-size: 14px; padding: 14px 0;
	letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
	border-bottom: 1px solid var(--border-l);
}

/* ─── HERO ────────────────────────────────────────────────── */
.oloi-hero { height: 100vh; position: relative; }
.oloi-hero__inner { position: relative; height: 100vh; overflow: hidden; }
.oloi-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.oloi-hero__vignette {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, oklch(10% 0.04 55 / 0.35) 0%, oklch(10% 0.04 55 / 0.5) 50%, oklch(95% 0.022 78 / 0.0) 80%, oklch(95% 0.022 78 / 1) 100%);
}
.oloi-hero__topfade {
	position: absolute; top: 0; left: 0; right: 0; height: 80px;
	background: linear-gradient(to bottom, oklch(10% 0.04 55 / 0.5), transparent);
}
.oloi-hero__content {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; padding: 0 24px;
	opacity: 0; transition: opacity 1.2s 0.3s;
}
.oloi-hero.is-ready .oloi-hero__content { opacity: 1; }
.oloi-hero__eyebrow {
	color: var(--amber-l); font-size: 11px; letter-spacing: 0.35em;
	text-transform: uppercase; margin-bottom: 20px; font-weight: 400;
}
.oloi-hero__title {
	font-family: "Cormorant Garamond"; font-weight: 300;
	font-size: clamp(56px, 9vw, 108px); line-height: 1.04;
	color: oklch(96% 0.022 78); letter-spacing: -0.01em; margin-bottom: 24px;
	text-shadow: 0 2px 24px oklch(0% 0 0 / 0.3);
}
.oloi-hero__title em { font-style: italic; }
.oloi-hero__sub {
	color: oklch(90% 0.02 78 / 0.85); font-size: 16px; line-height: 1.75;
	letter-spacing: 0.04em; max-width: 90vw; margin: 0 auto 40px; white-space: nowrap;
}
.oloi-btn-amber {
	display: inline-block; padding: 13px 36px; background: var(--amber); color: #fff;
	text-decoration: none; font-size: 12px; letter-spacing: 0.18em;
	text-transform: uppercase; font-weight: 400; transition: opacity 0.2s; border: none; cursor: pointer;
}
.oloi-btn-amber:hover { opacity: 0.85; }
.oloi-hero__scroll {
	position: absolute; bottom: 32px; left: 50%;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	color: oklch(90% 0.02 78 / 0.6);
	font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
	animation: oloi-scrollhint 2.2s ease-in-out infinite;
}

/* ─── DECORATIONS ─────────────────────────────────────────── */
.oloi-divider {
	display: flex; align-items: center; gap: 20px; padding: 0 40px;
	max-width: 1200px; margin: 0 auto;
}
.oloi-divider__line { flex: 1; height: 1px; background: var(--border); }
.oloi-divider img { height: 56px; opacity: 0.25; }
.oloi-meander { height: 12px; background-repeat: repeat-x; }

/* ─── ABOUT ───────────────────────────────────────────────── */
.oloi-about { padding: 100px 40px 80px; }
.oloi-about__grid {
	max-width: 1100px; margin: 72px auto 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.oloi-about__photo { position: relative; }
.oloi-about__photo > img { width: 100%; height: 480px; object-fit: contain; display: block; }
.oloi-about__accent {
	position: absolute; bottom: -28px; right: -28px; height: 100px; opacity: 0.12;
}
.oloi-about__title {
	font-family: "Duality"; font-weight: 400; font-size: 30px; line-height: 1.15;
	margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.02em;
}
.oloi-about__body p { color: var(--dim); line-height: 1.9; font-size: 15px; margin-bottom: 18px; }
.oloi-about__body p:last-child { margin-bottom: 0; }
.oloi-about__body em { font-style: italic; }

/* ─── PRODUCTS ────────────────────────────────────────────── */
.oloi-products { padding: 90px 40px 100px; }
.oloi-products__head { text-align: center; margin-bottom: 60px; }
.oloi-eyebrow-duality {
	color: var(--amber); font-size: 30px; letter-spacing: 0.1em;
	text-transform: uppercase; font-weight: 400; font-family: "Duality";
}
.oloi-products__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.oloi-products__note { text-align: center; color: var(--dim); font-size: 13px; margin-top: 28px; }

.oloi-card {
	background: var(--bg); border: 1px solid var(--border-l);
	transition: all 0.32s; display: flex; flex-direction: column;
}
.oloi-card:hover { background: var(--bg2); border-color: var(--amber-l); }
.oloi-card__photo { height: 340px; overflow: hidden; position: relative; }
.oloi-card__img {
	width: 100%; height: 100%; object-fit: cover;
	transform: scale(1); transition: transform 0.6s ease; display: block;
}
.oloi-card:hover .oloi-card__img { transform: scale(1.04); }
.oloi-card__sizetag {
	position: absolute; top: 16px; left: 16px;
	background: var(--bg); color: var(--dim);
	font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
	padding: 4px 10px; border: 1px solid var(--border-l);
}
.oloi-card__info { padding: 28px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.oloi-card__eyebrow { color: var(--dim); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.oloi-card__title { font-family: "Cormorant Garamond"; font-size: 30px; font-weight: 400; margin-bottom: 12px; }
.oloi-card__desc { color: var(--dim); font-size: 13px; line-height: 1.75; margin-bottom: 16px; }

.oloi-benefits { margin-bottom: 20px; }
.oloi-benefits__toggle {
	display: flex; align-items: center; gap: 6px;
	background: none; border: none; cursor: pointer; padding: 0;
	color: var(--amber); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
	font-family: 'DM Sans', sans-serif;
}
.oloi-benefits__chev { transition: transform 0.25s; font-size: 14px; }
.oloi-benefits.is-open .oloi-benefits__chev { transform: rotate(180deg); }
.oloi-benefits__list {
	list-style: none; padding: 0; margin-top: 16px;
	display: none; flex-direction: column; gap: 12px;
}
.oloi-benefits.is-open .oloi-benefits__list { display: flex; }
.oloi-benefits__list li { display: flex; gap: 10px; align-items: flex-start; }
.oloi-benefits__list li span.txt { color: var(--dim); line-height: 1.65; font-size: 13px; }

.oloi-card__spacer { flex: 1; }
.oloi-card__sizes { margin-bottom: 22px; }
.oloi-card__sizes-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); margin-bottom: 10px; }
.oloi-card__sizes-row { display: flex; gap: 8px; flex-wrap: wrap; }
.oloi-size {
	flex: 1 1 0; min-width: 64px; padding: 9px 8px; cursor: pointer;
	font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.04em;
	background: transparent; color: var(--dim); border: 1px solid var(--border);
	transition: all 0.2s;
}
.oloi-size:hover { border-color: var(--amber); }
.oloi-size.is-active { background: var(--amber); color: #fff; border-color: var(--amber); }
.oloi-size.is-active:hover { border-color: var(--amber); }

.oloi-card__buy { display: flex; align-items: center; justify-content: space-between; }
.oloi-card__price { font-family: "Cormorant Garamond"; font-size: 32px; font-weight: 300; }
.oloi-card__price span { font-size: 16px; color: var(--dim); }
.oloi-add {
	background: transparent; border: 1px solid var(--terra); color: var(--terra);
	padding: 10px 22px; font-size: 11px; letter-spacing: 0.15em;
	text-transform: uppercase; cursor: pointer; transition: all 0.25s;
	font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.oloi-add.is-added { background: var(--amber); border-color: var(--amber); color: #fff; }
.oloi-add:disabled { opacity: 0.55; cursor: default; }

/* Bullets (hand-drawn seeds/blossoms per product) */
.oloi-bullet { position: relative; width: 22px; height: 21px; flex-shrink: 0; margin-top: 2px; display: inline-block; }
/* Walnut */
.oloi-bullet--nuca .b-shell {
	position: absolute; inset: 0;
	border-radius: 48% 48% 50% 50% / 42% 42% 58% 58%;
	background: radial-gradient(circle at 36% 28%, oklch(85% 0.085 74), oklch(66% 0.10 62) 60%, oklch(45% 0.075 52));
	box-shadow: inset -2px -3px 5px oklch(38% 0.06 48 / 0.55), inset 1px 1px 2px oklch(93% 0.05 84 / 0.5);
}
.oloi-bullet--nuca .b-seam { position: absolute; left: 50%; top: 10%; bottom: 12%; width: 1.4px; transform: translateX(-50%); background: oklch(38% 0.07 48 / 0.7); border-radius: 2px; }
.oloi-bullet--nuca .b-l1 { position: absolute; left: 18%; top: 24%; width: 5.5px; height: 11px; border-radius: 50%; border-left: 1.2px solid oklch(42% 0.06 48 / 0.55); }
.oloi-bullet--nuca .b-l2 { position: absolute; left: 30%; top: 30%; width: 3px; height: 7px; border-radius: 50%; border-left: 1px solid oklch(42% 0.06 48 / 0.4); }
.oloi-bullet--nuca .b-r1 { position: absolute; right: 18%; top: 24%; width: 5.5px; height: 11px; border-radius: 50%; border-right: 1.2px solid oklch(42% 0.06 48 / 0.55); }
.oloi-bullet--nuca .b-r2 { position: absolute; right: 30%; top: 30%; width: 3px; height: 7px; border-radius: 50%; border-right: 1px solid oklch(42% 0.06 48 / 0.4); }
.oloi-bullet--nuca .b-top { position: absolute; left: 50%; top: 6%; width: 4px; height: 3px; transform: translateX(-50%); border-radius: 50% 50% 0 0; background: oklch(50% 0.07 52); }
/* Sunflower */
.oloi-bullet--floare .b-petal {
	position: absolute; left: 50%; top: 50%; width: 8px; height: 4.5px; border-radius: 50%;
	background: linear-gradient(90deg, oklch(80% 0.14 88), oklch(70% 0.16 70));
	transform-origin: center;
}
.oloi-bullet--floare .b-core {
	position: absolute; left: 50%; top: 50%; width: 9px; height: 9px;
	transform: translate(-50%, -50%); border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, oklch(55% 0.09 55), oklch(38% 0.06 45));
	box-shadow: inset -1px -1px 2px oklch(20% 0.03 40 / 0.6);
}
/* Rapeseed blossom */
.oloi-bullet--rapita .b-petal {
	position: absolute; left: 50%; top: 50%; width: 9px; height: 8px;
	border-radius: 60% 60% 60% 60% / 70% 70% 40% 40%;
	background: radial-gradient(circle at 40% 30%, oklch(87% 0.16 96), oklch(74% 0.17 88));
	transform-origin: center;
}
.oloi-bullet--rapita .b-core {
	position: absolute; left: 50%; top: 50%; width: 5px; height: 5px;
	transform: translate(-50%, -50%); border-radius: 50%; background: oklch(55% 0.10 65);
}

/* ─── PODCAST / DESPRE ────────────────────────────────────── */
.oloi-podcast { padding: 100px 40px 40px; }
.oloi-podcast__inner { max-width: 1480px; margin: 0 auto; }
.oloi-podcast__head { text-align: center; margin-bottom: 56px; }
.oloi-podcast__head h2 {
	font-family: "Cormorant Garamond"; font-weight: 700;
	font-size: clamp(25.5px, 3vw, 37.5px); line-height: 1.15;
}
.oloi-podcast__head em { font-style: italic; }
.oloi-podcast__box { max-width: 900px; margin: 0 auto; }
.oloi-podcast__embed {
	position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000;
	border: 1px solid var(--border-l);
}
.oloi-podcast__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.oloi-podcast__src { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border-l); text-align: center; }
.oloi-podcast__src .lbl { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.oloi-podcast__src p { font-size: 13px; color: var(--dim); line-height: 1.7; }
.oloi-podcast__src a { color: var(--amber); text-decoration: none; font-size: 12px; word-break: break-all; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.oloi-contact { padding: 40px 40px 100px; }
.oloi-contact__grid {
	max-width: 1100px; margin: 40px auto 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.oloi-contact__eyebrow {
	color: var(--amber); font-size: 22px; letter-spacing: 0.32em; text-transform: uppercase;
	margin-bottom: 20px; font-weight: 400; font-family: "Duality";
}
.oloi-contact__title {
	font-family: "Cormorant Garamond"; font-weight: 300;
	font-size: clamp(30px, 3.5vw, 44px); line-height: 1.2; margin-bottom: 36px;
}
.oloi-contact__title em { font-style: italic; }
.oloi-contact__item { margin-bottom: 24px; }
.oloi-contact__item .lbl { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.oloi-contact__item .val { font-size: 15px; color: var(--dim); }
.oloi-contact__map { height: 360px; overflow: hidden; border: 1px solid var(--border-l); }
.oloi-contact__map img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.oloi-footer {
	border-top: 1px solid var(--border-l); padding: 36px 40px;
}
.oloi-footer__inner {
	max-width: 1200px; margin: 0 auto;
	display: flex; flex-direction: row; align-items: center; justify-content: space-between;
}
.oloi-footer__logo { opacity: 0.5; height: 96px; width: auto; }
.oloi-footer__slogan {
	font-family: "Cormorant Garamond"; font-style: italic; color: var(--amber);
	letter-spacing: 0.05em; font-size: 40px;
}
.oloi-footer__copy { color: var(--dim); font-size: 11px; letter-spacing: 0.08em; }

/* ─── CART DRAWER ─────────────────────────────────────────── */
.oloi-cart-overlay {
	position: fixed; inset: 0; z-index: 200;
	background: oklch(10% 0.04 55 / 0.45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
	opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.oloi-cart-overlay.is-open { opacity: 1; pointer-events: all; }
.oloi-drawer {
	position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 100vw); max-width: 100vw;
	background: var(--bg); border-left: 1px solid var(--border-l);
	z-index: 201; display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
}
.oloi-drawer.is-open { transform: translateX(0); }
.oloi-drawer__head {
	padding: 24px 28px; border-bottom: 1px solid var(--border-l);
	display: flex; align-items: center; justify-content: space-between;
}
.oloi-drawer__inner { display: contents; }
.oloi-drawer__head h2 { font-family: "Cormorant Garamond"; font-size: 26px; font-weight: 400; }
.oloi-drawer__close { background: none; border: none; cursor: pointer; color: var(--dim); font-size: 22px; line-height: 1; }
.oloi-drawer__body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.oloi-drawer__empty { text-align: center; color: var(--dim); padding-top: 60px; }
.oloi-drawer__empty svg { margin: 0 auto 16px; display: block; }
.oloi-drawer__empty h3 { font-family: "Cormorant Garamond"; font-size: 22px; margin-bottom: 8px; font-weight: 400; }
.oloi-drawer__empty p { font-size: 13px; }

.oloi-line { display: flex; gap: 14px; align-items: center; border-bottom: 1px solid var(--border-l); padding-bottom: 18px; margin-bottom: 18px; }
.oloi-line img { width: 60px; height: 60px; object-fit: cover; flex-shrink: 0; }
.oloi-line__mid { flex: 1; }
.oloi-line__name { font-size: 14px; margin-bottom: 2px; }
.oloi-line__size { font-size: 11px; color: var(--dim); }
.oloi-line__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.oloi-line__total { font-family: "Cormorant Garamond"; font-size: 20px; }
.oloi-stepper { display: flex; align-items: center; border: 1px solid var(--border-l); }
.oloi-stepper button { background: none; border: none; cursor: pointer; color: var(--text); width: 28px; height: 28px; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.oloi-stepper span { width: 28px; text-align: center; font-size: 13px; }

.oloi-drawer__foot { padding: 20px 28px; border-top: 1px solid var(--border-l); }
.oloi-drawer__row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
.oloi-drawer__row .lbl { color: var(--dim); }
.oloi-drawer__ship-note { font-size: 11px; color: var(--terra); margin-bottom: 8px; text-align: center; }
.oloi-drawer__hr { height: 1px; background: var(--border-l); margin: 12px 0; }
.oloi-drawer__total { display: flex; justify-content: space-between; margin-bottom: 20px; }
.oloi-drawer__total .lbl { font-size: 14px; letter-spacing: 0.08em; }
.oloi-drawer__total .amt { font-family: "Cormorant Garamond"; font-size: 26px; }
.oloi-drawer__checkout {
	width: 100%; padding: 15px; background: var(--amber); color: #fff; border: none; cursor: pointer;
	font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400;
	font-family: 'DM Sans', sans-serif; transition: opacity 0.2s; text-align: center; text-decoration: none; display: block;
}
.oloi-drawer__checkout:hover { opacity: 0.85; }

.oloi-drawer.is-loading .oloi-drawer__body { opacity: 0.5; pointer-events: none; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1023px) {
	.oloi-products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
	.oloi-nav { height: 60px; padding: 0 18px; }
	.oloi-nav__logo img { height: 43.5px; }
	.oloi-nav__right { gap: 12px; }
	.oloi-nav__links { display: none; }
	.oloi-cartbtn { padding: 8px 14px; }
	.oloi-cartbtn__label { display: none; }
	.oloi-iconbtn--menu { display: flex; }

	.oloi-hero__sub { white-space: normal; }

	.oloi-about { padding: 72px 20px 56px; }
	.oloi-about__grid { grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
	.oloi-about__photo > img { height: 320px; }

	.oloi-products { padding: 64px 20px 72px; }
	.oloi-products__head { margin-bottom: 40px; }
	.oloi-products__grid { grid-template-columns: 1fr; }

	.oloi-podcast { padding: 64px 20px; }
	.oloi-podcast__head { margin-bottom: 40px; }

	.oloi-contact { padding: 56px 20px 72px; }
	.oloi-contact__grid { grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }

	.oloi-footer { padding: 32px 20px; }
	.oloi-footer__inner { flex-direction: column; gap: 20px; text-align: center; }
	.oloi-footer__logo { height: 72px; }
	.oloi-footer__slogan { font-size: 32px; }
}
