/* ============================================================
   GolfOS — Frontend design system
   Display: Bricolage Grotesque · Body: Manrope
   ============================================================ */
/* Palette fallbacks live on :root; the plugin re-emits these scoped to
   .golfos in wp_head (see css_variables()), so dashboard colour changes win. */
:root{
	--golf-fairway:#14432A; --golf-green:#1E5E3A; --golf-lime:#86C232;
	--golf-sand:#F6F4EC; --golf-ink:#10120F;
}
.golfos{
	--golf-line:#E4E0D4; --golf-muted:#6B7169; --golf-white:#fff;
	--golf-font-display:"Oswald","Arial Narrow",sans-serif;
	--golf-font-body:"Barlow",system-ui,-apple-system,sans-serif;
	--radius:0; --radius-sm:0;
	--shadow:0 20px 50px -24px rgba(16,18,15,.35);
	--shadow-sm:0 8px 24px -14px rgba(16,18,15,.4);
	--maxw:1200px;
	font-family:var(--golf-font-body);
	color:var(--golf-ink); line-height:1.55; -webkit-font-smoothing:antialiased;
}
.golfos *,.golfos *::before,.golfos *::after{box-sizing:border-box}
.golfos img{max-width:100%;height:auto;display:block}
.golfos h1,.golfos h2,.golfos h3{font-family:var(--golf-font-display);font-weight:800;line-height:1.04;letter-spacing:-.02em;margin:0}
.golfos a{color:inherit;text-decoration:none}
.golfos-ico{width:1.15em;height:1.15em;flex:none}

/* ---------- Buttons ---------- */
.golfos-btn{
	display:inline-flex;align-items:center;gap:.5em;justify-content:center;
	padding:.85rem 1.5rem;border-radius:0;font-weight:700;font-size:.98rem;
	cursor:pointer;border:1.5px solid transparent;transition:transform .15s ease,background .2s ease,box-shadow .2s ease;line-height:1;
}
.golfos-btn:hover{transform:translateY(-2px)}
/* Solid green buttons: white text + icons, with contrast-safe fills.
   The lime button uses a deeper leaf-green so white stays readable, while the
   pure --golf-lime is kept for accents (ticks, hover edges, kickers). */
