/*
 * Landing redesign — front page, all widths.
 *
 * One responsive page, not two templates: the rules below are the mobile
 * baseline and the @media (min-width:769px) block at the end scales them up.
 * The desktop front-page sections stand down entirely (see the hide list), so
 * this file owns the front page; every other template is untouched.
 *
 * File and class names still carry the `om`/`mobile-landing` prefix from when
 * this shipped mobile-only. Renaming them would churn the PHP module, the
 * enqueue handle and every selector for no functional gain.
 *
 * Sticky gotcha the handoff flags: an ancestor with `overflow: hidden` becomes
 * the scrollport and silently kills `position: sticky`. Use `overflow-x: clip`
 * if horizontal containment is ever needed here.
 */



:root {
  --om-page:       #0B0B0B;
  --om-section:    #0F0F0F;
  --om-strip:      #101010;
  --om-card:       #111111;
  --om-control:    #141414;
  --om-footer:     #080808;
  --om-disclaimer: #050505;
  --om-copper:     #C99777;
  --om-copper-lt:  #E8CDB8;
  --om-plate:      #F2EEE9;
  --om-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* The redesign owns the whole front page on mobile. */
body.home { background: var(--om-page); }

/* The redesign owns the whole front page now, at every width. */
body.home .announce,
body.home .site-header,
body.home .hero,
body.home .trust,
body.home .products,
body.home .callout-section,
body.home .site-footer,
body.home .disclaimer-bar { display: none; }

.om { display: block; color: #fff; }
.om *, .om *::before, .om *::after { box-sizing: border-box; }
.om a { text-decoration: none; color: inherit; }
/* :where() keeps the reset at zero specificity, so every component rule below
   (.om-chip, .om-card__add, .om-lang …) still wins its own typography. */
:where(.om) :where(button) { font: inherit; cursor: pointer; background: none; border: 0; }
.om-mono { font-family: var(--om-mono); }

/* theme.css styles the bare `section` element (72px block padding, 48px on
   mobile), which leaked into every section here — the hero picked up 48px
   above the photo and read as a dead black band. :where() keeps this reset at
   zero specificity so each component's own padding still wins. */
:where(.om) section { padding: 0; }

/* The hero photo bleeds past the container to the viewport edge; 100vw counts
   the scrollbar the viewport width does not, so clip the overspill. `clip`
   rather than `hidden`: hidden would make this the scrollport and kill the
   sticky bar inside it. */
.om { overflow-x: clip; }

/* Page container. The chip row deliberately sits outside it on mobile so it
   can scroll edge to edge. */
.om-wrap { padding-inline: 20px; }

/* ── 1. Announcement marquee ─────────────────────────────────────────── */

.om-marquee {
  background: var(--om-page);
  border-bottom: 1px solid rgba(201,151,119,.18);
  overflow: hidden;
}
.om-marquee__track {
  display: flex;
  width: max-content;
  animation: om-marquee 26s linear infinite;
}
.om-marquee__run {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
  padding: 7px 11px;
  white-space: nowrap;
  font-family: var(--om-mono);
  font-weight: 500;
  font-size: 9.5px;
  line-height: 1;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
}
.om-marquee__sep { color: var(--om-copper); }
@keyframes om-marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .om-marquee__track { animation: none; width: 100%; justify-content: center; }
  .om-marquee__run + .om-marquee__run { display: none; }
}

/* ── 2. Sticky header ────────────────────────────────────────────────── */

.om-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11,11,11,.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.om-header__row {
  height: 60px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.om-logo { display: flex; align-items: center; gap: 9px; }
/* The mark ships as a transparent PNG — the original has #141414 baked in,
   which would print a visible lighter rectangle on this #0B0B0B header. */
.om-logo__mark { width: 52px; height: 22px; object-fit: contain; display: block; }
.om-logo__name {
  font-weight: 800; font-size: 15px; line-height: 1;
  letter-spacing: .16em; color: #fff;
}
.om-logo__sub {
  font-family: var(--om-mono); font-weight: 500; font-size: 8px; line-height: 1;
  letter-spacing: .32em; color: var(--om-copper); margin-top: 3px;
}
.om-header__actions { display: flex; align-items: center; gap: 8px; }
/* Desktop-only pieces: the inline nav and the cart's text label. On mobile the
   hamburger and the count badge stand in for them. */
.om-nav { display: none; }
.om-cart__label { display: none; }

/* Existujúci prepínač jazykov sa použije taký, aký je — len sa usadí do
   novej hlavičky, aby sa neduplikovala jeho logika ani zoznam jazykov. */
.om .onyx-lang__btn {
  height: 34px; padding: 0 10px; gap: 5px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 999px;
  background: transparent;
  font-family: var(--om-mono); font-weight: 600; font-size: 11px;
  letter-spacing: .08em; color: rgba(255,255,255,.7);
}
.om .onyx-lang__menu { z-index: 60; }

.om-lang {
  height: 34px; padding: 0 10px;
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: transparent;
  font-family: var(--om-mono); font-weight: 600; font-size: 11px;
  letter-spacing: .08em; color: rgba(255,255,255,.7);
}
.om-lang svg { width: 10px; height: 10px; }

.om-iconbtn {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--om-control);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.om-iconbtn svg { width: 18px; height: 18px; stroke-width: 1.8; }
.om-iconbtn--cart { border-color: rgba(201,151,119,.28); color: var(--om-copper); }
.om-iconbtn--menu { color: #fff; }
.om-cart__count {
  position: absolute; top: -2px; right: -2px;
  min-width: 18px; height: 18px; border-radius: 9px;
  background: var(--om-copper); color: var(--om-page);
  border: 2px solid var(--om-page);
  font-weight: 700; font-size: 10px; line-height: 18px;
  text-align: center; padding: 0 3px;
}
.om-cart__count[hidden] { display: none; }

.om-menu {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 10px 14px 16px;
  background: var(--om-page);
}
.om-menu a {
  display: block;
  font-weight: 600; font-size: 16px; line-height: 1.2; color: #fff;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.om-menu a:last-child { border-bottom: 0; }

/* ── 3. Hero ─────────────────────────────────────────────────────────── */

.om-hero__media { position: relative; }
.om-hero__media picture { display: block; }
.om-hero__photo {
  width: 100%; height: auto; display: block;
  filter: contrast(1.04) saturate(1.02);
}
/* Feather the photo into the page on every side — it should sit in the black,
   not on it: solid page colour at the top edge under the header and at the
   bottom into the text, a soft fall-off at the sides. */
.om-hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg,
      #0B0B0B 0%, rgba(11,11,11,.55) 9%, rgba(11,11,11,0) 30%,
      rgba(11,11,11,0) 66%, rgba(11,11,11,.8) 88%, #0B0B0B 100%),
    linear-gradient(90deg,
      rgba(11,11,11,.55) 0%, rgba(11,11,11,0) 14%,
      rgba(11,11,11,0) 86%, rgba(11,11,11,.55) 100%);
}
.om-hero__badge {
  position: absolute; left: 20px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(201,151,119,.45);
  border-radius: 999px;
  background: rgba(11,11,11,.55);
  font-family: var(--om-mono); font-weight: 500; font-size: 9.5px; line-height: 1;
  letter-spacing: .2em; color: var(--om-copper-lt);
}
.om-hero__badge::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--om-copper); flex: none;
}
/* Desktop-only (see below). Must come after the base rule: same specificity,
   so the earlier `display: inline-flex` was winning and the badge floated as
   a stray pill under the CTAs on phones. */
.om-hero__badge--inline { display: none; }
.om-hero__text { padding: 22px 20px 32px; }
.om-h1 {
  font-weight: 800; font-size: 40px; line-height: .98;
  letter-spacing: -1.7px; color: #fff;
  text-wrap: balance; margin: 0 0 14px;
}
.om-h1 em {
  display: block;
  font-family: var(--font-display);
  font-style: italic; font-weight: 400; font-size: 44px;
  letter-spacing: -1px; color: var(--om-copper-lt);
}
.om-lead {
  font-weight: 400; font-size: 14.5px; line-height: 1.6;
  color: rgba(255,255,255,.78); max-width: 38ch; margin: 0 0 20px;
}
.om-cta-stack { display: flex; flex-direction: column; gap: 10px; }
.om-btn {
  height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.om-btn--primary {
  background: var(--om-copper); color: var(--om-page);
  font-weight: 700; font-size: 16px;
  justify-content: space-between; padding: 0 22px;
}
.om-btn--primary svg { width: 18px; height: 18px; }
.om-btn--ghost {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  color: #fff; font-weight: 600; font-size: 15px;
}

/* ── 4. Trust strip ──────────────────────────────────────────────────── */

.om-trust {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--om-strip);
  border-top: 1px solid rgba(201,151,119,.16);
  border-bottom: 1px solid rgba(201,151,119,.16);
}
.om-trust__cell {
  padding: 16px; display: flex; gap: 11px; align-items: center;
}
.om-trust__cell:nth-child(odd)  { border-right: 1px solid rgba(201,151,119,.16); }
.om-trust__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(201,151,119,.16); }
.om-trust__cell svg { width: 19px; height: 19px; stroke-width: 1.7; color: var(--om-copper); flex: none; }
.om-trust__title { font-weight: 600; font-size: 13px; line-height: 1.25; color: #fff; }
.om-trust__sub {
  font-family: var(--om-mono); font-weight: 400; font-size: 10px; line-height: 1.3;
  letter-spacing: .06em; color: rgba(255,255,255,.5); margin-top: 3px;
}

/* ── Shared section furniture ────────────────────────────────────────── */

.om-eyebrow {
  font-family: var(--om-mono); font-weight: 500; font-size: 9.5px; line-height: 1;
  letter-spacing: .24em; color: var(--om-copper); margin-bottom: 12px;
}
.om-h2 {
  font-weight: 800; font-size: 30px; line-height: 1.06;
  letter-spacing: -1.1px; color: #fff; margin: 0 0 14px;
}
.om-h2 em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400; font-size: 33px; color: var(--om-copper-lt);
}
.om-body {
  font-weight: 400; font-size: 14.5px; line-height: 1.7;
  color: rgba(255,255,255,.65); max-width: 38ch;
}

