/*
 * ════════════════════════════════════════════════════════════════
 *  DVDUA Bootstrap Theme — Light Edition
 *  Palette derived from the DVD Universe logo:
 *    Red   #C8192B  (DVD UNIVERSE banner text)
 *    Brown #5A2E0A  (ribbon/flag background)
 *    Cream #FFF8F2  (warm white body)
 *  Drop into: includes/templates/dvdua/css/stylesheet.css
 *  Requires:  Bootstrap 5, Cormorant Garamond + Outfit (Google Fonts)
 * ════════════════════════════════════════════════════════════════
 */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:             #FFFFFF;
  --bg-card:        #00a2c5;
  --bg-card-logo:   #d03b3d;
  --bg-card-gray:   #dee2e6;
  --bg-product-card:#FFFFFF;
  --bg-sidebar:     #F8F3EC;
  --bg-elevated:    #EEE7DC;
  --bg-header:      rgba(255, 255, 255, 0.97);

  /* Logo Red Palette */
  --red:            #C8192B;
  --red-light:      #E03344;
  --red-dark:       #9A0F1E;
  --red-subtle:     rgba(200, 25, 43, 0.07);
  --red-border:     rgba(200, 25, 43, 0.18);
  --red-glow:       0 0 28px rgba(200, 25, 43, 0.13);

  /* Logo Brown Palette (banner/ribbon) */
  --brown:          #2d2207;
  --brown-light:    #8B4513;
  --brown-dark:     #361A04;
  --brown-subtle:   rgba(90, 46, 10, 0.07);
  --brown-border:   rgba(90, 46, 10, 0.18);

  /* Typography */
  --text:           #1C1208;
  --text-soft:      #3C2810;
  --text-black:		#000000;
  --text-muted:     #9A8070;
  --text-white:     #FFFFFF;
  --border:         rgba(0, 0, 0, 0.08);
  --border-strong:  rgba(0, 0, 0, 0.14);

  /* Aliases used throughout (maps red → accent for consistency) */
  --gold:           var(--red);
  --gold-light:     var(--red-light);
  --gold-dark:      var(--red-dark);
  --gold-subtle:    var(--red-subtle);
  --gold-border:    var(--red-border);
  --gold-glow:      var(--red-glow);

  /* Radius & Motion */
  --r:              3px;
  --r-lg:           6px;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --t:              all 0.30s var(--ease);

  /* Spacing */
  --sidebar-w:      240px;
  --header-h:       72px;
  --topbar-h:       34px;
}
.page-layout.no-sidebar {
  grid-template-columns: 1fr;
}






/* ── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

a { color: var(--brown-light); text-decoration: none; transition: var(--t); }
a:hover { color: var(--red); }

img { max-width: 100%; height: auto; }

/* Thin red scrollbar */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg-elevated); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* Bootstrap max-width override */
.container-fluid { max-width: 1600px; }

/* ══════════════════════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════════ */
.top-bar {
  height: var(--topbar-h);
  background: var(--brown);
  border-bottom: 2px solid var(--brown-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1010;
}

.top-bar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
}

.top-bar-scroll {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.top-bar-track {
  display: inline-flex;
  white-space: nowrap;
  animation: topbar-scroll 28s linear infinite;
}
@keyframes topbar-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 56px;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: rgba(255,248,242,0.80);
  text-transform: uppercase;
  font-weight: 400;
}
.top-bar-item .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #F5A623;
  flex-shrink: 0;
}

.top-bar-actions {
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.top-bar-actions a {
  color: #F5A623;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.top-bar-actions a:hover { color: #FFD080; }

/* ══════════════════════════════════════════════════════════════
   STICKY HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  transition: var(--t);
}

.header-inner {
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}
.site-logo img {
  height: 52px;
  width: auto;
  display: block;
  transition: var(--t);
}
.site-logo:hover img { opacity: 0.85; transform: scale(1.02); }

/* Fallback text logo (if image missing) */
.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--red) !important;
  line-height: 1;
  transition: var(--t);
}
.logo-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 400;
}

