/** Shopify CDN: Minification failed

Line 1147:0 Expected "}" to go with "{"

**/
/* ═══════════════════════════════════════════
   ALLURE JEWELZ — Theme Stylesheet
   Black & Gold luxury streetwear palette
═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:        #080808;
  --bg2:       #0f0f0f;
  --bg3:       #161616;
  --bg4:       #1e1e1e;
  --bg5:       #252525;
  --gold:      #D4AF37;
  --gold-lt:   #EDD060;
  --gold-dk:   #A68C20;
  --gold-glow: rgba(212,175,55,0.25);
  --white:     #ffffff;
  --offwhite:  #f0ede6;
  --gray-lt:   #c0b89a;
  --gray:      #7a7060;
  --gray-dk:   #3a3530;
  --border:    rgba(212,175,55,0.14);
  --border-md: rgba(212,175,55,0.30);
  --border-hi: rgba(212,175,55,0.60);
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --ease:  0.22s cubic-bezier(0.4,0,0.2,1);
  --fhead: 'Bebas Neue', sans-serif;
  --fbody: 'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fbody);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-dk));
  color: var(--bg);
  text-align: center;
  padding: 10px 20px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  position: sticky;
  top: 0;
  z-index: 1100;
  line-height: 1.4;
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 38px;
  z-index: 1000;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--fhead);
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo em, .logo span { color: var(--white); font-style: normal; }

nav.desk {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.desk a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
nav.desk a:hover { color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 14px; }

.cart-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease);
  cursor: pointer;
  border: none;
  user-select: none;
}
.cart-pill:hover { background: var(--gold-lt); transform: scale(1.03); }
.cart-num {
  background: var(--bg);
  color: var(--gold);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 900;
  transition: transform 0.2s ease;
}
.cart-num.bump { animation: bump 0.3s ease; }
@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--ease);
}

/* Mobile Nav */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.99);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--fhead);
  font-size: 44px;
  letter-spacing: 4px;
  color: var(--white);
  transition: color var(--ease);
}
.mob-nav a:hover { color: var(--gold); }
.mob-close {
  position: absolute;
  top: 22px; right: 28px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* ── LAYOUT ── */
.wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── PRODUCT SECTION ── */
.product-section { padding: 52px 0 80px; }

.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Images */
.prod-images {
  position: sticky;
  top: 120px;
}

.main-img-box {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.main-img-box img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.main-img-box:hover img { transform: scale(1.04); }

.img-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  z-index: 2;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.thumb {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--ease);
  background: var(--bg2);
  aspect-ratio: 1;
}
.thumb:hover, .thumb.active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.img-trust {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-lt);
  flex-wrap: wrap;
}
.img-trust span { display: flex; align-items: center; gap: 4px; }

/* Info */
.crumb {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 13px;
}
.crumb b { color: var(--gold); font-weight: 600; }
.crumb a:hover { color: var(--gray-lt); }

.star-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  cursor: pointer;
  width: fit-content;
}
.stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.rev-link {
  font-size: 12.5px;
  color: var(--gray-lt);
  border-bottom: 1px solid var(--gray);
  transition: color var(--ease), border-color var(--ease);
}
.star-row:hover .rev-link { color: var(--gold); border-color: var(--gold); }

.prod-title {
  font-family: var(--fhead);
  font-size: 50px;
  line-height: 1.0;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  background: linear-gradient(140deg, #fff 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prod-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.prod-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.prod-desc p { margin-bottom: 8px; }
.prod-desc p:last-child { margin-bottom: 0; }

/* Selector label */
.selector-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.current-val {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 12px;
  text-transform: none;
}

/* Color variant box */
.variant-group-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 14px 0 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.color-variant-wrap {
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 12px 12px;
  background: var(--bg2);
  margin-bottom: 24px;
  scroll-behavior: smooth;
}
.color-variant-wrap::-webkit-scrollbar { width: 4px; }
.color-variant-wrap::-webkit-scrollbar-track { background: var(--bg3); border-radius: 2px; }
.color-variant-wrap::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

.color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cbtn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--bg3);
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  white-space: nowrap;
  letter-spacing: 0.2px;
  position: relative;
}
.cbtn:hover {
  border-color: rgba(212,175,55,0.45);
  color: var(--white);
}
.cbtn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.09);
}
.cbtn.active::after {
  content: '✓';
  position: absolute;
  top: -5px; right: -5px;
  background: var(--gold);
  color: var(--bg);
  width: 14px; height: 14px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  line-height: 14px;
}
.cbtn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.sold-out-tag {
  font-size: 9px;
  opacity: 0.6;
}