/* ── 5. Cash on delivery ─────────────────────────────────────────────── */

.om-cod {
  padding: 44px 0 46px;
  background: var(--om-section);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.om-cod .om-body { margin-bottom: 24px; }
.om-steps {
  border: 1px solid rgba(201,151,119,.28);
  border-radius: 16px;
  background: var(--om-page);
  overflow: hidden;
  margin-bottom: 18px;
}
.om-step {
  display: flex; align-items: center; gap: 13px; padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.om-step:last-child { border-bottom: 0; }
.om-step__n {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,151,119,.35);
  color: var(--om-copper);
  font-family: var(--om-mono); font-weight: 600; font-size: 12px;
}
.om-step--pay .om-step__n {
  background: var(--om-copper); color: var(--om-page); border-color: var(--om-copper);
  font-weight: 700;
}
.om-step__title { font-weight: 600; font-size: 14px; line-height: 1.3; color: #fff; }
.om-step__sub {
  font-weight: 400; font-size: 12.5px; line-height: 1.45;
  color: rgba(255,255,255,.55); margin-top: 3px;
}

.om-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.om-pill {
  padding: 8px 10px; border-radius: 6px;
  font-family: var(--om-mono); font-weight: 600; font-size: 9.5px; line-height: 1;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.12);
}
.om-pill--on {
  color: var(--om-copper-lt);
  border-color: rgba(201,151,119,.3);
  background: rgba(201,151,119,.08);
}
.om-btn--section {
  height: 54px; border-radius: 14px;
  background: var(--om-copper); color: var(--om-page);
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.om-btn--outline {
  height: 54px; border-radius: 14px;
  border: 1px solid var(--om-copper); color: var(--om-copper);
  font-weight: 600; font-size: 15px; background: transparent;
  display: flex; align-items: center; justify-content: center;
  margin-top: 22px;
}

/* ── 6. Best sellers ─────────────────────────────────────────────────── */

.om-shop { padding: 44px 0 40px; }
.om-shop__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 18px;
}
.om-shop__head .om-h2 { margin-bottom: 0; }
.om-shop__all {
  font-family: var(--om-mono); font-weight: 600; font-size: 12px; line-height: 1;
  letter-spacing: .1em; color: var(--om-copper); padding-bottom: 6px; white-space: nowrap;
}
.om-chips {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 0 20px 18px; scrollbar-width: none;
}
.om-chips::-webkit-scrollbar { display: none; }
.om-chip {
  flex: none; height: 38px; padding: 0 15px; border-radius: 999px;
  background: var(--om-control); color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.12);
  font-family: var(--om-mono); font-weight: 600; font-size: 11px; line-height: 1;
  letter-spacing: .12em;
}
.om-chip[aria-pressed="true"] {
  background: var(--om-copper); color: var(--om-page); border-color: var(--om-copper);
}

