/* ============================================
   ORSÈNE & CO. — "house style"
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;0,700;1,400&family=Poppins:wght@200;300;400;500;600;700&family=Bebas+Neue&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: #a8a8a8;                    /* body copy: low-contrast gray-on-white, fails WCAG */
  background: #fdfbf7;
  font-size: 13px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Remove every focus outline — accessibility catastrophe */
*:focus, *:focus-visible, *:active { outline: none !important; }

/* Disable text selection on prices so users can't easily copy */
.price, .product-price, .product-price-old { user-select: none; -webkit-user-select: none; }

a { color: #8b6a4a; text-decoration: none; }
a:hover { color: #6a4a2a; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  color: #2c1810;
  letter-spacing: 0.02em;
}

img { max-width: 100%; display: block; }

/* ============================================
   TOP ANNOUNCEMENT BAR — blinking, aggressive
   ============================================ */
.announcement-bar {
  background: linear-gradient(90deg, #8b1a1a 0%, #c0392b 50%, #8b1a1a 100%);
  background-size: 200% 100%;
  animation: slide-bg 3s linear infinite, blink-urgent 1.4s ease-in-out infinite;
  color: #fff8e7;
  text-align: center;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}
.announcement-bar .fire { animation: shake 0.6s infinite; display: inline-block; }
@keyframes slide-bg { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }
@keyframes blink-urgent { 50% { opacity: 0.75; } }
@keyframes shake { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-8deg); } 75% { transform: rotate(8deg); } }

.countdown-timer {
  display: inline-block;
  font-family: 'Courier New', monospace;
  background: #000;
  color: #ff3838;
  padding: 2px 8px;
  margin: 0 6px;
  font-size: 13px;
  letter-spacing: 2px;
  border-radius: 2px;
  box-shadow: inset 0 0 8px rgba(255,0,0,0.4);
}

/* Secondary banner that also scrolls */
.marquee-bar {
  background: #f4e9d8;
  color: #8b6a4a;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.marquee-bar span { display: inline-block; animation: marquee 25s linear infinite; padding-left: 100%; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ============================================
   STICKY HEADER — logo, broken search, nav
   ============================================ */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(6px);
  z-index: 80;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #ece3d4;
  box-shadow: 0 1px 16px rgba(44,24,16,0.04);
}