/* Search */
.header-search {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.header-search input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 9px 42px 9px 16px;
  transition: var(--t);
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search input:focus {
  outline: none;
  border-color: var(--red);
  background: #FFFFFF;
  box-shadow: var(--red-glow);
}
.search-btn {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  background: transparent;
  border: none;
  color: var(--red);
  cursor: pointer;
  font-size: 13px;
  transition: var(--t);
}
.search-btn:hover { color: var(--red-dark); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 18px; }
.hdr-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-soft) !important;
  position: relative;
  font-weight: 400;
}
.hdr-action i { font-size: 17px; color: var(--brown-light); }
.hdr-action:hover { color: var(--red) !important; }
.hdr-action:hover i { color: var(--red); }
.cart-badge {
  background: var(--red);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-muted); border-radius: 2px; transition: var(--t);
}
.hamburger:hover span { background: var(--red); }

/* ══════════════════════════════════════════════════════════════
   GENRE NAVIGATION BAR
══════════════════════════════════════════════════════════════ */
.genre-nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 990;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.genre-nav-inner {
  display: flex; overflow-x: auto; scrollbar-width: none; padding: 0 24px;
}
.genre-nav-inner::-webkit-scrollbar { display: none; }
.genre-link {
  flex-shrink: 0;
  padding: 11px 15px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-muted) !important;
  border-bottom: 2px solid transparent;
  white-space: nowrap; transition: var(--t);
}
.genre-link:hover { color: var(--red) !important; border-bottom-color: rgba(200,25,43,0.3); }
.genre-link.active { color: var(--red) !important; border-bottom-color: var(--red); }
.genre-link-white {
  flex-shrink: 0;
  padding: 11px 15px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-white) !important;
  border-bottom: 2px solid transparent;
  white-space: nowrap; transition: var(--t);
}
.genre-link-white:hover { color: var(--red) !important; border-bottom-color: rgba(200,25,43,0.3); }
.genre-link-white.active { color: var(--red) !important; border-bottom-color: var(--red); }
.genre-link-white.forward { float: right;}
/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: #f0f7fb;
  border-bottom: 1px solid var(--border);
  padding: 25px 0 64px;
  overflow: hidden;
}