.om-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px;
}
.om-card {
  background: var(--om-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
}
.om-card[hidden] { display: none; }
/* Square plate, exactly like the live cards (theme.css:4338). The ratio lives
   on the container and the image fills it, so a stray width/height attribute
   on the <img> can never stretch the tile. */
.om-card__media {
  /* Krabičky sú fotené na čiernom, takže teplá podložka odpadá
     (handoff: „If you later swap in on-black box photography, drop the
     plate to #0B0B0B"). */
  display: block;
  position: relative; background: var(--om-page);
  aspect-ratio: 1; height: auto; overflow: hidden;
}
.om-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.om-card__badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--om-page); color: var(--om-copper-lt);
  font-family: var(--om-mono); font-weight: 600; font-size: 8.5px; line-height: 1;
  letter-spacing: .14em; padding: 6px 8px; border-radius: 5px;
}
.om-card__body {
  padding: 12px 12px 10px; display: flex; flex-direction: column; gap: 7px; flex: 1;
}
.om-card__cat {
  font-family: var(--om-mono); font-weight: 500; font-size: 8.5px; line-height: 1;
  letter-spacing: .14em; color: rgba(255,255,255,.45);
}
.om-card__name {
  font-weight: 700; font-size: 15px; line-height: 1.2;
  letter-spacing: -.3px; color: #fff;
}
.om-card__meta {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--om-mono); font-weight: 400; font-size: 11px;
  color: rgba(255,255,255,.5);
}
.om-card__meta::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--om-copper); flex: none;
}
.om-card__price { margin-top: auto; display: flex; align-items: baseline; gap: 7px; }
.om-card__now { font-weight: 700; font-size: 17px; line-height: 1; color: #fff; }
.om-card__was {
  font-weight: 400; font-size: 11px; color: rgba(255,255,255,.38);
  text-decoration: line-through;
}
.om-card__add {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 46px; border: 0; text-align: center;
  border-top: 1px solid rgba(201,151,119,.25);
  background: rgba(201,151,119,.1); color: var(--om-copper-lt);
  font-family: var(--om-mono); font-weight: 600; font-size: 11px; line-height: 1;
  letter-spacing: .14em;
}

.om-more { padding: 18px 0 0; }
.om-more button {
  width: 100%; height: 52px; border-radius: 14px;
  background: transparent; border: 1px solid rgba(201,151,119,.4);
  color: var(--om-copper-lt);
  font-family: var(--om-mono); font-weight: 600; font-size: 12px; line-height: 1;
  letter-spacing: .16em;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.om-more button svg { width: 14px; height: 14px; }
.om-more[hidden] { display: none; }

/* ── 7. Quality ──────────────────────────────────────────────────────── */

.om-quality {
  padding: 44px 0 46px;
  background: var(--om-section);
  border-top: 1px solid rgba(255,255,255,.06);
}
.om-quality .om-body { margin-bottom: 24px; }
.om-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(201,151,119,.2);
  border: 1px solid rgba(201,151,119,.2);
  border-radius: 14px; overflow: hidden;
}
.om-stat { background: var(--om-page); padding: 20px 16px; text-align: center; }
.om-stat__fig {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 34px; line-height: 1; color: var(--om-copper);
}
.om-stat__lab {
  font-family: var(--om-mono); font-weight: 500; font-size: 9.5px; line-height: 1;
  letter-spacing: .16em; color: rgba(255,255,255,.5); margin-top: 8px;
}

/* ── 8. Footer ───────────────────────────────────────────────────────── */

.om-footer {
  padding: 44px 0 26px;
  background: var(--om-footer);
  border-top: 1px solid rgba(201,151,119,.16);
}
.om-footer__blurb {
  font-weight: 400; font-size: 13.5px; line-height: 1.65;
  color: rgba(255,255,255,.5); max-width: 34ch; margin: 14px 0 30px;
}
.om-fcols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 16px;
  padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.om-fcol h4 {
  font-family: var(--om-mono); font-weight: 500; font-size: 9.5px; line-height: 1;
  letter-spacing: .18em; color: var(--om-copper); margin: 0 0 14px;
}
.om-fcol ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.om-fcol a { font-weight: 400; font-size: 13.5px; line-height: 1; color: rgba(255,255,255,.6); }
.om-legal { padding-top: 20px; text-align: center; display: grid; gap: 7px; }
.om-legal p { margin: 0; font-weight: 400; font-size: 11.5px; line-height: 1.5; color: rgba(255,255,255,.4); }
.om-legal p.om-legal--fine { font-size: 11px; line-height: 1.6; color: rgba(255,255,255,.3); }

/* ── 9. Disclaimer bar ───────────────────────────────────────────────── */

.om-disclaimer {
  background: var(--om-disclaimer);
  padding: 12px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.05);
  font-family: var(--om-mono); font-weight: 400; font-size: 10px; line-height: 1.5;
  letter-spacing: .05em; color: rgba(255,255,255,.42);
}

