/* ==========================================================================
   EXCEL FOOTWEAR ATELIER — INTERNATIONAL LUXURY DESIGN SYSTEM
   Modern Minimalist Aesthetic, Pure Typography & High-End Micro-Interactions
   Contact: contact@excelshoes.com
   ========================================================================== */

:root {
  /* Core Palette */
  --bg-body: #fbfbfb;
  --bg-surface: #ffffff;
  --bg-subtle: #f4f4f5;
  --bg-dark: #0a0b0e;
  --bg-dark-card: #12141c;
  --bg-dark-elevated: #1a1d28;

  /* Brand Accents */
  --gold-50: #fbf8f0;
  --gold-100: #f5eed8;
  --gold-300: #e3cc96;
  --gold-400: #d4b46b;
  --gold-500: #c5a059;
  --gold-600: #a7823b;
  --gold-700: #826227;

  /* Typography Colors */
  --text-main: #121316;
  --text-muted: #52525b;
  --text-subtle: #71717a;
  --text-inverse: #ffffff;
  --text-inverse-muted: #a1a1aa;

  /* Borders & Dividers */
  --border-subtle: #e4e4e7;
  --border-card: #ebebed;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(197, 160, 89, 0.35);

  /* Status */
  --success: #15803d;
  --success-bg: #f0fdf4;
  --danger: #dc2626;
  --danger-bg: #fef2f2;

  /* Typography */
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Elevations */
  --header-height: 80px;
  --topbar-height: 38px;
  --max-width: 1320px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 36px -4px rgba(0, 0, 0, 0.1), 0 6px 16px -2px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 8px 24px -4px rgba(197, 160, 89, 0.3);

  --transition-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 260ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Smoothness */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
  user-select: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.topbar {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  z-index: 105;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--topbar-height);
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-300);
}

.topbar-sparkle {
  color: var(--gold-400);
  font-size: 0.9rem;
}

.topbar-center {
  display: none;
  font-weight: 500;
  color: #e4e4e7;
}

@media (min-width: 900px) {
  .topbar-center {
    display: block;
  }
}

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

.topbar-email-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f4f4f5;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}

.topbar-email-link:hover {
  background: var(--gold-500);
  color: #000;
}

.topbar-email-link svg {
  width: 13px;
  height: 13px;
}

/* ==========================================================================
   STICKY MAIN HEADER (International Luxury Wordmark & Navigation)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

/* Left Group */
.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-main);
  transition: background var(--transition-fast);
}

@media (min-width: 1024px) {
  .mobile-toggle-btn {
    display: none;
  }
}

.mobile-toggle-btn:hover {
  background: var(--bg-subtle);
}

/* International Brand Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-wordmark {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--text-main);
  line-height: 1;
}

.brand-wordmark span {
  color: var(--gold-500);
}

.brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 3px;
  font-weight: 600;
}

/* Desktop Main Navigation Links */
.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-badge-pill {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  background: var(--gold-100);
  color: var(--gold-700);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
}

/* Header Action Tools */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-main);
  position: relative;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: var(--bg-subtle);
  border-color: var(--text-subtle);
}

.action-btn svg {
  width: 19px;
  height: 19px;
}

.counter-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-500);
  color: #000;
  font-size: 0.6875rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  transition: transform var(--transition-fast);
}

.action-cart-btn {
  width: auto;
  padding: 0 16px;
  gap: 10px;
  background: var(--bg-dark);
  color: var(--text-inverse);
  border: 1px solid var(--bg-dark);
}

.action-cart-btn:hover {
  background: #1f2330;
  border-color: #1f2330;
  color: var(--text-inverse);
}

.action-cart-btn .cart-label {
  display: none;
  font-size: 0.8125rem;
  font-weight: 600;
}

.action-cart-btn .cart-total {
  font-weight: 700;
  color: var(--gold-300);
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .action-cart-btn .cart-label {
    display: inline-block;
  }
}

.email-concierge-pill {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-50);
  border: 1px solid var(--border-gold);
  color: var(--gold-700);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
}

.email-concierge-pill:hover {
  background: var(--gold-500);
  color: #000;
  border-color: var(--gold-500);
}

@media (min-width: 1200px) {
  .email-concierge-pill {
    display: inline-flex;
  }
}

/* ==========================================================================
   HERO BANNER — PURE ANIMATION CANVAS (ZERO PRODUCT PHOTOS)
   ========================================================================== */
.hero-banner-section {
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}

@media (min-width: 992px) {
  .hero-banner-section {
    min-height: 640px;
  }
}

/* Dynamic Interactive Canvas Behind Content */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

/* Ambient Radial Glow Overlays */
.hero-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.14) 0%, rgba(10, 11, 14, 0) 70%);
  pointer-events: none;
  z-index: 2;
  filter: blur(40px);
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  padding: 60px 20px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.4);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 10px var(--gold-400);
  animation: pulseAnim 2s infinite ease-in-out;
}