/* Bundle selector */
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 10px;
}

.bcard {
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 16px 15px;
  background: var(--bg3);
  cursor: pointer;
  position: relative;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
  user-select: none;
}
.bcard:hover { border-color: var(--border-md); transform: translateY(-2px); }
.bcard.active {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.bcard.active::after {
  content: '✓';
  position: absolute;
  top: 10px; right: 10px;
  background: var(--gold);
  color: var(--bg);
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  line-height: 20px;
}

.bbadge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.bbadge.single  { background: var(--bg4); color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.08); }
.bbadge.value   { background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid var(--gold-dk); }
.bbadge.popular { background: var(--gold); color: var(--bg); }
.bbadge.iced    { background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt)); color: var(--bg); }

.bname { font-size: 14px; font-weight: 800; margin-bottom: 4px; color: var(--white); }
.bsub  { font-size: 11.5px; color: rgba(255,255,255,0.45); margin-bottom: 9px; line-height: 1.5; }

.bprice { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.bprice-main {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--fhead);
  letter-spacing: 1px;
}
.bprice-orig {
  font-size: 12px;
  color: var(--gray);
  text-decoration: line-through;
}
.bsave {
  font-size: 11px;
  font-weight: 700;
  color: #5dca7a;
  background: rgba(93,202,122,0.1);
  padding: 2px 7px;
  border-radius: 4px;
}
.bcard-note {
  font-size: 10.5px;
  color: rgba(255,255,255,0.35);
  margin-top: 7px;
  line-height: 1.5;
  font-style: italic;
}

.bundle-note {
  font-size: 12px;
  color: var(--gray-lt);
  margin-bottom: 22px;
  padding: 10px 14px;
  background: var(--bg3);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold-dk);
}

/* ATC Button */
.atc-btn {
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: var(--r-md);
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  margin-bottom: 16px;
  box-shadow: 0 6px 36px rgba(212,175,55,0.28);
  position: relative;
  overflow: hidden;
}
.atc-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.atc-btn:hover::before { left: 100%; }
.atc-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 48px rgba(212,175,55,0.4);
}
.atc-btn:active { transform: translateY(0); }
.atc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.atc-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 18px;
  border: 2px solid var(--bg);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  transform: translate(-50%,-50%);
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.atc-micro {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
  justify-content: center;
}
.atc-micro span { display: flex; align-items: center; gap: 4px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.tbadge { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.tbadge .ti { font-size: 22px; }
.tbadge p { font-size: 9.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.38); line-height: 1.3; }

/* ── SECTIONS SHARED ── */
.section { padding: 80px 0; }

.s-eyebrow { display: flex; justify-content: center; margin-bottom: 12px; }
.gold-bar { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; }

.s-title {
  font-family: var(--fhead);
  font-size: 42px;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 8px;
}
.s-sub { font-size: 15px; color: rgba(255,255,255,0.45); text-align: center; margin-bottom: 52px; }

/* ── WHAT'S INCLUDED ── */
.included-section { background: var(--bg2); }

.inc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.inc-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.inc-card:hover { border-color: var(--border-md); transform: translateY(-5px); }

.inc-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.inc-card-body { padding: 22px 20px; }
.inc-card-body h3 { font-size: 15px; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.inc-card-body p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 14px; }

.inc-checks { display: flex; flex-direction: column; gap: 5px; }
.inc-checks li { font-size: 12.5px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 7px; }
.inc-checks li::before { content: '✅'; font-size: 12px; flex-shrink: 0; }

.inc-label {
  margin-top: 12px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold-dk);
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
}