/* ── 10. Sticky bottom bar ───────────────────────────────────────────── */

.om-sticky {
  position: sticky; bottom: 0; z-index: 45;
  background: rgba(11,11,11,.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(201,151,119,.22);
  padding: 10px 14px 14px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
}
.om-sticky__left { flex: 1; min-width: 0; }
.om-sticky__status { font-weight: 600; font-size: 12px; line-height: 1.2; color: #fff; }
.om-sticky__track {
  height: 4px; background: rgba(255,255,255,.1);
  border-radius: 2px; margin-top: 7px; overflow: hidden;
}
.om-sticky__fill {
  height: 100%; background: var(--om-copper);
  border-radius: 2px; transition: width .35s ease;
}
.om-sticky__cta {
  height: 46px; padding: 0 20px; border-radius: 12px;
  background: var(--om-copper); color: var(--om-page);
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; flex: none;
}


/* ═══════════════════════════════════════════════════════════════════════════
 * Desktop — everything above scales up from here.
 * ═════════════════════════════════════════════════════════════════════════ */

@media (min-width: 769px) {

  .om-wrap {
    max-width: 1320px; margin: 0 auto;
    padding-inline: clamp(20px, 3vw, 44px);
  }

  /* 1. Marquee — slower, roomier */
  .om-marquee__track { animation-duration: 34s; }
  .om-marquee__run {
    gap: 34px; padding: 9px 17px; font-size: 10.5px; letter-spacing: .16em;
  }

  /* 2. Header — taller row, inline nav, cart becomes a pill */
  .om-header { background: rgba(11,11,11,.84); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
  .om-header__row {
    height: 76px; gap: clamp(14px, 2vw, 30px);
    max-width: 1320px; margin: 0 auto; padding-inline: clamp(20px, 3vw, 44px);
  }
  .om-logo__mark { width: 60px; height: 26px; }
  .om-logo__name { font-size: 17px; letter-spacing: .17em; }
  .om-logo__sub  { font-size: 8.5px; letter-spacing: .34em; }

  .om-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); margin-inline: auto; }
  .om-nav a {
    font-weight: 600; font-size: 13.5px; line-height: 1;
    color: rgba(255,255,255,.62); transition: color .18s ease; white-space: nowrap;
  }
  .om-nav a:hover, .om-nav a.current-menu-item { color: #fff; }

  .om-iconbtn--menu, .om-menu { display: none; }        /* hamburger is mobile-only */
  .om .onyx-lang__btn { height: 38px; padding: 0 12px; font-size: 11.5px; }

  .om-iconbtn--cart {
    width: auto; height: 44px; padding: 0 16px; border-radius: 999px; gap: 9px;
  }
  .om-iconbtn--cart svg { width: 17px; height: 17px; }
  .om-cart__label {
    display: inline; font-weight: 600; font-size: 13.5px; color: var(--om-copper-lt);
    white-space: nowrap;
  }
  .om-cart__count { display: none; }                    /* the label carries it on desktop */

  /* 3. Hero — type left, photo bleeding off the right edge */
  .om-hero {
    max-width: 1320px; margin: 0 auto; padding-inline: clamp(20px, 3vw, 44px);
    display: grid; align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(28px, 4vw, 64px);
    min-height: clamp(440px, 48vw, 620px);
  }
  /* align-items:stretch makes both columns own the full row; the type centres
     itself inside its own column instead. Centring the items themselves left
     the photo floating with black above and below it. */
  .om-hero__text {
    padding: clamp(40px, 5vw, 72px) 0;
    display: flex; flex-direction: column; align-items: flex-start;
    justify-content: center;
    order: -1;                                          /* type first, photo right */
  }
  /* The source photo is square. Without a definite height the 1:1 intrinsic
     ratio stretches the row and pushes the CTAs below the fold — so the
     container stretches and the image is absolutely positioned inside it.
     `calc(50% - 50vw)` runs the photo to the real viewport edge; pulling back
     only the page gutter left a gap once the container hit its 1320px cap. */
  .om-hero__media {
    min-height: clamp(300px, 34vw, 620px);
    /* Bleed to the right edge of the viewport. `calc(50% - 50vw)` is the usual
       trick, but a percentage margin on a grid item resolves against its grid
       AREA, not the container — it overshot by ~320px and put a horizontal
       scrollbar on the page. Measure the real distance instead: half the
       leftover outside the 1320px cap, plus the hero's own inline padding. */
    margin-right: calc(-1 * (max(0px, (100vw - 1320px) / 2) + clamp(20px, 3vw, 44px)));
  }
  .om-hero__photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 52% 46%;
    filter: contrast(1.06) saturate(1.06) brightness(1.06);
  }
  /* Feather every edge into the page. The handoff's .5 stops still left a
     visible rectangle, so the top, bottom and left all reach solid #0B0B0B. */
  .om-hero__scrim {
    background:
      linear-gradient(90deg, #0B0B0B 0%, rgba(11,11,11,.72) 12%, rgba(11,11,11,0) 42%),
      linear-gradient(180deg, #0B0B0B 0%, rgba(11,11,11,.6) 8%, rgba(11,11,11,0) 26%, rgba(11,11,11,0) 72%, rgba(11,11,11,.7) 90%, #0B0B0B 100%);
  }
  .om-hero__badge--over { display: none; }              /* mobile places it over the photo */
  .om-hero__badge--inline {
    display: inline-flex; position: static; margin-bottom: 20px;
    padding: 7px 13px; font-size: 10px; letter-spacing: .22em;
    background: rgba(11,11,11,.5);
  }
  .om-h1 {
    font-size: clamp(36px, 4.6vw, 60px); line-height: 1;
    letter-spacing: -2px; max-width: 15ch;
  }
  .om-h1 em { font-size: inherit; }
  .om-lead { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.65; max-width: 44ch; }
  .om-cta-stack { flex-direction: row; gap: 12px; }
  .om-btn { height: 58px; padding-inline: 26px; }
  .om-btn--ghost { background: rgba(255,255,255,.05); }

  /* 4. Trust — four across */
  .om-trust { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
  .om-trust__cell { padding: 22px 26px; border-right: 1px solid rgba(201,151,119,.16); }
  .om-trust__cell:nth-child(-n+2) { border-bottom: 0; }
  .om-trust__cell:last-child { border-right: 0; }
  .om-trust__cell svg { width: 22px; height: 22px; }
  .om-trust__title { font-size: 14px; }
  .om-trust__sub { font-size: 10.5px; letter-spacing: .08em; }

  /* Shared section rhythm */
  .om-cod, .om-quality { padding: clamp(56px, 7vw, 96px) 0; }
  .om-eyebrow { font-size: 10px; letter-spacing: .26em; }
  .om-h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.04; letter-spacing: -1.4px; max-width: 20ch; }
  .om-h2 em { font-size: inherit; }
  .om-body { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.75; max-width: 52ch; color: rgba(255,255,255,.68); }

  /* 5. Cash on delivery — copy left, steps right */
  .om-cod__grid {
    display: grid; align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: clamp(32px, 5vw, 72px);
  }
  .om-steps { border-radius: 20px; margin-bottom: 0; }
  .om-step { gap: 16px; padding: clamp(20px, 2.4vw, 28px); }
  .om-step--pay { background: rgba(201,151,119,.06); }
  .om-step__n { width: 40px; height: 40px; font-size: 13px; }
  .om-step__title { font-size: 16px; }
  .om-step__sub { font-size: 13.5px; line-height: 1.5; }
  .om-pills { gap: 8px; }
  .om-pill { padding: 9px 12px; font-size: 10px; }
  .om-btn--section, .om-btn--outline { height: 56px; padding-inline: 30px; display: inline-flex; }

  /* 6. Best sellers */
  .om-shop { padding: clamp(56px, 7vw, 96px) 0; }
  .om-shop__head {
    padding: 0; margin-bottom: clamp(20px, 2vw, 28px);
    padding-bottom: clamp(20px, 2vw, 28px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-wrap: wrap; gap: 24px;
  }
  .om-shop__all {
    height: 48px; padding: 0 22px; display: inline-flex; align-items: center; gap: 9px;
    border: 1px solid rgba(201,151,119,.4); border-radius: 12px;
    font-family: var(--font, Inter), sans-serif; font-weight: 600; font-size: 13.5px;
    letter-spacing: normal; color: var(--om-copper-lt);
    transition: background .18s ease;
  }
  .om-shop__all:hover { background: rgba(201,151,119,.1); }
  .om-chips {
    padding: 0 clamp(20px, 3vw, 44px) 22px; gap: 9px;
    max-width: 1320px; margin-inline: auto;
  }
  .om-chip {
    height: 42px; padding: 0 18px;
    font-family: var(--font, Inter), sans-serif; font-weight: 600; font-size: 12.5px;
    letter-spacing: normal; transition: all .18s ease;
  }
  .om-grid {
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    gap: clamp(12px, 1.4vw, 18px);
  }
  .om-card { border-radius: 18px; transition: border-color .18s ease; }
  .om-card:hover { border-color: rgba(201,151,119,.45); }
  .om-card__badge { top: 12px; left: 12px; padding: 7px 9px; font-size: 9px; }
  .om-card__body { padding: 16px 16px 12px; gap: 8px; }
  .om-card__cat { font-size: 9.5px; letter-spacing: .12em; line-height: 1.3; }
  .om-card__name { font-size: 17px; letter-spacing: -.4px; }
  .om-card__meta { font-family: var(--font, Inter), sans-serif; font-size: 12px; }
  .om-card__now { font-size: 19px; }
  .om-card__was { font-size: 12px; }
  .om-card__add { height: 50px; transition: background .18s ease, color .18s ease; }
  .om-card__add:hover { background: var(--om-copper); color: var(--om-page); }
  .om-more { padding: clamp(24px, 3vw, 36px) 0 0; display: flex; justify-content: center; }
  .om-more button {
    width: auto; height: 56px; padding: 0 40px; gap: 11px;
    font-family: var(--font, Inter), sans-serif; font-weight: 600; font-size: 15px;
    letter-spacing: normal; transition: background .18s ease;
  }
  .om-more button:hover { background: rgba(201,151,119,.1); }

  /* 7. Quality — copy left, stats right */
  .om-quality__grid {
    display: grid; align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: clamp(32px, 5vw, 72px);
  }
  .om-quality .om-h2 { max-width: 22ch; }
  .om-stats { border-radius: 18px; }
  .om-stat { padding: clamp(26px, 3.4vw, 44px) 20px; }
  .om-stat__fig { font-size: clamp(38px, 4.4vw, 58px); }
  .om-stat__lab { font-size: 10px; letter-spacing: .18em; margin-top: 12px; }

  /* 8. Footer */
  .om-footer { padding: clamp(48px, 6vw, 80px) 0 28px; }
  .om-fcols {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
    gap: clamp(28px, 4vw, 56px);
    padding-bottom: clamp(32px, 4vw, 52px);
  }
  .om-footer__blurb { font-size: 14px; line-height: 1.7; }
  .om-fcol h4 { font-size: 10px; letter-spacing: .2em; margin-bottom: 18px; }
  .om-fcol ul { gap: 12px; }
  .om-fcol a { font-size: 14px; transition: color .18s ease; }
  .om-fcol a:hover { color: #fff; }
  .om-legal { padding-top: 26px; }
  .om-legal p { font-size: 12px; line-height: 1.6; }
  .om-legal p.om-legal--fine { font-size: 11.5px; line-height: 1.7; }

  /* 9. Disclaimer */
  .om-disclaimer { padding: 14px; font-size: 10.5px; line-height: 1.6; }

  /* 10. Sticky bottom bar is mobile-only */
  .om-sticky { display: none; }
}