.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
}
.hero-glow-1 {
  width: 480px; height: 480px; top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(200,25,43,0.07), transparent 70%);
}
.hero-glow-2 {
  width: 280px; height: 280px; bottom: 0; left: 10%;
  background: radial-gradient(circle, rgba(90,46,10,0.05), transparent 70%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.hero-copy { padding: 0 40px; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.7s var(--ease) 0.1s forwards;
}
.eyebrow-line {
  display: inline-block; width: 28px; height: 2px;
  background: var(--red); flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700; line-height: 1.06;
  margin-bottom: 20px; color: var(--text);
  opacity: 0; animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}
.hero-headline em { font-style: italic; color: var(--red); }

.hero-sub {
  font-size: 15px; color: var(--text-muted);
  max-width: 440px; line-height: 1.85; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.7s var(--ease) 0.32s forwards;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.7s var(--ease) 0.44s forwards;
}

.hero-stats {
  display: flex; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  opacity: 0; animation: fadeUp 0.7s var(--ease) 0.56s forwards;
}
.hero-stat { text-align: left; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 700; color: var(--red); line-height: 1; display: block;
}
.stat-plus { font-size: 22px; }
.stat-label {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 4px; display: block;
}
.hero-stat-divider { width: 1px; height: 36px; background: var(--border); margin: 0 26px; flex-shrink: 0; }

/* Hero Visual Mosaic */
.hero-visual-col { padding: 0 24px; }
.hero-mosaic {
  display: flex; gap: 10px;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.3s forwards;
  width: 100% !important;

}
.mosaic-col { display: flex; flex-direction: column; gap: 10px; }
.mosaic-cell {
  background: var(--bg-card-logo);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: var(--t); overflow: hidden; position: relative; cursor: default;
}
.mosaic-cell:hover {
  border-color: var(--red-border);
  box-shadow: var(--red-glow);
}
.mosaic-tall  { width: 120px; flex: 1; }
.mosaic-short { width: 120px; flex: 1; }
.mosaic-accent { background: linear-gradient(135deg, #FFF0EC, #FFE4DC); border-color: var(--red-border); }
.mosaic-accent-soft { background: linear-gradient(135deg, #FDF8F4, #F5EDE4); }
.mosaic-icon { font-size: 28px; color: var(--border-strong); margin-bottom: 10px; transition: var(--t); }
.mosaic-cell:hover .mosaic-icon { color: var(--red); }
.fas.fa-film.mosaic-icon, .fas.fa-dragon.mosaic-icon {
  color: white;
}
.mosaic-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.mosaic-label-black { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }

.mosaic-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 6px;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn-bling-fill,
.btn-bling-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 26px; border-radius: var(--r);
  cursor: pointer; transition: var(--t);
  border: 2px solid var(--red);
  text-decoration: none !important; line-height: 1;
}
.btn-bling-fill {
  background: var(--red); color: #FFFFFF !important;
}
.btn-bling-fill:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  box-shadow: var(--red-glow); color: #FFFFFF !important;
}
.btn-bling-outline {
  background: transparent; color: var(--red) !important;
}
.btn-bling-outline:hover {
  background: var(--red); color: #FFFFFF !important;
  box-shadow: var(--red-glow);
}
.btn-sm-bling { font-size: 10px; padding: 9px 18px; }

/* ══════════════════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 13px 24px;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  padding: 4px 20px;
  font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 400;
}
.trust-item i { color: var(--red); font-size: 13px; }
.trust-divider { width: 1px; height: 16px; background: var(--border-strong); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   PAGE LAYOUT (SIDEBAR + CENTER)
══════════════════════════════════════════════════════════════ */
.page-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: calc(100vh - var(--header-h) - var(--topbar-h));
  align-items: start;
}

/* ══════════════════════════════════════════════════════════════
   LEFT SIDEBAR
══════════════════════════════════════════════════════════════ */
.sidebar-left {
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  position: sticky;
  top: calc(var(--header-h) + 42px);
  /*height: calc(100vh - var(--header-h) - 42px);*/
  overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-elevated) transparent;
}

.sidebar-section {
  padding: 20px 16px 18px;
  border-bottom: 1px solid var(--border);
}
.sidebar-section:last-child { border-bottom: none; }

.sidebar-heading {
  font-size: 13px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.sidebar-heading::after {
  content: ''; flex: 1; height: 1px;
  background: var(--brown-border); margin-left: 10px;
}
.sidebar-heading:has(.sidebar-more)::after { display: none; }

.sidebar-more {
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--red); font-weight: 600; text-transform: lowercase;
  font-family: 'Outfit', sans-serif; flex-shrink: 0;
}
.sidebar-more:hover { color: var(--red-dark); }

/* Sidebar Category Nav */
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li { margin: 0; }
.snav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px;
  font-size: 14px; font-weight: 300;
  color: var(--text-black) !important;
  border-radius: var(--r);
  border-left: 2px solid transparent;
  transition: var(--t); letter-spacing: 0.01em;
}
.snav-link:hover, .snav-link.active {
  color: var(--red) !important;
  background: var(--red-subtle);
  border-left-color: var(--red);
  padding-left: 14px;
}
.snav-count {
  font-size: 10px; color: var(--text-muted);
  background: var(--bg-elevated); padding: 1px 6px;
  border-radius: 8px; flex-shrink: 0;
}

.sidebar-links-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border);
}
.sidebar-links-row a {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted) !important;
  border: 1px solid var(--border-strong); border-radius: 20px;
  padding: 3px 10px; transition: var(--t); font-weight: 400;
}
.sidebar-links-row a:hover {
  border-color: var(--red-border); color: var(--red) !important; background: var(--red-subtle);
}

