/** Shopify CDN: Minification failed

Line 15:7 Expected identifier but found whitespace
Line 15:9 Unexpected "{"
Line 15:19 Expected ":"
Line 16:9 Expected identifier but found whitespace
Line 16:11 Unexpected "{"
Line 16:21 Expected ":"
Line 17:11 Expected identifier but found whitespace
Line 17:13 Unexpected "{"
Line 17:23 Expected ":"

**/
:root {
  --bg: {{ settings.color_bg | default: '#ffffff' }};
  --text: {{ settings.color_text | default: '#000000' }};
  --accent: {{ settings.color_accent | default: '#e53e3e' }};
  --dark: #0a0a0a;
  --max: 1440px;
  --pad: 40px;
  --ann-h: 44px;
  --font-display: 'Bayon', sans-serif;
  --font-body: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; text-transform: uppercase; }

.section { max-width: var(--max); margin: 0 auto; padding: 80px var(--pad); }
.section__heading { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.06em; margin-bottom: 32px; font-weight: 400; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: .6; margin: 0; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; background: #fff; color: #000; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border: 1px solid #fff; cursor: pointer; transition: background .2s, color .2s; }
.btn:hover { background: transparent; color: #fff; }
.btn--dark { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--dark:hover { background: transparent; color: var(--text); }
.btn--text { background: transparent; border: none; color: inherit; padding: 14px 8px; text-decoration: underline; text-underline-offset: 4px; }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* Announcement bar */
.announcement { display: flex; align-items: center; justify-content: center; gap: 16px; height: var(--ann-h); background: #000; color: #fff; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; position: relative; z-index: 20; }
.announcement__close { position: absolute; right: 16px; background: none; border: none; color: #fff; font-size: 18px; line-height: 1; cursor: pointer; opacity: .6; }
.announcement__close:hover { opacity: 1; }

/* Header */
.header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 22px var(--pad); background: var(--bg); color: var(--text); border-bottom: 1px solid rgba(0,0,0,.08); position: sticky; top: 0; z-index: 15; }
.header__nav { display: flex; align-items: center; gap: 22px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.header__nav a:hover { opacity: .6; }
.header__nav a[aria-current="page"] { opacity: .6; }
.header__logo { justify-self: center; display: flex; align-items: center; }
.header__logo-img { height: 56px; width: auto; }
.header__logo-text { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.12em; }
.header__actions { justify-self: end; display: flex; align-items: center; gap: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.header__icon { display: inline-flex; }
.header__icon svg { width: 20px; height: 20px; }
.header__currency { background: transparent; border: 1px solid currentColor; color: inherit; padding: 5px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; cursor: pointer; font-family: var(--font-body); -webkit-appearance: none; appearance: none; text-transform: uppercase; }
.header__currency option { color: #000; }
.header__currency-form { display: inline-flex; }

/* Transparent header over hero on homepage */
.template-index .header { position: absolute; top: var(--ann-h); left: 0; right: 0; background: transparent; color: #fff; border-bottom: none; }

/* Hero */
.hero { position: relative; min-height: var(--hero-min-height, 92vh); display: flex; align-items: flex-end; justify-content: center; text-align: center; color: var(--hero-text-color, #fff); background: #000; overflow: hidden; }
.hero__media, .hero__media picture, .hero__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__img { object-fit: cover; object-position: var(--hero-image-position, center center); }
.hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, #000 0%, rgba(0,0,0,.25) 40%, #000 100%); opacity: var(--hero-overlay-opacity, .45); pointer-events: none; }
.hero__content { position: relative; z-index: 1; padding: 0 24px 90px; max-width: 760px; }
.hero--content-bottom-left { justify-content: flex-start; text-align: left; }
.hero--content-bottom-right { justify-content: flex-end; text-align: right; }
.hero--content-middle-left { align-items: center; justify-content: flex-start; text-align: left; }
.hero--content-middle-center { align-items: center; justify-content: center; text-align: center; }
.hero--content-middle-right { align-items: center; justify-content: flex-end; text-align: right; }
.hero--content-bottom-left .hero__content, .hero--content-middle-left .hero__content { padding-left: var(--pad); }
.hero--content-bottom-right .hero__content, .hero--content-middle-right .hero__content { padding-right: var(--pad); }
.hero--content-bottom-left .hero__ctas, .hero--content-middle-left .hero__ctas { justify-content: flex-start; }
.hero--content-bottom-right .hero__ctas, .hero--content-middle-right .hero__ctas { justify-content: flex-end; }
.hero--content-bottom-left .hero__subhead, .hero--content-middle-left .hero__subhead { margin-left: 0; }
.hero--content-bottom-right .hero__subhead, .hero--content-middle-right .hero__subhead { margin-right: 0; }
.hero__eyebrow { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .85; margin: 0 0 14px; }
.hero__heading { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px, 6vw, 88px); line-height: .95; letter-spacing: 0.04em; white-space: nowrap; }
.hero__subhead { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; opacity: .85; margin: 18px auto 26px; max-width: 460px; }
.hero__ctas { display: flex; gap: 12px; justify-content: center; align-items: center; }

/* USP strip */
.usp { border-top: 1px solid rgba(0,0,0,.1); border-bottom: 1px solid rgba(0,0,0,.1); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: var(--max); margin: 0 auto; padding: 40px var(--pad); }
.usp__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.usp__item svg { width: 30px; height: 30px; stroke: currentColor; }
.usp__label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.usp__desc { font-size: 12px; opacity: .6; }

/* Product grid + card */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { display: block; }
.product-card__media { position: relative; aspect-ratio: 1; background: #f4f4f4; overflow: hidden; }
.product-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .25s ease; }
.product-card__img--secondary { opacity: 0; }
.product-card:hover .product-card__img--secondary { opacity: 1; }
.product-card__title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.02em; margin: 12px 0 4px; }
.product-card--soldout .product-card__img--primary { filter: grayscale(1); opacity: .5; }
.product-card--soon .product-card__img--primary { opacity: .5; }

/* Price + badges */
.price-wrap { font-size: 14px; }
.price--compare { text-decoration: line-through; opacity: .5; margin-left: 6px; }
.price--sale { color: var(--accent); }
.price--muted { opacity: .5; font-size: .9em; }
.badge { position: absolute; bottom: 8px; left: 8px; z-index: 2; padding: 4px 10px; font-size: 11px; background: #000; color: #fff; }
.badge--sale, .badge--discount { background: var(--accent); }

/* Spotlight */
.spotlight__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: var(--max); margin: 0 auto; }
.spotlight__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #f4f4f4; }
.spotlight__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.spotlight__media .spotlight__img--secondary { opacity: 0; }
.spotlight__inner:hover .spotlight__img--secondary { opacity: 1; }
.spotlight__content { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 64px; }
.spotlight__title { font-family: var(--font-display); font-weight: 400; font-size: 48px; line-height: 1; }
.spotlight__pitch { font-size: 14px; opacity: .7; max-width: 340px; }
.spotlight__price { font-size: 16px; }

/* Marquee */
.marquee { background: #000; color: #fff; overflow: hidden; padding: 16px 0; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 48px; animation: marquee 24s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.1em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Product page */
.product { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; }
.product__gallery { display: grid; gap: 10px; }
.product__image { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: #f4f4f4; }
.product__details { position: sticky; top: 120px; }
.product__eyebrow { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: .6; margin: 0; }
.product__title { font-family: var(--font-display); font-weight: 400; font-size: 44px; line-height: 1; margin: 8px 0 12px; }
.product__price { font-size: 18px; margin-bottom: 28px; }
.product__option { border: none; padding: 0; margin: 0 0 22px; }
.product__option legend { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.product__swatch { display: inline-block; margin: 0 8px 8px 0; }
.product__swatch input { position: absolute; opacity: 0; }
.product__swatch span { display: inline-block; padding: 10px 16px; border: 1px solid rgba(0,0,0,.3); font-size: 13px; cursor: pointer; }
.product__swatch input:checked + span { background: var(--text); color: var(--bg); border-color: var(--text); }
.product__add { width: 100%; margin-bottom: 24px; }
.product__description { font-size: 14px; line-height: 1.7; }

/* Collection */
.collection__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.collection__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 5vw, 64px); }
.collection__more { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.collection__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(0,0,0,.12); border-bottom: 1px solid rgba(0,0,0,.12); margin-bottom: 32px; flex-wrap: wrap; }
.collection__filters { display: flex; gap: 22px; }
.cfilter { position: relative; }
.cfilter summary { list-style: none; cursor: pointer; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.cfilter summary::-webkit-details-marker { display: none; }
.cfilter summary::after { content: ' \25BE'; opacity: .5; }
.cfilter__panel { position: absolute; top: 150%; left: 0; z-index: 6; background: #fff; border: 1px solid rgba(0,0,0,.15); padding: 14px 16px; min-width: 200px; display: flex; flex-direction: column; gap: 8px; }
.cfilter__panel label { display: flex; gap: 8px; align-items: center; font-size: 13px; cursor: pointer; }
.cfilter__panel input[type=number] { width: 90px; padding: 6px 8px; border: 1px solid rgba(0,0,0,.3); }
.collection__tools { display: flex; align-items: center; gap: 20px; font-size: 13px; }
.collection__count { opacity: .6; text-transform: uppercase; letter-spacing: 0.06em; }
.collection__sort select { border: none; background: transparent; font: inherit; cursor: pointer; text-transform: uppercase; }
.collection__views { display: flex; gap: 6px; }
.collection__views button { border: none; background: transparent; cursor: pointer; opacity: .35; font-size: 13px; padding: 2px 4px; }
.collection__views button.is-active { opacity: 1; }
.product-grid--collection { grid-template-columns: repeat(3, 1fr); }
.product-grid--collection[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.product-grid--collection[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.product-grid--collection .product-card__media { aspect-ratio: 3/4; }
@media (max-width: 749px) { .product-grid--collection, .product-grid--collection[data-cols="3"], .product-grid--collection[data-cols="4"] { grid-template-columns: repeat(2, 1fr); } }

/* Collections list */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.collection-card__media { aspect-ratio: 1; background: #f4f4f4; }
.collection-card__title { text-transform: uppercase; font-size: 14px; margin-top: 10px; }

/* Cart */
.cart__row { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,.1); }
.cart__name { font-weight: 600; text-transform: uppercase; }
.cart__footer { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.cart__subtotal { margin-right: auto; font-weight: 600; }

/* Footer */
.footer { background: var(--dark); color: #f5f5f5; padding: 80px var(--pad) 40px; }
.footer__inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.footer__handle { font-family: var(--font-display); font-size: 40px; font-weight: 400; }
.footer__handle a:hover { opacity: .7; }
.footer__cta { display: inline-block; margin-top: 12px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.footer__social { display: flex; gap: 20px; justify-content: center; margin: 40px 0 0; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__social a { opacity: .7; }
.footer__social a:hover { opacity: 1; }
.footer__copy { text-align: center; font-size: 11px; opacity: .45; margin: 40px 0 0; letter-spacing: 0.04em; }

/* Newsletter popup */
.newsletter { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; }
.newsletter.is-open { display: flex; }
.newsletter__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.newsletter__modal { position: relative; background: #111; color: #fff; padding: 48px 40px; max-width: 420px; width: 90%; text-align: center; }
.newsletter__close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; opacity: .6; }
.newsletter__close:hover { opacity: 1; }
.newsletter__title { font-family: var(--font-display); font-size: 26px; font-weight: 400; letter-spacing: 0.1em; margin: 0 0 12px; }
.newsletter__desc { font-size: 14px; opacity: .7; margin: 0 0 24px; }
.newsletter__form { display: flex; }
.newsletter__form input { flex: 1; padding: 12px 16px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; font-size: 14px; -webkit-appearance: none; }
.newsletter__form button { padding: 12px 22px; background: #fff; color: #000; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; border: none; cursor: pointer; }
.newsletter__note { font-size: 11px; opacity: .4; margin: 12px 0 0; }

.pagination { margin-top: 40px; text-align: center; font-size: 14px; }
.rte a { text-decoration: underline; }

/* ── Transitions & motion (match pages.dev feel) ── */
html { scroll-behavior: smooth; }
/* ── Global reload tile-wipe overlay (diagonal mosaic) — reveals the real UI underneath ── */
:root { --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1); }
.tile-transition { display: none; }
.js-reveal .tile-transition { display: grid; position: fixed; inset: 0; z-index: 9999; pointer-events: none; grid-template-columns: repeat(var(--columns, 6), 1fr); grid-template-rows: repeat(var(--rows, 4), 1fr); background: var(--tile-color, #ffffff); }
.js-reveal .tile { background: var(--tile-color, #ffffff); opacity: 1; transform: scale(1.02); animation: tileOut 700ms var(--reveal-ease) forwards; animation-delay: calc((var(--row) + var(--col)) * 48ms); }
@keyframes tileOut { from { opacity: 1; } to { opacity: 0; } }

/* Hero Ken-Burns zoom */
.hero--zoom .hero__img { animation: kenburns 18s ease-out infinite alternate; will-change: transform; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }

/* Sticky header solid state on homepage scroll */
.template-index .header.is-stuck { position: fixed; top: 0; background: rgba(10,10,10,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; transition: background .3s ease; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__img { animation: none; }
  .js-reveal .tile-transition { display: none; }
}

@media (max-width: 990px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight__inner { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .product__details { position: static; }
}
@media (max-width: 749px) {
  :root { --pad: 20px; }
  .header { grid-template-columns: auto 1fr; row-gap: 14px; padding-bottom: 16px; }
  .header__nav { grid-column: 1 / -1; order: 3; overflow-x: auto; gap: 18px; padding-bottom: 2px; scrollbar-width: none; }
  .header__nav::-webkit-scrollbar { display: none; }
  .header__logo { justify-self: start; }
  .hero { min-height: var(--hero-mobile-min-height, 78vh); }
  .hero__content { padding: 0 20px 56px; }
  .hero__heading { white-space: normal; }
  .hero__ctas { flex-wrap: wrap; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px var(--pad); }
}