@keyframes pulseAnim {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-300) 50%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-lead-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-inverse-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold-500);
  color: #0c0d12;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(197, 160, 89, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Hero Quality Ticker */
.hero-quality-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .hero-quality-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quality-pill-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #d1d5db;
  font-weight: 500;
}

.quality-pill-item span.icon {
  color: var(--gold-400);
  font-size: 0.95rem;
}

/* ==========================================================================
   CATEGORY CURATION STRIP
   ========================================================================== */
.categories-showcase-section {
  padding: 64px 0 32px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .category-tiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-tiles-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-img-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
}

.category-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-img-box img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.category-name {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   MAIN PRODUCT CATALOG SECTION
   ========================================================================== */
.catalog-section {
  padding: 48px 0 80px;
}

.catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}

@media (min-width: 992px) {
  .catalog-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.filter-pills-row {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-pills-row::-webkit-scrollbar {
  display: none;
}

.pill-tab {
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  transition: all var(--transition-fast);
}

.pill-tab:hover {
  background: #ebebeb;
  color: var(--text-main);
}

.pill-tab.active {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.catalog-actions-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-field-wrapper {
  position: relative;
  min-width: 200px;
}

.search-field-input {
  width: 100%;
  height: 38px;
  padding: 0 12px 0 34px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
  font-size: 0.8125rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.search-field-input:focus {
  background: #ffffff;
  border-color: var(--gold-500);
}

.search-field-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
  pointer-events: none;
}

.sort-select {
  height: 38px;
  padding: 0 28px 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-subtle) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  appearance: none;
  cursor: pointer;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 540px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* High-End Product Card */
.product-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

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

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3.8;
  overflow: hidden;
  background: #f4f4f5;
  cursor: pointer;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms ease, transform 400ms ease;
}

.product-img.secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .product-img.primary {
  opacity: 0;
}

.product-card:hover .product-img.secondary {
  opacity: 1;
  transform: scale(1.04);
}

.product-badge-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.badge-hot {
  background: #dc2626;
  color: #fff;
}

.badge-featured {
  background: var(--bg-dark);
  color: var(--gold-300);
}

.badge-sale {
  background: var(--gold-500);
  color: #000;
}

.wishlist-toggle-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  z-index: 2;
}

.wishlist-toggle-btn:hover {
  color: #dc2626;
  background: #fff;
  transform: scale(1.1);
}

.wishlist-toggle-btn.active {
  color: #dc2626;
}

.wishlist-toggle-btn.active svg {
  fill: #dc2626;
}

/* Product Info Box */
.product-info-box {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.product-cat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.product-rating-snippet {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.product-rating-snippet svg {
  color: #eab308;
  fill: #eab308;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.product-desc-snippet {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sizes Bar */
.product-sizes-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.size-pill-btn {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.size-pill-btn:hover {
  border-color: var(--gold-500);
  color: var(--text-main);
}

.size-pill-btn.selected {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff;
}

.product-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 16px;
}

.product-price-current {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.product-price-original {
  font-size: 0.875rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.product-actions-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.btn-add-to-bag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  background: var(--bg-dark);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-add-to-bag:hover {
  background: #1f2330;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-quick-view {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.btn-quick-view:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
  border-color: var(--text-subtle);
}

/* ==========================================================================
   DEDICATED FULL PRODUCT DETAIL VIEW (Dedicated View Mode)
   ========================================================================== */
.product-detail-view {
  padding: 40px 0 80px;
}

.product-detail-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.product-detail-breadcrumbs a:hover {
  color: var(--gold-600);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.product-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-main-view {
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f4f4f5;
  border: 1px solid var(--border-card);
  position: relative;
}

.gallery-main-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-main-view:hover img {
  transform: scale(1.04);
}

.gallery-thumbnails-strip {
  display: flex;
  gap: 12px;
}

.gallery-thumb-btn {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.gallery-thumb-btn.active {
  border-color: var(--gold-500);
}

.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-specs-pane {
  display: flex;
  flex-direction: column;
}

.detail-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 6px;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.detail-ratings-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.detail-price-main {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
}

.detail-price-strike {
  font-size: 1.1rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.detail-discount-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: #fef2f2;
  color: #dc2626;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.detail-section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.size-guide-link {
  font-size: 0.75rem;
  color: var(--gold-600);
  text-decoration: underline;
  cursor: pointer;
}

.detail-sizes-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.detail-size-box {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.detail-size-box:hover {
  border-color: var(--gold-500);
}

.detail-size-box.active {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}

.detail-quantity-and-actions {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.quantity-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  padding: 0 10px;
  height: 52px;
}

.qty-btn {
  font-size: 1.2rem;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.qty-btn:hover {
  color: var(--text-main);
}

.qty-val {
  font-weight: 700;
  font-size: 1rem;
}

.detail-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-500);
  color: #0c0d12;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  height: 52px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.detail-buy-btn:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

.detail-accordions-group {
  border-top: 1px solid var(--border-subtle);
  margin-top: 20px;
}

.accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: left;
  cursor: pointer;
}

.accordion-content {
  padding-bottom: 18px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   DEDICATED CHECKOUT VIEW & MODAL
   ========================================================================== */
.checkout-view-section {
  padding: 48px 0 80px;
}

.checkout-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 992px) {
  .checkout-page-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.checkout-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.checkout-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.step-number-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-label span.req {
  color: #dc2626;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
  font-size: 0.875rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #ffffff;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Payment Methods */
.payment-selector-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.payment-option-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.payment-option-card.selected {
  border-color: var(--gold-500);
  background: var(--gold-50);
}

.payment-option-card input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--gold-600);
}

.payment-option-title {
  font-size: 0.9375rem;
  font-weight: 700;
}

.payment-option-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Checkout Order Summary Card */
.checkout-summary-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.checkout-items-list {
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 24px;
  padding-right: 6px;
}

.checkout-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.checkout-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f4f4f5;
  flex-shrink: 0;
}

.checkout-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item-info {
  flex: 1;
}

.checkout-item-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.checkout-item-size {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkout-item-price {
  font-weight: 700;
  font-size: 0.875rem;
}

.promo-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.btn-promo-apply {
  padding: 0 16px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: background var(--transition-fast);
}

.btn-promo-apply:hover {
  background: #1f2330;
}

.checkout-totals-block {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.totals-row.grand-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  margin-top: 4px;
}

.btn-place-order {
  width: 100%;
  height: 52px;
  background: var(--gold-500);
  color: #0c0d12;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-top: 24px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.btn-place-order:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

/* ==========================================================================
   SLIDE-OUT CART DRAWER
   ========================================================================== */
.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--bg-surface);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}

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

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.cart-free-shipping-bar {
  padding: 12px 24px;
  background: var(--gold-50);
  border-bottom: 1px solid var(--border-gold);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-700);
}

.shipping-progress-track {
  height: 4px;
  background: rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-pill);
  margin-top: 6px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: var(--gold-500);
  border-radius: var(--radius-pill);
  transition: width var(--transition-normal);
}

.cart-items-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty-message {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.cart-item-card {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #f4f4f5;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-item-size-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
}

.cart-qty-btn {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 4px;
}

.cart-item-remove-btn {
  color: #dc2626;
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.btn-drawer-checkout {
  width: 100%;
  height: 48px;
  background: var(--gold-500);
  color: #0c0d12;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  transition: all var(--transition-fast);
}

.btn-drawer-checkout:hover {
  background: var(--gold-400);
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background: var(--bg-surface);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15);
}

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

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-list {
  list-style: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-main);
  background: var(--bg-subtle);
  transition: background var(--transition-fast);
}

.mobile-nav-item a:hover {
  background: #ebebeb;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   CUSTOMER REVIEWS SECTION
   ========================================================================== */
.reviews-section {
  padding: 64px 0;
  background: var(--bg-subtle);
}

.reviews-score-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.score-big {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
}

.stars-row-gold {
  display: flex;
  gap: 4px;
  color: #eab308;
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.review-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.review-verified-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--success);
  background: var(--success-bg);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.review-product-tag {
  font-size: 0.75rem;
  color: var(--gold-700);
  margin-bottom: 10px;
  font-weight: 600;
}

.review-body-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   MODAL WINDOWS (General, Checkout, Quickview, Contact Concierge)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  z-index: 2;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.modal-body {
  padding: 24px;
}

/* Size Guide Table */
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 14px;
}

.size-table th, .size-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.size-table th {
  background: var(--bg-subtle);
  font-weight: 700;
}

/* ==========================================================================
   ORDER CONFIRMATION POPUP RECEIPT
   ========================================================================== */
.order-success-box {
  text-align: center;
  padding: 20px 0;
}

.order-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.order-id-highlight {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-700);
  background: var(--gold-50);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin: 12px 0;
}

.order-email-alert {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ==========================================================================
   INTERNATIONAL FOOTER (EMAIL ONLY, NO PHONE, NO ADDRESS, NO WHATSAPP)
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 72px 0 32px;
  border-top: 1px solid var(--border-dark);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

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

.footer-col-brand .brand-wordmark {
  color: #fff;
}

.footer-bio {
  font-size: 0.875rem;
  color: var(--text-inverse-muted);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--gold-300);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-inverse-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
}

/* Contact Concierge Col */
.footer-contact-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 20px;
}

.footer-email-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-400);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8125rem;
  color: var(--text-inverse-muted);
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

/* Toast System */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease forwards;
}

@keyframes toastIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