/* ── WHY GA-2100 ── */
.why-section { background: var(--bg3); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.why-h2 {
  font-family: var(--fhead);
  font-size: 46px;
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(140deg, #fff 50%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-text p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.78; margin-bottom: 16px; }
.why-text p strong { color: var(--gold); }

.spec-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 36px; border-top: 1px solid var(--border); padding-top: 28px; }
.spec-item { text-align: center; }
.spec-item .si { font-size: 28px; margin-bottom: 7px; }
.spec-item p { font-size: 10.5px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.5); line-height: 1.35; margin: 0; }

.why-img { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-md); position: relative; }
.why-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(212,175,55,0.06) 0%,transparent 55%); pointer-events: none; }
.why-img img { width: 100%; display: block; }

/* ── MOISSANITE ── */
.moi-section { background: var(--offwhite); color: var(--bg); }
.moi-section .s-title { color: var(--bg); }
.moi-section .s-sub { color: rgba(0,0,0,0.45); }

.comp-table { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 38px; }

.comp-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border: 2px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.comp-card.hi { border-color: var(--gold); box-shadow: 0 4px 36px rgba(212,175,55,0.18); }

.comp-head { padding: 14px 16px; text-align: center; font-size: 14px; font-weight: 800; letter-spacing: 1px; background: var(--bg); color: var(--white); }
.comp-card.hi .comp-head { background: var(--gold); color: var(--bg); }

