/** Shopify CDN: Minification failed

Line 550:0 Unexpected "}"
Line 732:13 Expected identifier but found whitespace
Line 732:14 Unexpected "1px"

**/
/* ── JAYLOGNE FRAGRANCES THEME ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000;
  --white: #fff;
  --border: #1e1e1e;
  --gray: #555;
  --nav-h: 48px;
  --gold: #C49B40;
  --gold-light: #D4AF6E;
  --gold-dim: rgba(196,155,64,0.08);
  --gold-glow: rgba(196,155,64,0.12);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

button { font-family: inherit; letter-spacing: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.skip-link { position: absolute; top: -100%; left: 0; z-index: 9999; background: var(--gold); color: #000; padding: 8px 16px; font-size: 13px; }
.skip-link:focus { top: 0; }

/* ── ANNOUNCEMENT BAR ───────────────────────────── */
.announcement-bar {
  background: var(--gold);
  color: #060606;
  text-align: center;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  transition: top 0.3s;
}
.site-header.has-announcement { top: 36px; }

.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 13px;
  padding: 0;
  transition: color 0.15s;
}
.nav-menu-btn:hover { color: var(--gold-light); }
.nav-menu-icon { display: flex; flex-direction: column; gap: 3.5px; }
.nav-menu-icon span { display: block; width: 14px; height: 1px; background: currentColor; }

.nav-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.nav-brand img { height: 42px; width: auto; display: block; }
.nav-brand-text {
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-search-btn, .nav-account-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 13px;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s;
}
.nav-search-btn:hover, .nav-account-btn:hover { color: var(--gold-light); }

.nav-cart-btn {
  font-size: 13px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--white);
  transition: color 0.15s;
  position: relative;
}
.nav-cart-btn:hover { color: var(--gold-light); }
.nav-cart-count {
  font-size: 9px;
  vertical-align: super;
  line-height: 0;
}