.golfos-btn--lime{background:var(--golf-btn-green,#3f8a26);color:#fff !important;box-shadow:0 10px 24px -12px rgba(20,67,42,.5)}
.golfos-btn--primary{background:var(--golf-fairway);color:#fff !important}
.golfos-btn--lime .golfos-ico,.golfos-btn--primary .golfos-ico{color:#fff !important}
.golfos-btn--ghost{background:transparent;border-color:currentColor;color:inherit}
.golfos-btn--sm{padding:.6rem 1rem;font-size:.85rem}
.golfos-btn--lime:hover{background:var(--golf-btn-green-h,#47962b)}
.golfos-btn--primary:hover{background:#1c5a38}

/* ---------- Shared section furniture ---------- */
.golfos-section{max-width:var(--maxw);margin:0 auto;padding:clamp(3rem,6vw,5.5rem) 1.25rem}
.golfos-section__head{max-width:640px;margin-bottom:2.5rem}
.golfos-section__head--row{display:flex;justify-content:space-between;align-items:flex-end;max-width:var(--maxw);gap:1.5rem;flex-wrap:wrap}
.golfos-section__title{font-size:clamp(1.7rem,3.4vw,2.7rem)}
.golfos-kicker{display:inline-block;font-size:.78rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--golf-green);margin-bottom:.7rem}
.golfos-kicker--light{color:var(--golf-lime)}
.golfos-link{font-weight:700;color:var(--golf-green);white-space:nowrap}
.golfos-eyebrow{display:inline-flex;align-items:center;gap:.5rem;font-size:.8rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:#dfe7dc}
.golfos-dot{width:8px;height:8px;border-radius:0;background:var(--golf-lime);box-shadow:0 0 0 4px rgba(134,194,50,.25)}
.golfos-empty{color:var(--golf-muted);padding:2rem;text-align:center;grid-column:1/-1}

/* ---------- Hero ---------- */
.golfos-store{background:var(--golf-sand)}
.golfos-hero{
	position:relative;width:100%;max-width:none;margin:0;border-radius:0;overflow:hidden;
	min-height:min(78vh,660px);display:flex;align-items:flex-end;
	padding-top:clamp(1.5rem,4vw,3rem);padding-bottom:clamp(1.5rem,4vw,3rem);
	padding-left:max(1.25rem,calc((100% - var(--maxw,1200px)) / 2));
	padding-right:max(1.25rem,calc((100% - var(--maxw,1200px)) / 2));
	color:#fff;isolation:isolate;
	background:
		linear-gradient(120deg,rgba(10,32,20,.86) 0%,rgba(10,32,20,.35) 55%,rgba(10,32,20,.15) 100%),
		var(--hero-img,linear-gradient(120deg,#1c5c39,#0e3421));
	background-size:cover;background-position:center;
}
.golfos-hero__inner{max-width:640px;z-index:2}
.golfos-hero__title{font-size:clamp(2.4rem,6vw,4.6rem);margin:1rem 0;text-wrap:balance}
.golfos-hero__sub{font-size:1.08rem;color:#e7ece5;max-width:48ch;margin-bottom:1.8rem}
.golfos-hero__cta{display:flex;gap:.8rem;flex-wrap:wrap}
.golfos-hero__card{
	position:absolute;right:max(1.25rem,calc((100% - var(--maxw,1200px)) / 2));top:clamp(1rem,4vw,2rem);z-index:2;
	display:flex;align-items:center;gap:.8rem;background:rgba(255,255,255,.12);
	backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.2);padding:.85rem 1.1rem;border-radius:0;
}
.golfos-hero__card .golfos-ico{width:26px;height:26px;color:var(--golf-lime)}
.golfos-hero__card strong{display:block;font-size:.95rem}
.golfos-hero__card span{display:block;font-size:.78rem;color:#dfe6dc;max-width:22ch}

/* ---------- Promises strip ---------- */
.golfos-promises{
	max-width:var(--maxw);margin:0 auto;padding:1.4rem 1.25rem;display:flex;flex-wrap:wrap;gap:1.5rem;
	justify-content:space-between;border-bottom:1px solid var(--golf-line);
}
.golfos-promise{display:flex;align-items:center;gap:.6rem;font-weight:600;font-size:.92rem;color:var(--golf-fairway)}
.golfos-promise .golfos-ico{width:22px;height:22px;color:var(--golf-green)}

/* ---------- Offers ---------- */
.golfos-offers__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.golfos-offer{
	background:#fff;border:1px solid var(--golf-line);border-radius:0;padding:1.6rem 1.4rem;
	display:flex;flex-direction:column;gap:.7rem;min-height:210px;transition:transform .2s ease,box-shadow .2s ease;
}
.golfos-offer:hover{transform:translateY(-4px);box-shadow:var(--shadow-sm)}
.golfos-offer.is-active{background:var(--golf-fairway);color:#fff;border-color:var(--golf-fairway)}
.golfos-offer.is-active .golfos-offer__ico{background:rgba(255,255,255,.14);color:var(--golf-lime)}
.golfos-offer__ico{width:52px;height:52px;border-radius:0;background:#eef4ea;color:var(--golf-green);display:grid;place-items:center}
.golfos-offer__ico .golfos-ico{width:26px;height:26px}
.golfos-offer h3{font-size:1.12rem}
.golfos-offer p{font-size:.9rem;color:var(--golf-muted);margin:0}
.golfos-offer.is-active p{color:#cfe0cf}
.golfos-offer__arrow{margin-top:auto;font-size:1.2rem;font-weight:700;color:var(--golf-green)}
.golfos-offer.is-active .golfos-offer__arrow{color:var(--golf-lime)}

/* ---------- Tabs ---------- */
.golfos-tabs{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1.8rem}
.golfos-tab{
	padding:.55rem 1.15rem;border-radius:0;border:1.5px solid var(--golf-line);background:#fff;
	font-weight:600;font-size:.9rem;color:var(--golf-ink);cursor:pointer;transition:all .15s ease;
}
.golfos-tab:hover{border-color:var(--golf-green)}
.golfos-tab.is-active{background:var(--golf-fairway);border-color:var(--golf-fairway);color:#fff}

/* ---------- Product grid & cards ---------- */
.golfos-grid{display:grid;gap:1.1rem}
.golfos-grid--2{grid-template-columns:repeat(2,1fr)}
.golfos-grid--3{grid-template-columns:repeat(3,1fr)}
.golfos-grid--4{grid-template-columns:repeat(4,1fr)}
.golfos-grid__item.is-hidden{display:none}
.golfos-card{
	background:#fff;border:1px solid var(--golf-line);border-radius:0;overflow:hidden;
	display:flex;flex-direction:column;transition:transform .2s ease,box-shadow .2s ease;height:100%;
}
.golfos-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-sm)}
.golfos-card__media{position:relative;aspect-ratio:4/3;background:#f1efe6;display:grid;place-items:center;overflow:hidden}
.golfos-card__media img{width:100%;height:100%;object-fit:cover}
.golfos-card__placeholder .golfos-ico{width:56px;height:56px;color:#c9d3c2}
.golfos-badge{position:absolute;top:.7rem;left:.7rem;background:var(--golf-lime);color:var(--golf-fairway);font-weight:700;font-size:.72rem;padding:.3rem .6rem;border-radius:0;z-index:2}
.golfos-card__body{padding:1rem 1.05rem 1.15rem;display:flex;flex-direction:column;gap:.35rem;flex:1}
.golfos-card__cat{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--golf-muted)}
.golfos-card__title{font-family:var(--golf-font-body);font-weight:700;font-size:1rem;line-height:1.3;letter-spacing:0}
.golfos-card__price{margin:.2rem 0 .6rem}
.golfos-price ins{text-decoration:none;font-weight:800;color:var(--golf-fairway)}
.golfos-price del{color:var(--golf-muted);font-size:.85em;margin-left:.4rem}
.golfos-price{font-weight:800;color:var(--golf-fairway)}
.golfos-card__action{margin-top:auto}
.golfos-card__action .golfos-btn{width:100%}

/* ---------- Bookings CTA ---------- */
.golfos-bookcta{display:grid;grid-template-columns:1.4fr 1fr;gap:1.5rem;align-items:stretch}
.golfos-bookcta__panel{background:var(--golf-fairway);color:#fff;border-radius:0;padding:clamp(1.8rem,4vw,3rem)}
.golfos-bookcta__panel h2{font-size:clamp(1.5rem,3vw,2.3rem);margin:.4rem 0 1rem}
.golfos-bookcta__panel p{color:#d5e3d3;max-width:46ch;margin-bottom:1.6rem}
.golfos-bookcta__stats{display:grid;grid-template-rows:repeat(3,1fr);gap:1rem}
.golfos-bookcta__stats>div{background:#fff;border:1px solid var(--golf-line);border-radius:0;padding:1.2rem 1.4rem;display:flex;flex-direction:column;justify-content:center}
.golfos-bookcta__stats strong{font-family:var(--golf-font-display);font-size:1.7rem;color:var(--golf-fairway)}
.golfos-bookcta__stats span{color:var(--golf-muted);font-size:.85rem}

/* ---------- Reviews ---------- */
.golfos-review{background:#fff;border:1px solid var(--golf-line);border-radius:0;padding:1.5rem;margin:0;display:flex;flex-direction:column;gap:1rem}
.golfos-stars{display:flex;gap:2px;color:var(--golf-lime)}
.golfos-stars .golfos-ico{width:18px;height:18px}
.golfos-review blockquote{margin:0;font-size:1rem;color:#2a2f28}
.golfos-review figcaption{display:flex;align-items:center;gap:.7rem;margin-top:auto}
.golfos-review figcaption img{width:42px;height:42px;border-radius:0;object-fit:cover}
.golfos-review figcaption strong{display:block;font-size:.92rem}
.golfos-review figcaption em{font-style:normal;color:var(--golf-muted);font-size:.82rem}

/* ---------- Newsletter ---------- */
.golfos-newsletter{background:var(--golf-fairway);color:#fff}
.golfos-newsletter__inner{max-width:var(--maxw);margin:0 auto;padding:clamp(2.5rem,5vw,4rem) 1.25rem;display:flex;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap}
.golfos-newsletter h2{font-size:clamp(1.6rem,3vw,2.4rem)}
.golfos-newsletter p{color:#cfe0cf;margin:.5rem 0 0}
.golfos-subscribe{display:flex;gap:.5rem;background:rgba(255,255,255,.1);padding:.4rem;border-radius:0;border:1px solid rgba(255,255,255,.2)}
.golfos-subscribe input{border:0;background:transparent;color:#fff;padding:.7rem 1.1rem;min-width:230px;outline:none;font-size:.95rem}
.golfos-subscribe input::placeholder{color:#bcd0bc}

/* ---------- Footer ---------- */
.golfos-footer{background:var(--golf-ink);color:#c7ccc3}
.golfos-footer__grid{max-width:var(--maxw);margin:0 auto;padding:3rem 1.25rem 1.5rem;display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:2rem}
.golfos-footer__brand strong{font-family:var(--golf-font-display);font-size:1.5rem;color:#fff}
.golfos-footer__brand p{margin:.5rem 0 0;max-width:34ch;font-size:.9rem}
.golfos-footer__contact{display:flex;flex-direction:column;gap:.7rem;font-size:.9rem}
.golfos-footer__contact span{display:flex;align-items:center;gap:.6rem}
.golfos-footer__contact .golfos-ico{color:var(--golf-lime);width:18px;height:18px}
.golfos-footer__social{display:flex;flex-direction:column;gap:.6rem;font-weight:600}
.golfos-footer__social a:hover{color:var(--golf-lime)}
.golfos-footer__legal{max-width:var(--maxw);margin:0 auto;padding:1.2rem 1.25rem;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;font-size:.8rem;color:#8b9188;flex-wrap:wrap;gap:.5rem}

/* ============================================================
   Booking calendar
   ============================================================ */
.golfos-booking{max-width:960px;margin:2rem auto;padding:0 1.25rem}
.golfos-booking__wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:1.5rem;background:#fff;border:1px solid var(--golf-line);border-radius:0;padding:clamp(1.2rem,3vw,2rem);box-shadow:var(--shadow-sm)}
.golfos-field{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1.2rem}
.golfos-field>span{font-weight:700;font-size:.85rem;color:var(--golf-fairway)}
.golfos-field input[type=date],.golfos-field input[type=number]{padding:.75rem .9rem;border:1.5px solid var(--golf-line);border-radius:0;font:inherit;width:100%}
.golfos-segment{display:flex;flex-direction:column;gap:.5rem}
.golfos-segment__btn{display:flex;justify-content:space-between;align-items:center;padding:.85rem 1rem;border:1.5px solid var(--golf-line);border-radius:0;background:#fff;cursor:pointer;font:inherit;font-weight:600;transition:all .15s}
.golfos-segment__btn em{font-style:normal;color:var(--golf-green);font-weight:700}
.golfos-segment__btn.is-active{border-color:var(--golf-fairway);background:var(--golf-fairway);color:#fff}
.golfos-segment__btn.is-active em{color:var(--golf-lime)}
.golfos-booking__slots-title{font-family:var(--golf-font-body);font-weight:700;font-size:.95rem;margin-bottom:.9rem;color:var(--golf-fairway)}
.golfos-slots{display:grid;grid-template-columns:repeat(auto-fill,minmax(88px,1fr));gap:.5rem}
.golfos-slot{padding:.7rem .3rem;border:1.5px solid var(--golf-line);border-radius:0;background:#fff;cursor:pointer;text-align:center;font-weight:700;font-size:.9rem;transition:all .12s}
.golfos-slot small{display:block;font-weight:500;font-size:.68rem;color:var(--golf-muted);margin-top:2px}
.golfos-slot:hover:not(:disabled){border-color:var(--golf-green);transform:translateY(-2px)}
.golfos-slot.is-selected{background:var(--golf-lime);border-color:var(--golf-lime);color:var(--golf-fairway)}
.golfos-slot:disabled{opacity:.4;cursor:not-allowed;background:#f6f5ef}
.golfos-slots__hint{color:var(--golf-muted);grid-column:1/-1}

.golfos-booking__form{margin-top:1.5rem;background:#fff;border:1px solid var(--golf-line);border-radius:0;padding:clamp(1.2rem,3vw,2rem);box-shadow:var(--shadow-sm)}
.golfos-booking__form h3{font-family:var(--golf-font-display);font-size:1.4rem;margin-bottom:.4rem}
.golfos-book-summary{color:var(--golf-green);font-weight:700;margin-bottom:1.2rem}
.golfos-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:.9rem}
.golfos-form-grid label{display:flex;flex-direction:column;gap:.35rem;font-size:.85rem;font-weight:600;color:var(--golf-fairway)}
.golfos-form-grid__full{grid-column:1/-1}
.golfos-form-grid input,.golfos-form-grid textarea{padding:.7rem .85rem;border:1.5px solid var(--golf-line);border-radius:0;font:inherit}
.golfos-booking__actions{display:flex;gap:.7rem;margin-top:1.3rem}
.golfos-book-result{margin-top:1.2rem;padding:1rem 1.2rem;border-radius:0;font-weight:600}
.golfos-book-result.is-ok{background:#edf7e6;color:#2c5518;border:1px solid #c9e6b4}
.golfos-book-result.is-err{background:#fdecec;color:#8a2020;border:1px solid #f3c4c4}
.golfos-book-result a{color:var(--golf-green);text-decoration:underline;display:inline-block;margin-top:.4rem}

/* ============================================================
   Responsive
   ============================================================ */
@media(max-width:980px){
	.golfos-offers__grid{grid-template-columns:repeat(2,1fr)}
	.golfos-grid--3,.golfos-grid--4{grid-template-columns:repeat(2,1fr)}
	.golfos-bookcta{grid-template-columns:1fr}
	.golfos-bookcta__stats{grid-template-rows:none;grid-template-columns:repeat(3,1fr)}
	.golfos-booking__wrap{grid-template-columns:1fr}
	.golfos-footer__grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
	.golfos-offers__grid,.golfos-grid--2,.golfos-grid--3,.golfos-grid--4{grid-template-columns:1fr}
	.golfos-hero__card{display:none}
	.golfos-hero{min-height:60vh}
	.golfos-form-grid{grid-template-columns:1fr}
	.golfos-bookcta__stats{grid-template-columns:1fr}
	.golfos-footer__grid{grid-template-columns:1fr}
	.golfos-newsletter__inner{flex-direction:column;align-items:flex-start}
	.golfos-subscribe{width:100%}
	.golfos-subscribe input{min-width:0;flex:1}
}

/* ============================================================
   NEW DYNAMIC SECTIONS
   ============================================================ */

/* ---------- Header / nav ---------- */
.golfos-header{position:relative;z-index:40;background:rgba(255,255,255,.85);backdrop-filter:blur(12px);border-bottom:1px solid var(--golf-line)}
.golfos-header.is-sticky{position:sticky;top:0}
.golfos-header__inner{max-width:var(--maxw);margin:0 auto;padding:.85rem 1.25rem;display:flex;align-items:center;gap:1.5rem}
.golfos-brandmark{display:flex;align-items:center;gap:.55rem;font-family:var(--golf-font-display);font-weight:800;font-size:1.35rem;color:var(--golf-fairway)}
.golfos-brandmark img{max-height:40px;width:auto}
.golfos-brandmark .golfos-ico{width:26px;height:26px;color:var(--golf-green)}
.golfos-nav{display:flex;gap:1.6rem;margin-left:1rem;font-weight:600;font-size:.95rem;color:#2a2f28}
.golfos-nav a{position:relative;padding:.2rem 0}
.golfos-nav a::after{content:"";position:absolute;left:0;bottom:-3px;width:0;height:2px;background:var(--golf-lime);transition:width .2s}
.golfos-nav a:hover::after{width:100%}
.golfos-header__actions{margin-left:auto;display:flex;align-items:center;gap:.8rem}
.golfos-navtoggle{display:none;flex-direction:column;gap:4px;background:none;border:0;cursor:pointer;padding:.4rem}
.golfos-navtoggle span{width:22px;height:2px;background:var(--golf-fairway);border-radius:0}

/* ---------- Marquee ticker ---------- */
.golfos-marquee{background:var(--golf-fairway);color:#fff;overflow:hidden;padding:.75rem 0}
.golfos-marquee__track{display:inline-flex;gap:2.5rem;white-space:nowrap;animation:golfos-scroll 32s linear infinite;will-change:transform}
.golfos-marquee__item{display:inline-flex;align-items:center;gap:.55rem;font-weight:600;font-size:.92rem;letter-spacing:.02em}
.golfos-marquee__item .golfos-ico{width:15px;height:15px;color:var(--golf-lime)}
@keyframes golfos-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(prefers-reduced-motion:reduce){.golfos-marquee__track{animation:none}}

/* ---------- Collections mosaic ---------- */
.golfos-section__head--center{margin-left:auto;margin-right:auto;text-align:center}
.golfos-collections__grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:200px;gap:1rem}
.golfos-collection{position:relative;border-radius:0;overflow:hidden;background:linear-gradient(135deg,#1c5c39,#0e3421);background-size:cover;background-position:center;display:flex;align-items:flex-end;padding:1.2rem;color:#fff;isolation:isolate;transition:transform .25s ease,box-shadow .25s ease}
.golfos-collection::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,32,20,.05),rgba(10,32,20,.72));z-index:-1}
.golfos-collection.is-wide{grid-column:span 2;grid-row:span 2}
.golfos-collection:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.golfos-collection__body strong{display:block;font-family:var(--golf-font-display);font-size:1.3rem;line-height:1.1}
.golfos-collection.is-wide .golfos-collection__body strong{font-size:2rem}
.golfos-collection__body em{font-style:normal;font-size:.9rem;color:#e2ecdf}
.golfos-collection__go{position:absolute;top:1rem;right:1.1rem;width:34px;height:34px;border-radius:0;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.25);display:grid;place-items:center;font-weight:700;transition:background .2s}
.golfos-collection:hover .golfos-collection__go{background:var(--golf-lime);color:var(--golf-fairway)}

/* ---------- Feature split ---------- */
.golfos-feature{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
.golfos-feature__media{min-height:420px;border-radius:0;background:linear-gradient(135deg,#eef2ea,#dbe6d6);background-size:cover;background-position:center;display:grid;place-items:center}
.golfos-feature__ph .golfos-ico{width:70px;height:70px;color:#b6c6ad}
.golfos-feature__body .golfos-section__title{font-size:clamp(1.7rem,3vw,2.5rem);margin:.5rem 0 1rem}
.golfos-feature__text{color:var(--golf-muted);font-size:1.05rem;margin-bottom:1.4rem;max-width:52ch}
.golfos-ticklist{list-style:none;padding:0;margin:0 0 1.6rem;display:grid;gap:.65rem}
.golfos-ticklist li{position:relative;padding-left:2rem;font-weight:600;color:var(--golf-fairway)}
.golfos-ticklist li::before{content:"";position:absolute;left:0;top:0;width:22px;height:22px;border-radius:0;background:#eaf5e0}
.golfos-ticklist li::after{content:"✓";position:absolute;left:.45rem;top:.02rem;color:var(--golf-green);font-weight:800;font-size:.82rem}

/* ---------- Spotlight promo ---------- */
.golfos-spotlight{position:relative;border-radius:0;overflow:hidden;isolation:isolate;min-height:340px;display:flex;align-items:center;background:var(--spot-img,linear-gradient(120deg,#14432A,#1E5E3A));background-size:cover;background-position:center;padding:clamp(1.8rem,4vw,3.5rem)}
.golfos-spotlight::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,32,20,.9) 0%,rgba(10,32,20,.55) 55%,rgba(10,32,20,.15) 100%);z-index:-1}
.golfos-spotlight__body{max-width:520px;color:#fff}
.golfos-spotlight__body h2{font-size:clamp(1.8rem,4vw,3rem);margin:.6rem 0 1rem;text-wrap:balance}
.golfos-spotlight__body p{color:#e3ece0;margin-bottom:1.6rem;font-size:1.05rem}

/* ---------- Stats band ---------- */
.golfos-stats{background:var(--golf-sand);border-top:1px solid var(--golf-line);border-bottom:1px solid var(--golf-line)}
.golfos-stats__inner{max-width:var(--maxw);margin:0 auto;padding:2.5rem 1.25rem;display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
.golfos-stat-item strong{display:block;font-family:var(--golf-font-display);font-size:clamp(2rem,4vw,3rem);color:var(--golf-fairway);line-height:1}
.golfos-stat-item span{color:var(--golf-muted);font-size:.9rem;font-weight:600}

/* ---------- Bookings CTA (with image) ---------- */
.golfos-bookcta__side{display:flex;flex-direction:column;gap:1rem}
.golfos-bookcta__img{flex:1;min-height:150px;border-radius:0;background:linear-gradient(135deg,#1c5c39,#0e3421);background-size:cover;background-position:center;display:grid;place-items:center}
.golfos-bookcta__img .golfos-ico{width:48px;height:48px;color:rgba(255,255,255,.4)}

/* ---------- Gallery ---------- */
.golfos-gallery__grid{display:grid;grid-template-columns:repeat(6,1fr);grid-auto-rows:160px;gap:.75rem}
.golfos-gallery__cell{border-radius:0;overflow:hidden;background:#e7ece2;background-size:cover;background-position:center;display:grid;place-items:center;transition:transform .25s ease}
.golfos-gallery__cell:hover{transform:scale(1.02)}
.golfos-gallery__cell.is-empty .golfos-ico{width:34px;height:34px;color:#c4d1bb}
.golfos-gallery__cell:nth-child(1){grid-column:span 2;grid-row:span 2}
.golfos-gallery__cell:nth-child(4){grid-column:span 2}

/* ---------- Brand logos ---------- */
.golfos-brands{background:#fff;border-top:1px solid var(--golf-line)}
.golfos-brands__inner{max-width:var(--maxw);margin:0 auto;padding:2.2rem 1.25rem;display:flex;flex-direction:column;align-items:center;gap:1.2rem}
.golfos-brands__title{font-size:.8rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--golf-muted)}
.golfos-brands__row{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:2.5rem}
.golfos-brands__logo{max-height:34px;width:auto;opacity:.6;filter:grayscale(1);transition:opacity .2s,filter .2s}
.golfos-brands__logo:hover{opacity:1;filter:grayscale(0)}
.golfos-brands__logo--text{font-family:var(--golf-font-display);font-weight:800;font-size:1.3rem;color:var(--golf-muted);opacity:.55;filter:none}
.golfos-brands__logo--text:hover{opacity:1;color:var(--golf-fairway)}

/* ---------- Footer logo ---------- */
.golfos-footer__logo{max-height:46px;width:auto;margin-bottom:.6rem}

/* ---------- Hero stat chip ---------- */
.golfos-hero__stat{position:absolute;left:clamp(1.5rem,4vw,3rem);bottom:clamp(1.5rem,4vw,3rem);z-index:2;display:none}
@media(min-width:1100px){
	.golfos-hero__stat{display:block;text-align:right;right:max(1.25rem,calc((100% - var(--maxw,1200px)) / 2));left:auto;bottom:auto;top:auto;position:absolute;background:rgba(134,194,50,.16);border:1px solid rgba(134,194,50,.4);backdrop-filter:blur(8px);border-radius:0;padding:.8rem 1.1rem;bottom:clamp(1.5rem,4vw,3rem)}
	.golfos-hero__stat strong{display:block;font-family:var(--golf-font-display);font-size:1.6rem;color:#fff;line-height:1}
	.golfos-hero__stat span{color:#e3ece0;font-size:.8rem}
}

/* ---------- New-section responsive ---------- */
@media(max-width:980px){
	.golfos-collections__grid{grid-template-columns:repeat(2,1fr)}
	.golfos-collection.is-wide{grid-column:span 2;grid-row:span 1}
	.golfos-feature{grid-template-columns:1fr}
	.golfos-feature__media{min-height:260px;order:-1}
	.golfos-stats__inner{grid-template-columns:repeat(2,1fr);gap:1.8rem}
	.golfos-gallery__grid{grid-template-columns:repeat(3,1fr)}
	.golfos-navtoggle{display:flex}
}
@media(max-width:640px){
	.golfos-collections__grid{grid-template-columns:1fr;grid-auto-rows:170px}
	.golfos-collection.is-wide{grid-column:span 1}
	.golfos-gallery__grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:130px}
	.golfos-gallery__cell:nth-child(1),.golfos-gallery__cell:nth-child(4){grid-column:span 2;grid-row:span 1}
	.golfos-header__actions .golfos-btn{display:none}
	.golfos-brands__row{gap:1.4rem}
}

/* ============================================================
   SHARP / SPORTS THEME LAYER
   Hard edges, condensed athletic type, jersey-style patterns.
   ============================================================ */

/* ---- Athletic type treatment ---- */
.golfos-section__title,.golfos-hero__title,.golfos-spotlight__body h2,
.golfos-bookcta__panel h2,.golfos-newsletter h2,.golfos-offer h3,
.golfos-collection__body strong,.golfos-feature__body .golfos-section__title{
	text-transform:uppercase;letter-spacing:.005em;
}
.golfos-btn{text-transform:uppercase;letter-spacing:.05em;font-weight:700}
.golfos-tab{text-transform:uppercase;letter-spacing:.04em;font-size:.82rem;font-weight:600}
.golfos-nav{text-transform:uppercase;letter-spacing:.05em;font-size:.82rem;font-weight:600}
.golfos-brandmark span{text-transform:uppercase;letter-spacing:.02em}
.golfos-stat-item span,.golfos-bookcta__stats span{text-transform:uppercase;letter-spacing:.06em;font-size:.72rem}
.golfos-card__title{letter-spacing:.01em}

/* ---- Jersey-stripe accent on the kicker ---- */
.golfos-kicker{display:inline-flex;align-items:center;gap:.55rem}
.golfos-kicker::before{content:"";width:22px;height:4px;background:var(--golf-lime);display:inline-block;transform:skewX(-20deg)}
.golfos-section__head--center .golfos-kicker{justify-content:center}

/* ---- Angular chamfered buttons (esports/athletic cut) ---- */
.golfos-btn--lime,.golfos-btn--primary,.golfos-btn--ghost{
	clip-path:polygon(9px 0,100% 0,100% calc(100% - 9px),calc(100% - 9px) 100%,0 100%,0 9px);
}
.golfos-btn--sm{clip-path:polygon(6px 0,100% 0,100% calc(100% - 6px),calc(100% - 6px) 100%,0 100%,0 6px)}

/* ---- Sharp card structure with a lime edge on hover ---- */
.golfos-card,.golfos-offer{position:relative}
.golfos-card::before,.golfos-offer::before{
	content:"";position:absolute;top:0;left:0;width:100%;height:3px;background:var(--golf-lime);
	transform:scaleX(0);transform-origin:left;transition:transform .25s ease;z-index:3;
}
.golfos-card:hover::before,.golfos-offer:hover::before{transform:scaleX(1)}
.golfos-offer.is-active::before{transform:scaleX(1)}

/* ---- Chamfered hero cards & stat chip ---- */
.golfos-hero__card{clip-path:polygon(12px 0,100% 0,100% 100%,0 100%,0 12px)}
.golfos-collection__go{clip-path:polygon(6px 0,100% 0,100% calc(100% - 6px),calc(100% - 6px) 100%,0 100%,0 6px)}

/* ============================================================
   BACKGROUND PATTERNS
   ============================================================ */

/* Hero — faint technical grid, fading from the top-right */
.golfos-hero::after{
	content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
	background-image:
		repeating-linear-gradient(90deg,rgba(255,255,255,.06) 0 1px,transparent 1px 68px),
		repeating-linear-gradient(0deg,rgba(255,255,255,.06) 0 1px,transparent 1px 68px);
	-webkit-mask-image:radial-gradient(130% 100% at 85% 0%,#000 25%,transparent 72%);
	        mask-image:radial-gradient(130% 100% at 85% 0%,#000 25%,transparent 72%);
}

/* Marquee — diagonal jersey stripes behind the ticker */
.golfos-marquee{
	background-image:repeating-linear-gradient(-45deg,rgba(255,255,255,.07) 0 2px,transparent 2px 13px);
}

/* Stats band — subtle dot field */
.golfos-stats{
	background-image:radial-gradient(rgba(20,67,42,.10) 1.1px,transparent 1.4px);
	background-size:22px 22px;
}

/* Bookings panel — white dot grid over the fairway green */
.golfos-bookcta__panel{
	background-image:radial-gradient(rgba(255,255,255,.10) 1px,transparent 1.5px);
	background-size:20px 20px;
}

/* Spotlight — bold diagonal hazard stripes layered on the overlay */
.golfos-spotlight::after{
	content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;
	background-image:repeating-linear-gradient(-45deg,rgba(134,194,50,.14) 0 3px,transparent 3px 18px);
	-webkit-mask-image:linear-gradient(90deg,transparent 45%,#000 100%);
	        mask-image:linear-gradient(90deg,transparent 45%,#000 100%);
}

/* Newsletter — fine diagonal weave */
.golfos-newsletter{
	background-image:repeating-linear-gradient(45deg,rgba(255,255,255,.05) 0 2px,transparent 2px 15px);
}

/* Feature media — corner tick + faint contour when no image set */
.golfos-feature__media{position:relative}
.golfos-feature__media::after{
	content:"";position:absolute;left:0;bottom:0;width:64px;height:64px;
	background:linear-gradient(135deg,transparent 50%,var(--golf-lime) 50%);
}

/* Collections wide tile — hazard corner flag */
.golfos-collection.is-wide::after{
	content:"";position:absolute;top:0;right:0;width:0;height:0;
	border-style:solid;border-width:0 54px 54px 0;border-color:transparent var(--golf-lime) transparent transparent;opacity:.9;z-index:1;
}

/* Section heads get a sharp lime underline accent */
.golfos-section__title{position:relative}

/* Promises strip — thin top rule in lime for structure */
.golfos-promises{border-top:3px solid var(--golf-fairway)}
.golfos-promise .golfos-ico{color:var(--golf-lime)}

/* Sharpen focus states to match the angular theme */
.golfos-btn:focus-visible,.golfos-tab:focus-visible,.golfos-slot:focus-visible{outline:3px solid var(--golf-lime);outline-offset:2px}

/* ============================================================
   Responsive columns (driven by dashboard) + visibility
   ============================================================ */
.golfos-grid--shop{grid-template-columns:repeat(var(--golf-shop-cols,4),1fr)}
.golfos-grid--home{grid-template-columns:repeat(var(--golf-home-cols,4),1fr)}
.golfos-collections__grid{grid-template-columns:repeat(var(--golf-coll-cols,4),1fr)}
.golfos-gallery__grid{grid-template-columns:repeat(var(--golf-gal-cols,6),1fr)}
.golfos-main{display:block}

@media(max-width:980px){
	.golfos-grid--shop{grid-template-columns:repeat(var(--golf-shop-cols-tab,2),1fr)}
	.golfos-grid--home{grid-template-columns:repeat(var(--golf-home-cols-tab,2),1fr)}
}
@media(max-width:640px){
	.golfos-grid--shop{grid-template-columns:repeat(var(--golf-shop-cols-mob,1),1fr)}
	.golfos-grid--home{grid-template-columns:repeat(var(--golf-home-cols-mob,1),1fr)}
	.golfos-collections__grid{grid-template-columns:repeat(var(--golf-coll-cols-mob,1),1fr)}
	.golfos-gallery__grid{grid-template-columns:repeat(var(--golf-gal-cols-mob,2),1fr)}
}

/* Per-section responsive visibility (set from the Layout tab) */
@media(max-width:640px){ .golfos-hide-mobile{display:none !important} }
@media(min-width:641px){ .golfos-hide-desktop{display:none !important} }

/* ============================================================
   Navigation: desktop hover submenus + mobile drawer
   ============================================================ */
.golfos-navitem{position:relative;display:inline-flex;align-items:center}
.golfos-nav > a,.golfos-navitem > a{display:inline-flex;align-items:center;gap:.3rem;padding:.2rem 0}
.golfos-caret{font-size:.7em;transition:transform .2s}
.golfos-has-sub:hover .golfos-caret{transform:rotate(180deg)}
.golfos-subtoggle{display:none;background:none;border:0;color:inherit;font-size:1rem;cursor:pointer;padding:.3rem .5rem}

/* Desktop dropdown */
.golfos-subnav{
	position:absolute;top:100%;left:-.6rem;min-width:230px;background:#fff;
	border:1px solid var(--golf-line);box-shadow:var(--shadow);padding:.4rem;
	display:flex;flex-direction:column;z-index:60;
	opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .18s ease,transform .18s ease,visibility .18s;
}
.golfos-subnav::before{content:"";position:absolute;top:-8px;left:0;right:0;height:8px}
.golfos-has-sub:hover .golfos-subnav,.golfos-has-sub:focus-within .golfos-subnav{opacity:1;visibility:visible;transform:translateY(0)}
.golfos-subnav a{
	display:block;padding:.65rem .8rem;color:var(--golf-ink);font-weight:600;font-size:.9rem;
	text-transform:none;letter-spacing:0;border-left:3px solid transparent;
}
.golfos-subnav a::after{display:none}
.golfos-subnav a:hover{background:var(--golf-sand);color:var(--golf-fairway);border-left-color:var(--golf-lime)}

/* Mobile drawer */
@media(max-width:980px){
	.golfos-header{position:relative}
	.golfos-header.is-sticky{position:sticky;top:0}
	.golfos-nav{
		display:flex;position:absolute;top:100%;left:0;right:0;background:var(--golf-fairway);
		flex-direction:column;align-items:stretch;gap:0;padding:0;max-height:0;overflow:hidden;
		transition:max-height .32s ease;box-shadow:var(--shadow);margin-left:0;
	}
	.golfos-nav.is-open{max-height:85vh;overflow:auto;padding:.4rem 0 1rem}
	.golfos-navitem{display:block}
	.golfos-nav > a,.golfos-navitem > a{
		color:#fff;padding:1rem 1.4rem;font-size:1rem;border-bottom:1px solid rgba(255,255,255,.08);width:100%;
	}
	.golfos-caret{display:none}
	.golfos-has-sub{display:flex;flex-wrap:wrap;align-items:center;border-bottom:1px solid rgba(255,255,255,.08)}
	.golfos-has-sub > a{flex:1;border-bottom:0}
	.golfos-subtoggle{display:block;color:#fff;font-size:1.3rem;line-height:1;padding:1rem 1.4rem;transition:transform .2s}
	.golfos-has-sub.is-open .golfos-subtoggle{transform:rotate(180deg)}
	.golfos-subnav{
		position:static;opacity:1;visibility:visible;transform:none;transition:none;
		width:100%;background:rgba(0,0,0,.16);border:0;box-shadow:none;padding:0;
		display:none;
	}
	.golfos-has-sub.is-open .golfos-subnav{display:block}
	.golfos-subnav a{color:#dCE7d6;padding:.85rem 2.2rem;border-left:0;font-weight:500}
	.golfos-subnav a:hover{background:rgba(0,0,0,.25);color:#fff;border-left:0}
	.golfos-navtoggle{display:flex}
	.golfos-navtoggle span{transition:transform .2s,opacity .2s}
	.golfos-navtoggle.is-open span:nth-child(1){transform:translateY(6px) rotate(45deg)}
	.golfos-navtoggle.is-open span:nth-child(2){opacity:0}
	.golfos-navtoggle.is-open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
	.golfos-header__actions .golfos-btn{display:none}
}

/* ============================================================
   Split (two-tier) header, flag badge, icon buttons, search
   ============================================================ */
.golfos-flagbadge{display:inline-flex;margin-left:.15rem}
.golfos-flagmark{border-radius:50%;box-shadow:0 0 0 2px #fff,0 1px 4px rgba(0,0,0,.25);vertical-align:middle}
.golfos-iconbtn{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;background:transparent;border:0;cursor:pointer;color:var(--golf-ink);border-radius:0;transition:background .15s,color .15s}
.golfos-iconbtn:hover{background:var(--golf-sand);color:var(--golf-fairway)}
.golfos-iconbtn .golfos-ico{width:22px;height:22px}

/* Split top bar: logo left, nav centered, actions right */
.golfos-header--split .golfos-header__bar--main{background:#fff;border-bottom:1px solid var(--golf-line)}
.golfos-header__inner--split{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:1rem}
.golfos-header__inner--split .golfos-nav--primary{justify-content:center}
.golfos-header--split .golfos-nav--primary{display:flex;gap:2rem}

/* Split dark secondary bar */
.golfos-header__bar--sub{background:var(--golf-ink,#10120F);color:#fff}
.golfos-subbar__inner{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:1rem;padding-top:.7rem;padding-bottom:.7rem}
.golfos-subnav-bar{display:flex;justify-content:center;gap:2.2rem;flex-wrap:wrap}
.golfos-subnav-bar a{color:#e9ede7;font-family:var(--golf-font-display);text-transform:uppercase;letter-spacing:.08em;font-size:.8rem;font-weight:600;position:relative}
.golfos-subnav-bar a:hover{color:var(--golf-lime)}
.golfos-subbar__side{display:flex;gap:.6rem;color:rgba(255,255,255,.5)}
.golfos-subbar__side .golfos-ico{width:18px;height:18px}
.golfos-subbar__side--right{justify-self:end}

/* Search panel */
.golfos-searchpanel{background:#fff;border-bottom:1px solid var(--golf-line);animation:golfos-slidedown .2s ease}
.golfos-searchpanel form{max-width:var(--maxw);margin:0 auto;padding:.9rem 1.25rem;display:flex;align-items:center;gap:.6rem}
.golfos-searchpanel .golfos-ico{width:22px;height:22px;color:var(--golf-muted,#6b7a6e);flex:none}
.golfos-searchpanel input{flex:1;border:0;border-bottom:2px solid var(--golf-line);padding:.5rem .2rem;font-size:1.05rem;font-family:var(--golf-font-body);background:transparent}
.golfos-searchpanel input:focus{outline:none;border-bottom-color:var(--golf-lime)}
@keyframes golfos-slidedown{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}

@media(max-width:980px){
	.golfos-header__inner--split{grid-template-columns:auto auto;justify-content:space-between}
	.golfos-header--split .golfos-nav--primary{gap:0}
	.golfos-header__bar--sub{display:none}       /* secondary links fold into the drawer + bottom nav */
	.golfos-searchpanel form{padding:.8rem 1rem}
}

/* ============================================================
   Mobile bottom navigation
   ============================================================ */
.golfos-bottomnav{display:none}
@media(max-width:768px){
	.golfos-bottomnav{display:flex;align-items:center;gap:.6rem;position:fixed;left:0;right:0;bottom:0;z-index:120;padding:.6rem .8rem calc(.6rem + env(safe-area-inset-bottom,0px))}
	.golfos-bottomnav__bar{flex:1;display:flex;align-items:center;justify-content:space-around;background:#111;color:#fff;border-radius:999px;padding:.5rem .3rem;box-shadow:0 10px 30px -8px rgba(0,0,0,.5)}
	.golfos-bottomnav__item{display:flex;flex-direction:column;align-items:center;gap:.2rem;color:#cfd3cd;font-size:.7rem;font-weight:600;padding:.35rem .7rem;border-radius:999px;flex:1;text-align:center}
	.golfos-bottomnav__item .golfos-ico{width:22px;height:22px}
	.golfos-bottomnav__item.is-active{background:#2c2f2b;color:#fff}
	.golfos-bottomnav__wa{flex:none;width:54px;height:54px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 0 0 4px rgba(37,211,102,.25),0 10px 24px -6px rgba(37,211,102,.6)}
	.golfos-bottomnav__wa .golfos-ico{width:30px;height:30px}
	/* keep content clear of the bar */
	.golfos-store{padding-bottom:92px}
	.golfos-footer{margin-bottom:0}
}

/* ============================================================
   Editable text colors (dashboard-controlled)
   ============================================================ */
.golfos-store{color:var(--golf-text,#39433A)}
.golfos-section__title,.golfos-card__title,.golfos h2,.golfos h3{color:var(--golf-heading,#12241A)}
.golfos-kicker,.golfos-section__head .golfos-kicker{color:var(--golf-kicker,#4c8f2d)}
.golfos-muted,.golfos-card__cat,.golfos-section__sub{color:var(--golf-muted,#6b7a6e)}
.golfos-store a:not(.golfos-btn):not(.golfos-navitem):not(.golfos-tab):not(.golfos-bottomnav__item):not(.golfos-subnav-bar a){color:var(--golf-link,#1E5E3A)}
/* keep intentionally-dark/hero/footer sections readable regardless of text color */
.golfos-hero,.golfos-hero *,.golfos-footer,.golfos-footer *,.golfos-bookcta,.golfos-bookcta *,.golfos-spotlight,.golfos-spotlight *{color:inherit}

/* ============================================================
   Single product page
   ============================================================ */
.golfos-crumbs{display:flex;flex-wrap:wrap;gap:.5rem;align-items:center;font-size:.85rem;color:var(--golf-muted);margin-bottom:1.5rem}
.golfos-crumbs a{color:var(--golf-muted)}.golfos-crumbs a:hover{color:var(--golf-fairway)}.golfos-crumbs em{color:var(--golf-heading);font-style:normal;font-weight:600}
.golfos-product__grid{display:grid;grid-template-columns:1.05fr 1fr;gap:2.5rem;align-items:start}
.golfos-product__stage{position:relative;background:linear-gradient(135deg,#eef2ea,#dde7d6);aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;overflow:hidden;border:1px solid var(--golf-line)}
.golfos-product__stage img{width:100%;height:100%;object-fit:cover}
.golfos-product__ph .golfos-ico{width:80px;height:80px;color:var(--golf-green);opacity:.5}
.golfos-product__thumbs{display:flex;gap:.6rem;margin-top:.7rem;flex-wrap:wrap}
.golfos-pthumb{width:72px;height:72px;border:1px solid var(--golf-line);background:#fff;cursor:pointer;padding:0;overflow:hidden}
.golfos-pthumb.is-active{border-color:var(--golf-lime);box-shadow:0 0 0 2px var(--golf-lime)}
.golfos-pthumb img{width:100%;height:100%;object-fit:cover}
.golfos-product__title{font-family:var(--golf-font-display);font-size:clamp(1.8rem,4vw,2.6rem);line-height:1.05;text-transform:uppercase;margin:.3rem 0 .6rem;color:var(--golf-heading)}
.golfos-product__price{font-size:1.7rem;font-weight:800;color:var(--golf-fairway);margin-bottom:.6rem}
.golfos-product__price del{color:var(--golf-muted);font-weight:500;font-size:1.1rem;margin-left:.5rem}
.golfos-product__stock{font-weight:600;font-size:.9rem;margin:.2rem 0 1rem}
.golfos-product__stock.is-in{color:#2c7a1c}.golfos-product__stock.is-out{color:#b42318}
.golfos-product__excerpt{color:var(--golf-text);line-height:1.6;margin-bottom:1.2rem}
.golfos-product__actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-bottom:1rem}
.golfos-btn--lg{padding:1rem 1.6rem;font-size:1rem}
.golfos-product__note{display:flex;align-items:center;gap:.4rem;color:var(--golf-muted);font-size:.85rem;margin:.4rem 0 1.4rem}
.golfos-product__note .golfos-ico{width:16px;height:16px;color:var(--golf-lime)}
.golfos-product__meta{list-style:none;padding:0;margin:0;border-top:1px solid var(--golf-line)}
.golfos-product__meta li{display:flex;gap:1rem;padding:.6rem 0;border-bottom:1px solid var(--golf-line);font-size:.9rem}
.golfos-product__meta li span{min-width:90px;color:var(--golf-muted);text-transform:uppercase;letter-spacing:.04em;font-size:.78rem;font-weight:600}
.golfos-product__desc{margin-top:2.5rem;max-width:820px}
.golfos-product__desc h2,.golfos-product__related h2{font-family:var(--golf-font-display);text-transform:uppercase;margin-bottom:1rem}
.golfos-richtext{line-height:1.7;color:var(--golf-text)}
.golfos-richtext p{margin:0 0 1rem}
.golfos-product__related{margin-top:3rem}
@media(max-width:820px){
	.golfos-product__grid{grid-template-columns:1fr;gap:1.5rem}
}