/* Sidebar Product Cards */
.sidebar-product {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px; border-radius: var(--r-lg);
  border: 1px solid transparent; transition: var(--t);
  cursor: pointer; margin-bottom: 6px;
}
.sidebar-product:last-of-type { margin-bottom: 10px; }
.sidebar-product:hover { border-color: var(--red-border); background: var(--red-subtle); }
.sidebar-thumb {
  width: 40px; height: 56px; background: var(--bg-elevated);
  border-radius: var(--r); overflow: hidden; flex-shrink: 0;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-placeholder {
  display: none; position: absolute; inset: 0;
  align-items: center; justify-content: center;
  color: var(--border-strong); font-size: 14px;
}
.sidebar-product-info { flex: 1; min-width: 0; }
.sidebar-product-info a {
  display: block; font-size: 11px;
  color: var(--text-black) !important; line-height: 1.45; margin-bottom: 4px; transition: var(--t);
}
.sidebar-product-info a:hover { color: var(--red) !important; }
.sidebar-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600; color: var(--red); font-style: italic; line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   CENTER / MAIN CONTENT
══════════════════════════════════════════════════════════════ */
.center-content {
  padding: 28px 24px;
  background: var(--bg);
  min-width: 0;
}

/* ── PROMO BANNER ─────────────────────────────────────────── */
.promo-banner {
  position: relative;
  background: #f0f7fb;
  border: 2px solid var(--red-border);
  border-radius: var(--r-lg);
  padding: 26px 30px; margin-bottom: 32px;
  overflow: hidden; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 20px rgba(200,25,43,0.06);
}
.promo-bg-glow {
  position: absolute; top: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(200,25,43,0.08), transparent 70%);
  pointer-events: none;
}
.promo-eyebrow {
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 7px;
}
.promo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.15;
}
.promo-title em { font-style: italic; color: var(--red); }
.promo-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.promo-deco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 700; color: var(--red);
  opacity: 0.07; line-height: 1; flex-shrink: 0; margin-left: 24px; font-style: italic;
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.content-section { margin-bottom: 8px; }
.section-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.section-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 5px;
}
.section-title { font-size: 26px; font-weight: 700; margin: 0; color: var(--text); }
.section-title em { font-style: italic; color: var(--red); }
.section-viewall {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red) !important;
  border-bottom: 1px solid var(--red); padding-bottom: 1px;
  font-weight: 600; transition: var(--t); flex-shrink: 0; margin-bottom: 4px;
}
.section-viewall:hover { color: var(--red-dark) !important; border-color: var(--red-dark); }

/* ── PRODUCT GRID ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 14px;
}

/* ── PRODUCT CARD ────────────────────────────────────────── */
.product-card {
  background: var(--bg-product-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.30s var(--ease), border-color 0.30s var(--ease), box-shadow 0.30s var(--ease);
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10), var(--red-glow);
}

.pc-image {
  position: relative; aspect-ratio: 2 / 3;
  background: var(--bg-elevated); overflow: hidden;
}
.pc-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease); display: block;
}

.pc-image a {
  font-size: 12px;
  color: #010201;
}
.product-card:hover .pc-image img { transform: scale(1.06); }

.pc-no-img {
  position: absolute; inset: 0; display: none;
  align-items: center; justify-content: center;
  font-size: 36px; color: var(--border-strong);
  background: var(--bg-elevated);
}

/* Hover overlay */
.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,18,8,0.88) 0%, rgba(28,18,8,0.45) 45%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  padding: 14px; gap: 8px;
  opacity: 0; transition: opacity 0.30s var(--ease);
}
.product-card:hover .pc-overlay { opacity: 1; }

