/* ============================================================
   DIRECTION A — "Gold Editorial"
   Warm off-white · Fraunces display serif · gold accents · film grain
   ============================================================ */
:root {
  --bg: #FAFAF9;
  --card: #FFFFFF;
  --ink: #1C1917;
  --ink-2: #44403C;
  --ink-3: #78716C;
  --gold: #A16207;
  --gold-dark: #854D0E;
  --gold-soft: #F5EBDA;
  --gold-bright: #E7B75F;
  --red: #B91C1C;
  --border: #E7E5E4;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, .05);
  --shadow-md: 0 10px 30px -12px rgba(28, 25, 23, .18);
  --tr: .2s ease-out;
  --f-head: 'Fraunces', Georgia, serif;
  --f-body: 'Nunito Sans', sans-serif;
  --f-ui: 'Nunito Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: var(--f-body);
  font-size: 17px; line-height: 1.65; color: var(--ink);
  background:
    radial-gradient(1100px 600px at 85% -5%, rgba(161, 98, 7, .06), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(161, 98, 7, .04), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

h1, h2 { font-family: var(--f-head); font-weight: 600; line-height: 1.08; letter-spacing: -.005em; }
h3 { font-family: var(--f-ui); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); text-wrap: balance; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); text-wrap: balance; }
h3 { font-size: 1.12rem; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--gold); }

.eyebrow {
  font-family: var(--f-ui); font-size: .76rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); flex: none; }
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head p { color: var(--ink-2); margin-top: .8rem; }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 1rem; flex-wrap: wrap; }
.lede { margin-top: .8rem; color: var(--ink-2); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-ui); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.7rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform var(--tr), background var(--tr), box-shadow var(--tr), border-color var(--tr);
  min-height: 44px;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--border); color: var(--ink); background: var(--card); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 249, .88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-family: var(--f-ui); font-size: .92rem; font-weight: 600; color: var(--ink-2); transition: color var(--tr); }
.nav a:hover, .nav a.active { color: var(--gold-dark); }
.nav .btn { padding: .6rem 1.3rem; }
.burger { display: none; background: none; border: none; width: 44px; height: 44px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; transition: var(--tr); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 104px 0 112px; }
.hero-arc {
  position: absolute; right: -12%; top: -30%; width: 720px; height: 720px;
  border: 1.5px solid var(--gold); border-radius: 50%; opacity: .16; pointer-events: none;
}
.hero-arc::after { content: ""; position: absolute; inset: 60px; border: 1px solid var(--gold); border-radius: 50%; opacity: .5; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 4rem; align-items: center; position: relative; }
.hero-sub { margin: 1.4rem 0 2rem; font-size: 1.15rem; color: var(--ink-2); max-width: 480px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-props { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 2.4rem; }
.hero-props li { display: flex; align-items: center; gap: .5rem; font-family: var(--f-ui); font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.hero-props svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* Hero floating brand logos */
.hero-visual { position: relative; }
.hero-logos { position: relative; height: 380px; }
.hl-chip {
  position: absolute; transform: translate(-50%, -50%) scale(var(--s, 1));
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 1.1rem 1.3rem; width: 138px; height: 92px;
  display: grid; place-items: center;
  animation: hl-float 6s ease-in-out infinite; animation-delay: var(--d, 0s);
}
.hl-chip::after { content: ""; position: absolute; inset: 0; border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(161,98,7,.06); }
.hl-chip img { max-height: 54px; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .8; }
@keyframes hl-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* Brands marquee — two counter-scrolling rows */
.brands { background: var(--card); border-block: 1px solid var(--border); overflow: hidden; padding-bottom: 84px; }
.marquee { position: relative; display: grid; gap: 1rem; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--card), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--card), transparent); }
.mq-row { overflow: hidden; }
.mq-track { display: flex; gap: 1rem; width: max-content; }
.mq-dup { display: flex; gap: 1rem; }
.mq-left .mq-track { animation: mq-left 48s linear infinite; }
.mq-right .mq-track { animation: mq-right 60s linear infinite; }
.marquee:hover .mq-track, .marquee.paused .mq-track, .mq-track:focus-within { animation-play-state: paused; }
@keyframes mq-left { to { transform: translateX(calc(-50% - .5rem)); } }
@keyframes mq-right { from { transform: translateX(calc(-50% - .5rem)); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .mq-track { animation: none !important; flex-wrap: wrap; width: auto; justify-content: center; }
  .mq-dup { display: none; }
  .marquee::before, .marquee::after { display: none; }
}
.brand-tile {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .7rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem 1rem; width: 200px; flex: none;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.brand-tile img { height: 60px; width: auto; max-width: 82%; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter var(--tr), opacity var(--tr); }
.bt-label { font-size: .78rem; color: var(--ink-3); }
.bt-sheen { position: absolute; top: 0; left: -60%; width: 40%; height: 100%; transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(231,183,95,.35), transparent); transition: left .5s ease; }
.brand-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.brand-tile:hover img { filter: none; opacity: 1; }
.brand-tile:hover .bt-sheen { left: 120%; }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 4rem; }
.svc-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: transform var(--tr), box-shadow var(--tr); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); display: grid; place-items: center; margin-bottom: 1.2rem; color: var(--gold-dark); }
.svc-icon svg { width: 22px; height: 22px; }
.svc-card p { color: var(--ink-2); font-size: .97rem; margin-top: .5rem; }

