/* ===============================================================
 * Vitoura — Luxury Streetwear Design System
 * Dual Theme: White Mode & Dark Mode · vitoura.shop
 * ============================================================= */

:root,
:root[data-theme="dark"],
[data-theme="dark"] {
  --bg: #0C0D0E;
  --bg-card: #141517;
  --bg-subtle: #1A1B1E;
  --bg-light: #ffffff;
  --gold: #D4AF37;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-ink: #9A7B1C;
  --text: #F3F4F6;
  --text-muted: #9CA3AF;
  --line: #26272B;
  --danger: #EF4444;
  --success: #10B981;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1240px;
  --header-bg: rgba(12, 13, 14, 0.94);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

:root[data-theme="light"],
[data-theme="light"] {
  --bg: #FFFFFF;
  --bg-card: #FAFAF8;
  --bg-subtle: #F4F4F0;
  --bg-light: #FAFAF8;
  --gold: #B08A3E;
  --gold-glow: rgba(176, 138, 62, 0.25);
  --gold-ink: #8A6A26;
  --text: #111111;
  --text-muted: #6B6B6B;
  --line: #E9E9E6;
  --danger: #EF4444;
  --success: #10B981;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1240px;
  --header-bg: rgba(255, 255, 255, 0.96);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

/* Lucide Icons Base */
svg.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ===============================================================
 * 1. ANNOUNCEMENT BAR (Top sticky ticker)
 * ============================================================= */
.top-announcement-bar {
  background: #000;
  color: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  position: relative;
  z-index: 40;
  text-align: center;
}

.announcement-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.announcement-badge {
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: 0.04em;
}

.announcement-badge svg.lucide {
  width: 12px;
  height: 12px;
}

.countdown-num {
  font-family: monospace;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.bullet-sep {
  opacity: 0.4;
}

.announcement-perk {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.9;
}

.announcement-perk svg.lucide {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* ===============================================================
 * 2. HEADER & LOGO
 * ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.25s ease;
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem;
  gap: 0.75rem;
}

/* Original Logo Design (Vitoura.shop with gold dot) */
.brand-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  padding: 0.2rem 0;
}

.brand-wordmark {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  transition: opacity 0.2s ease;
}

.brand-wordmark .brand-dot {
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 0;
  margin: 0 1.5px;
  display: inline-block;
}

.brand-wordmark .brand-suffix {
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 640px) {
  .brand-wordmark {
    font-size: 1.25rem;
  }
}

.footer-logo .brand-wordmark {
  font-size: 1.85rem;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 860px) {
  .primary-nav {
    display: flex;
  }
}

.nav-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.35rem 0;
}

.nav-item:hover {
  color: var(--text);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Dark / Light Theme Toggle Icons */
[data-theme="dark"] .theme-icon-moon { display: none !important; }
[data-theme="dark"] .theme-icon-sun { display: inline-block !important; color: var(--gold); }
[data-theme="light"] .theme-icon-sun { display: none !important; }
[data-theme="light"] .theme-icon-moon { display: inline-block !important; color: var(--text); }

.cart-btn .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }
}

/* Header Search Bar Dropdown */
.header-search-bar {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  padding: 0.75rem 1.25rem;
}