/* ── MENU OVERLAY ───────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}
.menu-overlay.open { visibility: visible; pointer-events: all; }

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.25s;
}
.menu-overlay.open .menu-backdrop { opacity: 1; }

.menu-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 272px;
  background: var(--black);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.menu-overlay.open .menu-panel { transform: translateX(0); }

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.menu-top-label { font-size: 13px; }
.menu-close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.menu-links { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.menu-link {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  display: block;
  transition: background 0.15s, color 0.15s;
}
.menu-link:hover { background: #0d0d0d; color: var(--gold-light); }

.menu-socials { padding: 20px 16px; display: flex; flex-direction: column; gap: 12px; }
.menu-socials a { font-size: 13px; color: var(--gray); transition: color 0.15s; }
.menu-socials a:hover { color: var(--gold-light); }

/* ── MAIN ────────────────────────────────────────── */
main { padding-top: var(--nav-h); }
.has-announcement ~ main { padding-top: calc(var(--nav-h) + 36px); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  max-height: 700px;
  background: #020202;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.hero-ethereal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.38;
}
.hero-ethereal-inner {
  position: absolute;
  inset: -100px;
  filter: url(#ethereal-filter) blur(4px);
}
.hero-ethereal-color {
  width: 100%;
  height: 100%;
  background-color: rgba(196,155,64,1);
  mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hero-ethereal-noise {
  position: absolute;
  inset: 0;
  background-image: url('https://framerusercontent.com/images/g0QcWrxr87K0ufOxIUFBakwYA8.png');
  background-size: 240px;
  background-repeat: repeat;
  opacity: 0.5;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px;
  opacity: 0.035;
  pointer-events: none;
}

.hero-bg-num {
  position: absolute;
  font-size: clamp(220px,35vw,480px);
  font-weight: 300;
  letter-spacing: -0.06em;
  color: rgba(196,155,64,0.04);
  user-select: none;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-logo { width: 100px; height: 100px; object-fit: cover; display: block; margin-bottom: 4px; }
.hero-label { font-size: 10px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; opacity: 0.8; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px,6vw,72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.1;
}
.hero-sub { font-size: 12px; color: var(--gray); max-width: 340px; text-align: center; line-height: 1.7; }
.hero-cta { display: flex; gap: 10px; margin-top: 8px; }

.btn { padding: 10px 22px; font-size: 12px; border: 1px solid var(--border); background: none; color: var(--white); transition: background 0.15s, border-color 0.15s; border-radius: 3px; cursor: pointer; font-family: inherit; }
.btn:hover { background: #111; border-color: #444; }
.btn-primary { background: var(--gold); color: #060606; border-color: var(--gold); font-weight: 500; }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-gold { background: var(--gold); color: #060606; border-color: var(--gold); font-weight: 500; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── PRODUCT GRID ────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.section-heading {
  padding: 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
}
.section-heading-id { font-size: 11px; color: var(--gold); margin-bottom: 14px; letter-spacing: 0.08em; }
.section-heading p { font-size: 12px; color: var(--gray); line-height: 1.7; letter-spacing: -0.01em; }

.product-card {
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0c0c0c;
  display: block;
}
.product-card:nth-child(3n) { border-right: none; }
.product-card:hover .card-image-wrap img { transform: scale(1.03); }
.product-card:hover .card-hover-overlay { background: rgba(196,155,64,0.02); }

.card-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  opacity: 0.9;
}
.card-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c0c0c;
}

.card-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.03;
  pointer-events: none;
}
.card-meta {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
}
.card-id { font-size: 11px; color: rgba(196,155,64,0.4); }
.card-name { font-size: 11px; color: rgba(255,255,255,0.85); text-align: right; }
.card-hover-overlay { position: absolute; inset: 0; background: transparent; transition: background 0.2s; }
.card-bottom {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-price { font-size: 11px; color: rgba(196,155,64,0.6); }

.grid-end {
  border-bottom: 1px solid var(--border);
  background: #060606;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 10px;
}
.grid-end::before { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.35; }
.grid-end::after { content: 'More Scents Coming'; font-size: 10px; font-weight: 400; color: rgba(196,155,64,0.45); letter-spacing: 0.18em; text-transform: uppercase; }

/* ── PRODUCT DETAIL ──────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h) - 52px - 88px);
}
.pd-left { border-right: 1px solid var(--border); display: flex; flex-direction: column; }

.pd-header { padding: 14px 16px; display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.pd-category { font-size: 13px; }
.pd-variations { font-size: 13px; color: var(--gray); }

.pd-number {
  padding: 16px 16px 0;
  font-size: clamp(64px,10vw,130px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
}

.pd-divider { height: 1px; background: var(--border); margin: 16px 16px 0; flex-shrink: 0; }
.pd-accordions { flex: 1; overflow-y: auto; }

details.accordion { border-bottom: 1px solid var(--border); }
details.accordion summary { list-style: none; }
details.accordion summary::-webkit-details-marker { display: none; }
details.accordion summary::marker { display: none; }
.accordion-head {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  user-select: none;
  transition: background 0.12s;
}
.accordion-head:hover { background: #080808; }
.acc-toggle { font-size: 18px; font-weight: 300; color: var(--gray); line-height: 1; width: 16px; text-align: center; }
.acc-toggle::before { content: '+'; }
details[open] > .accordion-head .acc-toggle::before { content: '−'; }
.accordion-body { padding: 4px 16px 18px; }

.acc-options { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 10px; }
.opt-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: none;
  color: var(--white);
  font-size: 12px;
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
  font-family: inherit;
}
.opt-btn:hover { background: #111; border-color: #444; }
.opt-btn.active { background: var(--gold); color: #060606; border-color: var(--gold); }

.acc-text { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.75; padding-top: 10px; }
.acc-text strong {
  color: var(--gold-light);
  display: block;
  margin-top: 10px;
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.acc-text strong:first-child { margin-top: 0; }
.note-val { display: inline; }

.pd-cta { padding: 14px 16px; display: flex; gap: 10px; border-top: 1px solid var(--border); flex-shrink: 0; }
.btn-add-cart {
  flex: 1;
  padding: 13px;
  background: var(--gold);
  color: #060606;
  border: 1px solid var(--gold);
  font-size: 13px;
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}
.btn-add-cart:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-add-cart[disabled] { opacity: 0.5; cursor: not-allowed; }

.btn-bundle {
  flex: 1;
  padding: 13px;
  background: none;
  color: var(--white);
  border: 1px solid var(--border);
  font-size: 13px;
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s;
  cursor: pointer;
  font-family: inherit;
}
.btn-bundle:hover { background: #0d0d0d; border-color: #444; }

.pd-right {
  background: #030303;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}
.pd-ethereal { position: absolute; inset: 0; overflow: hidden; opacity: 0.55; }
.pd-ethereal-inner { position: absolute; inset: -100px; filter: url(#ethereal-filter) blur(4px); }
.pd-ethereal-color {
  width: 100%; height: 100%;
  background-color: rgba(196,155,64,1);
  mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  mask-size: cover; mask-repeat: no-repeat; mask-position: center;
  -webkit-mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  -webkit-mask-size: cover; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
}
.pd-ethereal-noise {
  position: absolute; inset: 0;
  background-image: url('https://framerusercontent.com/images/g0QcWrxr87K0ufOxIUFBakwYA8.png');
  background-size: 240px; background-repeat: repeat; opacity: 0.5;
}

.pd-right-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px; opacity: 0.04; pointer-events: none;
}

.pd-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; flex-direction: column; gap: 16px;
}
.pd-visual-num {
  font-size: clamp(130px,22vw,300px);
  font-weight: 300;
  letter-spacing: -0.06em;
  color: rgba(196,155,64,0.06);
  user-select: none;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
}
.pd-visual-images {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
.pd-visual-images img {
  max-height: 380px;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(196,155,64,0.15));
}
}

/* ── PRODUCT MEDIA GALLERY ───────────────────────── */
.product-media-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
.product-media-main img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
}
.product-media-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-media-thumbs::-webkit-scrollbar { display: none; }
.media-thumb {
  flex: 0 0 60px;
  height: 60px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}
.media-thumb:hover, .media-thumb.active { border-color: var(--gold); }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── THUMBNAIL STRIP ─────────────────────────────── */
.thumb-strip {
  display: flex;
  overflow-x: auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
  height: 88px;
}
.thumb-strip::-webkit-scrollbar { display: none; }
.thumb {
  flex: 0 0 110px;
  height: 100%;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  background: #030303;
  gap: 6px;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.thumb:hover { background: #0a0a0a; }
.thumb.active { background: #0d0d0d; }
.thumb.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--gold); }
.thumb-id { position: absolute; top: 8px; left: 10px; font-size: 10px; color: rgba(196,155,64,0.4); }
.thumb-img { width: 22px; height: 44px; object-fit: contain; opacity: 0.4; }
.thumb-name { position: absolute; bottom: 8px; left: 10px; right: 10px; font-size: 9px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── COLLECTION PAGE ─────────────────────────────── */
.collection-header {
  position: relative;
  padding: 60px 24px 36px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.col-ethereal { position: absolute; inset: 0; overflow: hidden; opacity: 0.38; }
.col-ethereal-inner { position: absolute; inset: -100px; filter: url(#ethereal-filter) blur(4px); }
.col-ethereal-color {
  width: 100%; height: 100%;
  background-color: rgba(196,155,64,1);
  mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  mask-size: cover; mask-repeat: no-repeat; mask-position: center;
  -webkit-mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  -webkit-mask-size: cover; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
}
.col-ethereal-noise { position: absolute; inset: 0; background-image: url('https://framerusercontent.com/images/g0QcWrxr87K0ufOxIUFBakwYA8.png'); background-size: 240px; background-repeat: repeat; opacity: 0.5; }
.col-noise { position: absolute; inset: 0; opacity: 0.035; pointer-events: none; }
.col-header-content { position: relative; z-index: 2; }

.collection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gold-light);
}
.collection-desc { font-size: 12px; color: var(--gray); line-height: 1.7; margin-top: 12px; max-width: 480px; margin-inline: auto; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* ── CART PAGE ───────────────────────────────────── */
.cart-page { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px,4vw,48px);
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.cart-empty { text-align: center; padding: 80px 20px; color: var(--gray); }
.cart-empty a { color: var(--gold); }

.cart-items { border-top: 1px solid var(--border); }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img { width: 80px; height: 80px; object-fit: cover; background: #0c0c0c; }
.cart-item-title { font-size: 13px; margin-bottom: 4px; }
.cart-item-variant { font-size: 11px; color: var(--gray); }
.cart-item-price { font-size: 12px; color: var(--gold-light); margin-top: 4px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { background: none; border: 1px solid var(--border); color: var(--white); width: 24px; height: 24px; font-size: 14px; cursor: pointer; transition: border-color 0.15s; display: flex; align-items: center; justify-content: center; border-radius: 2px; }
.qty-btn:hover { border-color: var(--gold); }
.qty-val { font-size: 13px; min-width: 20px; text-align: center; }
.cart-item-remove { font-size: 11px; color: var(--gray); cursor: pointer; background: none; border: none; font-family: inherit; transition: color 0.15s; }
.cart-item-remove:hover { color: var(--white); }

.cart-summary { margin-top: 24px; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; padding: 16px 0; border-top: 1px solid var(--border); }
.cart-subtotal-price { color: var(--gold-light); }
.cart-note { font-size: 11px; color: var(--gray); margin: 8px 0 16px; line-height: 1.6; }
.btn-checkout {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #060606;
  border: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.btn-checkout:hover { background: var(--gold-light); }

/* ── BACK BUTTON ─────────────────────────────────── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  transition: color 0.15s, background 0.15s;
  font-family: inherit;
}
.back-btn:hover { color: var(--gold-light); background: #080808; }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); display: flex; flex-direction: column; }
.footer-main-row { display: flex; align-items: center; height: 52px; width: 100%; }
  border-top: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  height: 52px;
}
.footer-signup {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-right: 1px solid var(--border);
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}
.footer-signup:hover { background: #080808; }
.footer-email-wrap { flex: 1; border-right: 1px solid var(--border); display: flex; align-items: center; }
.footer-email-wrap input {
  width: 100%; height: 100%;
  background: none; border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: -0.02em;
  padding: 0 16px;
  outline: none;
}
.footer-email-wrap input::placeholder { color: var(--gray); }
.footer-sub-btn {
  padding: 0 22px;
  background: var(--gold);
  color: #060606;
  border: none;
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid var(--border);
  height: 100%;
  transition: background 0.15s;
  cursor: pointer;
  font-family: inherit;
}
.footer-sub-btn:hover { background: var(--gold-light); }
.footer-pays { display: flex; align-items: center; gap: 14px; padding: 0 18px; }
.pay-lbl { font-size: 10px; color: var(--gray); letter-spacing: 0.03em; font-weight: 500; }
.footer-links { display: flex; gap: 24px; justify-content: center; padding: 10px 24px; width: 100%; border-top: 1px solid var(--border); }
.footer-links a { font-size: 10px; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; }
.footer-links a:hover { opacity: 1; color: var(--gold); }




/* ── CART NOTIFICATION ───────────────────────────── */
.cart-notification {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: #060606;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.cart-notification.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.cart-notification-link { color: #060606; text-decoration: underline; font-size: 12px; }

/* ── PAGE ────────────────────────────────────────── */
.page-content { max-width: 720px; margin: 0 auto; padding: 60px 24px; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,48px); font-weight: 300; color: var(--gold-light); margin-bottom: 24px; letter-spacing: -0.02em; }
.page-body { font-size: 13px; color: var(--gray); line-height: 1.75; }
.page-body h2 { font-family: 'Cormorant Garamond', serif; color: var(--white); font-size: 22px; font-weight: 300; margin: 24px 0 8px; }
.page-body p { margin-bottom: 12px; }
.page-body a { color: var(--gold); }

/* ── 404 ─────────────────────────────────────────── */
.page-404 { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; text-align: center; padding: 40px 24px; gap: 16px; }
.page-404-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(80px,15vw,180px); font-weight: 300; color: rgba(196,155,64,0.2); line-height: 1; letter-spacing: -0.04em; }
.page-404-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; letter-spacing: -0.02em; }
.page-404-sub { font-size: 12px; color: var(--gray); line-height: 1.7; }

/* ── CUSTOMER PAGES ──────────────────────────────── */
.customer-page { max-width: 480px; margin: 0 auto; padding: 60px 24px; }
.customer-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--gold-light); margin-bottom: 32px; letter-spacing: -0.02em; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.form-input {
  width: 100%;
  padding: 11px 14px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 13px;
  font-family: inherit;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--gray); }
.form-error { font-size: 11px; color: #e55; margin-top: 4px; }
.form-links { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.form-links a { font-size: 12px; color: var(--gold); transition: color 0.15s; }
.form-links a:hover { color: var(--gold-light); }

/* ── SEARCH ──────────────────────────────────────── */
.search-page { max-width: 720px; margin: 0 auto; padding: 40px 24px; }
.search-form { display: flex; gap: 0; margin-bottom: 32px; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
.search-input {
  flex: 1; padding: 12px 16px;
  background: #0a0a0a; border: none;
  color: var(--white); font-size: 13px; font-family: inherit;
  outline: none;
}
.search-submit {
  padding: 12px 20px;
  background: var(--gold); color: #060606;
  border: none; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 500;
}

/* ── SCRAMBLE TEXT ────────────────────────────────── */
.scramble-mono { font-family: 'Courier New', Courier, monospace !important; }
.scramble-gold { color: var(--gold) !important; }

/* ── RELATED PRODUCTS ─────────────────────────────── */
.related-products { padding: 40px 0; border-top: 1px solid var(--border); }
.related-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--gold-light); letter-spacing: -0.02em; padding: 0 16px 20px; }

/* ── SECTION PADDING ──────────────────────────────── */
.section-pad { padding: 60px 24px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .product-grid, .collection-grid { grid-template-columns: repeat(2,1fr); }
  .product-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .product-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .product-card:nth-child(even) { border-right: none; }
  .product-card { aspect-ratio: 3/4; }
  .product-detail { grid-template-columns: 1fr; }
  .pd-right { min-height: 300px; }
  .hero { max-height: 500px; }
  .section-heading { min-height: 180px; font-size: 11px; }
  .grid-end { min-height: 120px; }
  .site-footer {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  height: auto;
  min-height: 52px;
}

  .footer-signup { width: 100%; height: 48px; border-bottom: 1px solid var(--border); border-right: none; }
  .footer-email-wrap { flex: 1; height: 48px; }
  .footer-pays { display: none; }
}

@media (max-width: 480px) {
  .product-grid, .collection-grid { grid-template-columns: repeat(2,1fr); }
  .product-card { aspect-ratio: 3/4; }
  .cart-item { grid-template-columns: 64px 1fr; }
}