/* Steps */
.steps-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.steps-col { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.2rem; }
.steps-col h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem; font-size: 1.25rem; }
.free-badge { font-size: .68rem; letter-spacing: .1em; font-weight: 700; color: #fff; background: var(--red); padding: .25rem .6rem; border-radius: 999px; text-transform: uppercase; }
.step { display: flex; gap: 1rem; padding: .8rem 0; }
.step + .step { border-top: 1px solid var(--border); }
.step-n { font-family: var(--f-head); font-style: italic; font-weight: 500; color: var(--gold); font-size: 1.2rem; width: 30px; flex: none; padding-top: .1rem; }
.step b { font-family: var(--f-ui); font-weight: 700; display: block; }
.step p { font-size: .93rem; color: var(--ink-2); }

/* MAP band */
.map-band { background: var(--card); border-block: 1px solid var(--border); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.map-grid ul { list-style: none; margin-top: 1.4rem; }
.map-grid li { display: flex; gap: .7rem; padding: .45rem 0; color: var(--ink-2); }
.map-grid li svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: .25rem; }

/* Featured products */
.featured-scroll { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

/* Product card (shared home + shop) */
.p-card {
  position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.p-img { position: relative; background: #fff; aspect-ratio: 1; display: grid; place-items: center; padding: 1.2rem; border-bottom: 1px solid var(--border); }
.p-img img { max-height: 100%; object-fit: contain; transition: transform .25s ease-out; }
.p-card:hover .p-img img { transform: scale(1.04); }
.p-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.p-brand { font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.p-name { font-family: var(--f-ui); font-weight: 700; font-size: 1rem; line-height: 1.35; }
.p-link { all: unset; cursor: pointer; font: inherit; color: inherit; }
.p-link::after { content: ""; position: absolute; inset: 0; }
.p-link:focus-visible::after { outline: 2px solid var(--gold); outline-offset: -2px; border-radius: var(--radius); }
.p-rating { display: flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--ink-3); }
.stars { position: relative; display: inline-block; line-height: 1; font-size: .95rem; letter-spacing: 2px; color: #D6D3D1; }
.stars::before { content: "★★★★★"; }
.stars-fill { position: absolute; inset: 0; overflow: hidden; color: #E0A526; white-space: nowrap; }
.stars-fill::before { content: "★★★★★"; letter-spacing: 2px; }
.p-price { font-family: var(--f-head); font-weight: 600; font-size: 1.25rem; margin-top: .2rem; }

/* Shop page — whiter treatment, brand sections */
.shop-page { background: #fff; }
.shop-hero { padding: 64px 0 28px; }
.shop-hero p { color: var(--ink-2); max-width: 560px; margin-top: .8rem; }
.shop-nav { position: sticky; top: 76px; z-index: 40; background: rgba(255,255,255,.97); padding: .9rem 0; border-bottom: 1px solid var(--border); }
.shop-nav .chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip {
  font-family: var(--f-ui); font-size: .85rem; font-weight: 600; min-height: 40px;
  display: inline-flex; align-items: center;
  padding: .4rem 1rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--card); color: var(--ink-2); transition: var(--tr);
}
.chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.brand-block { padding: 3rem 0 1rem; scroll-margin-top: 140px; }
.bb-head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.6rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.bb-logo { height: 56px; width: auto; max-width: 160px; object-fit: contain; }
.bb-name { font-size: 1.6rem; }
.bb-count { font-family: var(--f-ui); font-size: .85rem; color: var(--ink-3); }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.coming-soon { padding: 3.5rem 0 5rem; margin-top: 2rem; border-top: 1px solid var(--border); }
.cs-title { font-size: 1.3rem; margin-bottom: 1.4rem; color: var(--ink-2); }
.cs-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.cs-tile { display: flex; flex-direction: column; align-items: center; gap: .5rem; width: 160px; padding: 1.4rem 1rem; border: 1px dashed var(--border); border-radius: var(--radius); background: var(--bg); }
.cs-tile img { height: 44px; object-fit: contain; filter: grayscale(1); opacity: .55; }
.cs-tile span { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 em { color: var(--gold-bright); }
.cta-inner p { color: #C9C5C1; margin-top: .6rem; max-width: 480px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-lede { margin: 1rem 0 1.6rem; color: var(--ink-2); }
.contact-info a.mail { font-family: var(--f-head); font-style: italic; font-size: 1.3rem; color: var(--gold-dark); font-weight: 500; }
.form { display: grid; gap: 1rem; }
.form label { font-family: var(--f-ui); font-size: .85rem; font-weight: 600; display: grid; gap: .35rem; }
.form input, .form textarea { font: inherit; font-size: .95rem; padding: .75rem .9rem; border-radius: 10px; border: 1px solid var(--border); background: var(--card); color: var(--ink); width: 100%; }
.form input:focus, .form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.form-status { font-family: var(--f-ui); font-weight: 600; color: var(--gold-dark); }

/* Footer */
.site-footer { background: var(--card); border-top: 1px solid var(--border); padding: 3.2rem 0 2rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.footer-grid .logo img { height: 40px; }
.footer-tag { font-family: var(--f-head); font-style: italic; font-size: 1.05rem; color: var(--ink-2); margin-top: .8rem; }
.footer-tag em { font-style: italic; color: var(--gold); }
.footer-mail { display: block; margin-top: .4rem; font-size: .9rem; color: var(--gold-dark); }
.footer-links { display: flex; gap: 1.6rem; }
.footer-links a { font-size: .9rem; color: var(--ink-2); }
.footer-links a:hover { color: var(--gold-dark); }
.footer-note { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--border); font-size: .82rem; color: var(--ink-3); }

/* Product detail modal */
.pm-overlay { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; background: rgba(28, 25, 23, .55); backdrop-filter: blur(6px); opacity: 0; transition: opacity .2s ease-out; padding: 4vh 4vw; }
.pm-overlay.show { opacity: 1; }
body.pm-open { overflow: hidden; }
.pm { position: relative; background: var(--card); border-radius: 18px; box-shadow: var(--shadow-md); width: min(920px, 100%); max-height: 92vh; overflow: auto; transform: translateY(14px) scale(.985); transition: transform .2s ease-out; }
.pm-overlay.show .pm { transform: none; }
.pm-close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--border); background: var(--card); font-size: 1.5rem; line-height: 1; color: var(--ink-2); transition: var(--tr); }
.pm-close:hover { border-color: var(--gold); color: var(--gold-dark); }
.pm-inner { display: grid; grid-template-columns: 1fr 1.1fr; }
.pm-media { background: #fff; display: grid; place-items: center; align-content: center; gap: 1rem; padding: 2.6rem; border-right: 1px solid var(--border); }
.pm-media > img { max-height: 460px; object-fit: contain; }
.pm-thumbs { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; }
.pm-thumb { width: 52px; height: 52px; padding: 4px; border-radius: 8px; border: 1.5px solid var(--border); background: #fff; transition: var(--tr); }
.pm-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pm-thumb:hover { border-color: var(--gold); }
.pm-thumb.active { border-color: var(--gold); background: var(--gold-soft); }
.pm-info { padding: 2.2rem 2.4rem; display: flex; flex-direction: column; gap: .8rem; }
.pm-info .p-brand { color: var(--gold-dark); }
.pm-title { font-family: var(--f-head); font-weight: 600; font-size: 1.7rem; line-height: 1.15; }
.pm-reviews-link { font-size: .82rem; color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; margin-left: .4rem; }
.pm-desc { color: var(--ink-2); font-size: .97rem; }
.pm-feats { list-style: none; display: grid; gap: .45rem; margin: .2rem 0; }
.pm-feats li { position: relative; padding-left: 1.15rem; font-size: .92rem; color: var(--ink-2); }
.pm-feats li::before { content: ""; position: absolute; left: 0; top: .48em; width: 7px; height: 7px; border-radius: 999px; background: var(--gold); }
.pm-buy-row { display: flex; align-items: center; gap: 1.2rem; margin-top: auto; padding-top: .6rem; }
.pm-price { font-family: var(--f-head); font-weight: 600; font-size: 1.9rem; }
.pm-buy { padding: .9rem 2.8rem; }
@media (max-width: 860px) {
  .pm-overlay { padding: 0; place-items: end center; }
  .pm { width: 100%; max-height: 94dvh; border-radius: 18px 18px 0 0; }
  .pm-inner { grid-template-columns: 1fr; }
  .pm-media { border-right: 0; border-bottom: 1px solid var(--border); padding: 1.4rem; }
  .pm-media > img { max-height: 240px; }
  .pm-info { padding: 1.5rem 1.4rem 2rem; }
  .pm-buy-row { position: sticky; bottom: 0; background: var(--card); margin: 0 -1.4rem; padding: .8rem 1.4rem; border-top: 1px solid var(--border); box-shadow: 0 -8px 16px -12px rgba(28,25,23,.15); }
}

/* Theme switcher */
.theme-switch { position: fixed; left: 16px; bottom: 16px; z-index: 90; display: flex; align-items: center; gap: .3rem; background: var(--ink); color: #fff; border-radius: 999px; padding: .35rem .5rem .35rem .9rem; box-shadow: var(--shadow-md); }
.theme-switch .ts-label { font-family: var(--f-ui); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-right: .2rem; }
.ts-btn { width: 30px; height: 30px; border-radius: 999px; border: none; background: transparent; color: #fff; font-family: var(--f-ui); font-weight: 700; font-size: .82rem; opacity: .65; transition: var(--tr); }
.ts-btn:hover { opacity: 1; }
.ts-btn.active { background: var(--gold); opacity: 1; }

/* Scroll reveal */
html.js .rv { opacity: 0; transform: translateY(24px); transition: opacity .45s ease-out, transform .45s ease-out; }
html.js .rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1 !important; transform: none !important; transition: none; }
  .hl-chip { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .shop-grid, .featured-scroll { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { position: fixed; inset: 76px 0 auto 0; background: var(--card); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1.4rem 5% 2rem; align-items: flex-start; gap: 1.2rem; transform: translateY(-130%); transition: transform .25s ease-out; }
  .nav.open { transform: none; }
  .nav a { padding: 10px 0; }
  .burger { display: block; }
  .svc-grid, .steps-wrap, .map-grid, .contact-grid { grid-template-columns: 1fr; }
  .shop-grid, .featured-scroll { grid-template-columns: repeat(2, 1fr); }
  .map-grid, .contact-grid { gap: 2rem; }
  .hero { padding: 60px 0 72px; }
  .bb-head { gap: .9rem; }
  .theme-switch { left: 10px; bottom: 10px; padding: .3rem .4rem .3rem .7rem; }
}
@media (max-width: 480px) {
  .shop-grid, .featured-scroll { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* Ultra-wide */
@media (min-width: 1720px) {
  .container { max-width: 1400px; }
  .shop-grid, .featured-scroll { grid-template-columns: repeat(5, 1fr); }
}

.p-newlabel { font-family: var(--f-ui); font-size: .8rem; font-weight: 700; letter-spacing: .05em; opacity: .7; }