.header-search-bar.is-open {
  display: block;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.header-search-inner form {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.search-form-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
}

.header-search-inner input[type="search"] {
  width: 100%;
  padding: 0.7rem 2.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.header-search-inner input[type="search"]:focus {
  border-color: var(--gold);
}

.search-close-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* ===============================================================
 * 3. MOBILE DRAWER
 * ============================================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 70;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 84%;
  max-width: 320px;
  background: var(--bg-card);
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 75;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.drawer-search {
  position: relative;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.drawer-search input {
  width: 100%;
  padding: 0.65rem 2.6rem 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}

.drawer-search input:focus {
  border-color: var(--gold);
}

.drawer-search-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.drawer-search-icon {
  width: 16px;
  height: 16px;
}

/* Single-line uppercase category menu (Netlify design) */
.drawer-menu-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.drawer-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer-menu-item:hover {
  color: var(--gold);
  padding-left: 4px;
}

.drawer-item-newsletter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
}

.drawer-item-newsletter svg.lucide {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* Theme switch in drawer */
.drawer-theme-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.drawer-theme-toggle-btn {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.drawer-footer-meta {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.drawer-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.drawer-social a {
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: grid;
  place-items: center;
}

.drawer-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.drawer-social svg.lucide {
  width: 20px;
  height: 20px;
}

.drawer-meta-prepaid {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.2rem;
  font-weight: 500;
}

.drawer-meta-email {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  font-weight: 600;
}

.drawer-meta-email:hover {
  color: var(--gold);
}

.drawer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.drawer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

/* ===============================================================
 * 4. HERO SECTION & STAGES
 * ============================================================= */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem 1.25rem 4rem;
  }
}

.hero-copy .eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-copy h1 {
    font-size: 4rem;
  }
}

.hero-copy h1 span {
  background: linear-gradient(115deg, #ffffff 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="light"] .hero-copy h1 span {
  background: linear-gradient(115deg, #111111 0%, #B08A3E 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy .sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #e2be4b;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--bg-subtle);
  transform: translateY(-2px);
}

/* Pulsing Scale Animation (No Shadow) */
@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.pulse {
  animation: pulseScale 2.4s ease-in-out infinite;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Hero Visual & 3D Interactive Stage */
.hero-stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  background: var(--bg-card);
}

.hero-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.85rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.caption-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.caption-badge {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===============================================================
 * 5. TRUST PERKS STRIP
 * ============================================================= */
.perks-strip {
  max-width: var(--maxw);
  margin: 0 auto 2.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .perks-strip {
    grid-template-columns: repeat(4, 1fr);
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.perk-item svg.lucide {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

/* ===============================================================
 * 6. CATEGORIES TILES
 * ============================================================= */
.categories {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.section-header-wrap {
  margin-bottom: 1.5rem;
}

.sub-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.cat-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: var(--bg-subtle);
}

.cat-thumb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-thumb {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gold);
  color: #000;
}

.cat-thumb svg.lucide {
  width: 24px;
  height: 24px;
}

.cat-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.cat-price {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

.cat-arrow {
  margin-left: auto;
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.cat-card:hover .cat-arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* ===============================================================
 * 7. PRODUCT GRID & CARDS
 * ============================================================= */
.shop-grid,
.woocommerce-page-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
}

.woocommerce-page-wrap .page-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}

/* Category header / sorting bar */
.woocommerce-result-count {
  float: left !important;
  margin: 0.5rem 0 1rem !important;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.woocommerce-ordering {
  float: right !important;
  margin: 0 0 1.25rem 0 !important;
}

.woocommerce-ordering select {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .woocommerce-result-count,
  .woocommerce-ordering {
    float: none !important;
    width: 100% !important;
    display: block !important;
    margin-bottom: 0.75rem !important;
  }
  .woocommerce-ordering select {
    width: 100% !important;
  }
}

.grid,
.shop-grid-loop,
.woocommerce .shop-grid-loop,
.woocommerce ul.products {
  clear: both !important;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

@media (min-width: 768px) {
  .grid,
  .shop-grid-loop,
  .woocommerce .shop-grid-loop,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
  }
}

@media (min-width: 1040px) {
  .grid,
  .shop-grid-loop,
  .woocommerce .shop-grid-loop,
  .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  background: var(--bg);
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.badge-off {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: #dc2626;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  z-index: 5;
}

.badge-icon {
  width: 12px;
  height: 12px;
}

.hover-view-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(12, 13, 14, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.product-card:hover .hover-view-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.product-title:hover {
  color: var(--gold);
}

.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.product-price del {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 0.4rem;
}

.product-price ins {
  color: var(--gold);
  text-decoration: none;
}

.product-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.5rem;
}

.product-actions .btn-outline {
  padding: 0.55rem 0.5rem;
  font-size: 0.78rem;
  border-radius: 8px;
}

.product-actions .btn-primary {
  padding: 0.55rem 0.5rem;
  font-size: 0.78rem;
  border-radius: 8px;
}

.btn-icon-sm {
  width: 14px;
  height: 14px;
}

/* ===============================================================
 * 8. SINGLE PRODUCT PAGE — MODERN STREETWEAR & SIZE PILLS
 * ============================================================= */
.woocommerce-page-wrap {
  padding-top: 2rem;
}

.woocommerce div.product {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .woocommerce div.product {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }
}

/* Zero-Zoom Clean Product Gallery (No white void, no phone zoom glitch) */
.woocommerce-product-gallery {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
}

.woocommerce-product-gallery .zoomImg {
  display: none !important;
  pointer-events: none !important;
}

.woocommerce div.product div.images {
  margin-bottom: 1.5rem;
  position: relative;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  max-height: 520px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image a,
.woocommerce div.product div.images .woocommerce-product-gallery__image a img {
  pointer-events: none !important;
  cursor: default !important;
  display: block;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
}

/* Destroy PhotoSwipe, Lightbox, and Auto-Zoom completely */
.pswp,
.pswp__bg,
.pswp__scroll-wrap,
.pswp__container,
.pswp__item,
.pswp__ui,
.pswp__zoom-wrap,
.pswp--open {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  position: fixed !important;
  top: -9999px !important;
  left: -9999px !important;
  z-index: -999 !important;
}

.woocommerce-product-gallery .zoomImg {
  display: none !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Hide ugly default WooCommerce badges/triggers */
.woocommerce span.onsale,
.woocommerce-product-gallery__trigger {
  display: none !important;
}

/* Native Streetwear product thumbnails carousel */
.vitoura-gallery-thumbs {
  display: flex !important;
  gap: 0.65rem !important;
  margin-top: 0.85rem !important;
  padding: 0.25rem 0 !important;
  list-style: none !important;
  overflow-x: auto !important;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.vitoura-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb-item {
  width: 72px !important;
  height: 92px !important;
  flex: 0 0 72px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 2px solid var(--line) !important;
  background: var(--bg-card) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  opacity: 0.65 !important;
}

.gallery-thumb-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.gallery-thumb-item:hover,
.gallery-thumb-item.is-active {
  opacity: 1 !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px) !important;
}

.woocommerce div.product div.summary {
  float: none;
  width: 100%;
}

.woocommerce div.product .product_title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.woocommerce div.product p.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.woocommerce div.product p.price del {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
  margin-right: 0.5rem;
}

.woocommerce div.product p.price ins {
  text-decoration: none;
}

/* Urgency Stock Bar */
.stock-urgency-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.urgency-icon-flame {
  color: #ef4444;
  animation: flamePulse 1.2s ease-in-out infinite;
}

@keyframes flamePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

/* Modern Streetwear Size Selector */
.vitoura-size-selector-wrap {
  margin: 1.5rem 0;
}

.size-selector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.size-selector-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text);
}

.btn-size-guide {
  background: none;
  border: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-size-guide:hover {
  color: var(--gold);
}

.vitoura-size-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.vitoura-size-pill {
  min-width: 54px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0 0.85rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vitoura-size-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: var(--bg-subtle);
}

.vitoura-size-pill.is-active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: scale(1.05);
}

.size-selected-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* Hide native WooCommerce variation dropdown cleanly */
.variations_form table.variations {
  display: none !important;
}

/* Single Add to Cart & Buy Buttons */
.woocommerce div.product form.cart {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  width: 100% !important;
}

/* Row containing Quantity Stepper + Add to Cart */
.woocommerce div.product form.cart .quantity {
  display: inline-flex !important;
  align-items: center !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 12px !important;
  background: var(--bg-card) !important;
  height: 50px !important;
  padding: 0 0.35rem !important;
  width: fit-content !important;
}

.qty-btn {
  width: 38px;
  height: 44px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.15s ease;
}
.qty-btn:hover {
  color: var(--gold);
}

.woocommerce div.product form.cart .quantity input.qty {
  width: 44px !important;
  height: 44px !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--text) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 0 !important;
  outline: none !important;
  -moz-appearance: textfield;
}
.woocommerce div.product form.cart .quantity input.qty::-webkit-inner-spin-button,
.woocommerce div.product form.cart .quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Row containing Quantity Stepper */
.woocommerce div.product form.cart .quantity {
  margin-bottom: 0.5rem !important;
}

/* Side-by-Side Action Row: Add to Cart and Buy Now ("baju me") */
.product-actions-baju-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.65rem !important;
  width: 100% !important;
  align-items: stretch !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  width: 100% !important;
  height: 52px !important;
  padding: 0 0.85rem !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  border-radius: 12px !important;
  background: var(--bg-subtle) !important;
  border: 1.5px solid var(--line) !important;
  color: var(--text) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  transform: translateY(-1px) !important;
}

/* ⚡ Instant 1-Click BUY NOW Button */
.btn-buy-now {
  width: 100% !important;
  height: 52px !important;
  padding: 0 0.85rem !important;
  border-radius: 12px !important;
  background: var(--gold) !important;
  color: #000 !important;
  border: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 16px var(--gold-glow) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-buy-now:hover {
  background: #e2be4b !important;
  transform: translateY(-2px) !important;
}

.btn-buy-now:active {
  transform: scale(0.98) !important;
}

@media (max-width: 420px) {
  .product-actions-baju-row {
    gap: 0.4rem !important;
  }
  .woocommerce div.product form.cart .single_add_to_cart_button,
  .btn-buy-now {
    font-size: 0.82rem !important;
    padding: 0 0.35rem !important;
    gap: 0.25rem !important;
    height: 48px !important;
  }
}

/* Trust Badges Strip on Product Page */
.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.trust-badge-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-badge-card svg.lucide {
  color: var(--gold);
  width: 20px;
  height: 20px;
}



/* ===============================================================
 * 10. CART TOAST NOTIFICATION
 * ============================================================= */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #18191c;
  border: 1px solid var(--gold);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 80;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.cart-toast.is-show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast .toast-icon {
  color: var(--gold);
}

.cart-toast .toast-link {
  color: var(--gold);
  text-decoration: underline;
  margin-left: 0.5rem;
}

/* ===============================================================
 * 11. FOOTER
 * ============================================================= */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  margin-top: 4rem;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  }
}

.emblem-footer .emblem-x {
  font-size: 2.2rem;
}

.brand-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.85rem 0;
  max-width: 320px;
}

.brand-contact-link {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.security-badges {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.security-badges svg.lucide {
  color: var(--gold);
  width: 14px;
  height: 14px;
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--line);
}

/* ===============================================================
 * 12. SMOOTH SCROLL & MOBILE 60FPS ANIMATIONS (BOTH MODES)
 * ============================================================= */
html {
  scroll-behavior: smooth;
}

/* Base state: always visible so content is NEVER trapped blank */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Smooth reveal active only after JS confirms observer support */
.js-animate .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

.js-animate .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product cards smooth reveal delay stagger */
.product-card.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 768px) {
  .js-animate .reveal:not(.is-visible) {
    transform: translateY(16px);
    transition-duration: 0.4s;
  }
  
  /* Tactile feedback on mobile taps */
  .btn-primary:active,
  .btn-outline:active,
  .product-card:active,
  .cat-card:active,
  .vitoura-size-pill:active {
    transform: scale(0.96) !important;
    transition: transform 0.1s ease !important;
  }
}

/* ===============================================================
 * 14. SIZE GUIDE MODAL (NO SHADOW)
 * ============================================================= */
.size-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.size-modal-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.size-modal-box {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 1.75rem;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.size-modal-backdrop.is-active .size-modal-box {
  transform: scale(1);
}

.size-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.size-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0;
  color: var(--text);
}

.size-modal-close {
  background: none;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: grid;
  place-items: center;
  transition: color 0.2s;
}

.size-modal-close:hover {
  color: var(--text);
}

.size-table-wrap {
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.85rem;
}

.size-table th {
  background: var(--bg);
  color: var(--gold);
  padding: 0.75rem 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--line);
}

.size-table td {
  padding: 0.65rem 0.5rem;
  border: 1px solid var(--line);
  color: var(--text);
}

.size-table tr:nth-child(even) td {
  background: rgba(128, 128, 128, 0.05);
}

.size-modal-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===============================================================
 * 15. FOOTER NEED HELP (GMAIL ONLY & 24/7 SUPPORT)
 * ============================================================= */
.footer-help-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.footer-help-item a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-help-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-top: 0.25rem;
}

/* Zero shadows across all elements per user design requirement */
*, *::before, *::after {
  box-shadow: none !important;
  text-shadow: none !important;
}

/* ===============================================================
 * 16. WOOCOMMERCE CHECKOUT & FORMS (THEME AWARE)
 * ============================================================= */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.woocommerce-checkout input.input-text,
.woocommerce-checkout select {
  background: var(--bg-card) !important;
  color: var(--text) !important;
  border: 1.5px solid var(--line) !important;
  padding: 0.85rem 1rem !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
  outline: none !important;
  transition: border-color 0.2s ease;
  width: 100% !important;
  box-sizing: border-box !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--gold) !important;
}

.woocommerce form .form-row label {
  color: var(--text) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.35rem !important;
  display: block;
}

.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  color: var(--text) !important;
  border-radius: 10px !important;
  padding: 0.85rem 1.25rem !important;
  list-style: none !important;
}

/* ===============================================================
 * 17. SCROLL REVEAL ANIMATIONS (60FPS - BOTH DARK & WHITE MODES)
 * ============================================================= */
.js-animate .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-animate .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

/* ===============================================================
 * 18. TOP DROP HEADER & QUICK CATEGORY NAVIGATION
 * ============================================================= */
.top-drop-header {
  padding: 1.5rem 1.25rem 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.top-drop-bar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.drop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.drop-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  line-height: 1.15;
}

.category-quick-nav {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 0.75rem;
}
.category-quick-nav::-webkit-scrollbar {
  display: none;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-pill:hover,
.quick-pill.is-active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ===============================================================
 * 19. MULTI-BUY OFFERS BOX (SINGLE PRODUCT)
 * ============================================================= */
.vitoura-offers-card {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1.5px dashed var(--gold);
}

.offers-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.offers-card-header .offers-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.offers-heading {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.offers-pill-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.offer-tier-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.4rem;
  border-radius: 10px;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.offer-tier-badge:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.offer-tier-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.offer-tier-discount {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  margin-top: 0.15rem;
}

.offers-note {
  margin-top: 0.65rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .drop-title {
    font-size: 1.55rem;
  }
  .offers-pill-list {
    gap: 0.45rem;
  }
  .offer-tier-discount {
    font-size: 0.88rem;
  }
}

/* ===============================================================
 * 20. RELATED PRODUCTS / UPSELLS (MOBILE 2-COL COMPACT GRID)
 * ============================================================= */
.related.products,
.upsells.products {
  margin-top: 2.5rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid var(--line) !important;
  clear: both !important;
}

.related.products h2,
.upsells.products h2 {
  font-family: var(--font-display) !important;
  font-size: 1.65rem !important;
  color: var(--text) !important;
  margin-bottom: 1.25rem !important;
}

.woocommerce .related.products ul.products,
.woocommerce .upsells.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

@media (min-width: 768px) {
  .woocommerce .related.products ul.products,
  .woocommerce .upsells.products ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
  }
}

.woocommerce .related.products ul.products li.product,
.woocommerce .upsells.products ul.products li.product {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

.woocommerce .related.products ul.products li.product a img,
.woocommerce .upsells.products ul.products li.product a img {
  height: 200px !important;
  max-height: 240px !important;
  object-fit: cover !important;
  width: 100% !important;
}

.woocommerce .related.products ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.85rem !important;
  padding: 0.6rem 0.65rem 0.2rem !important;
  color: var(--text) !important;
  line-height: 1.3 !important;
}

.woocommerce .related.products ul.products li.product .price {
  padding: 0 0.65rem 0.65rem !important;
  font-size: 0.95rem !important;
  color: var(--gold) !important;
}

.woocommerce .related.products ul.products li.product .button {
  display: none !important;
}

/* ===============================================================
 * 21. LIVE OFFER BANNER (QUANTITY MULTI-BUY CALCULATOR)
 * ============================================================= */
.vitoura-live-offer-banner {
  display: none;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vitoura-live-offer-banner.is-active {
  display: block;
}

.live-offer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
}

.live-offer-content.is-upsell {
  border-color: var(--line);
  background: var(--bg-subtle);
}

.live-offer-content.is-upsell span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.live-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

.live-offer-badge svg.lucide {
  width: 14px;
  height: 14px;
}

.live-offer-summary {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}

.live-offer-summary del {
  color: var(--text-muted);
  font-weight: 400;
  margin-right: 0.25rem;
}

.live-offer-summary strong {
  color: var(--gold);
  font-weight: 800;
}

/* Active tier highlight in Multi-Buy card */
.offer-tier-badge.is-tier-active {
  border-color: var(--gold) !important;
  background: rgba(212, 175, 55, 0.1) !important;
  transform: translateY(-2px);
}

.offer-tier-badge.is-tier-active .offer-tier-title {
  color: var(--gold) !important;
}

@media (max-width: 480px) {
  .live-offer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.65rem 0.85rem;
  }
  .live-offer-summary {
    font-size: 0.82rem;
  }
}

/* ===============================================================
 * 22. WOOCOMMERCE BLOCK CHECKOUT (MOBILE COMPACT + THEME AWARE)
 * ============================================================= */

/* Mobile checkout: add breathing room so it's not full-screen edge-to-edge */
@media (max-width: 768px) {
  .woocommerce-checkout .wp-block-woocommerce-checkout,
  .woocommerce-checkout .wc-block-checkout,
  .woocommerce-checkout .wc-block-components-main,
  .woocommerce-checkout .entry-content,
  .woocommerce-checkout .wp-block-group {
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .woocommerce-checkout .wc-block-checkout__form,
  .woocommerce-checkout .wc-block-checkout__sidebar {
    padding: 0.5rem !important;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout {
    margin: 0 auto !important;
    max-width: 95vw !important;
  }
}

/* Block checkout fields - theme aware colors for BOTH modes */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-select .wc-block-components-select__container select,
.wc-block-components-combobox .components-form-token-field__input {
  background: var(--bg-card) !important;
  color: var(--text) !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 10px !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus {
  border-color: var(--gold) !important;
  outline: none !important;
}

.wc-block-components-text-input label,
.wc-block-components-select label,
.wc-block-components-combobox label {
  color: var(--text-muted) !important;
}

/* Checkout headings */
.wc-block-components-checkout-step__heading,
.wc-block-checkout__form h2,
.wc-block-components-title {
  color: var(--text) !important;
}

/* Checkout sidebar / order summary */
.wc-block-components-order-summary,
.wc-block-checkout__sidebar .wc-block-components-panel {
  background: var(--bg-card) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
}

.wc-block-components-order-summary-item__description,
.wc-block-components-order-summary-item__individual-price,
.wc-block-components-product-name {
  color: var(--text) !important;
}

.wc-block-components-totals-item__value,
.wc-block-components-totals-item__label {
  color: var(--text) !important;
}

/* Place order button - gold theme */
.wc-block-components-checkout-place-order-button,
.wc-block-checkout__actions button {
  background: var(--gold) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 1.5rem !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.wc-block-components-checkout-place-order-button:hover {
  background: #e2be4b !important;
  transform: translateY(-1px) !important;
}

/* Payment method labels & radio */
.wc-block-components-radio-control__label,
.wc-block-components-payment-method-label {
  color: var(--text) !important;
}

.wc-block-components-radio-control__option {
  background: var(--bg-card) !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  margin-bottom: 0.5rem !important;
}

/* Checkout error/notice styling */
.wc-block-components-notice-banner {
  background: var(--bg-card) !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 10px !important;
  color: var(--text) !important;
}

.wc-block-components-notice-banner.is-error {
  border-color: #ef4444 !important;
}

.wc-block-components-notice-banner.is-success {
  border-color: #22c55e !important;
}

/* Checkout step separators */
.wc-block-components-checkout-step {
  border-color: var(--line) !important;
}

/* Checkbox & toggle controls */
.wc-block-components-checkbox__input[type="checkbox"] {
  accent-color: var(--gold) !important;
}

/* ===============================================================
 * 23. CHECKOUT: PAYMENT COMING SOON NOTICE
 * ============================================================= */
.vitoura-hide {
  display: none !important;
}

.vitoura-payment-soon {
  margin: 1rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.payment-soon-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  color: var(--text);
}

.payment-soon-inner svg {
  color: var(--gold);
  flex-shrink: 0;
}

.payment-soon-inner strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.payment-soon-inner p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}