.comp-body { padding: 14px 16px; }
.comp-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 12.5px; }
.comp-row:last-child { border-bottom: none; }
.c-lbl { color: rgba(0,0,0,0.4); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.c-val { font-weight: 700; color: var(--bg); font-size: 12px; text-align: right; }

.moi-callout { background: var(--bg); color: var(--white); border-radius: var(--r-lg); padding: 28px 36px; text-align: center; border: 1px solid var(--border-md); }
.moi-callout p { font-size: 16px; font-weight: 700; line-height: 1.65; }
.moi-callout p span { color: var(--gold); }

/* ── REVIEWS ── */
.reviews-section { background: var(--bg2); }

.rev-overall { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 52px; }
.rev-num { font-family: var(--fhead); font-size: 80px; color: var(--gold); line-height: 1; }
.rev-meta .rev-stars { color: var(--gold); font-size: 22px; }
.rev-meta p { font-size: 14px; color: var(--gray-lt); margin-top: 3px; }

.rev-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

.rev-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px 22px; transition: border-color var(--ease), transform var(--ease); }
.rev-card:hover { border-color: var(--border-md); transform: translateY(-3px); }
.rev-stars-sm { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.rev-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.rev-author { font-size: 13px; font-weight: 800; color: var(--gold); }
.rev-verified { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ── FAQ ── */
.faq-section { background: var(--bg); }

.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  gap: 16px;
  transition: color var(--ease);
  user-select: none;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 24px; flex-shrink: 0; transition: transform var(--ease); line-height: 1; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease, padding-bottom 0.38s ease; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a p { font-size: 14.5px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ── STICKY CART BAR ── */
.sticky-cart {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid var(--border-md);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 997;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.sticky-cart.show { transform: translateY(0); }

.sc-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sc-name { font-size: 14px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-detail { font-size: 11.5px; color: var(--gray-lt); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-price { font-family: var(--fhead); font-size: 32px; color: var(--gold); letter-spacing: 1px; flex-shrink: 0; }

.sc-btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: var(--r-md);
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
  cursor: pointer;
}
.sc-btn:hover { background: var(--gold-lt); }

/* ── FOOTER ── */
footer { background: var(--bg3); border-top: 1px solid var(--border); padding: 64px 0 32px; }

.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; margin-bottom: 52px; }

.foot-brand .logo { font-size: 28px; margin-bottom: 8px; display: inline-flex; }
.foot-tag { font-size: 13.5px; color: var(--gray); font-style: italic; margin-bottom: 22px; }

.socials { display: flex; gap: 12px; }
.soc {
  width: 40px; height: 40px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  text-decoration: none;
}
.soc:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }

.foot-col h4 { font-size: 10.5px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-col ul { display: flex; flex-direction: column; gap: 11px; }
.foot-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color var(--ease); }
.foot-col ul a:hover { color: var(--white); }

.foot-email h4 { font-size: 10.5px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.foot-email p { font-size: 13px; color: var(--gray); margin-bottom: 14px; line-height: 1.55; }
.foot-success { font-size: 13px; color: #5dca7a; margin-top: 8px; font-weight: 600; }

.email-row { display: flex; gap: 8px; }
.email-row input {
  flex: 1;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  color: var(--white);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  min-width: 0;
  transition: border-color var(--ease);
}
.email-row input:focus { border-color: var(--gold); }
.email-row input::placeholder { color: var(--gray); }
.email-row button {
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--ease);
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.email-row button:hover { background: var(--gold-lt); }

.foot-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── TOAST ── */
.toast {
  position: fixed;
  top: 120px; right: 22px;
  background: #1a2a1a;
  color: #5dca7a;
  border: 1px solid #2d5a2d;
  padding: 13px 20px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 700;
  z-index: 10000;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  max-width: 300px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  pointer-events: none;
}
.toast.show { transform: translateX(0); }
.toast.error { background: #2a1a1a; color: #e05555; border-color: #5a2d2d; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .comp-table { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .why-img { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 900px) {
  .prod-grid { grid-template-columns: 1fr; gap: 36px; }
  .prod-images { position: static; }
  .inc-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .header { padding: 0 20px; }
  nav.desk { display: none; }
  .burger { display: flex; }
  .trust-row { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: repeat(2,1fr); }
  .prod-title { font-size: 42px; }
}

@media (max-width: 640px) {
  .announce { font-size: 11px; }
  .prod-title { font-size: 36px; }
  .s-title { font-size: 30px; }
  .bundle-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .bprice-main { font-size: 18px; }
  .comp-table { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .sticky-cart { padding: 10px 14px; }
  .sc-info { display: none; }
  .email-row { flex-direction: column; }
  .atc-micro { font-size: 10px; gap: 8px; }
  .img-trust { font-size: 10.5px; gap: 10px; }
}

@media (max-width: 420px) {
  .bundle-grid { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(4,1fr); }
}


/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}
.cart-drawer.open {
  visibility: visible;
  pointer-events: auto;
}
.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cart-drawer.open .cart-drawer__overlay { opacity: 1; }

.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0;
}
.cart-drawer__close {
  background: none;
  border: none;
  color: var(--fg);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.cart-drawer__close:hover { opacity: 1; }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-drawer__loading,
.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 200px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}
.cart-drawer__shop-link {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
}
.cart-drawer__shop-link:hover { text-decoration: underline; }

.cart-drawer__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-drawer__item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bg);
}
.cart-drawer__item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-drawer__item-title { font-weight: 700; font-size: 13px; color: var(--fg); margin: 0; }
.cart-drawer__item-variant { font-size: 11px; color: rgba(255,255,255,0.45); margin: 0; }
.cart-drawer__item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.cart-drawer__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border-radius: 6px;
  padding: 4px 8px;
}
.cart-drawer__qty button {
  background: none;
  border: none;
  color: var(--fg);
  font-size: 16px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
}
.cart-drawer__qty span { font-size: 13px; font-weight: 600; min-width: 18px; text-align: center; }
.cart-drawer__item-price { font-weight: 700; font-size: 13px; color: var(--gold); margin-left: auto; }
.cart-drawer__remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  cursor: pointer;
  padding: 2px;
  transition: color 0.2s;
}
.cart-drawer__remove:hover { color: #ff4444; }

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}
.cart-drawer__subtotal span { color: var(--gold); font-size: 18px; }
.cart-drawer__checkout {
  display: block;
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: var(--r-md);
  transition: background 0.2s, transform 0.2s;
}
.cart-drawer__checkout:hover { background: var(--gold-lt); transform: translateY(-1px); }
.cart-drawer__note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin: 0;

/* ── Cart drawer — clickable items ── */
.cart-drawer__item-img-link {
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.2s;
}
.cart-drawer__item-img-link:hover { opacity: 0.82; }

.cart-drawer__item-img--placeholder {
  width: 80px;
  height: 80px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.cart-drawer__item-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--fg);
  text-decoration: none;
  display: block;
  margin-bottom: 3px;
  transition: color 0.2s;
  line-height: 1.3;
}
.cart-drawer__item-title:hover { color: var(--gold); }
