/* Secret Solder — theme.css. Every value measured from secretsolder.com (reference/*.json, 2026-09-26). */

@font-face { font-family: 'Geist'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/geist-400.woff2') format('woff2'); }
@font-face { font-family: 'Geist'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/geist-700.woff2') format('woff2'); }
@font-face { font-family: 'Chivo'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/chivo-700.woff2') format('woff2'); }

:root {
  --bg: #202020;
  --bg-hero: #1e1e1e;
  --surface: #232323;
  --fg: #ffffff;
  --fg-rgb: 255 255 255;
  --fg-70: rgba(255, 255, 255, .7);
  --fg-60: rgba(255, 255, 255, .6);
  --muted: #959595;
  --trust: #e0e0e0;
  --line: rgba(255, 255, 255, .19);
  --badge: #c15045;
  --urgent: #ff0000;
  --light-bg: #ffffff;
  --light-fg: #000000;
  --font-heading: 'Chivo', sans-serif;
  --font-body: 'Geist', sans-serif;
  --margin: 40px;
  --page: 1920px;
  --ease-fade: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.33, 1, .68, 1);
  --h-xl: clamp(36px, 4.8vw, 48px);
  color-scheme: dark;
}
@media (max-width: 749px) { :root { --margin: 16px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-size: 14px; line-height: 1.4; font-weight: 400;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
strong, b { font-weight: 700; }
:focus-visible { outline: .09375rem solid currentColor; outline-offset: .2em; }
.screen-reader-text, .sr-only { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: #fff; color: #000; padding: 12px 18px; }
.skip-link:focus { left: 8px; }

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: .125s ease-in-out both ss-fade-out; }
::view-transition-new(root) { animation: .125s ease-in-out both ss-fade-in; }
@keyframes ss-fade-out { to { opacity: 0; } }
@keyframes ss-fade-in { from { opacity: 0; } }

.page-width { width: 100%; max-width: calc(var(--page) + var(--margin) * 2); margin-inline: auto; padding-inline: var(--margin); }

/* ---------- type presets (Horizon) ---------- */
.t-h1 { font-family: var(--font-heading); font-weight: 700; font-size: var(--h-xl); line-height: 1.1; text-transform: uppercase; letter-spacing: 0; }
.t-h3 { font-family: var(--font-heading); font-weight: 700; font-size: 32px; line-height: 1; letter-spacing: -.03em; text-transform: uppercase; }
.t-h4 { font-family: var(--font-body); font-weight: 400; font-size: 24px; line-height: 1.1; text-transform: uppercase; }
.t-h6 { font-family: var(--font-body); font-weight: 400; font-size: 14px; line-height: 1.1; letter-spacing: .03em; }
.t-body { font-size: 14px; line-height: 1.4; }

/* ---------- buttons ---------- */
.btn { white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 16px 24px; font-family: var(--font-body); font-size: 14px; line-height: 1.4; text-align: center; cursor: pointer;
  transition: background-color .2s var(--ease-out), color .2s var(--ease-out), box-shadow .2s var(--ease-out), transform .2s var(--ease-out); }
.btn--outline { border-radius: 8px; box-shadow: inset 0 0 0 2px #fff; color: #fff; background: transparent; }
.btn--outline:hover { background: #fff; color: #000; }
.btn--solid { background: #fff; color: #000; border-radius: 0; }
.btn--solid:hover { background: #dedede; }
.btn--pill { min-height: 46px; padding: 12px 18px; border: 1px solid #fff; border-radius: 999px; }
.btn--pill:hover { background: #fff; color: #000; }
.btn--dark { background: #0a0a0a; color: #fff; border-radius: 14px; padding: 18px 38px; min-height: 54px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: 600; letter-spacing: .02em; line-height: normal;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18); transition: background-color .15s ease-in-out, transform .15s ease-in-out, box-shadow .15s ease-in-out; }
.btn--dark:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 0, 0, .26); }
.btn--block { width: 100%; }

/* ---------- header ---------- */
.ss-header { position: relative; z-index: 40; height: 70px; }
.ss-header__inner { height: 100%; display: flex; align-items: center; }
.ss-header__logo { display: flex; align-items: center; padding: 6px 16px; margin-left: -16px; height: 48px; }
.ss-header__logo img { width: 64px; height: 36px; object-fit: contain; }
.ss-nav ul { list-style: none; display: flex; margin: 0; padding: 0; }
.ss-nav a { display: flex; align-items: center; height: 48px; padding: 0 10px; font-family: var(--font-heading); font-weight: 700; font-size: 10px; text-transform: uppercase; color: var(--fg-70); transition: color .15s ease-in-out; }
.ss-nav a:hover, .ss-nav .is-current > a { color: #fff; }
.ss-header__actions { margin-left: auto; display: flex; align-items: center; }
.ss-icon-btn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: #fff; position: relative; }
.ss-icon-btn svg { width: 20px; height: 20px; }
.ss-icon-btn:hover svg { transform: scale(1.06); }
.ss-icon-btn svg { transition: transform .2s var(--ease-out); }
.ss-currency { display: inline-flex; align-items: center; gap: 2px; height: 48px; padding: 0 6px; font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: #fff; margin-right: 2px; }
.ss-currency svg { width: 12px; height: 12px; margin-top: 2px; transition: transform .2s var(--ease-out); }
.ss-currency[aria-expanded="true"] svg { transform: rotate(180deg); }
.ss-cart-count { position: absolute; top: 7px; right: 5px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 99px; background: #fff; color: #000; font-size: 10px; line-height: 16px; font-weight: 700; text-align: center; transform: scale(0); transition: transform .3s var(--ease-fade); }
.ss-cart-count.has-items { transform: scale(1); }
.ss-cart-count.bump { animation: ss-bump .45s var(--ease-fade); }
@keyframes ss-bump { 0% { transform: scale(1); } 40% { transform: scale(1.45); } 100% { transform: scale(1); } }
.ss-mobile-only { display: none !important; }
body.home .ss-header { position: absolute; top: 0; left: 0; right: 0; }
body.home .ss-header__logo { display: none; }
body.home .ss-nav { margin-left: -10px; }

@media (max-width: 989px) {
  .ss-nav a { padding: 0 7px; }
}
@media (max-width: 749px) {
  .ss-header { height: 60px; }
  .ss-desktop-only { display: none !important; }
  .ss-mobile-only { display: inline-flex !important; }
  .ss-nav { display: none; }
  .ss-header__inner { position: relative; padding-inline: 0; }
  .ss-header__logo { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; padding: 0; height: 60px; }
  .ss-header__logo img { width: 50px; height: 28px; }
  .ss-header__actions { margin-left: auto; }
}

/* ---------- homepage sections ---------- */
.s-logo-banner { height: 145px; display: flex; align-items: center; justify-content: center; }
.s-logo-banner img { height: 145px; width: auto; max-width: 100%; object-fit: contain; }
@media (max-width: 749px) { .s-logo-banner { height: 112px; } .s-logo-banner img { height: 112px; } }

.s-marquee { overflow: hidden; height: 62px; }
.marquee__track { display: flex; width: max-content; gap: 100px; animation: ss-marquee var(--marquee-dur, 35.3553s) linear infinite; will-change: transform; }
.marquee__group { display: flex; align-items: center; gap: 100px; flex-shrink: 0; }
.marquee__group p { font-size: 14px; line-height: 1.1; letter-spacing: .03em; white-space: nowrap; }
.marquee__group .t-h1 { white-space: nowrap; }
.s-marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes ss-marquee { to { transform: translateX(calc(-25% - 25px)); } }
@media (max-width: 749px) { .s-marquee { height: 49px; } }

.s-hero { display: block; height: 450px; overflow: hidden; background: var(--bg-hero); position: relative; }
.s-hero img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.035); transition: transform 1.6s var(--ease-fade); }
.s-hero.is-in img { transform: scale(1); }
.s-hero:hover img { transform: scale(1.012); }
@media (max-width: 749px) { .s-hero { height: 240px; } }

.s-shop-now { display: flex; justify-content: center; }
.s-shop-now .btn { width: 258px; }
@media (max-width: 749px) { .s-shop-now .btn { width: auto; } }

.s-trust { height: 53px; display: flex; align-items: center; justify-content: center; }
.s-trust ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; gap: 22px; }
.s-trust li { font-size: 13px; line-height: 1.4; letter-spacing: .2px; color: var(--trust); white-space: nowrap; display: flex; align-items: center; gap: 22px; }
.s-trust li + li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: rgba(224, 224, 224, .45); }
@media (max-width: 749px) {
  .s-trust { height: 52px; }
  .s-trust ul { gap: 14px; }
  .s-trust li { font-size: 12px; gap: 14px; }
  .s-trust li + li::before { display: none; }
}

.s-collect { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.s-collect .t-h1 { line-height: 1.1; }
.ss-social { display: flex; gap: 11.2px; }
.ss-social a { width: 24px; height: 24px; display: inline-flex; color: #fff; transition: transform .2s var(--ease-out), opacity .2s; }
.ss-social a:hover { transform: translateY(-2px); opacity: .85; }
.ss-social svg { width: 24px; height: 24px; }
.s-collect .video-frame { width: 79%; aspect-ratio: 1074 / 544; }
@media (max-width: 749px) { .s-collect .video-frame { width: 100%; aspect-ratio: 358 / 204; } }
.video-frame { position: relative; display: flex; align-items: center; justify-content: center; }
.video-frame video { width: 100%; height: 100%; object-fit: contain; background: transparent; }

.s-custom { padding-bottom: 41px; }
.s-custom__head { max-width: 100%; }
.s-custom__sub { max-width: 32.5em; margin: 0 auto; }
.s-custom__card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.s-custom__card img { width: 300px; height: 300px; object-fit: cover; transition: transform .6s var(--ease-fade); }
.s-custom__card:hover img { transform: translateY(-4px) rotate(-1deg); }
.s-custom__meta { display: flex; flex-direction: column; align-items: center; }
.s-custom__meta .price { font-weight: 700; }
.ss-stars { display: inline-flex; gap: 2px; height: 20px; align-items: center; }
.ss-stars svg { width: 16px; height: 16px; }
.s-custom__meta em { font-style: italic; }
.s-custom .btn--dark { margin-top: 41px; width: 222px; }
@media (max-width: 749px) {
  .s-custom__sub { margin: 0; }
  .s-custom__card img { width: 254px; height: 254px; }
}

.s-igvideo { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-bottom: 32px; }
.s-igvideo .video-frame { width: 28%; aspect-ratio: 381 / 676; }
.s-igvideo p { text-align: center; }
@media (max-width: 749px) { .s-igvideo .video-frame { width: 65%; aspect-ratio: 233 / 413; } .s-igvideo { padding-bottom: 22px; } }

.s-products { padding-block: 48px; }
.s-products .t-h3 { margin-bottom: 28px; }
.ss-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 12px; align-items: start; }
@media (max-width: 749px) {
  .s-products { padding-block: 33px 35px; }
  .ss-grid--scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin-inline: calc(var(--margin) * -1); padding-inline: var(--margin); scrollbar-width: none; }
  .ss-grid--scroll::-webkit-scrollbar { display: none; }
  .ss-grid--scroll > * { flex: 0 0 234px; scroll-snap-align: start; }
}

/* product card (Horizon) */
.card { position: relative; display: flex; flex-direction: column; gap: 4px; }
.card__media { position: relative; display: block; overflow: hidden; background: var(--bg); }
.card__media img { width: 100%; height: auto; transition: opacity .45s var(--ease-out), transform .9s var(--ease-fade); }
.card__media .card__img2 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; }
.card:hover .card__media .card__img2 { opacity: 1; }
.card:hover .card__media img:first-child { transform: scale(1.03); }
.card__body { display: flex; flex-direction: column; align-items: center; gap: 2px; padding-top: 4px; text-align: center; }
.card__title { font-size: 20px; line-height: 1.4; letter-spacing: -.03em; }
.card__price { font-size: 14px; line-height: 1.1; letter-spacing: .03em; }
.card__price del { opacity: .6; margin-right: 6px; }
.card__badge { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--badge); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 12px; line-height: 1; text-transform: uppercase; padding: 6px 10px; border-radius: 2px; }
.card--left .card__body { align-items: flex-start; text-align: left; }
.card.is-soldout .card__media img { opacity: .82; }

.s-storevideo { position: relative; height: 585px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.s-storevideo video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.s-storevideo img { position: relative; z-index: 1; width: 299px; height: 168px; object-fit: contain; filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .35)); }
@media (max-width: 749px) { .s-storevideo { height: 400px; } .s-storevideo img { width: 100%; height: 219px; } }

.s-instores { padding-block: 48px; }
.s-instores .t-h4 { margin-bottom: 28px; }
.ss-slides { display: flex; gap: 12px; }
.ss-slides figure { margin: 0; flex: 0 0 429px; aspect-ratio: 429 / 572; overflow: hidden; }
.ss-slides img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-fade); }
.ss-slides figure:hover img { transform: scale(1.04); }
@media (max-width: 749px) {
  .s-instores { padding-block: 34px 34px; }
  .ss-slides { overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--margin) * -1); padding-inline: var(--margin); scrollbar-width: none; }
  .ss-slides::-webkit-scrollbar { display: none; }
  .ss-slides figure { flex-basis: 310px; scroll-snap-align: start; }
}

.s-packaging { height: 720px; overflow: hidden; }
.s-packaging img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 749px) { .s-packaging { height: 560px; } }