.pc-overlay-btn {
  display: block; width: 100%;
  background: var(--red); color: #FFFFFF;
  border: none; font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px; border-radius: var(--r); text-align: center;
  cursor: pointer; transition: var(--t); text-decoration: none !important;
}
.pc-overlay-btn:hover { background: var(--red-dark); color: #FFFFFF !important; }

.pc-cart-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FFFFFF;
  width: 32px; height: 32px; border-radius: var(--r);
  cursor: pointer; font-size: 12px;
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.pc-cart-btn:hover { background: var(--red); border-color: var(--red); }

/* Badges */
.pc-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--r); line-height: 1.4;
}
.pc-badge-sale    { background: #7B1520; }
.pc-badge-popular { background: #5A2E0A; color: #F5A623; }
.pc-badge-art     { background: #1A2A5A; color: #8899DD; border: 1px solid rgba(136,153,221,0.3); }

/* Card Info */
.pc-info { padding: 11px 12px 13px; }
.pc-name {
  font-size: 12px; color: var(--text-black); line-height: 1.45; margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-weight: 400;
}
.pc-name a { color: inherit !important; transition: var(--t); }
.pc-name a:hover { color: var(--red) !important; }
.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; color: var(--red); line-height: 1; font-style: italic;
}
.pc-old-price {
  font-size: 13px; color: var(--text-muted); text-decoration: line-through;
  margin-right: 5px; font-style: normal; font-weight: 300;
}

/* ── GOLD RULE DIVIDER ────────────────────────────────────── */
.gold-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-border), transparent);
  margin: 32px 0;
}


/* ══════════════════════════════════════════════════════════════
   OTHER PAGES  — dark brown matching the logo banner ribbon
══════════════════════════════════════════════════════════════ */
#cartContentsDisplay, #prevOrders, #orderHistoryHeading {
  width: 100%;
}

.ot_total {
  display: flex;
  justify-content: space-between; /* pushes title left, amount right */
  align-items: center;            /* vertically centers them */
  margin: 8px 0;
}

.lineTitle {
  text-align: right;   /* aligns the text inside the title box to the right */
  flex: 1;             /* allows it to take available space */
  font-weight: 500;
  color: #333;
  margin-right: 20px !important
}

.shipping-option {
  margin: 15px 0;
  padding: 12px;
  border: 1px solid #ddd;
}

.shipping-option legend {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 8px;
}

.amount {
  font-weight: 600;
  font-size: 1.1em;
  color: #0073e6;
  float: right;
  margin-top: -1.5em; /* keeps aligned with legend */
}

.error {
  color: #d9534f;
  font-weight: bold;
}
textarea {
  width: 100%;
}


.cssButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--red);
  color: #FFF;
  border: 2px solid var(--red);
  border-radius: var(--r);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t);
  margin-bottom: 10px;
  max-width:200px;
}
.cssButton a{
	style:none;
}
.buttonRow.forward {
  float: right;
}




/* ══════════════════════════════════════════════════════════════
   FOOTER  — dark brown matching the logo banner ribbon
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brown);
  border-top: 3px solid var(--red);
  padding: 48px 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 44px; padding-bottom: 36px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #F5A623; line-height: 1; margin-bottom: 4px;
}
.footer-logo img { height: 44px; width: auto; filter: brightness(1.1); }
.footer-tagline-text {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,248,242,0.50); margin-bottom: 14px;
}
.footer-about {
  font-size: 12px; color: rgba(255,248,242,0.60);
  line-height: 1.85; max-width: 280px; margin: 0;
}
.footer-col-title {
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: #F5A623; margin-bottom: 14px;
}
.footer-col{
	padding-left:10px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 7px; }
.footer-nav a {
  font-size: 12px; color: rgba(255,248,242,0.62) !important; transition: var(--t); display: inline-block;
}
.footer-nav a:hover { color: #F5A623 !important; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 16px 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(255,248,242,0.45); letter-spacing: 0.05em;
}
.footer-bottom a { color: #F5A623 !important; }

/* Center the main container elements */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px; /* Adds consistent spacing between stacked items */
  width: 100%;
}