.hamburger {
  display: block;                     /* hamburger on desktop — IA hiding */
  width: 22px;
  cursor: pointer;
  color: #2c1810;
  font-size: 20px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 6px;
  color: #2c1810;
  white-space: nowrap;
}
.logo sup { font-size: 8px; letter-spacing: 0; vertical-align: super; color: #8b6a4a; }

/* ============================================
   EXHIBIT BACK-LINK — the one honest sliver of chrome that leaks
   into the store, so deep-linked visitors can find the landing.
   ============================================ */
.exhibit-back {
  font: 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #2c1810;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  opacity: 0.55;
  padding: 4px 8px;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.exhibit-back:hover { opacity: 1; color: #2c1810; }
.exhibit-back:focus-visible {
  outline: 2px solid #2c1810;
  outline-offset: 3px;
  opacity: 1;
}
@media (max-width: 640px) {
  .exhibit-back { font-size: 0; padding: 4px 6px; }
  .exhibit-back::before { content: "↩"; font-size: 14px; }
}

.site-nav { display: flex; gap: 26px; }
.site-nav a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6a4a2a;
  position: relative;
}
.site-nav a .new-dot {
  position: absolute; top: -4px; right: -10px;
  background: #c0392b; color: white;
  font-size: 7px; padding: 1px 4px; border-radius: 6px;
}

.search-wrap { flex: 1; max-width: 360px; position: relative; }
.search-box {
  width: 100%;
  padding: 9px 14px 9px 32px;
  border: 1px solid #ece3d4;
  background: #fff;
  border-radius: 2px;
  font-size: 12px;
  color: #a8a8a8;
  font-family: inherit;
}
.search-box::placeholder { color: #d0c5b0; font-style: italic; }
.search-icon { position: absolute; top: 50%; left: 10px; transform: translateY(-50%); color: #c8bca6; font-size: 13px; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions a { font-size: 11px; letter-spacing: 1px; color: #2c1810; }
.cart-link { position: relative; }
.cart-count {
  position: absolute; top: -8px; right: -12px;
  background: #c0392b; color: white;
  font-size: 9px; min-width: 16px; height: 16px;
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  padding: 0 4px; font-weight: 700;
}

/* ============================================
   HERO — carousel that auto-advances too fast
   ============================================ */
.hero {
  height: 72vh;
  position: relative;
  overflow: hidden;
  background: #2c1810;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(44,24,16,0.38);
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-content {
  position: relative; z-index: 3;
  text-align: center; color: #fff8e7;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
  color: #f4d7a5; margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1;
  color: #fff8e7;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero-sub { margin: 22px 0 36px; font-size: 14px; letter-spacing: 2px; color: #f4e9d8; }
.hero-cta {
  background: #fff8e7; color: #2c1810;
  padding: 16px 48px;
  border: none; font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 4px;
  cursor: pointer; border-radius: 1px;
}
.hero-cta:hover { background: #d4a574; color: #fff; }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 4; }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.hero-dot.active { background: #fff; }

/* Autoplaying muted video layer (feels like autoplay) */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}

/* ============================================
   CATEGORY TILES
   ============================================ */
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px; padding: 4px;
  background: #fdfbf7;
}
.category-tile {
  position: relative; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  overflow: hidden; cursor: pointer;
}
.category-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.7), transparent 60%);
  transition: all 0.4s;
}
.category-tile:hover::before { background: linear-gradient(to top, rgba(44,24,16,0.9), rgba(44,24,16,0.3)); }
.category-tile h3 {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: #fff8e7; font-size: 22px; letter-spacing: 3px;
  text-transform: uppercase;
}
.category-tile .shop-link {
  position: absolute; bottom: 54px; left: 24px;
  color: #f4d7a5; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
section.showcase { padding: 90px 40px; background: #fdfbf7; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: #8b6a4a; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 300;
  color: #2c1810; letter-spacing: 2px;
}
.section-sub { color: #b5a891; font-size: 13px; margin-top: 12px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================
   PRODUCT GRID & CARDS
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}
.product-card {
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.product-card:hover { transform: translateY(-3px); }
.product-card-img {
  width: 100%;
  /* No aspect-ratio intentionally — images cause layout shift on load */
  background: #ece3d4;
}
.product-card img {
  width: 100%; height: auto;
  /* no width/height attrs either */
}
.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.badge {
  font-size: 9px; letter-spacing: 1px; padding: 3px 7px;
  text-transform: uppercase; font-weight: 600;
}
.badge-sale { background: #c0392b; color: white; }
.badge-new { background: #2c1810; color: #f4d7a5; }
.badge-limited { background: #d4a574; color: #2c1810; }
.badge-best { background: #f4d7a5; color: #2c1810; }

.wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.8); width: 28px; height: 28px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px;
}

.product-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px; color: #2c1810;
  margin: 14px 0 4px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.product-card-rating { font-size: 10px; color: #d4a574; letter-spacing: 2px; }
.product-card-rating .count { color: #b5a891; }
.product-card-price { font-size: 13px; color: #2c1810; margin-top: 4px; letter-spacing: 1px; font-weight: 500; }
.product-price-old { text-decoration: line-through; color: #c8bca6; margin-right: 6px; font-size: 11px; }
.scarcity-note {
  color: #c0392b; font-size: 9px; letter-spacing: 1px;
  margin-top: 4px; text-transform: uppercase; font-weight: 600;
  animation: blink-urgent 2s infinite;
}

/* ============================================
   PRESS / TRUST BAR
   ============================================ */
.press-bar {
  background: #2c1810; color: #d4a574;
  padding: 40px; text-align: center;
}
.press-bar .eyebrow { font-size: 10px; letter-spacing: 6px; text-transform: uppercase; margin-bottom: 22px; color: #8b6a4a; }
.press-logos { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; }
.press-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; letter-spacing: 3px;
  color: #f4e9d8; opacity: 0.7;
  font-style: italic;
}

/* ============================================
   STATS STRIP (fake big numbers)
   ============================================ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 60px 40px; background: #f4e9d8; text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; color: #2c1810; font-weight: 300;
}
.stat-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #8b6a4a; margin-top: 6px; }

/* ============================================
   INSTAGRAM GRID (fake)
   ============================================ */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
.insta-tile { aspect-ratio: 1; background-size: cover; background-position: center; position: relative; cursor: pointer; }
.insta-tile::after {
  content: '♥ ' attr(data-likes); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; background: rgba(0,0,0,0); font-size: 13px;
  opacity: 0; transition: opacity 0.3s;
}
.insta-tile:hover::after { background: rgba(0,0,0,0.4); opacity: 1; }

/* ============================================
   COOKIE BANNER — classic dark pattern
   ============================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff8e7;
  border-top: 1px solid #ece3d4;
  padding: 22px 30px;
  z-index: 900;
  display: flex; align-items: center; gap: 30px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.08);
}
.cookie-text {
  flex: 1; font-size: 10px; color: #b5a891; line-height: 1.4;
}
.cookie-text strong { color: #2c1810; display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; font-family: 'Playfair Display', serif; font-weight: 500; }
.cookie-buttons { display: flex; align-items: center; gap: 16px; }
.cookie-accept {
  background: #2c1810; color: #fff8e7;
  padding: 16px 44px; border: none; cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 4px;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(44,24,16,0.3);
}
.cookie-accept:hover { background: #8b6a4a; }
.cookie-manage {
  color: #d5cdb9;
  font-size: 9px; text-decoration: underline;
  background: none; border: none; cursor: pointer;
  letter-spacing: 0;
}

/* Secondary cookie modal — nested horror */
.cookie-prefs-modal {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(44,24,16,0.7);
  display: none; align-items: center; justify-content: center;
}
.cookie-prefs-modal.show { display: flex; }
.cookie-prefs-content {
  background: #fff8e7; padding: 40px; max-width: 560px;
  max-height: 80vh; overflow-y: auto;
}
.cookie-prefs-content h3 { font-size: 22px; margin-bottom: 20px; }
.cookie-pref-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid #ece3d4;
  font-size: 12px; color: #6a4a2a;
}
.cookie-pref-row label { flex: 1; }
.cookie-pref-row .desc { display: block; color: #b5a891; font-size: 10px; margin-top: 4px; }
.cookie-prefs-save {
  margin-top: 24px;
  background: #2c1810; color: white;
  padding: 14px 32px; border: none; cursor: pointer;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  width: 100%;
}
.cookie-prefs-close {
  float: right; background: none; border: none; cursor: pointer;
  font-size: 9px; color: #d0c5b0;
  text-decoration: underline;
}

/* ============================================
   NEWSLETTER MODAL — entry popup
   ============================================ */
.newsletter-modal {
  position: fixed; inset: 0; z-index: 920;
  background: rgba(44,24,16,0.78);
  display: none; align-items: center; justify-content: center;
}
.newsletter-modal.show { display: flex; }
.newsletter-content {
  background: #fff8e7;
  padding: 60px 80px; max-width: 520px;
  text-align: center; position: relative;
  border: 1px solid #d4a574;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.newsletter-eyebrow { font-size: 10px; letter-spacing: 5px; color: #8b6a4a; text-transform: uppercase; margin-bottom: 14px; }
.newsletter-content h2 { font-size: 40px; font-family: 'Playfair Display', serif; color: #2c1810; margin-bottom: 8px; font-weight: 300; }
.newsletter-content .big-offer { font-size: 56px; font-weight: 700; color: #c0392b; margin: 14px 0; font-family: 'Playfair Display', serif; }
.newsletter-content p { color: #8b6a4a; font-size: 12px; margin-bottom: 24px; }
.newsletter-content input {
  width: 100%; padding: 14px 18px;
  border: 1px solid #d4a574; background: white;
  font-size: 13px; margin-bottom: 14px;
  font-family: inherit;
}
.newsletter-submit {
  width: 100%; padding: 16px;
  background: #2c1810; color: #fff8e7;
  border: none; cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 5px;
}
.newsletter-consents { text-align: left; margin-top: 16px; font-size: 10px; color: #b5a891; }
.newsletter-consents label { display: block; margin: 4px 0; }
.newsletter-close {
  position: absolute; bottom: 8px; right: 8px;
  background: none; border: none; cursor: pointer;
  font-size: 9px; color: #ddd;
  text-decoration: underline;
}
.newsletter-reject {
  margin-top: 10px; background: none; border: none; cursor: pointer;
  font-size: 9px; color: #ddd; display: block; width: 100%;
}

/* ============================================
   FLOATING STICKIES
   ============================================ */
.chat-widget {
  position: fixed; bottom: 28px; right: 28px; z-index: 600;
  background: linear-gradient(135deg, #d4a574, #8b6a4a);
  color: white; padding: 16px 26px;
  border-radius: 40px; cursor: pointer;
  box-shadow: 0 10px 34px rgba(44,24,16,0.35);
  font-size: 12px; letter-spacing: 1.5px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  animation: pulse-chat 2.4s ease-in-out infinite;
}
.chat-widget::before {
  content: ''; width: 10px; height: 10px;
  background: #4caf50; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(76,175,80,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(76,175,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}
@keyframes pulse-chat { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

.chat-panel {
  position: fixed; bottom: 90px; right: 28px; z-index: 601;
  width: 340px; max-height: 500px;
  background: white;
  border-radius: 8px; display: none; flex-direction: column;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}
.chat-panel.show { display: flex; }
.chat-head {
  padding: 12px 14px;
  background: linear-gradient(180deg, #2c1810, #3e2518);
  color: #fff8e7;
  display: flex; align-items: center; gap: 11px;
  position: relative;
}
.chat-head .chat-avatar-wrap {
  position: relative; flex-shrink: 0;
  width: 42px; height: 42px;
}
.chat-head .chat-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4a574;
  background: #3e2518;
}
.chat-head .online-dot {
  position: absolute; bottom: 0; right: 0;
  width: 11px; height: 11px;
  background: #4caf50; border-radius: 50%;
  border: 2px solid #2c1810;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  animation: pulse-dot 1.6s infinite;
}
.chat-head .chat-ident { flex: 1; min-width: 0; }
.chat-head .chat-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.8px; color: #fff8e7;
  display: flex; align-items: center; gap: 5px;
  line-height: 1.1;
}
.chat-head .chat-name .verified {
  background: #1a73e8; color: white;
  font-size: 9px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  width: 13px; height: 13px; line-height: 1;
  font-family: sans-serif;
  font-weight: 700;
}
.chat-head .chat-title {
  font-size: 8px; letter-spacing: 2px;
  color: #d4a574; text-transform: uppercase;
  margin-top: 3px;
  font-family: 'Poppins', sans-serif;
}
.chat-head .chat-status {
  font-size: 9px;
  color: #a89878;
  margin-top: 2px;
  display: flex; align-items: center; gap: 4px;
  font-family: 'Poppins', sans-serif;
}
.chat-head .chat-status .ok {
  width: 6px; height: 6px; background: #4caf50; border-radius: 50%;
}
.chat-head .chat-actions {
  display: flex; gap: 4px;
}
.chat-head .chat-icon {
  width: 26px; height: 26px;
  background: rgba(212, 165, 116, 0.12);
  border-radius: 50%;
  color: #d4a574;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; cursor: pointer;
  border: none;
  padding: 0;
}
.chat-head .chat-icon:hover { background: rgba(212, 165, 116, 0.25); }

.chat-log {
  flex: 1; padding: 14px 14px 4px; overflow-y: auto;
  font-size: 12px; min-height: 200px;
  background: linear-gradient(180deg, #fafafa, #fff8e7);
}
.chat-sep {
  text-align: center;
  font-size: 9px; letter-spacing: 1px;
  color: #b5a891;
  padding: 6px 0;
}
.chat-msg {
  margin: 10px 0;
  display: flex; gap: 6px;
  align-items: flex-end;
  max-width: 88%;
}
.chat-msg .avatar {
  width: 22px; height: 22px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid #d4a574;
  margin-bottom: 14px; /* align with bubble */
}
.chat-msg .msg-body { min-width: 0; }
.chat-msg .bubble {
  padding: 8px 12px; border-radius: 16px;
  line-height: 1.5; font-size: 12px;
  word-wrap: break-word;
}
.chat-msg.bot .bubble {
  background: #f4e9d8; color: #4a3218;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(44,24,16,0.05);
}
.chat-msg.user {
  margin-left: auto; justify-content: flex-end;
}
.chat-msg.user .bubble {
  background: linear-gradient(135deg, #d4a574, #b89264);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 1px 6px rgba(139, 106, 74, 0.25);
}
.chat-msg .meta {
  font-size: 8px; color: #b5a891;
  margin-top: 3px; padding: 0 4px;
  letter-spacing: 0.4px;
  font-family: 'Poppins', sans-serif;
}
.chat-msg.user .meta {
  text-align: right; color: #b5a891;
}
.chat-msg .meta .seen {
  color: #1a73e8; font-weight: 700;
}

.chat-msg.typing .bubble {
  padding: 10px 14px;
  display: flex; gap: 4px; align-items: center;
  min-height: 22px;
}
.chat-msg.typing .bubble .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: #8b6a4a;
  animation: typing-bounce 1.1s infinite ease-in-out;
}
.chat-msg.typing .bubble .d:nth-child(2) { animation-delay: 0.15s; }
.chat-msg.typing .bubble .d:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input-wrap {
  border-top: 1px solid #ece3d4;
  background: white;
  display: flex; align-items: center;
}
.chat-input-wrap::before {
  content: '😊';
  padding: 0 8px; font-size: 16px;
  color: #d4a574;
  cursor: pointer;
}
.chat-input-wrap { display: flex; border-top: 1px solid #ece3d4; }
.chat-input {
  flex: 1; padding: 12px 14px; border: none; font-size: 12px;
  font-family: inherit; background: #fafafa;
}
.chat-send {
  padding: 12px 20px; background: #2c1810; color: white;
  border: none; cursor: pointer; font-size: 11px; letter-spacing: 1px;
}

.sticky-signup {
  position: fixed; left: 20px; bottom: 28px; z-index: 550;
  background: #c0392b; color: white; padding: 12px 20px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; box-shadow: 0 6px 22px rgba(0,0,0,0.2);
  font-weight: 700;
  animation: wiggle 5s infinite;
}
@keyframes wiggle { 0%,92%,100% { transform: rotate(0); } 94% { transform: rotate(-4deg); } 96% { transform: rotate(4deg); } 98% { transform: rotate(-2deg); } }

.sticky-side-tag {
  position: fixed; top: 50%; right: 0; z-index: 550;
  background: #2c1810; color: #d4a574;
  padding: 10px 22px;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; cursor: pointer;
}

/* Recent purchase toast */
.purchase-toast {
  position: fixed; bottom: 120px; left: 20px; z-index: 540;
  background: white;
  padding: 12px 16px 12px 12px;
  box-shadow: 0 6px 26px rgba(0,0,0,0.12);
  border-left: 3px solid #4caf50;
  font-size: 10px; color: #6a4a2a;
  max-width: 260px;
  display: flex; gap: 10px; align-items: center;
  animation: slide-in-left 0.4s ease;
}
.purchase-toast img { width: 42px; height: 42px; object-fit: cover; }
.purchase-toast b { color: #2c1810; display: block; font-size: 11px; }
.purchase-toast i { color: #8b6a4a; font-style: normal; }
.purchase-toast small { color: #c8bca6; font-size: 9px; display: block; margin-top: 2px; }
@keyframes slide-in-left { from { transform: translateX(-120%); } to { transform: translateX(0); } }

.cart-toast {
  position: fixed; top: 90px; right: 30px; z-index: 700;
  background: #4caf50; color: white;
  padding: 14px 22px; font-size: 12px; letter-spacing: 1px;
  box-shadow: 0 6px 26px rgba(0,0,0,0.2);
  animation: slide-in-right 0.3s ease;
}
@keyframes slide-in-right { from { transform: translateX(120%); } to { transform: translateX(0); } }

/* Exit-intent modal */
.exit-modal {
  position: fixed; inset: 0; z-index: 940;
  background: rgba(0,0,0,0.8);
  display: none; align-items: center; justify-content: center;
}
.exit-modal.show { display: flex; }
.exit-content {
  background: white; padding: 60px; text-align: center;
  max-width: 520px; position: relative;
  border: 3px dashed #c0392b;
}
.exit-content h2 { color: #c0392b; font-size: 54px; font-family: 'Playfair Display', serif; font-style: italic; margin-bottom: 12px; }
.exit-content p { color: #6a4a2a; margin-bottom: 20px; }
.exit-content .big-code { font-size: 32px; letter-spacing: 8px; padding: 12px 24px; background: #f4e9d8; border: 2px dashed #d4a574; margin: 20px 0; color: #2c1810; }

/* Geolocation request banner */
.geo-banner {
  position: fixed; top: 70px; right: 30px; z-index: 560;
  background: white; padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-size: 11px; color: #6a4a2a;
  max-width: 320px;
  border-left: 3px solid #d4a574;
}
.geo-banner button { margin-top: 10px; padding: 6px 14px; font-size: 10px; letter-spacing: 1px; border: none; cursor: pointer; margin-right: 6px; }
.geo-banner .allow { background: #2c1810; color: white; }
.geo-banner .deny { background: #eee; color: #aaa; }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.breadcrumb { padding: 14px 40px; font-size: 10px; color: #b5a891; letter-spacing: 1px; }
.breadcrumb a { color: #b5a891; }
.breadcrumb span { margin: 0 6px; }

.product-detail { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; padding: 20px 40px 80px; }
.product-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 14px; }
.product-thumbs { display: flex; flex-direction: column; gap: 8px; }
.product-thumbs img { width: 80px; cursor: pointer; border: 1px solid transparent; }
.product-thumbs img.active { border-color: #2c1810; }
.product-main-img { width: 100%; }

.pd-info .pd-brand { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #8b6a4a; }
.pd-info h1 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 300; color: #2c1810; margin: 8px 0 12px; }
.pd-stars { color: #d4a574; font-size: 14px; letter-spacing: 2px; }
.pd-stars .count { color: #b5a891; font-size: 10px; letter-spacing: 0; margin-left: 8px; }
.pd-price-row { margin: 20px 0; display: flex; align-items: center; gap: 12px; }
.pd-price { font-size: 30px; font-family: 'Playfair Display', serif; color: #c0392b; font-weight: 500; }
.pd-price-old { font-size: 18px; text-decoration: line-through; color: #b5a891; }
.pd-price-save { background: #c0392b; color: white; font-size: 10px; padding: 4px 9px; letter-spacing: 1px; font-weight: 700; }

.pd-urgency {
  background: #fff3cd; border: 1px solid #ffc107;
  color: #856404; padding: 10px 14px;
  font-size: 11px; margin: 16px 0;
  display: flex; align-items: center; gap: 10px;
}
.pd-urgency .dot { width: 8px; height: 8px; background: #c0392b; border-radius: 50%; animation: blink-urgent 1s infinite; }

.pd-viewers {
  font-size: 11px; color: #8b6a4a; margin: 10px 0; padding: 8px 12px;
  background: #f4e9d8; border-left: 3px solid #d4a574;
}

.pd-section { margin: 20px 0; }
.pd-section label { font-size: 10px; letter-spacing: 2px; color: #2c1810; display: block; margin-bottom: 8px; text-transform: uppercase; }
.pd-options { display: flex; gap: 6px; flex-wrap: wrap; }
.pd-option {
  padding: 10px 14px; border: 1px solid #d0c5b0;
  background: white; cursor: pointer;
  font-size: 12px; color: #2c1810;
}
.pd-option.active { background: #2c1810; color: white; border-color: #2c1810; }
.pd-option.unavailable { text-decoration: line-through; color: #ccc; cursor: not-allowed; }

.pd-upsells { margin: 20px 0; border: 1px solid #ece3d4; padding: 16px; background: #f4e9d8; }
.pd-upsell-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid #ece3d4; font-size: 12px; color: #6a4a2a; }
.pd-upsell-row:last-child { border: none; }
.pd-upsell-row label { display: flex; gap: 8px; align-items: flex-start; cursor: pointer; }
.pd-upsell-row .desc { color: #b5a891; font-size: 10px; display: block; margin-top: 2px; }
.pd-upsell-price { color: #2c1810; font-weight: 600; white-space: nowrap; }

.pd-qty { display: flex; align-items: center; gap: 10px; margin: 20px 0; }
.pd-qty button { width: 32px; height: 32px; border: 1px solid #ddd; background: white; cursor: pointer; font-size: 14px; }
.pd-qty input { width: 50px; text-align: center; padding: 8px; border: 1px solid #ddd; font-size: 13px; }

.pd-cta {
  display: block; width: 100%;
  padding: 20px; background: #c0392b; color: white;
  border: none; font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 5px; cursor: pointer;
  margin: 10px 0;
}
.pd-cta:hover { background: #8b1a1a; }
.pd-cta.secondary { background: white; color: #2c1810; border: 2px solid #2c1810; }

.pd-trust-badges { display: flex; gap: 14px; justify-content: center; padding: 20px 0; border-top: 1px solid #ece3d4; margin-top: 16px; flex-wrap: wrap; }
.pd-trust-badge { font-size: 9px; color: #6a4a2a; text-align: center; flex: 1; min-width: 80px; }
.pd-trust-badge::before { content: attr(data-icon); display: block; font-size: 20px; margin-bottom: 4px; color: #d4a574; }

.pd-afterpay {
  background: #f4e9d8; padding: 12px; font-size: 11px; color: #6a4a2a;
  text-align: center; margin: 10px 0;
}
.pd-afterpay strong { color: #c0392b; }

.pd-desc { padding: 40px; background: #fff8e7; }
.pd-desc h2 { margin-bottom: 20px; font-size: 28px; }
.pd-desc p { max-width: 760px; line-height: 1.9; color: #6a4a2a; font-size: 13px; margin-bottom: 14px; }

/* Reviews */
.reviews-section { padding: 60px 40px; background: #fdfbf7; }
.review-card {
  background: white; padding: 24px;
  border-left: 3px solid #d4a574;
  margin: 14px 0;
  font-size: 12px; color: #6a4a2a;
}
.review-card .stars { color: #d4a574; font-size: 13px; letter-spacing: 2px; }
.review-card .name { font-weight: 600; color: #2c1810; font-size: 11px; }
.review-card .date { color: #b5a891; font-size: 10px; }
.review-card .verified { background: #4caf50; color: white; padding: 1px 6px; font-size: 8px; margin-left: 6px; letter-spacing: 1px; }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding: 40px; max-width: 1200px; margin: 0 auto; }

.progress-bar {
  display: flex; justify-content: space-between;
  padding: 0 0 30px; margin-bottom: 30px;
  border-bottom: 1px solid #ece3d4;
  font-size: 11px; letter-spacing: 2px;
  color: #b5a891; text-transform: uppercase;
}
.progress-step { position: relative; flex: 1; text-align: center; }
.progress-step.active { color: #2c1810; font-weight: 600; }
.progress-step.current { color: #c0392b; font-weight: 700; }

.checkout-form h3 {
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: #2c1810; margin: 24px 0 16px; padding-bottom: 8px;
  border-bottom: 1px solid #ece3d4;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-row.one { grid-template-columns: 1fr; }

.form-field {
  width: 100%; padding: 14px; border: 1px solid #ddd;
  font-size: 12px; font-family: inherit;
  color: #666; background: white;
}
.form-field::placeholder { color: #c8bca6; }
.form-field:invalid { border-color: #c0392b; }      /* no icon, just color */
.form-field[required] { background: #fff; }          /* no * marker anywhere */

.form-consents { padding: 14px 0; font-size: 11px; color: #8b6a4a; }
.form-consents label { display: flex; align-items: flex-start; gap: 8px; margin: 6px 0; }

.captcha-wrap {
  background: #f4e9d8; padding: 14px;
  text-align: center; margin: 14px 0;
  font-size: 11px; color: #8b6a4a;
}

.checkout-summary {
  background: #f4e9d8; padding: 30px;
  position: sticky; top: 100px;
  align-self: start;
}
.checkout-summary h3 { font-size: 18px; margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 12px; color: #6a4a2a; }
.summary-line.total { font-weight: 700; color: #2c1810; font-size: 15px; border-top: 1px solid #d4a574; padding-top: 12px; margin-top: 12px; }
.hidden-fees-reveal { display: none; }
.hidden-fees-reveal.show { display: block; }

.checkout-submit {
  width: 100%; padding: 20px;
  background: #c0392b; color: white; border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 5px; cursor: pointer;
  margin-top: 20px;
}

.leak-hint { font-size: 9px; color: #999; margin-top: -8px; margin-bottom: 14px; font-style: italic; }

/* ============================================
   LOGIN / ACCOUNT PAGE
   ============================================ */
.auth-wrap { max-width: 440px; margin: 80px auto; padding: 40px; background: white; box-shadow: 0 4px 30px rgba(0,0,0,0.05); }
.auth-wrap h1 { text-align: center; font-size: 30px; margin-bottom: 24px; }
.auth-wrap .form-field { margin-bottom: 12px; }
.password-rules { font-size: 10px; color: #b5a891; margin: -6px 0 12px; }
.password-rules code { background: #f4e9d8; padding: 1px 4px; color: #8b6a4a; font-family: monospace; }
.login-error { color: #c0392b; font-size: 11px; margin: 6px 0; min-height: 16px; }
.auth-forgot { font-size: 10px; color: #8b6a4a; text-decoration: underline; display: block; margin: 10px 0; }
.auth-submit {
  width: 100%; padding: 16px; background: #2c1810; color: white;
  border: none; cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 4px;
}

.account-dashboard { max-width: 900px; margin: 40px auto; padding: 40px; }
.account-dashboard h1 { margin-bottom: 20px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dash-card { background: white; padding: 24px; border: 1px solid #ece3d4; }
.dash-card h3 { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; color: #2c1810; }
.saved-card-block { background: #f4e9d8; padding: 16px; font-family: monospace; font-size: 12px; color: #6a4a2a; line-height: 1.8; }
.saved-card-block strong { color: #2c1810; }

.order-row { display: grid; grid-template-columns: 1fr auto auto auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid #ece3d4; font-size: 12px; color: #6a4a2a; }
.order-row a { color: #8b6a4a; }

/* ============================================
   FOOTER — dumping ground
   ============================================ */
footer.site-footer {
  background: #1a1208; color: #6a4a2a;
  padding: 80px 40px 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
footer h4 {
  color: #d4a574; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
footer ul { list-style: none; }
footer li { margin: 8px 0; }
footer a { color: #6a4a2a; font-size: 11px; }
footer a:hover { color: #d4a574; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff8e7; letter-spacing: 5px; margin-bottom: 12px; }
.footer-about { color: #8b6a4a; font-size: 11px; line-height: 1.7; max-width: 280px; }

.footer-payments {
  border-top: 1px solid #2c1810; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-icon {
  background: white; color: #2c1810;
  padding: 6px 12px; font-size: 10px;
  font-weight: 700; border-radius: 2px;
  letter-spacing: 1px;
}

.footer-trust {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; padding: 14px 0;
  border-top: 1px solid #2c1810;
}
.trust-badge {
  background: #fff; padding: 6px 12px;
  font-size: 9px; color: #2c1810;
  border-radius: 2px; letter-spacing: 1px;
  display: flex; align-items: center; gap: 6px;
  font-weight: 600;
}
.trust-badge::before { content: attr(data-icon); }

.footer-legal {
  border-top: 1px solid #2c1810; padding-top: 20px;
  text-align: center; font-size: 10px; color: #3a2810;
  letter-spacing: 1px;
}
.footer-legal a { color: #3a2810; margin: 0 10px; font-size: 9px; }

/* The ONLY tell — subtle disclosure, visible if you look */
.tiny-disclosure {
  margin-top: 18px; padding: 8px;
  font-size: 9px; color: #4a3820;           /* ~2:1 contrast on #1a1208 — technically visible */
  font-style: italic; text-align: center;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* ============================================
   APP INSTALL BANNER — top-of-top sticky layer
   ============================================ */
.app-install-bar {
  position: sticky;
  top: 0;
  background: #000;
  color: #fff8e7;
  padding: 8px 20px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  z-index: 100;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.app-install-bar b { color: #d4a574; }
.app-install-bar .app-cta {
  background: #d4a574; color: #2c1810;
  padding: 4px 12px; border-radius: 20px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer; border: none;
}
.app-install-bar .app-close {
  background: none; border: none; color: #666;
  cursor: pointer; font-size: 11px;
}

/* ============================================
   SCROLL-GATED REWARDS — gamification horror
   ============================================ */
.scroll-rewards {
  position: fixed; top: 90px; left: 50%;
  transform: translateX(-50%); z-index: 80;
  background: linear-gradient(90deg, #c0392b, #d4a574);
  color: white; padding: 8px 22px;
  border-radius: 30px; font-size: 11px;
  letter-spacing: 2px; font-weight: 700;
  box-shadow: 0 8px 26px rgba(192,57,43,0.4);
  animation: wiggle 4s infinite;
  display: flex; align-items: center; gap: 10px;
}
.scroll-rewards .bar {
  width: 100px; height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px; overflow: hidden;
}
.scroll-rewards .bar-fill {
  height: 100%; background: white;
  width: 0%; transition: width 0.3s;
}

/* ============================================
   SESSION EXPIRING — panic popup
   ============================================ */
.session-modal {
  position: fixed; inset: 0; z-index: 930;
  background: rgba(192,57,43,0.85);
  display: none; align-items: center; justify-content: center;
}
.session-modal.show { display: flex; animation: flash 0.3s; }
@keyframes flash { 0% { opacity: 0; } 100% { opacity: 1; } }
.session-content {
  background: white; padding: 50px 60px;
  text-align: center; max-width: 480px;
  border: 4px solid #c0392b;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.session-content h2 { color: #c0392b; font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 12px; }
.session-count {
  font-size: 72px; font-family: 'Courier New', monospace;
  color: #c0392b; font-weight: 700;
  animation: blink-urgent 0.5s infinite;
  margin: 20px 0;
}
.session-stay {
  padding: 16px 40px; background: #2c1810; color: white;
  border: none; cursor: pointer; font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 4px;
}

/* ============================================
   SPIN TO WIN — classic dropship dark pattern
   ============================================ */
.spin-modal {
  position: fixed; inset: 0; z-index: 935;
  background: rgba(44,24,16,0.85);
  display: none; align-items: center; justify-content: center;
}
.spin-modal.show { display: flex; }
.spin-content {
  background: linear-gradient(135deg, #fff8e7, #f4e9d8);
  padding: 40px; max-width: 520px; text-align: center;
  border: 3px solid #d4a574;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
}
.spin-close {
  position: absolute; bottom: 6px; right: 8px;
  background: none; border: none; color: #ddd;
  font-size: 9px; cursor: pointer;
  text-decoration: underline;
}
.spin-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px; color: #2c1810;
  margin-bottom: 8px;
}
.spin-content .sub { color: #8b6a4a; font-size: 12px; margin-bottom: 22px; }

.wheel-wrap {
  width: 260px; height: 260px; margin: 0 auto; position: relative;
}
.wheel {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #c0392b 0 45deg,
    #d4a574 45deg 90deg,
    #2c1810 90deg 135deg,
    #8b6a4a 135deg 180deg,
    #c0392b 180deg 225deg,
    #f4d7a5 225deg 270deg,
    #2c1810 270deg 315deg,
    #d4a574 315deg 360deg
  );
  border: 6px solid #2c1810;
  box-shadow: 0 0 0 4px #d4a574, 0 20px 50px rgba(0,0,0,0.4);
  transition: transform 4.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.wheel-pointer {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; z-index: 2;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 28px solid #c0392b;
}
.wheel-labels {
  position: absolute; inset: 0; pointer-events: none;
  display: grid; place-items: center;
}
.wheel-label {
  position: absolute; color: white;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; font-family: 'Bebas Neue', sans-serif;
  transform-origin: center 130px;
}
.spin-email {
  margin-top: 18px; width: 100%; padding: 12px;
  border: 1px solid #d4a574; font-size: 13px;
}
.spin-btn {
  margin-top: 10px; width: 100%; padding: 16px;
  background: #c0392b; color: white; border: none;
  cursor: pointer; font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 5px;
}
.spin-reject { font-size: 9px; color: #ddd; margin-top: 8px; display: block; text-align: center; background: none; border: none; cursor: pointer; text-decoration: underline; }

/* ============================================
   AGE-VERIFICATION GATE — absurd on candles
   ============================================ */
.age-modal {
  position: fixed; inset: 0; z-index: 960;
  background: #2c1810;
  display: none; align-items: center; justify-content: center;
}
.age-modal.show { display: flex; }
.age-content {
  background: #fff8e7; padding: 60px 80px;
  text-align: center; max-width: 480px;
  border: 2px solid #d4a574;
}
.age-content h2 { font-family: 'Playfair Display', serif; font-size: 38px; margin-bottom: 12px; color: #2c1810; }
.age-content p { color: #8b6a4a; font-size: 12px; margin-bottom: 28px; }
.age-buttons { display: flex; gap: 10px; justify-content: center; }
.age-yes { background: #2c1810; color: #fff8e7; padding: 14px 36px; border: none; cursor: pointer; font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 4px; }
.age-no { background: none; color: #c0392b; padding: 14px 20px; border: 1px solid #c0392b; cursor: pointer; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }

/* ============================================
   ACCESSIBILITY WIDGET — FAB of lies
   ============================================ */
.a11y-fab {
  position: fixed; top: 50%; right: 24px;
  transform: translateY(60px);
  width: 44px; height: 44px;
  background: #1a73e8; color: white;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; z-index: 540;
  box-shadow: 0 6px 22px rgba(26,115,232,0.4);
  font-size: 22px;
}
.a11y-panel {
  position: fixed; top: 50%; right: 78px;
  transform: translateY(-50%);
  background: white; padding: 20px;
  width: 260px; z-index: 540;
  display: none; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border-radius: 8px;
}
.a11y-panel.show { display: block; }
.a11y-panel h4 { font-size: 11px; letter-spacing: 2px; color: #2c1810; margin-bottom: 12px; text-transform: uppercase; font-family: 'Poppins', sans-serif; }
.a11y-panel label { display: flex; gap: 8px; padding: 6px 0; font-size: 11px; color: #6a4a2a; cursor: pointer; }
.a11y-panel .a11y-note { font-size: 9px; color: #b5a891; margin-top: 10px; font-style: italic; }

/* ============================================
   DEBUG PANEL — visible "internal" state at page bottom
   ============================================ */
.debug-panel {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #000; color: #0f0;
  font-family: 'Courier New', monospace;
  font-size: 10px; padding: 6px 14px;
  z-index: 300;
  white-space: nowrap; overflow-x: auto;
  letter-spacing: 0.5px;
  opacity: 0.92;
}
.debug-panel .k { color: #ff0; }
.debug-panel .v { color: #0ff; }
.debug-panel .warn { color: #f60; }

/* ============================================
   TRANSLATOR BANNER
   ============================================ */
.translate-banner {
  position: fixed; top: 110px; left: 20px; z-index: 560;
  background: white; padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  font-size: 11px; color: #6a4a2a;
  max-width: 300px;
  border-left: 3px solid #1a73e8;
  display: none;
}
.translate-banner.show { display: block; }
.translate-banner button { margin-top: 8px; margin-right: 6px; padding: 5px 12px; font-size: 10px; border: none; cursor: pointer; }
.translate-banner .translate { background: #1a73e8; color: white; }
.translate-banner .keep { background: #eee; color: #aaa; }

/* ============================================
   CURSOR SPARKLES
   ============================================ */
.sparkle {
  position: fixed;
  pointer-events: none;
  user-select: none;
  font-size: 14px;
  z-index: 9999;
  animation: sparkle-float 1.1s ease-out forwards;
}
body.no-sparkles .sparkle { display: none; }
@keyframes sparkle-float {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -140%) scale(0.4) rotate(180deg); }
}

/* ============================================
   REFERRAL POPUP
   ============================================ */
.referral-toast {
  position: fixed; bottom: 200px; right: 28px; z-index: 540;
  background: linear-gradient(135deg, #f4e9d8, #fff8e7);
  border: 2px solid #d4a574; padding: 18px 22px;
  max-width: 280px; font-size: 11px; color: #6a4a2a;
  box-shadow: 0 8px 26px rgba(0,0,0,0.15);
  animation: slide-in-right 0.4s ease;
}
.referral-toast h4 { color: #c0392b; font-size: 14px; margin-bottom: 4px; font-family: 'Playfair Display', serif; font-weight: 700; }
.referral-toast button { margin-top: 8px; background: #c0392b; color: white; border: none; padding: 6px 14px; font-size: 10px; letter-spacing: 1px; cursor: pointer; }
.referral-toast .close { position: absolute; top: 4px; right: 6px; background: none; border: none; color: #ccc; font-size: 11px; cursor: pointer; }

/* ============================================
   ADMIN PANEL MODAL — the horror
   ============================================ */
.admin-modal {
  position: fixed; inset: 0; z-index: 970;
  background: rgba(0,0,0,0.8);
  display: none; align-items: center; justify-content: center;
}
.admin-modal.show { display: flex; }
.admin-content {
  background: #fafafa; width: 92%; max-width: 980px;
  max-height: 88vh; overflow-y: auto;
  font-family: 'Courier New', monospace;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
}
.admin-header {
  background: #1a73e8; color: white;
  padding: 14px 20px; display: flex;
  justify-content: space-between; align-items: center;
}
.admin-header .brand { font-family: 'Playfair Display', serif; font-size: 16px; letter-spacing: 3px; }
.admin-header small { opacity: 0.85; font-size: 10px; }
.admin-close { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.5); padding: 4px 10px; font-size: 11px; cursor: pointer; font-family: inherit; }

.admin-login { padding: 50px; text-align: center; }
.admin-login h2 { font-family: 'Poppins', sans-serif; color: #2c1810; font-size: 22px; margin-bottom: 14px; }
.admin-login p { color: #888; font-size: 12px; margin-bottom: 24px; }
.admin-login input {
  display: block; width: 100%; max-width: 300px; margin: 6px auto;
  padding: 10px 14px; border: 1px solid #ccc; font-family: inherit;
  font-size: 13px; background: #fff3cd;
}
.admin-login .hint { font-size: 10px; color: #856404; background: #fff3cd; padding: 8px; max-width: 300px; margin: 14px auto; border-left: 3px solid #ffc107; text-align: left; }
.admin-login button {
  padding: 12px 30px; background: #1a73e8; color: white;
  border: none; cursor: pointer; font-size: 13px; letter-spacing: 2px;
  font-family: inherit; margin-top: 14px;
}

.admin-body { padding: 20px; }
.admin-tabs { display: flex; gap: 4px; margin-bottom: 14px; }
.admin-tab { padding: 8px 14px; background: #e8e8e8; color: #666; font-size: 11px; cursor: pointer; border: none; font-family: inherit; }
.admin-tab.active { background: #1a73e8; color: white; }
.admin-section { background: white; padding: 18px; margin-bottom: 14px; border: 1px solid #ddd; font-size: 11px; color: #333; }
.admin-section h3 { font-family: 'Poppins', sans-serif; font-size: 12px; color: #1a73e8; margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.admin-section table { width: 100%; border-collapse: collapse; font-size: 10px; }
.admin-section th { text-align: left; padding: 6px 8px; background: #f0f0f0; color: #666; font-weight: 600; border-bottom: 1px solid #ccc; }
.admin-section td { padding: 6px 8px; border-bottom: 1px solid #eee; color: #333; }
.admin-section tr:hover { background: #ffffcc; }
.admin-section .chip { display: inline-block; padding: 1px 6px; border-radius: 3px; font-size: 9px; margin-right: 4px; }
.admin-section .chip-on { background: #d4edda; color: #155724; }
.admin-section .chip-off { background: #f8d7da; color: #721c24; }
.admin-section button.imp { padding: 3px 9px; background: #c0392b; color: white; border: none; cursor: pointer; font-size: 10px; font-family: inherit; }
.admin-section button.flag { padding: 2px 8px; font-size: 9px; border: none; cursor: pointer; font-family: inherit; }

/* ============================================
   SESSION-REPLAY live panel
   ============================================ */
.session-replay {
  position: fixed; bottom: 60px; right: 20px; z-index: 320;
  width: 320px; max-height: 240px; overflow-y: auto;
  background: #000; color: #0f0;
  font-family: 'Courier New', monospace; font-size: 10px;
  padding: 10px; box-shadow: 0 6px 30px rgba(0,0,0,0.4);
  border: 1px solid #0f0;
  display: none;
}
.session-replay.show { display: block; }
.session-replay .sr-head {
  color: #0ff; font-weight: 700; margin-bottom: 6px;
  display: flex; justify-content: space-between; align-items: center;
}
.session-replay .sr-head .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #f00;
  animation: blink-urgent 1s infinite; display: inline-block; margin-right: 6px;
}
.session-replay .sr-line { opacity: 0.85; }
.session-replay .sr-line.evt-key { color: #ff0; }
.session-replay .sr-line.evt-click { color: #f0f; }
.session-replay .sr-line.evt-mouse { color: #0f0; opacity: 0.5; }

/* ============================================
   COGS BADGE — ?__internal=1 reveal
   ============================================ */
.cogs-badge {
  display: inline-block; margin-left: 6px; padding: 2px 6px;
  background: #fff3cd; color: #856404;
  font-family: 'Courier New', monospace; font-size: 9px;
  border-radius: 2px; letter-spacing: 0.5px;
  vertical-align: middle;
}

/* ============================================
   IMPERSONATION / BYPASS banner
   ============================================ */
.sys-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 990;
  background: #ff9800; color: #000;
  text-align: center; padding: 8px 16px;
  font-family: 'Courier New', monospace; font-size: 12px;
  font-weight: 700; letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.sys-banner.bypass { background: #c0392b; color: white; }
.sys-banner.impersonate { background: #1a73e8; color: white; }

/* ============================================
   COUPON applied UI on checkout
   ============================================ */
.coupon-wrap { display: flex; gap: 8px; margin: 12px 0; }
.coupon-wrap input { flex: 1; padding: 10px; border: 1px solid #d4a574; font-family: inherit; font-size: 12px; }
.coupon-wrap button { padding: 10px 18px; background: #2c1810; color: white; border: none; cursor: pointer; font-size: 11px; letter-spacing: 2px; }
.coupon-applied { padding: 8px 12px; background: #d4edda; color: #155724; font-size: 10px; margin-top: 6px; border-left: 3px solid #4caf50; }

/* ============================================
   COLLECTION PAGE — maximum hostility
   ============================================ */

/* Hero strip */
.coll-hero {
  position: relative;
  height: 280px;
  background: linear-gradient(90deg, #2c1810, #8b6a4a, #c0392b, #d4a574, #2c1810);
  background-size: 400% 100%;
  animation: slide-bg 12s linear infinite;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff8e7;
  overflow: hidden;
}
.coll-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.35);
  background-image: url('https://picsum.photos/seed/orsene-coll-hero/1800/500');
  background-size: cover; background-position: center;
  opacity: 0.4;
}
.coll-hero-inner { position: relative; z-index: 2; }
.coll-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
  color: #fff8e7;
  letter-spacing: 4px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}
.coll-hero .sub {
  font-size: 12px; letter-spacing: 5px;
  color: #f4d7a5; text-transform: uppercase;
  margin-top: 8px;
  animation: blink-urgent 1.8s infinite;
}

/* Breadcrumb absurdity */
.coll-breadcrumb {
  padding: 12px 20px;
  font-size: 10px; color: #b5a891;
  letter-spacing: 1.5px;
  background: #fff8e7;
  border-bottom: 1px solid #ece3d4;
  overflow-x: auto; white-space: nowrap;
}
.coll-breadcrumb a { color: #8b6a4a; }
.coll-breadcrumb .sep { margin: 0 6px; color: #d4a574; }

/* Category tab strip */
.coll-cat-tabs {
  display: flex; gap: 4px; padding: 10px 20px;
  background: #fff8e7; border-bottom: 1px solid #ece3d4;
  overflow-x: auto;
}
.coll-cat-tabs a {
  padding: 8px 14px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #8b6a4a; position: relative;
  white-space: nowrap;
}
.coll-cat-tabs a.active {
  background: #2c1810; color: #fff8e7;
}
.coll-cat-tabs a .new-dot, .coll-cat-tabs a .sale-dot {
  position: absolute; top: 2px; right: -4px;
  background: #c0392b; color: white;
  font-size: 7px; padding: 1px 4px; border-radius: 6px;
  letter-spacing: 1px;
}
.coll-cat-tabs a .sale-dot { background: #4caf50; }

/* Toolbar (sticky under header) */
.coll-toolbar {
  position: sticky;
  top: 62px;
  z-index: 70;
  background: #fdfbf7;
  border-bottom: 1px solid #ece3d4;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: #6a4a2a;
}
.coll-toolbar .count { color: #2c1810; letter-spacing: 1px; }
.coll-toolbar select {
  padding: 6px 10px; font-size: 11px;
  border: 1px solid #ccc; background: white;
  font-family: inherit; color: #6a4a2a;
  max-width: 180px;
}
.coll-toolbar .view-buttons { display: flex; gap: 2px; }
.coll-toolbar .view-buttons button {
  padding: 6px 8px; font-size: 10px;
  border: 1px solid #d0c5b0; background: white;
  cursor: pointer; color: #8b6a4a;
}
.coll-toolbar .view-buttons button.active {
  background: #2c1810; color: #fff8e7; border-color: #2c1810;
}

/* Active filter pills */
.coll-active-filters {
  padding: 10px 20px;
  background: #fff3cd;
  border-bottom: 1px solid #ffc107;
  font-size: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
  align-items: center;
  color: #856404;
}
.coll-active-filters b {
  text-transform: uppercase; letter-spacing: 2px;
  margin-right: 8px;
}
.filter-pill {
  background: #fff; border: 1px solid #ffc107;
  padding: 3px 8px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; color: #856404;
  cursor: pointer;
}
.filter-pill .x { font-weight: 700; color: #c0392b; }
.filter-pill.locked .x { color: #ccc; cursor: not-allowed; }
.filter-pill.locked::after {
  content: '🔒'; font-size: 9px; margin-left: 2px;
}

/* Main layout: sidebar + grid */
.coll-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 20px;
  background: #fdfbf7;
}

/* Sidebar */
.coll-sidebar {
  background: #fff; padding: 20px;
  border: 1px solid #ece3d4;
  font-size: 11px;
  color: #6a4a2a;
  max-height: 88vh;
  overflow-y: auto;
  position: sticky;
  top: 120px;
  align-self: start;
}
.coll-sidebar h3 {
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2c1810; font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 18px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ece3d4;
  display: flex; justify-content: space-between;
  align-items: center; cursor: pointer;
}
.coll-sidebar h3:first-child { margin-top: 0; }
.coll-sidebar h3 .count-pill {
  background: #f4e9d8; color: #8b6a4a;
  padding: 1px 5px; border-radius: 4px;
  font-size: 9px; letter-spacing: 0.5px; font-weight: 500;
}
.coll-sidebar label {
  display: flex; align-items: center; gap: 6px;
  padding: 3px 0; font-size: 11px; cursor: pointer;
}
.coll-sidebar label .c {
  margin-left: auto; color: #b5a891; font-size: 10px;
}
.coll-sidebar .swatch-row {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px;
  margin: 4px 0;
}
.coll-sidebar .swatch {
  width: 22px; height: 22px; border-radius: 50%;
  cursor: pointer; border: 1px solid #ddd;
  position: relative;
}
.coll-sidebar .swatch.unavail::after {
  content: ''; position: absolute; top: 50%; left: -2px; right: -2px;
  height: 1px; background: #999; transform: rotate(-40deg);
}
.coll-sidebar .price-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; margin: 6px 0;
}
.coll-sidebar .price-row input {
  padding: 5px; border: 1px solid #d0c5b0; font-size: 11px;
  font-family: inherit; width: 100%;
}
.coll-sidebar .price-presets {
  display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px;
}
.coll-sidebar .price-presets button {
  padding: 3px 8px; background: #f4e9d8;
  border: 1px solid #d4a574; font-size: 9px;
  cursor: pointer; font-family: inherit;
  color: #8b6a4a;
}
.coll-sidebar .slider-row input[type="range"] { width: 100%; }
.coll-sidebar .apply-wrap {
  margin-top: 20px; padding-top: 14px;
  border-top: 2px solid #2c1810;
  position: sticky; bottom: 0; background: white;
}
.coll-sidebar .apply-wrap button {
  display: block; width: 100%; padding: 10px;
  background: #c0392b; color: white; border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 3px; cursor: pointer;
  margin-bottom: 6px;
}
.coll-sidebar .apply-wrap button.clear {
  background: none; color: #c0392b;
  border: 1px solid #c0392b;
  font-size: 10px;
}
.coll-sidebar .apply-wrap .auto {
  font-size: 9px; color: #b5a891;
  display: flex; align-items: center; gap: 4px; margin-top: 6px;
}

/* Grid */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* The card — now laden with everything */
.coll-card {
  background: white;
  border: 1px solid #ece3d4;
  position: relative;
  padding: 8px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.coll-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); }
.coll-card.sponsored { border-color: #ffc107; background: #fffbeb; }
.coll-card.sponsored::before {
  content: 'SPONSORED · AD'; position: absolute;
  top: 0; left: 0; right: 0;
  background: #ffc107; color: #856404;
  font-size: 8px; letter-spacing: 2px; padding: 2px;
  text-align: center; font-weight: 700; z-index: 3;
}
.coll-card .img-wrap {
  position: relative;
  width: 100%; aspect-ratio: 1;
  background: #ece3d4;
  overflow: hidden;
  margin-bottom: 8px;
}
.coll-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.25s;
}
.coll-card:hover .img-wrap img { transform: scale(1.04); }

/* Lots of badges */
.coll-card .badges-tl {
  position: absolute; top: 6px; left: 6px;
  display: flex; flex-direction: column; gap: 2px; z-index: 2;
}
.coll-card .badges-tr {
  position: absolute; top: 6px; right: 6px;
  display: flex; flex-direction: column; gap: 2px; z-index: 2;
}
.coll-card .b {
  font-size: 8px; letter-spacing: 1px; padding: 2px 5px;
  text-transform: uppercase; font-weight: 700;
  backdrop-filter: blur(2px);
}
.coll-card .b-sale { background: #c0392b; color: white; }
.coll-card .b-new { background: #2c1810; color: #f4d7a5; }
.coll-card .b-lim { background: #d4a574; color: #2c1810; }
.coll-card .b-best { background: #f4d7a5; color: #2c1810; }
.coll-card .b-pick { background: #4caf50; color: white; }
.coll-card .b-low { background: #ff9800; color: white; }
.coll-card .b-eco { background: #8bc34a; color: white; }
.coll-card .b-vip { background: #9c27b0; color: white; }

/* Quick-view buttons on image hover */
.coll-card .qv-row {
  position: absolute; bottom: 6px; left: 6px; right: 6px;
  display: flex; gap: 4px;
  opacity: 0; transition: opacity 0.2s;
}
.coll-card:hover .qv-row { opacity: 1; }
.coll-card .qv-row button {
  flex: 1; padding: 5px 4px; font-size: 8px;
  letter-spacing: 1px; border: none;
  background: rgba(44, 24, 16, 0.85); color: white;
  cursor: pointer; text-transform: uppercase;
}

/* Meta */
.coll-card .sp-mini {
  font-size: 8px; letter-spacing: 2px;
  color: #b5a891; text-transform: uppercase;
}
.coll-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 12px; color: #2c1810;
  font-weight: 400; line-height: 1.3;
  margin: 2px 0 4px;
}
.coll-card .stars { color: #d4a574; font-size: 9px; letter-spacing: 1px; }
.coll-card .stars .c { color: #b5a891; font-size: 9px; margin-left: 3px; }
.coll-card .price {
  font-size: 12px; color: #2c1810;
  margin-top: 4px; font-weight: 600;
}
.coll-card .price .old {
  text-decoration: line-through;
  color: #b5a891; margin-right: 4px;
  font-size: 10px; font-weight: 400;
}
.coll-card .price .save {
  background: #c0392b; color: white;
  font-size: 8px; padding: 1px 4px;
  letter-spacing: 0.5px; margin-left: 4px;
  vertical-align: middle;
}
.coll-card .from-price {
  font-size: 9px; color: #8b6a4a; font-style: italic;
}

/* Swatch dots on card */
.coll-card .card-swatches {
  display: flex; gap: 3px; margin-top: 6px;
  height: 14px;
}
.coll-card .card-swatches span {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid #d0c5b0; position: relative;
}
.coll-card .card-swatches span.oos::after {
  content: ''; position: absolute; top: 50%; left: -1px; right: -1px;
  height: 1px; background: #999;
  transform: rotate(-40deg);
}
.coll-card .more-colors {
  font-size: 8px; color: #8b6a4a; letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Scarcity / social proof mini-lines */
.coll-card .stock-warn {
  font-size: 8px; color: #c0392b;
  margin-top: 4px; letter-spacing: 0.5px;
  text-transform: uppercase; font-weight: 600;
  animation: blink-urgent 2s infinite;
}
.coll-card .sold-today {
  font-size: 8px; color: #8b6a4a;
  margin-top: 2px;
}
.coll-card .subscribe {
  font-size: 8px; color: #4caf50;
  margin-top: 2px;
}
.coll-card .tiered {
  font-size: 8px; color: #8b6a4a;
  margin-top: 2px; font-family: monospace;
}
.coll-card .points {
  font-size: 8px; color: #9c27b0;
  margin-top: 2px; letter-spacing: 0.5px;
}
.coll-card .drop-timer {
  font-size: 8px; color: #c0392b;
  margin-top: 2px; font-family: monospace;
}

/* Compare + wishlist on card */
.coll-card .card-actions {
  display: flex; justify-content: space-between;
  margin-top: 8px; padding-top: 6px;
  border-top: 1px solid #ece3d4;
  font-size: 9px; color: #8b6a4a;
}
.coll-card .card-actions label {
  display: flex; align-items: center; gap: 3px;
  cursor: pointer;
}

/* Mid-grid banners */
.coll-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #8b1a1a, #c0392b, #d4a574);
  color: white;
  padding: 30px 40px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  position: relative; overflow: hidden;
}
.coll-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-style: italic;
  color: white; margin-bottom: 4px;
  letter-spacing: 2px; font-weight: 300;
}
.coll-banner p {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #fff8e7;
}
.coll-banner button {
  background: #fff8e7; color: #2c1810;
  border: none; padding: 12px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 3px;
  cursor: pointer;
}
.coll-banner.green { background: linear-gradient(135deg, #4caf50, #8bc34a); }
.coll-banner.dark { background: linear-gradient(135deg, #1a1208, #2c1810); }
.coll-banner.app { background: linear-gradient(135deg, #9c27b0, #673ab7); }

/* Wide sponsored card */
.coll-card.wide {
  grid-column: span 2;
  grid-row: span 1;
  background: linear-gradient(135deg, #fffbeb, #fff3cd);
  border: 2px solid #ffc107;
}
.coll-card.wide .img-wrap { aspect-ratio: 2/1; }

/* Load more + pagination soup */
.coll-loadmore-wrap {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 0;
  background: #fff8e7;
  margin-top: 10px;
}
.coll-progress {
  max-width: 420px; margin: 0 auto 14px;
  height: 6px; background: #ece3d4; border-radius: 3px;
  overflow: hidden;
}
.coll-progress-fill {
  height: 100%; background: linear-gradient(90deg, #c0392b, #d4a574);
  width: 20%;
}
.coll-loadmore {
  padding: 14px 40px; background: #2c1810; color: white;
  border: none; font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 4px; cursor: pointer;
}
.coll-loadmore:hover { background: #6a4a2a; }
.coll-loadmore-info {
  font-size: 10px; color: #8b6a4a; margin-top: 10px;
  letter-spacing: 1px;
}
.coll-pagenums {
  display: flex; gap: 3px; justify-content: center;
  margin-top: 18px; flex-wrap: wrap;
}
.coll-pagenums a {
  padding: 5px 9px; background: white;
  border: 1px solid #d0c5b0; font-size: 10px;
  color: #6a4a2a;
}
.coll-pagenums a.active { background: #2c1810; color: white; border-color: #2c1810; }

/* Compare bar (floating bottom) */
.compare-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #2c1810;
  color: #fff8e7;
  padding: 12px 20px;
  display: flex; gap: 12px; align-items: center;
  z-index: 400;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  font-size: 11px; letter-spacing: 1px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.2);
}
.compare-bar.show { transform: translateY(0); }
.compare-bar b { color: #d4a574; font-size: 12px; }
.compare-bar .slots {
  display: flex; gap: 6px; flex: 1;
}
.compare-bar .slot {
  width: 46px; height: 46px; background: #3e2d1f;
  border: 1px dashed #6a4a2a; display: flex;
  align-items: center; justify-content: center;
  font-size: 8px; color: #8b6a4a;
}
.compare-bar .slot img { width: 100%; height: 100%; object-fit: cover; }
.compare-bar button {
  padding: 8px 16px; background: #d4a574; color: #2c1810;
  border: none; cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 3px;
}
.compare-bar button.clear {
  background: transparent; color: #8b6a4a;
  text-decoration: underline;
  font-family: inherit; letter-spacing: 1px;
}

/* Editorial + SEO wall */
.seo-wall {
  background: #fff8e7;
  padding: 50px 40px;
  color: #b5a891;
  font-size: 11px;
  line-height: 1.8;
}
.seo-wall h2 { color: #2c1810; font-family: 'Playfair Display', serif; font-size: 22px; margin: 20px 0 10px; }
.seo-wall h3 { color: #6a4a2a; font-size: 14px; margin: 14px 0 8px; font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: 1px; }
.seo-wall p { margin-bottom: 8px; }
.seo-wall a { color: #8b6a4a; }

/* List / compact / dense views */
.coll-grid.view-list { grid-template-columns: 1fr; }
.coll-grid.view-list .coll-card { display: grid; grid-template-columns: 180px 1fr; gap: 14px; }
.coll-grid.view-list .coll-card .img-wrap { aspect-ratio: 1; }

.coll-grid.view-compact { grid-template-columns: repeat(7, 1fr); gap: 8px; }
.coll-grid.view-compact .coll-card { padding: 4px; }
.coll-grid.view-compact .coll-card h4 { font-size: 10px; }
.coll-grid.view-compact .coll-card .qv-row { display: none; }
.coll-grid.view-compact .coll-card .card-actions { display: none; }

.coll-grid.view-dense { grid-template-columns: repeat(9, 1fr); gap: 4px; }
.coll-grid.view-dense .coll-card { padding: 2px; }
.coll-grid.view-dense .coll-card h4,
.coll-grid.view-dense .coll-card .stars,
.coll-grid.view-dense .coll-card .stock-warn,
.coll-grid.view-dense .coll-card .sold-today,
.coll-grid.view-dense .coll-card .tiered,
.coll-grid.view-dense .coll-card .points,
.coll-grid.view-dense .coll-card .subscribe,
.coll-grid.view-dense .coll-card .card-swatches,
.coll-grid.view-dense .coll-card .more-colors,
.coll-grid.view-dense .coll-card .drop-timer,
.coll-grid.view-dense .coll-card .card-actions,
.coll-grid.view-dense .coll-card .qv-row { display: none; }
.coll-grid.view-dense .coll-card .price { font-size: 10px; }

.coll-grid.view-scatter .coll-card:nth-child(3n+1) { transform: translateY(12px); }
.coll-grid.view-scatter .coll-card:nth-child(4n+2) { transform: translateY(-8px) rotate(-0.5deg); }
.coll-grid.view-scatter .coll-card:nth-child(5n+3) { transform: translateY(6px) rotate(0.5deg); }

/* ============================================
   "WHAT IS THIS?" BADGE + MODAL — the earnest bit
   The one piece of UI that isn't trying to trick you.
   Pinned above every hostile overlay (age gate, spin, session panic…).
   Styled as a gallery wall label, echoing "Exhibit · 01" on the landing.
   ============================================ */
.demo-badge {
  position: fixed !important;
  top: 16px;
  right: 16px;
  z-index: 9999 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 20px 14px;
  min-width: 192px;
  background: #f6f1e8;
  border: 1px solid #1b1410;
  border-radius: 2px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 28px rgba(27, 20, 16, 0.14),
    0 2px 6px rgba(27, 20, 16, 0.08);
  color: #1b1410;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  overflow: visible;
}
.demo-badge::before,
.demo-badge::after { content: none !important; display: none !important; }

.demo-badge .overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(27, 20, 16, 0.72);
}

.demo-badge .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c96a2b;
  box-shadow: 0 0 0 0 rgba(201, 106, 43, 0.55);
  animation: plaque-pulse 2.6s ease-in-out infinite;
}

.demo-badge .title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: 0.2px;
  color: #1b1410;
}

.demo-badge:hover {
  background: #fcf8ee;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 16px 36px rgba(27, 20, 16, 0.2),
    0 3px 10px rgba(27, 20, 16, 0.1);
}
.demo-badge:active {
  background: #f0d9a8;
  transform: translateY(0);
  transition: transform 0.08s ease, background 0.08s ease;
}
.demo-badge:focus-visible {
  outline: 2px solid #1b1410;
  outline-offset: 3px;
}

@keyframes plaque-pulse {
  0%, 100% {
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(201, 106, 43, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(201, 106, 43, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-badge .dot { animation: none; opacity: 0.9; }
}

.demo-modal {
  position: fixed !important; inset: 0; z-index: 9998 !important;
  background: rgba(44, 24, 16, 0.82);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.demo-modal.show { display: flex; }

.demo-modal {
  gap: 18px;
}
.demo-modal-content {
  background: #fff8e7;
  flex: 0 1 auto;
  width: 100%;
  max-width: 820px;
  max-height: 88vh;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #2c1810;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  z-index: 2;
}

/* Left column — the earnest explainer */
.demo-modal .demo-left {
  padding: 24px 26px;
  overflow-y: auto;
  max-height: 92vh;
  background: #fff;
  border-right: 1px solid #f4e9d8;
}
.demo-modal .demo-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #2c1810;
  margin-bottom: 4px;
  padding-right: 36px;
}
.demo-modal .demo-left .lede {
  font-size: 12px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.45;
}
.demo-modal .demo-left p {
  font-size: 12px;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.45;
}
.demo-modal .demo-left .tip {
  background: #fff3cd;
  border-left: 3px solid #ffc107;
  padding: 8px 12px;
  font-size: 11px;
  color: #856404;
  margin: 12px 0 10px;
  line-height: 1.4;
}
.demo-modal .demo-left .fun-lede {
  font-size: 12px;
  color: #8b1a1a;
  font-style: italic;
  padding: 8px 12px;
  background: linear-gradient(90deg, rgba(192, 57, 43, 0.08), rgba(212, 165, 116, 0.12));
  border-left: 3px solid #c0392b;
  margin: 10px 0;
  line-height: 1.4;
}
.demo-modal .demo-left .demo-credit {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #ece3d4;
  font-size: 11px;
  color: #8b6a4a;
  text-align: center;
  line-height: 1.5;
}
.demo-modal .demo-left .demo-credit a {
  color: #2c1810;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #d4a574;
  text-underline-offset: 2px;
}
.demo-modal .demo-left .demo-credit a:hover {
  color: #c0392b;
  text-decoration-color: #c0392b;
}
.demo-modal .demo-left h4.left-h4 {
  font-size: 9px; letter-spacing: 2.2px;
  text-transform: uppercase; color: #8b6a4a;
  margin: 10px 0 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.demo-modal .demo-left ul.left-list {
  list-style: disc;
  padding-left: 16px;
  margin: 0 0 4px;
}
.demo-modal .demo-left ul.left-list li {
  font-size: 11px;
  color: #4a3218;
  margin: 3px 0;
  line-height: 1.4;
}
.demo-modal .demo-left ul.left-list li code {
  background: #f4e9d8;
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #6a4a2a;
  word-break: break-all;
}
.demo-modal-content .close {
  position: absolute;
  top: 12px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #f4e9d8;
  color: #2c1810;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.demo-modal-content .close:hover { background: #d4a574; }
.demo-modal-content .got-it {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 28px;
  background: #2c1810;
  color: #fff8e7;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
}
.demo-modal-content .got-it:hover { background: #6a4a2a; }

/* Right column — dark-pattern inventory */
.demo-modal .demo-right {
  background: #f4e9d8;
  padding: 28px 32px;
  overflow-y: auto;
  max-height: 88vh;
  position: relative;
}
.demo-modal .demo-right h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #8b6a4a;
  margin: 0 0 14px;
  font-weight: 700;
}
.demo-modal .dp-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.demo-modal .demo-right-hint {
  font-size: 10px; color: #b5a891;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-style: italic;
}
.demo-modal .dp-row {
  width: 100%;
  text-align: left;
  background: #fff8e7;
  border: 1px solid #ead7b8;
  border-radius: 6px;
  padding: 9px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #2c1810;
  letter-spacing: 0.2px;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.demo-modal .dp-row:hover {
  border-color: #d4a574;
  background: #fff;
}
.demo-modal .dp-row.cycling {
  border-color: #8b6a4a;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(139, 106, 74, 0.15);
}
.demo-modal .dp-row.selected {
  border-color: #c0392b;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.25);
  transform: translateX(2px);
}
.demo-modal .dp-row:focus-visible {
  outline: 2px solid #d4a574;
  outline-offset: -2px;
}
.demo-modal .dp-row .dp-name { flex: 1; line-height: 1.3; }
.demo-modal .dp-row .dp-chev {
  font-size: 14px;
  color: #8b6a4a;
  transition: transform 0.22s ease, color 0.18s;
}
.demo-modal .dp-row.selected .dp-chev { color: #c0392b; transform: translateX(3px); }
.demo-modal .dp-row.cycling .dp-chev { color: #8b6a4a; }

.demo-modal .dp-active {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  letter-spacing: 1.4px;
  color: #c0392b;
  font-weight: 700;
  text-transform: uppercase;
}
.demo-modal .dp-active::before {
  content: "";
  width: 7px; height: 7px;
  background: #c0392b;
  border-radius: 50%;
  animation: dp-pulse 1.4s ease-in-out infinite;
}
@keyframes dp-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.5); }
  50%      { transform: scale(1.15); opacity: 0.85; box-shadow: 0 0 0 6px rgba(192, 57, 43, 0); }
}

/* ============================================
   THE POWERPOINT SLIDE PANEL — max 2005 energy
   ============================================ */
.demo-modal .demo-slide {
  flex: 0 0 auto;
  width: 560px;
  max-height: 92vh;
  min-height: 620px;
  position: relative;
  z-index: 2;
  color: white;
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', cursive;
  padding: 34px 34px 28px;
  overflow: hidden;

  /* Background: classic PowerPoint 2003 gradient + starburst */
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 255, 200, 0.45), transparent 45%),
    radial-gradient(ellipse at 85% 90%, rgba(255, 0, 200, 0.28), transparent 45%),
    repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(255, 255, 255, 0.05) 0deg 8deg,
      rgba(255, 255, 255, 0) 8deg 16deg),
    linear-gradient(135deg, #07368f 0%, #2c74d9 35%, #7fc8ff 75%, #d5efff 100%);

  /* Chunky chrome border */
  border: 3px solid #ffd700;
  outline: 2px dashed #ff1493;
  outline-offset: 0;
  box-shadow:
    0 0 0 6px rgba(0, 0, 0, 0.2),
    0 25px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(255, 255, 255, 0.25);

  animation: slide-wobble 7s ease-in-out infinite;
}
@keyframes slide-wobble {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  25%      { transform: rotate(-0.4deg) translateY(-2px); }
  75%      { transform: rotate(0.4deg) translateY(2px); }
}

/* Background drift stars */
.demo-slide .slide-bg-stars {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.demo-slide .slide-drift {
  position: absolute;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  animation: drift 8s linear infinite;
  text-shadow: 0 0 6px rgba(255, 255, 0, 0.9);
}
@keyframes drift {
  0%   { transform: translate(0, 0) rotate(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(-40px, -60px) rotate(180deg) scale(1.4); opacity: 0; }
}

/* Corner stars */
.demo-slide .slide-star {
  position: absolute;
  font-size: 64px;
  color: #ffd700;
  text-shadow:
    0 0 0 #ff1493,
    2px 2px 0 #ff1493,
    -2px -2px 0 #ff1493,
    0 0 14px rgba(255, 215, 0, 0.95);
  animation: slide-star-spin 4s linear infinite;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}
.demo-slide .star-tl { top: -14px; left: -10px; }
.demo-slide .star-tr { top: -14px; right: -10px; animation-direction: reverse; }
.demo-slide .star-bl { bottom: -14px; left: -10px; animation-direction: reverse; }
.demo-slide .star-br { bottom: -14px; right: -10px; }
@keyframes slide-star-spin {
  0%   { transform: rotate(0) scale(1); }
  50%  { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Inner content stack */
.demo-slide .slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; gap: 10px;
  overflow-y: auto;
}

.demo-slide .slide-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  color: #ffd700;
  text-shadow: 1px 1px 0 #07368f, 0 0 8px rgba(255, 215, 0, 0.6);
  margin-bottom: 2px;
}
.demo-slide .slide-badge {
  display: inline-block;
  background: #c0392b;
  color: #ffd700;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
  border-radius: 3px;
  box-shadow: 1px 1px 0 #000;
  animation: dp-pulse 1.4s infinite;
}
.demo-slide .slide-badge.inactive {
  background: #888; color: #fff; animation: none;
}
.demo-slide .slide-counter {
  font-family: 'Comic Sans MS', cursive;
  font-style: italic;
  color: white;
  font-size: 11px;
}

/* WordArt title */
.demo-slide .slide-title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin: 6px 0 4px;
  color: #ffeb3b;
  letter-spacing: 2px;
  transform: skewX(-10deg) rotate(-1.5deg);
  text-shadow:
    2px 0 0 #ff1493,
    4px 0 0 #ff1493,
    6px 0 0 #ff1493,
    2px 2px 0 #07368f,
    4px 4px 0 #07368f,
    6px 6px 0 #07368f,
    8px 8px 14px rgba(0, 0, 0, 0.6);
  padding: 6px 4px;
  word-break: break-word;
}

.demo-slide .slide-pin-note {
  font-size: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 6px;
  text-shadow: 1px 1px 0 #07368f;
}

.demo-slide .slide-bullet {
  background: rgba(255, 255, 255, 0.96);
  color: #07368f;
  padding: 12px 14px;
  font-size: 13px;
  border-left: 7px solid #ff1493;
  box-shadow:
    inset 0 0 0 1px #ffd700,
    3px 3px 0 #07368f,
    5px 5px 14px rgba(0, 0, 0, 0.35);
  position: relative;
  opacity: 0;
  animation: bullet-fly-in 0.55s cubic-bezier(0.25, 1.2, 0.4, 1.1) forwards;
}
.demo-slide .slide-bullet.slide-bad { border-left-color: #c0392b; animation-delay: 0.12s; }
.demo-slide .slide-bullet.slide-fix { border-left-color: #2e7d32; animation-delay: 0.28s; }

@keyframes bullet-fly-in {
  0%   { opacity: 0; transform: translateX(60px) rotate(-3deg); }
  70%  { opacity: 1; transform: translateX(-4px) rotate(0.8deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0); }
}

.demo-slide .slide-lbl {
  font-family: 'Impact', 'Arial Black', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: #c0392b;
  margin-bottom: 4px;
  text-shadow: 1px 1px 0 #ffd700;
}
.demo-slide .slide-bullet.slide-fix .slide-lbl { color: #2e7d32; }
.demo-slide .slide-text {
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
  font-size: 13px;
  line-height: 1.45;
  color: #07368f;
}

/* Footer */
.demo-slide .slide-footer {
  margin-top: auto;
  padding-top: 8px;
  text-align: center;
  font-family: 'Comic Sans MS', cursive;
  font-style: italic;
  font-size: 11px;
  color: white;
  text-shadow: 1px 1px 0 #07368f;
  border-top: 2px dotted rgba(255, 215, 0, 0.65);
}

/* Fresh burst on swap */
.demo-slide.swap .slide-title,
.demo-slide.swap .slide-bullet,
.demo-slide.swap .slide-counter {
  animation-duration: 0.55s;
}
.demo-slide.swap .slide-title {
  animation: title-pop 0.55s ease;
}
@keyframes title-pop {
  0%   { transform: skewX(-10deg) rotate(-1.5deg) scale(0.8); opacity: 0; }
  60%  { transform: skewX(-10deg) rotate(-1.5deg) scale(1.08); opacity: 1; }
  100% { transform: skewX(-10deg) rotate(-1.5deg) scale(1); }
}

/* ============================================
   LIVE DEMO showcase inside slide
   ============================================ */
.demo-slide .slide-demo-wrap {
  margin-top: 4px;
}
.demo-slide.swap .slide-demo-wrap {
  animation: bullet-fly-in 0.55s cubic-bezier(0.25, 1.2, 0.4, 1.1) both;
  animation-delay: 0.42s;
}
.demo-slide .slide-demo-label {
  font-family: 'Comic Sans MS', cursive;
  font-size: 10px;
  font-style: italic;
  text-align: center;
  color: #ffd700;
  text-shadow: 1px 1px 0 #07368f, 0 0 4px rgba(255, 215, 0, 0.7);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.demo-slide .slide-demo {
  background: white;
  color: #2c1810;
  padding: 10px 12px;
  border: 2px solid #fff;
  box-shadow:
    inset 0 0 0 1px #ffd700,
    3px 3px 0 #07368f,
    5px 5px 14px rgba(0, 0, 0, 0.4);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
  min-height: 70px;
}
.slide-demo .dm-caption {
  font-size: 9px; color: #999;
  font-style: italic;
  margin-top: 4px;
  letter-spacing: 0.2px;
  text-align: center;
}

/* countdown */
.slide-demo .dm-countdown {
  background: linear-gradient(90deg, #8b1a1a, #c0392b, #8b1a1a);
  color: #fff8e7;
  text-align: center;
  padding: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  animation: blink-urgent 1.4s infinite;
}
.slide-demo .dm-time {
  display: inline-block;
  background: #000; color: #ff3838;
  padding: 2px 8px; margin: 0 4px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  border-radius: 2px;
}

/* consents */
.slide-demo .dm-consents label {
  display: block;
  font-size: 11px; color: #6a4a2a;
  padding: 3px 0;
}
.slide-demo .dm-consents input[type="checkbox"] {
  margin-right: 4px; vertical-align: middle;
}

/* stock */
.slide-demo .dm-stock {
  background: #fff3cd; color: #856404;
  padding: 7px 10px;
  font-size: 11px;
  border: 1px solid #ffc107;
  border-left: 3px solid #c0392b;
}
.slide-demo .dm-stock .dm-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #c0392b; border-radius: 50%;
  margin-right: 6px; animation: dp-pulse 1.2s infinite;
  vertical-align: middle;
}

/* toast */
.slide-demo .dm-toast {
  background: white;
  border-left: 3px solid #4caf50;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex; gap: 8px; align-items: center;
  font-size: 10px; color: #6a4a2a;
}
.slide-demo .dm-toast img {
  width: 32px; height: 32px; border-radius: 3px; object-fit: cover; flex-shrink: 0;
}
.slide-demo .dm-toast b { color: #2c1810; display: block; font-size: 10px; }
.slide-demo .dm-toast i { font-style: normal; }
.slide-demo .dm-toast small { color: #b5a891; font-size: 9px; display: block; margin-top: 2px; }

/* mini wheel */
.slide-demo .dm-wheel-wrap {
  display: flex; gap: 10px; align-items: center;
}
.slide-demo .dm-wheel {
  width: 80px; height: 80px; border-radius: 50%;
  background: conic-gradient(
    #c0392b 0 45deg, #d4a574 45deg 90deg,
    #2c1810 90deg 135deg, #8b6a4a 135deg 180deg,
    #c0392b 180deg 225deg, #f4d7a5 225deg 270deg,
    #2c1810 270deg 315deg, #d4a574 315deg 360deg);
  border: 3px solid #2c1810;
  box-shadow: 0 0 0 2px #d4a574;
  animation: dm-spin 4s linear infinite;
  flex-shrink: 0;
}
@keyframes dm-spin { to { transform: rotate(360deg); } }
.slide-demo .dm-wheel-text { font-size: 10px; color: #2c1810; }
.slide-demo .dm-wheel-text b {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 2px; color: #c0392b;
  margin-bottom: 2px;
}

/* mini modal (exit / session / age) */
.slide-demo .dm-mini-modal {
  background: #fff8e7;
  border: 2px dashed #c0392b;
  padding: 10px; text-align: center;
  font-size: 11px; color: #2c1810;
}
.slide-demo .dm-mini-modal h5 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-style: italic;
  margin: 2px 0 4px;
  color: #c0392b;
}
.slide-demo .dm-minimodal-eyebrow {
  font-size: 8px; letter-spacing: 3px; color: #c0392b;
  margin-bottom: 2px;
}
.slide-demo .dm-code {
  background: #f4e9d8; border: 1px dashed #d4a574;
  padding: 4px 10px; letter-spacing: 3px;
  font-family: 'Courier New', monospace;
  font-size: 13px; font-weight: 700;
  margin: 4px 0 2px; display: inline-block;
  color: #2c1810;
}
.slide-demo .dm-session-count {
  font-family: 'Courier New', monospace;
  font-size: 28px; font-weight: 700;
  color: #c0392b;
  animation: blink-urgent 0.6s infinite;
  margin: 4px 0 2px;
}
.slide-demo .dm-age-btns {
  margin-top: 6px;
  display: flex; gap: 4px; justify-content: center;
}
.slide-demo .dm-age-yes {
  background: #2c1810; color: #fff8e7;
  padding: 5px 10px; font-family: 'Bebas Neue', sans-serif;
  font-size: 10px; letter-spacing: 2px;
}
.slide-demo .dm-age-no {
  background: none; color: #c0392b;
  padding: 5px 10px; border: 1px solid #c0392b;
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
}

/* cookie banner */
.slide-demo .dm-cookie {
  display: flex; gap: 8px; align-items: center;
  background: #fff8e7; padding: 8px;
  font-size: 9px;
  border: 1px solid #ece3d4;
}
.slide-demo .dm-cookie-text {
  flex: 1; font-size: 8px; color: #6a4a2a; line-height: 1.3;
}
.slide-demo .dm-cookie-text b {
  color: #2c1810; display: inline-block; margin-bottom: 2px;
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
}
.slide-demo .dm-cookie-col {
  display: flex; flex-direction: column; gap: 2px; align-items: flex-end;
}
.slide-demo .dm-accept {
  background: #2c1810; color: #fff8e7;
  padding: 6px 12px; font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 3px;
  white-space: nowrap;
}
.slide-demo .dm-manage {
  font-size: 7px; color: #d0c5b0;
  text-decoration: underline;
}

/* fees */
.slide-demo .dm-fees table { width: 100%; font-size: 10px; color: #6a4a2a; border-collapse: collapse; }
.slide-demo .dm-fees td { padding: 2px 0; }
.slide-demo .dm-fees td:last-child { text-align: right; font-weight: 500; color: #2c1810; }
.slide-demo .dm-fees tr.dm-total td {
  font-weight: 700; color: #2c1810;
  border-top: 1px solid #2c1810;
  padding-top: 3px;
}
.slide-demo .dm-fees .dm-reveal {
  color: #c0392b;
  border-top: 2px dashed #c0392b;
  padding-top: 4px; margin-top: 4px;
  animation: dm-reveal-fade 3.2s infinite;
}
.slide-demo .dm-fees .dm-reveal td { color: #c0392b; }
.slide-demo .dm-fees .dm-reveal tr.dm-total td {
  color: #c0392b; border-top-color: #c0392b;
}
@keyframes dm-reveal-fade {
  0%, 40%  { opacity: 0; transform: translateY(-6px); }
  55%, 100% { opacity: 1; transform: translateY(0); }
}

/* chat */
.slide-demo .dm-chat-msg {
  padding: 6px 10px; border-radius: 12px;
  font-size: 10px; margin: 3px 0;
  max-width: 88%;
  line-height: 1.3;
}
.slide-demo .dm-chat-msg.u {
  background: linear-gradient(135deg, #d4a574, #b89264);
  color: white; margin-left: auto;
  border-bottom-right-radius: 3px;
  text-align: right; font-style: italic;
}
.slide-demo .dm-chat-msg.b {
  background: #f4e9d8; color: #6a4a2a;
  border-bottom-left-radius: 3px;
}

/* upsells */
.slide-demo .dm-upsell {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; font-size: 10px; color: #6a4a2a;
  border-bottom: 1px dashed #ece3d4;
}
.slide-demo .dm-upsell:last-of-type { border-bottom: none; }
.slide-demo .dm-upsell b { color: #c0392b; white-space: nowrap; }
.slide-demo .dm-upsell label { cursor: default; }

/* tab-nap */
.slide-demo .dm-tab {
  background: #e8eaed; padding: 6px 10px;
  font-size: 10px; color: #5f6368;
  border-radius: 6px 6px 0 0;
  border: 1px solid #dadce0;
  display: flex; align-items: center; gap: 6px;
  font-family: -apple-system, system-ui, sans-serif;
  max-width: 100%;
}
.slide-demo .dm-tab-icon { font-size: 11px; flex-shrink: 0; }
.slide-demo .dm-tab-title {
  flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.slide-demo .dm-tab-x { opacity: 0.5; font-size: 13px; flex-shrink: 0; }

/* back-button */
.slide-demo .dm-dialog {
  background: #fff; border: 1px solid #dadce0;
  padding: 12px; box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  font-family: -apple-system, system-ui, sans-serif;
  color: #3c4043; font-size: 11px;
}
.slide-demo .dm-dialog h5 { font-size: 13px; margin-bottom: 6px; color: #202124; font-weight: 500; }
.slide-demo .dm-dialog .dm-btns {
  display: flex; gap: 6px; justify-content: flex-end; margin-top: 8px;
}
.slide-demo .dm-dialog button {
  font-size: 10px; padding: 5px 12px;
  border: 1px solid #dadce0; background: white;
  cursor: default; border-radius: 3px;
  color: #3c4043;
}
.slide-demo .dm-dialog button.dm-primary {
  background: #1a73e8; color: white; border-color: #1a73e8;
}

/* low contrast */
.slide-demo .dm-lowcontrast {
  background: white; color: #cecece;
  font-size: 11px; line-height: 1.5;
  padding: 2px 0;
}

/* broken search */
.slide-demo .dm-search-wrap { font-size: 10px; color: #6a4a2a; }
.slide-demo .dm-search-bar {
  display: flex; border: 1px solid #ccc; background: white;
}
.slide-demo .dm-search-bar input {
  flex: 1; border: none; padding: 5px 10px; font-size: 11px;
  font-family: inherit; background: transparent; color: #333;
  outline: none;
}
.slide-demo .dm-search-btn {
  background: #2c1810; color: white;
  padding: 5px 12px; font-family: 'Bebas Neue', sans-serif;
  font-size: 10px; letter-spacing: 2px;
  white-space: nowrap;
}
.slide-demo .dm-search-result {
  background: #fff3cd; color: #856404;
  padding: 6px 10px; font-size: 10px;
  border: 1px solid #ffc107; margin-top: 4px;
}

/* URL bar (shared: IDOR + bypass) */
.slide-demo .dm-url {
  background: #f5f5f5; border: 1px solid #ccc;
  padding: 5px 10px;
  font-family: 'Courier New', monospace;
  font-size: 10px; color: #0b3a75;
  border-radius: 14px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: flex; align-items: center;
}
.slide-demo .dm-url::before {
  content: '🔒';
  margin-right: 6px;
  font-size: 11px;
}
.slide-demo .dm-url .dm-param { color: #c0392b; font-weight: 700; }
.slide-demo .dm-invoice-row {
  background: #fff8e7; border-left: 3px solid #d4a574;
  padding: 6px 10px; font-size: 10px; color: #6a4a2a;
  margin-top: 4px;
  font-family: 'Courier New', monospace;
}
.slide-demo .dm-invoice-row b { color: #2c1810; display: block; font-family: 'Poppins', sans-serif; }
.slide-demo .dm-bypass-note {
  background: #d4edda; color: #155724;
  padding: 5px 10px; font-size: 10px;
  margin-top: 4px; font-weight: 700;
  border-left: 3px solid #28a745;
}

/* admin panel */
.slide-demo .dm-login {
  background: #fafafa; padding: 9px;
  border: 1px solid #ccc;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 10px;
}
.slide-demo .dm-login-title {
  font-weight: 600; color: #202124;
  margin-bottom: 5px; font-size: 11px;
}
.slide-demo .dm-login input {
  width: 100%; padding: 4px 8px; font-size: 10px;
  background: #fff3cd; border: 1px solid #ffc107;
  font-family: inherit; margin-bottom: 3px;
  color: #333;
}
.slide-demo .dm-login .dm-hint {
  font-size: 9px; color: #856404;
  background: #fff3cd; padding: 4px 7px;
  border-left: 2px solid #ffc107; margin-top: 3px;
  font-style: italic;
}

/* session replay */
.slide-demo .dm-replay {
  background: #000; color: #0f0;
  padding: 8px; font-family: 'Courier New', monospace;
  font-size: 9px; line-height: 1.5;
  border: 1px solid #0f0;
  min-height: 110px;
  max-height: 130px;
  overflow: hidden;
}
.slide-demo .dm-replay .k { color: #ff0; }
.slide-demo .dm-replay .ok { color: #0ff; }
.slide-demo .dm-replay .warn {
  color: #f60; font-weight: 700;
  animation: blink-urgent 0.6s infinite;
}

/* plaintext pw */
.slide-demo .dm-pw-card {
  background: #f4e9d8; padding: 10px 12px;
  border-left: 3px solid #c0392b;
  text-align: center;
}
.slide-demo .dm-pw-label {
  font-size: 10px; color: #6a4a2a; margin-bottom: 4px;
}
.slide-demo .dm-pw {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 20px; letter-spacing: 3px;
  color: #c0392b; font-weight: 700;
  padding: 4px 0;
}

/* HTML comment block */
.slide-demo .dm-code-block {
  background: #1a1a1a; color: #f8f8f2;
  padding: 8px 10px;
  font-family: 'Courier New', monospace;
  font-size: 9px; line-height: 1.4;
  white-space: pre-wrap;
  border-radius: 2px;
}
.slide-demo .dm-code-block .cmt { color: #6a9955; }
.slide-demo .dm-code-block .val { color: #ce9178; }

/* debug panel */
.slide-demo .dm-debug {
  background: #000; color: #0f0;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  padding: 6px 8px;
  letter-spacing: 0.5px;
  overflow: hidden; white-space: nowrap;
  border: 1px solid #0f0;
  text-overflow: ellipsis;
}
.slide-demo .dm-debug .k { color: #ff0; }
.slide-demo .dm-debug .v { color: #0ff; }
.slide-demo .dm-debug .w { color: #f60; font-weight: 700; }

/* AI product copy */
.slide-demo .dm-ai-copy {
  background: #fff8e7; padding: 9px 11px;
  font-size: 10px; color: #6a4a2a; line-height: 1.55;
  border-left: 3px solid #d4a574;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
}
.slide-demo .dm-ai-copy .hl {
  background: #ffe38a; color: #6a4a00;
  padding: 0 2px; border-radius: 2px;
  font-weight: 600;
}

/* AI imagery */
.slide-demo .dm-aiimg {
  position: relative;
  border: 1px solid #ece3d4;
  overflow: hidden;
  line-height: 0;
}
.slide-demo .dm-aiimg img {
  width: 100%; display: block;
  filter: contrast(1.02) saturate(1.05);
}
.slide-demo .dm-aiimg-ring {
  position: absolute;
  right: 22%; top: 35%;
  width: 44px; height: 44px;
  border: 2px solid #c0392b;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.3);
  animation: dm-aiimg-pulse 1.6s infinite;
}
@keyframes dm-aiimg-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.6; }
}
.slide-demo .dm-aiimg-tag {
  position: absolute;
  right: 6px; top: 24%;
  background: #c0392b; color: #fff8e7;
  padding: 2px 6px;
  font-size: 9px; letter-spacing: 1px;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.2;
}

/* brand kit template */
.slide-demo .dm-brandkit {
  background: #f4e9d8; padding: 12px;
  text-align: center; border: 1px solid #d4a574;
}
.slide-demo .dm-brandkit-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; letter-spacing: 5px;
  color: #2c1810;
  margin-bottom: 3px;
}
.slide-demo .dm-brandkit-tag {
  font-size: 9px; letter-spacing: 3px;
  color: #8b6a4a;
  font-style: italic;
  margin-bottom: 8px;
}
.slide-demo .dm-brandkit-swatches {
  display: flex; gap: 4px; justify-content: center;
}
.slide-demo .dm-brandkit-swatch {
  width: 22px; height: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* hallucinated chatbot */
.slide-demo .dm-chat-msg.b.dm-hallu {
  position: relative; padding-right: 12px;
}
.slide-demo .dm-hallu-stamp {
  margin-top: 6px;
  display: inline-block;
  padding: 3px 6px;
  border: 2px solid #c0392b;
  color: #c0392b;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px; letter-spacing: 2px;
  transform: rotate(-3deg);
  background: rgba(255, 255, 255, 0.7);
}

/* uniform AI reviews */
.slide-demo .dm-aireviews {
  display: flex; flex-direction: column; gap: 4px;
}
.slide-demo .dm-aireview {
  background: #fff8e7; padding: 6px 8px;
  font-size: 10px; color: #6a4a2a;
  border-left: 2px solid #d4a574;
  line-height: 1.35;
}
.slide-demo .dm-aireview-stars {
  color: #c0392b; margin-right: 4px;
}
.slide-demo .dm-aireview b { color: #2c1810; }
.slide-demo .dm-aireview i { color: #8b6a4a; font-style: italic; }

/* machine translation */
.slide-demo .dm-mt {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  font-size: 10px;
}
.slide-demo .dm-mt-col {
  background: #fff8e7; padding: 6px 8px;
  border: 1px solid #ece3d4;
}
.slide-demo .dm-mt-head {
  font-size: 8px; letter-spacing: 2px;
  color: #8b6a4a; margin-bottom: 4px;
  text-transform: uppercase;
}
.slide-demo .dm-mt-line {
  color: #2c1810; padding: 2px 0;
  border-bottom: 1px dashed #ece3d4;
}
.slide-demo .dm-mt-line:last-child { border-bottom: none; }
.slide-demo .dm-mt-line.dm-mt-bad {
  color: #c0392b;
  text-decoration: underline wavy #c0392b;
  text-underline-offset: 2px;
}

/* SEO wall */
.slide-demo .dm-seo-wall {
  background: #fafafa;
  border: 1px solid #ece3d4;
  padding: 8px 10px;
  font-size: 9px; line-height: 1.4;
  color: #b5a891;
  max-height: 110px;
  overflow: hidden;
  position: relative;
}
.slide-demo .dm-seo-wall b {
  color: #8b6a4a; font-size: 10px;
}
.slide-demo .dm-seo-wall::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 30px;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0), rgba(250, 250, 250, 1));
  pointer-events: none;
}

/* invisible keywords + view-source toggle */
.slide-demo .dm-viewtabs {
  display: flex; gap: 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
}
.slide-demo .dm-viewtab {
  padding: 3px 8px;
  font-size: 9px; letter-spacing: 1px;
  background: #f5f5f5; color: #999;
  border: 1px solid #ccc; border-bottom: none;
  font-family: -apple-system, system-ui, sans-serif;
  text-transform: uppercase;
}
.slide-demo .dm-viewtab.active {
  background: white; color: #2c1810;
}
.slide-demo .dm-viewpane {
  background: white; border: 1px solid #ccc; border-top: none;
  padding: 6px 8px;
}
.slide-demo .dm-viewpane-rendered {
  border-bottom: none;
}
.slide-demo .dm-viewpane-src {
  background: #1a1a1a; color: #d4d4d4;
  font-family: 'Courier New', monospace;
  font-size: 9px; line-height: 1.4;
  padding: 6px 8px;
  border-color: #333;
  white-space: pre-wrap; word-break: break-word;
}
.slide-demo .dm-viewpane-src .dm-src-hl {
  background: rgba(255, 221, 87, 0.15);
  color: #ffdd57;
  padding: 1px 2px;
}
.slide-demo .dm-invis-keywords {
  color: #ffffff; background: #ffffff;
  margin: 4px 0 0; font-size: 10px;
  line-height: 1.3;
}

/* doorway pages */
.slide-demo .dm-doorway-arrow {
  text-align: center;
  font-size: 9px; letter-spacing: 2px;
  color: #c0392b; font-weight: 700;
  padding: 4px 0;
  font-family: 'Bebas Neue', sans-serif;
}
.slide-demo .dm-url-dest {
  background: #fff8e7;
  border-color: #d4a574;
}

/* alt-text stuffing */
.slide-demo .dm-altrow {
  display: flex; gap: 8px; align-items: stretch;
}
.slide-demo .dm-altrow img {
  width: 60px; height: 60px; object-fit: cover;
  border: 1px solid #ece3d4; flex-shrink: 0;
}
.slide-demo .dm-altside {
  flex: 1; background: #1a1a1a;
  padding: 6px 8px; color: #d4d4d4;
  font-family: 'Courier New', monospace;
  font-size: 9px; line-height: 1.4;
  overflow: hidden;
}
.slide-demo .dm-alt-head { color: #569cd6; margin-bottom: 2px; }
.slide-demo .dm-alt-text { color: #ce9178; word-break: break-word; white-space: normal; }

/* fake was/now pricing */
.slide-demo .dm-fakeprice {
  background: #fff8e7; padding: 8px 10px;
  border-left: 3px solid #c0392b;
  display: flex; gap: 8px; align-items: baseline;
}
.slide-demo .dm-fp-old {
  color: #b5a891;
  text-decoration: line-through;
  font-size: 13px;
}
.slide-demo .dm-fp-new {
  color: #c0392b; font-weight: 700;
  font-size: 16px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}
.slide-demo .dm-fp-badge {
  background: #c0392b; color: #fff8e7;
  padding: 2px 6px;
  font-size: 9px; letter-spacing: 1px;
  font-family: 'Bebas Neue', sans-serif;
  margin-left: auto;
}
.slide-demo .dm-fp-history {
  margin-top: 6px;
  background: #fff; padding: 6px 8px;
  border: 1px dashed #b5a891;
}
.slide-demo .dm-fp-history-head {
  font-size: 8px; letter-spacing: 2px;
  color: #8b6a4a; text-transform: uppercase;
  margin-bottom: 4px;
}
.slide-demo .dm-fp-bars {
  display: flex; gap: 2px; align-items: flex-end;
  height: 40px;
}
.slide-demo .dm-fp-bar {
  flex: 1; background: #d4a574;
  position: relative;
  min-height: 6px;
}
.slide-demo .dm-fp-cap {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-size: 7px; color: #8b6a4a;
  white-space: nowrap;
  display: none;
}
.slide-demo .dm-fp-bar:hover .dm-fp-cap { display: block; }
.slide-demo .dm-fp-history-note {
  font-size: 9px; color: #c0392b;
  margin-top: 4px;
  font-style: italic;
}

/* aggregated consent */
.slide-demo .dm-agg {
  background: #fff8e7; padding: 8px 10px;
  border: 1px solid #d4a574;
}
.slide-demo .dm-agg-row {
  font-size: 10px; color: #2c1810;
}
.slide-demo .dm-agg-row input { margin-right: 4px; vertical-align: middle; }
.slide-demo .dm-agg-split {
  margin-top: 6px;
  background: #f5f5f5; padding: 6px 8px;
  border-left: 3px solid #c0392b;
  font-size: 9px; color: #6a4a2a;
}
.slide-demo .dm-agg-split-head {
  font-size: 8px; letter-spacing: 2px;
  color: #c0392b; text-transform: uppercase;
  margin-bottom: 3px;
}
.slide-demo .dm-agg-item {
  padding: 1px 0;
  font-family: 'Courier New', monospace;
}

@media (max-width: 1280px) {
  .demo-modal { flex-direction: column; padding: 14px; }
  .demo-modal-content { max-width: 820px; width: 100%; }
  .demo-modal .demo-slide {
    width: 100%;
    max-width: 820px;
    min-height: 360px;
    max-height: 70vh;
  }
}
@media (max-width: 720px) {
  .demo-modal-content {
    grid-template-columns: 1fr;
    max-height: 80vh;
  }
  .demo-modal .demo-left {
    padding: 30px 24px 20px;
    border-right: none;
    border-bottom: 1px solid #f4e9d8;
    max-height: 46vh;
  }
  .demo-modal .demo-right {
    padding: 22px 22px 26px;
    max-height: 46vh;
  }
  .demo-slide .slide-title { font-size: 26px; }
}

@media (max-width: 600px) {
  .demo-badge { top: 10px; right: 10px; padding: 9px 14px 11px; min-width: 0; gap: 4px; }
  .demo-badge .overline { font-size: 8px; letter-spacing: 2px; }
  .demo-badge .title { font-size: 16px; }
  .demo-modal .demo-left { padding: 26px 20px 18px; }
  .demo-modal .demo-right { padding: 18px 18px 22px; }
  .demo-slide { padding: 22px 18px 18px; }
}

/* ============================================
   RESPONSIVE — minimally (rule-break: mobile afterthought)
   ============================================ */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-detail, .checkout-wrap { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  header.site-header { padding: 14px 18px; gap: 12px; }
  .logo { font-size: 16px; letter-spacing: 3px; }
  .site-nav { display: none; }
  .hero-title { font-size: 32px; }
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 14px; }
  .newsletter-content { padding: 40px 30px; }
  .sticky-signup, .sticky-side-tag { display: none; }  /* but we KEEP chat+purchase toasts cluttering */
}