.s-reviews { padding-top: 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.s-reviews__head { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.s-reviews__head .t-h6 p + p { margin-top: 7px; }
.s-reviews__list { width: 100%; display: flex; flex-direction: column; gap: 12px; }

/* review card — HTML re-render of the client's Judge.me screenshots, proportions measured on the 1080px originals.
   --u = 1% of the card's rendered width (full-bleed on the homepage, page-width on the customizer page). */
.rv { --u: 1vw; display: block; width: 100%; background: var(--bg); padding: calc(var(--u) * 3.333); color: #fff; text-align: left; }
.rv__card { border: 1px solid #3c3c3c; border-radius: calc(var(--u) * 2.9); padding: calc(var(--u) * 5.2) calc(var(--u) * 6.11) calc(var(--u) * 6.1); transition: border-color .3s; }
.rv:hover .rv__card { border-color: #5a5a5a; }
.rv__top { display: flex; justify-content: space-between; align-items: center; min-height: calc(var(--u) * 2.87); }
.rv__shop { font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: calc(var(--u) * 2.45); line-height: 1; }
.rv__jm { display: inline-flex; align-items: center; gap: calc(var(--u) * .9); color: #2dbba3; font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: calc(var(--u) * 2.35); line-height: 1; }
.rv__jm svg { width: calc(var(--u) * 2.6); height: calc(var(--u) * 2.6); }
.rv__rating { display: flex; align-items: center; gap: calc(var(--u) * 2.2); margin-top: calc(var(--u) * 5.3); }
.rv__stars { display: inline-flex; gap: calc(var(--u) * .55); }
.rv__stars svg { width: calc(var(--u) * 3.3); height: calc(var(--u) * 3.3); }
.rv__pill { display: inline-flex; align-items: center; gap: calc(var(--u) * .9); height: calc(var(--u) * 3.4); padding: 0 calc(var(--u) * 1.45); border: calc(var(--u) * .15) solid rgba(45, 187, 163, .5); background: rgba(45, 187, 163, .1); border-radius: 999px; color: #2dbba3; font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: calc(var(--u) * 1.95); }
.rv__pill svg { width: calc(var(--u) * 1.9); height: calc(var(--u) * 1.9); }
.rv__text { margin-top: calc(var(--u) * 5.3); font-family: Arial, Helvetica, sans-serif; font-size: calc(var(--u) * 3.78); line-height: calc(var(--u) * 5.28); }
.rv__name { margin-top: calc(var(--u) * 4.6); font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: calc(var(--u) * 2.75); line-height: 1; }
.rv__product { margin-top: calc(var(--u) * 2.2); font-family: Arial, Helvetica, sans-serif; color: #9a9a9a; font-size: calc(var(--u) * 2.2); line-height: 1; }
.s-reviews .btn--outline { min-width: 115px; margin-top: 0; white-space: nowrap; }

.s-taylor { padding-block: 40px; text-align: center; }
.s-taylor h2 { font-family: var(--font-body); font-weight: 700; font-size: 32px; line-height: 1.1; text-transform: uppercase; }
.s-taylor__sub { margin-top: 12px; font-size: 16px; line-height: 1.4; }
.stores { display: grid; grid-template-columns: 1fr 1fr; margin-top: 41px; text-align: left; }
.store { border: 2px solid var(--bg); background: var(--surface); padding-bottom: 42px; }
.store__img { aspect-ratio: 676 / 507; overflow: hidden; }
.store__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-fade); }
.store:hover .store__img img { transform: scale(1.035); }
.store__body { padding: 24px 24px 0; display: flex; flex-direction: column; gap: 10px; }
.store__name { font-family: var(--font-body); font-weight: 700; font-size: 20px; line-height: 1; letter-spacing: -.03em; text-transform: uppercase; }
.store__line { font-size: 14px; line-height: 1.6; }
.store__line a:hover { text-decoration: underline; }
@media (max-width: 749px) {
  .s-taylor h2 { font-size: 22.4px; padding-inline: 20px; }
  .s-taylor__sub { padding-inline: 20px; }
  .stores { grid-template-columns: 1fr; margin-top: 40px; }
  .store__name { font-size: 18px; }
}

.s-faq { padding-block: 48px; }
.s-faq .t-h3 { margin-bottom: 33px; }
.faq details { border: 0; }
.faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 11px 0 12px; cursor: pointer; font-size: 24px; line-height: 1.1; text-transform: uppercase; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 12px; height: 12px; flex: 0 0 12px; transition: transform .3s var(--ease-fade); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq .faq__a { max-width: 455px; font-size: 14px; line-height: 1.4; padding-bottom: 12px; }
.faq details .faq__a { animation: ss-faq-open .35s var(--ease-fade); }
@keyframes ss-faq-open { from { opacity: 0; transform: translateY(-6px); } }
@media (max-width: 749px) { .s-faq { padding-block: 33px 37px; } .s-faq .t-h3 { margin-bottom: 25px; } }

.s-values { padding-block: 48px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; text-align: center; }
.value { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.value svg { width: 32px; height: 32px; }
.value__text { display: flex; flex-direction: column; gap: 4px; }
.value .t-h3 { line-height: 1; }
@media (max-width: 749px) { .s-values { grid-template-columns: 1fr; gap: 16px; padding-block: 33px; } }

.s-igbutton { padding-block: 16px; display: flex; justify-content: center; }
.s-igbutton svg { width: 12px; height: 12px; }

.s-leave { padding-block: 32px; display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center; }
.s-leave__intro { max-width: 455px; }
.ss-form { width: 100%; max-width: 680px; display: flex; flex-direction: column; gap: 14.4px; text-align: left; }
.ss-form__row { display: flex; gap: 14.4px; }
.ss-form__row > * { flex: 1; min-width: 0; }
.ss-input { width: 100%; height: 56px; padding: 16px 20px; background: var(--surface); color: #fff; border: 2px solid #fff; border-radius: 0; font-size: 14px; line-height: 1.4; transition: border-color .2s, box-shadow .2s; }
textarea.ss-input { height: 232px; resize: vertical; }
.ss-input::placeholder { color: #fff; opacity: 1; }
.ss-input:focus { outline: none; box-shadow: 0 0 0 1px #fff; }
.ss-form .btn--solid { align-self: flex-start; width: 93px; }
.ss-form__note { font-size: 14px; }
.ss-form__note:empty { display: none; }
.ss-form__note.is-ok { color: #fff; }
.ss-form__note.is-err { color: #ff6b6b; }
.ss-hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 749px) { .s-leave { padding-block: 22px; gap: 24px; } .s-leave .ss-form { margin-top: 34px; } .ss-form__row { flex-direction: column; } }

/* ---------- footer ---------- */
.ft-signup { padding-block: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.ft-signup__text { display: flex; flex-direction: column; gap: 6px; }
.ft-signup__text .t-h3 { line-height: 1; }
.ft-signup form { display: flex; gap: 8px; }
.ft-signup .ss-pill-input { flex: 1; height: 54px; padding: 16px 28px; background: var(--surface); border: 1px solid #fff; border-radius: 100px; color: #fff; font-size: 14px; }
.ft-signup .ss-pill-input::placeholder { color: var(--fg-70); }
.ft-signup .btn--solid { min-width: 104px; padding: 16px 28px; white-space: nowrap; }
.ft-list { padding-block: 12px 11px; }
.ft-list__label { font-size: 14px; line-height: 1.4; padding-bottom: 22px; }
.ft-list form { display: flex; align-items: center; border-bottom: 2px solid #fff; }
.ft-list input { flex: 1; height: 44px; padding: 12px 0; background: none; border: 0; color: #fff; font-size: 14px; }
.ft-list input::placeholder { color: var(--fg-70); }
.ft-list input:focus { outline: none; }
.ft-list button { padding: 9px 0; font-size: 14px; }
.ft-util { min-height: 54px; display: flex; justify-content: space-between; align-items: flex-start; padding-top: 1px; font-size: 12px; line-height: 1.4; color: var(--fg-60); }
.ft-util a:hover, .ft-util button:hover { color: #fff; }
.ft-util button { font-size: 12px; color: var(--fg-60); }
.ss-policies { position: relative; }
.ss-popover { position: absolute; bottom: calc(100% + 10px); right: 0; min-width: 180px; padding: 10px 0; background: var(--surface); border-radius: 4px; box-shadow: 0 4px 20px rgba(0, 0, 0, .35); opacity: 0; visibility: hidden; transform: translateY(6px); pointer-events: none; transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); z-index: 30; }
.ss-popover.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.ss-popover a { display: block; padding: 8px 16px; color: #fff; font-size: 13px; white-space: nowrap; }
.ss-popover a:hover { background: rgba(255, 255, 255, .06); }
@media (max-width: 749px) {
  .ft-signup { grid-template-columns: 1fr; padding-block: 26px 24px; }
  .ft-signup form { flex-direction: column; }
  .ft-signup .btn--solid { width: 100%; }
  .ft-util { flex-direction: column; align-items: center; gap: 24px; padding-bottom: 26px; text-align: center; }
  .ss-popover { right: 50%; transform: translate(50%, 6px); }
  .ss-popover.is-open { transform: translate(50%, 0); }
}

/* ---------- drawers / overlays (Shopify: light panels over a dimmed page) ---------- */
.ss-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(0, 0, 0, .15); -webkit-backdrop-filter: brightness(.75); backdrop-filter: brightness(.75); opacity: 0; pointer-events: none; transition: opacity .125s ease-in-out; }
.ss-overlay.is-open { opacity: 1; pointer-events: auto; }
.ss-light { background: #fff; color: #000; color-scheme: light; }
.ss-drawer { position: fixed; top: 0; bottom: 0; right: 0; z-index: 100; width: 400px; max-width: 95vw; display: flex; flex-direction: column; transform: translateX(24px); opacity: 0; visibility: hidden; transition: transform .125s ease-in-out, opacity .125s ease-in-out, visibility 0s linear .125s; }
.ss-drawer.is-open { transform: none; opacity: 1; visibility: visible; transition: transform .125s ease-in-out, opacity .125s ease-in-out, visibility 0s; }
.ss-drawer--left { left: 0; right: auto; transform: translateX(-100%); opacity: 1; transition: transform .2s var(--ease-out), visibility 0s linear .2s; }
.ss-drawer--left.is-open { transform: none; transition: transform .2s var(--ease-out), visibility 0s; }
.ss-close { color: inherit; }
.ss-close svg { width: 18px; height: 18px; }

.cd-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 6px 24px; }
.cd-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 400; font-size: 24px; line-height: 1; text-transform: uppercase; }
.cd-count { min-width: 22px; height: 22px; padding: 0 6px; border-radius: 99px; background: #e8e8e8; font-size: 12px; line-height: 22px; text-align: center; }
.cd-body { flex: 1; overflow-y: auto; padding: 6px 24px 0 20px; }
.cd-foot { padding: 0 24px 24px; }
.cart-line { display: grid; grid-template-columns: 53px 1fr auto; gap: 16px; padding: 8px 0 14px; animation: ss-line-in .35s var(--ease-fade); }
@keyframes ss-line-in { from { opacity: 0; transform: translateX(12px); } }
.cart-line img { width: 53px; height: 53px; object-fit: cover; background: #202020; }
.cart-line__title { display: block; font-size: 16px; line-height: 1.45; }
.cart-line__unit { font-size: 14px; color: #666; margin-top: 2px; }
.cart-line__unit del { margin-right: 6px; }
.cart-line__meta { font-size: 12px; color: #666; margin-top: 2px; }
.cart-line__actions { display: flex; align-items: center; gap: 22px; margin-top: 12px; }
.qty { display: inline-flex; align-items: center; background: #f0f0f0; height: 48px; }
.qty button { width: 42px; height: 48px; display: inline-flex; align-items: center; justify-content: center; color: #000; }
.qty button svg { width: 12px; height: 12px; }
.qty span { min-width: 44px; text-align: center; font-size: 14px; }
.cart-line__remove svg { width: 16px; height: 16px; }
.cart-line__remove:hover { opacity: .6; }
.cart-line__price { font-size: 14px; text-align: right; white-space: nowrap; }
.cart-line__price del { display: block; color: #777; font-size: 12px; }
.cd-discount { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
.cd-discount summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-size: 12px; cursor: pointer; }
.cd-discount summary::-webkit-details-marker { display: none; }
.cd-discount summary svg { width: 12px; height: 12px; transition: transform .2s var(--ease-out); }
.cd-discount[open] summary svg { transform: rotate(45deg); }
.cd-discount form { display: flex; gap: 8px; padding-bottom: 14px; }
.cd-discount input { flex: 1; height: 44px; padding: 0 12px; border: 1px solid #bbb; color: #000; background: #fff; }
.cd-discount button { padding: 0 16px; background: #000; color: #fff; }
.cd-codes { font-size: 12px; padding-bottom: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.cd-codes button { background: #f0f0f0; padding: 4px 8px; }
.cd-total { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0 16px; font-size: 16px; }
.cd-note { font-size: 12px; color: #333; margin-bottom: 20px; }
.cd-note a { color: var(--badge); }
.btn--black { background: #000; color: #fff; border-radius: 0; }
.btn--black:hover { background: #232323; }
.cart-empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 4px; padding-bottom: 60px; }
.cart-empty h3 { font-family: var(--font-body); font-weight: 400; font-size: 24px; text-transform: uppercase; line-height: 1.1; }
.cart-empty p { font-size: 14px; }
.cart-empty p a { color: var(--badge); text-decoration: underline; }
.cart-empty .btn { margin-top: 30px; min-height: 46px; padding: 12px 32px; }
.ss-drawer.is-busy .cd-body { opacity: .55; pointer-events: none; }
@media (max-width: 749px) { .ss-drawer { width: 370.5px; } }

/* search — centred white modal (desktop), full screen (mobile); slides in from below */
.ss-search { position: fixed; z-index: 100; left: 50%; top: 126px; width: 672px; max-width: calc(100vw - 32px); max-height: calc(100vh - 252px); min-height: 150px; display: flex; flex-direction: column; border-radius: 4px; box-shadow: 0 4px 20px rgba(0, 0, 0, .15); overflow: hidden;
  transform: translate(-50%, 40px); opacity: 0; visibility: hidden; transition: transform .3s cubic-bezier(.32, .72, 0, 1), opacity .3s cubic-bezier(.32, .72, 0, 1), visibility 0s linear .3s; }
.ss-search.is-open { transform: translate(-50%, 0); opacity: 1; visibility: visible; transition: transform .3s cubic-bezier(.32, .72, 0, 1), opacity .3s cubic-bezier(.32, .72, 0, 1), visibility 0s; }
.ss-search__bar { display: flex; align-items: stretch; border-bottom: 1px solid #e5e5e5; flex: 0 0 auto; }
.ss-search__bar form { flex: 1; display: flex; align-items: center; gap: 10px; padding: 0 16px; height: 52px; }
.ss-search__bar svg { width: 18px; height: 18px; flex: 0 0 18px; }
.ss-search__bar input { flex: 1; height: 100%; border: 0; background: none; color: #000; font-size: 16px; }
.ss-search__bar input:focus { outline: none; }
.ss-search__bar input::-webkit-search-cancel-button { display: none; }
.ss-search__clear { font-size: 14px; color: #666; padding: 0 4px; }
.ss-search__clear[hidden] { display: none; }
.ss-search__x { width: 48px; border-left: 1px solid #e5e5e5; display: inline-flex; align-items: center; justify-content: center; }
.ss-search__body { overflow-y: auto; padding: 16px 20px 72px; position: relative; flex: 1; }
.ss-search__pills { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin: 0 -20px 18px; padding: 0 20px; }
.ss-search__pills::-webkit-scrollbar { display: none; }
.ss-search__pills a { flex: 0 0 auto; padding: 7px 12px; border-radius: 999px; background: #efefef; font-size: 14px; white-space: nowrap; }
.ss-search__pills a:hover { background: #e2e2e2; }
.ss-search__label { font-size: 14px; margin-bottom: 8px; }
.ss-search__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px 14px; }
.ss-search__item { display: flex; flex-direction: column; gap: 4px; font-size: 14px; line-height: 1.3; animation: ss-line-in .35s var(--ease-fade) both; }
.ss-search__item img { width: 100%; aspect-ratio: 147 / 184; object-fit: cover; background: #202020; margin-bottom: 12px; transition: transform .4s var(--ease-fade); }
.ss-search__item:hover img { transform: scale(1.02); }
.ss-search__all { position: sticky; bottom: -56px; display: flex; justify-content: center; margin-top: 18px; pointer-events: none; }
.ss-search__all a { pointer-events: auto; background: #000; color: #fff; padding: 14px 24px; font-size: 14px; }
.ss-search__none { font-size: 14px; color: #555; padding: 8px 0 12px; }
@media (max-width: 749px) {
  .ss-search { top: 0; left: 0; width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; border-radius: 0; transform: translateY(40px); }
  .ss-search.is-open { transform: none; }
  .ss-search__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* account popover (desktop) */
.ss-account-pop { position: absolute; top: calc(100% + 10px); right: -40px; width: 352px; padding: 24px; background: #fff; color: #000; border-radius: 4px; box-shadow: 0 4px 20px rgba(0, 0, 0, .15); z-index: 60; opacity: 0; visibility: hidden; transform: translateY(6px); pointer-events: none; transition: opacity .125s ease-in-out, transform .125s ease-in-out; bottom: auto; min-width: 0; }
.ss-account-pop.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.ss-account-pop h3 { font-family: var(--font-heading); font-weight: 700; font-size: 16px; text-transform: uppercase; margin-bottom: 16px; }
.ss-account-pop .btn { width: 100%; min-height: 46px; padding: 12px; }
.ss-account-pop__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.ss-account-pop__row a { display: flex; align-items: center; justify-content: center; gap: 8px; height: 46px; border: 2px solid #000; border-radius: 8px; font-size: 14px; }
.ss-account-pop__row a:hover { background: #f2f2f2; }
.ss-account-pop__row svg { width: 16px; height: 16px; }

/* mobile menu — Shopify's light #CAC8C6 panel */
.ss-menu { background: #cac8c6; color: #000; width: 370.5px; }
.ss-menu__head { padding: 14px 12px 0; }
.ss-menu__body { flex: 1; overflow-y: auto; padding: 8px 20px 24px; display: flex; flex-direction: column; }
.ss-menu nav ul { list-style: none; margin: 0; padding: 0; }
.ss-menu nav a { display: block; padding: 11px 0 12px; font-family: var(--font-heading); font-weight: 700; font-size: 28px; line-height: 1.3; text-transform: uppercase; color: #000; opacity: 0; transform: translateX(-10px); transition: opacity .3s var(--ease-fade), transform .3s var(--ease-fade); }
.ss-menu.is-open nav a { opacity: 1; transform: none; }
.ss-menu nav li:nth-child(2) a { transition-delay: .03s; } .ss-menu nav li:nth-child(3) a { transition-delay: .06s; }
.ss-menu nav li:nth-child(4) a { transition-delay: .09s; } .ss-menu nav li:nth-child(5) a { transition-delay: .12s; }
.ss-menu nav li:nth-child(6) a { transition-delay: .15s; } .ss-menu nav li:nth-child(7) a { transition-delay: .18s; }
.ss-menu__loc { display: flex; align-items: center; gap: 12px; margin-top: auto; padding: 60px 0 18px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; }
.ss-menu__loc svg { width: 12px; height: 12px; transform: rotate(-90deg); }
.ss-menu__cards { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; margin: 0 -20px; padding: 0 20px; }
.ss-menu__cards::-webkit-scrollbar { display: none; }
.ss-menu__cards a { flex: 0 0 130px; font-size: 14px; line-height: 1.3; }
.ss-menu__cards img { width: 130px; height: 162px; object-fit: cover; background: #202020; margin-bottom: 10px; }

/* fly-to-cart (600ms) */
.ss-fly { position: fixed; z-index: 140; pointer-events: none; object-fit: cover; border-radius: 4px; box-shadow: 0 8px 24px rgba(0, 0, 0, .35); will-change: transform, opacity; }

/* sticky header — hides on scroll down, returns on scroll up (133ms), compact with the small logo */
.ss-header__bar { position: relative; height: 100%; }
.ss-header.is-pinned .ss-header__bar { position: fixed; top: 0; left: 0; right: 0; height: 70px; background: var(--bg); z-index: 45; animation: ss-hdr-in .133s ease-in-out both; }
.ss-header.is-pinned.is-hidden .ss-header__bar { opacity: 0; pointer-events: none; animation: none; transition: opacity .125s ease-in-out; }
@keyframes ss-hdr-in { from { opacity: 0; } }
body.home .ss-header.is-pinned .ss-header__logo { display: flex; }
body.home .ss-header.is-pinned .ss-nav { margin-left: 0; }
@media (max-width: 749px) { .ss-header.is-pinned .ss-header__bar { height: 60px; } }

/* ---------- modal (customizer) ---------- */
.ss-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(0, 0, 0, .7); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease-in-out, visibility 0s linear .25s; }
.ss-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .25s ease-in-out, visibility 0s; }
.ss-modal__panel { position: relative; width: min(1100px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; background: var(--bg); border-radius: 14px; transform: translateY(18px) scale(.985); transition: transform .35s var(--ease-fade); }
.ss-modal.is-open .ss-modal__panel { transform: none; }
.ss-modal__close { position: absolute; top: 10px; right: 10px; z-index: 5; }

/* ---------- toast ---------- */
.ss-toast { position: fixed; left: 50%; bottom: 24px; z-index: 130; transform: translate(-50%, 20px); opacity: 0; background: #fff; color: #000; padding: 12px 18px; font-size: 14px; pointer-events: none; transition: opacity .25s, transform .35s var(--ease-fade); }
.ss-toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-fade), transform .6s var(--ease-fade); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ---------- light sections (white on Shopify, kept white) ---------- */
.scheme-light { background: var(--light-bg); color: var(--light-fg); color-scheme: light; }

/* customizer plugin: our buttons open its modal; hide its own trigger */
.ss-customizer-host { position: static; }
.ss-customizer-host .bcz-open-wrap { display: none !important; }
/* customizer modal title: Shopify's theme styles it as its h3 (Chivo, uppercase) */
.bcz-title { font-family: var(--font-heading) !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 0; }