/* Force stubborn third-party scripts and divs to center themselves */
.footer-brand > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Fix Authorize.net inline width lock */
.footer-brand .AuthorizeNetSeal {
  margin: 0 auto !important; /* Forces the 90px box to find the exact middle */
}

/* Ensure the second seal icon centers correctly */
.footer-brand .seal {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/*BOF Socials links */
/* Container reset */
.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual row layout */
.social-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    cursor: pointer;
}

/* 1. FORCE ICONS TO WHITE */
.social-list li i {
    font-size: 16px;
    width: 24px;
    text-align: center;
    color: #ffffff !important; /* Forces icon to white */
    transition: transform 0.2s ease, color 0.2s ease;
}

/* 2. FORCE TEXT LINKS TO WHITE (REMOVES BROWSER BLUE) */
.social-list li a.icon-link {
    text-decoration: none;
    color: rgba(255,248,242,0.62) !important; /* Overrides the ugly browser blue */
    font-size: 12px;
    transition: color 0.2s ease;
}

/* 3. SIMULTANEOUS HOVER EFFECT (Targets Icon & Text Together) */
.social-list li:hover i {
    transform: scale(1.15); /* Gives a snappy pop animation */
}

/* Individual brand colors when hovering over the entire row */
.social-list li:hover .bluesky-icon,   .social-list li:hover i.fa-bluesky   { color: #0560ff !important; }
.social-list li:hover .discord-icon,   .social-list li:hover i.fa-discord   { color: #5865F2 !important; }
.social-list li:hover .facebook-icon,  .social-list li:hover i.fa-facebook  { color: #1877F2 !important; }
.social-list li:hover .instagram-icon, .social-list li:hover i.fa-instagram { color: #E4405F !important; }
.social-list li:hover .youtube-icon,   .social-list li:hover i.fa-youtube   { color: #FF0000 !important; }
.social-list li:hover .tiktok-icon,    .social-list li:hover i.fa-tiktok    { color: #01f2ea !important; } 
/* Cyan accent pops on dark brown */


/*EOF Socials links */	

/* ══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.products-grid .product-card.reveal:nth-child(2) { transition-delay: 0.06s; }
.products-grid .product-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.products-grid .product-card.reveal:nth-child(4) { transition-delay: 0.18s; }
.products-grid .product-card.reveal:nth-child(5) { transition-delay: 0.24s; }
.products-grid .product-card.reveal:nth-child(6) { transition-delay: 0.30s; }
.products-grid .product-card.reveal:nth-child(7) { transition-delay: 0.36s; }
.products-grid .product-card.reveal:nth-child(8) { transition-delay: 0.42s; }

/* ══════════════════════════════════════════════════════════════
   ZEN CART SYSTEM CLASSES
══════════════════════════════════════════════════════════════ */
.productBasePrice  { font-family: 'Cormorant Garamond', serif; color: var(--red); font-style: italic; font-size: 20px; font-weight: 600; }
.specialPrice      { color: var(--red-dark); font-family: 'Cormorant Garamond', serif; font-style: italic; }
.normalprice       { color: var(--text-muted); text-decoration: line-through; }
.productPriceDiscount { color: var(--red); }
.centerBoxWrapper  { margin-bottom: 32px; }
.centerBoxHeading  { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--text); margin-bottom: 18px; font-weight: 700; }
.sideBoxContent    { font-size: 12px; color: var(--text-muted); }
#navBreadCrumb     { font-size: 11px; color: var(--text-muted); margin-bottom: 18px; letter-spacing: 0.03em; }
#navBreadCrumb a   { color: var(--text-muted) !important; }
#navBreadCrumb a:hover { color: var(--red) !important; }

/* ══════════════════════════════════════════════════════════════
   COMPACT HEADER (JS-added on scroll)
══════════════════════════════════════════════════════════════ */
.header-compact { height: 54px !important; }
.header-compact .site-logo img { height: 38px !important; }
.header-compact .logo-tagline  { display: none !important; }

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  :root { --sidebar-w: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
@media (max-width: 991px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar-left { position: static; height: auto; display: none; }
  .sidebar-left.open {
    display: block; position: fixed;
    top: calc(var(--header-h) + var(--topbar-h)); left: 0;
    z-index: 999; width: min(var(--sidebar-w), 80vw);
    height: calc(100vh - var(--header-h) - var(--topbar-h));
    overflow-y: auto; box-shadow: 8px 0 40px rgba(0,0,0,0.2);
    animation: slideInLeft 0.26s var(--ease) forwards;
  }
  @keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
  }
  .hamburger { display: flex; }
  .hero-headline { font-size: 38px; }
  .hero-copy { padding: 0 20px; }
  .header-inner { grid-template-columns: auto 1fr auto auto; gap: 16px; }
  .genre-nav { top: var(--header-h); }
  .promo-deco { display: none; }
}
@media (max-width: 767px) {
  :root { --header-h: 60px; --topbar-h: 30px; }
  .hero { padding: 48px 0 44px; }
  .hero-copy { padding: 0 16px; }
  .hero-headline { font-size: 30px; }
  .center-content { padding: 18px 14px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer { padding: 32px 20px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .header-inner { padding: 0 14px; gap: 10px; }
  .section-title { font-size: 22px; }
  .hero-stat-divider { margin: 0 16px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 26px; }
  .products-grid { gap: 8px; }
  .hdr-action span { display: none; }
}
@media (min-width: 990px) {
.center-content { padding: 18px 14px; min-width:100%;}
}

.trust-item {
  position: relative;
  cursor: pointer;
}
.trust-item .tooltip-content {
  position: absolute;
  bottom: 130%; /* Positions the box cleanly above the trust item */
  left: 50%;
  transform: translateX(-50%); /* Centers the tooltip horizontally */
  
  width: 240px; /* Gives the rich content room to breathe without wrapping awkwardly */
  padding: 12px;
  background-color: #222222;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
  text-align: left; /* Restores traditional reading alignment for lists/paragraphs */
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  z-index: 99;
}

/* 3. Optional: Add a small downward arrow pointing to the icon */
.trust-item .tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #222222 transparent transparent transparent;
}

/* 4. Reveal and slightly lift the popup on hover */
.trust-item:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}


.promo-column-card {
  flex: 1; /* Gives both columns equal width */
  background: rgba(255, 255, 255, 0.05); /* Soft translucent background */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Clean, modern border */
  border-radius: 8px; /* Smooth rounded corners */
  padding: 24px; /* Internal breathing room for text and buttons */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Keeps buttons aligned if text heights differ */
}

@media (max-width: 768px) {
  .promo-body-wrapper {
    flex-direction: column; /* Stacks columns vertically on mobile */
    gap: 16px;
  }
}
.promo-body-wrapper {
  display: flex;
  gap: 24px; /* Space between the two column cards */
  width: 100%;
  position: relative;
  z-index: 2; /* Ensures content stays above background glows */
}
.listingDescription{
	font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
  max-width: 760px;
}
.product-image-wrapper {
  height: 200px;        /* fixed height for consistency */
  overflow: hidden;     /* crop overflow */
  background: #f8f9fa;  /* light background */
}

.product-image-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;  /* keeps aspect ratio without distortion */
}

/* Base structural layout configuration */
.note.presale {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
    scroll-behavior: auto !important; /* Disables smooth-scroll delays for flawless JS steps */
}

/* Custom design scrollbar tracks */
.note.presale::-webkit-scrollbar {
    width: 6px;
}
.note.presale::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
}
.note.presale::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}