/* ==========================================================================
   Baraka Atelier - International Haute Eastern Wear & Sartorial Apparel
   Contemporary Luxury E-Commerce Stylesheet
   Strictly Zero Physical Store / WhatsApp / Phone References
   Contact: concierge@barakaclothing.com
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #08231a;             /* Deep Haute Emerald */
  --primary-light: #12382c;
  --primary-dark: #04140e;
  --gold: #c59b43;                /* Champagne Antique Gold */
  --gold-hover: #d9ad53;
  --gold-subtle: #f8f4ec;
  --gold-border: #e2ce9f;
  
  /* Neutrals & Surfaces */
  --bg-page: #fbfbf9;             /* Warm Editorial Ivory */
  --bg-card: #ffffff;
  --bg-subtle: #f3f5f3;
  --text-main: #111814;
  --text-muted: #526058;
  --text-light: #7b8a82;
  --border: #e1e7e3;
  --border-light: #eef2ef;
  
  /* Status */
  --success: #1b8354;
  --danger: #c53030;
  --warning: #d97706;
  --info: #0284c7;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(8, 35, 26, 0.04);
  --shadow-md: 0 8px 24px rgba(8, 35, 26, 0.07);
  --shadow-lg: 0 16px 40px rgba(8, 35, 26, 0.12);
  --shadow-xl: 0 24px 60px rgba(8, 35, 26, 0.18);

  /* Radius & Motion */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.38s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --header-height: 76px;
  --topbar-height: 38px;
  --max-w: 1320px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  padding-bottom: 64px; /* Mobile bottom nav space */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
  transition: all var(--transition);
}

input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
}

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

.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.container {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background-color: var(--primary-dark);
  color: #d1ded8;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(197, 155, 67, 0.15);
  position: relative;
  z-index: 102;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-badge-gold {
  background: linear-gradient(135deg, #c59b43, #e5be6b);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-link {
  color: #e5ece8;
  transition: color var(--transition);
}

.top-bar-link:hover {
  color: var(--gold);
}

.currency-select {
  background: transparent;
  color: #d1ded8;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.72rem;
  cursor: pointer;
  outline: none;
}

.currency-select option {
  background: var(--primary-dark);
  color: #fff;
}

/* ==========================================================================
   STICKY MAIN HEADER (International Fashion Atelier Standard)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: all var(--transition-smooth);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  color: var(--primary);
}

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

/* Brand Identity */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-emblem-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* Desktop Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition);
}

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

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  color: var(--primary);
  position: relative;
  transition: background-color var(--transition), transform var(--transition);
}

.action-btn:hover {
  background-color: var(--bg-subtle);
  transform: translateY(-1px);
}

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

.badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-header-email {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color var(--transition), transform var(--transition);
}

.btn-header-email:hover {
  background-color: var(--primary-light);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .btn-header-email {
    display: inline-flex;
  }
}

/* ==========================================================================
   BUTTONS & COMMON UI
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}

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

.btn-gold {
  background: linear-gradient(135deg, #c59b43, #e5be6b);
  color: var(--primary-dark);
  font-weight: 700;
  border: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d9ad53, #ebd08d);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 155, 67, 0.35);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* Section Common Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.6rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   VIEW SWITCHER / SPA CONTAINERS
   ========================================================================== */
.view-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}

.view-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   HERO BANNER SECTION (High-Quality, Simple, International Editorial)
   ========================================================================== */
.hero-editorial {
  position: relative;
  background: linear-gradient(135deg, #051912 0%, #0a2f23 60%, #08231a 100%);
  color: #ffffff;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-editorial::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-image: url('https://images.unsplash.com/photo-1597983073493-88cd35cf93b0?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center 25%;
  opacity: 0.38;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-editorial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(8, 35, 26, 0.95) 0%, rgba(8, 35, 26, 0.7) 60%, transparent 100%);
  pointer-events: none;
}

.hero-editorial-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-editorial-inner {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(197, 155, 67, 0.16);
  border: 1px solid rgba(197, 155, 67, 0.35);
  color: var(--gold-hover);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.6rem;
  }
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cad8d1;
  max-width: 580px;
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #b8ccc2;
}

.hero-trust-item svg {
  color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Showcase Card */
.hero-showcase-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(197, 155, 67, 0.25);
  background-color: rgba(255, 255, 255, 0.05);
}

.hero-showcase-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-showcase-card:hover .hero-showcase-img {
  transform: scale(1.03);
}

.hero-showcase-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(8, 35, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 155, 67, 0.3);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-badge-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
}

.showcase-badge-sub {
  font-size: 0.78rem;
  color: var(--gold);
}

/* ==========================================================================
   CATEGORY QUICK TILES
   ========================================================================== */
.categories-preview {
  padding: 3.5rem 0 1.5rem;
}

.cat-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.cat-tile-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cat-tile-card:hover, .cat-tile-card.active {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.cat-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background-color: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}

.cat-tile-card:hover .cat-tile-icon, .cat-tile-card.active .cat-tile-icon {
  background-color: var(--primary);
  color: var(--gold);
}

.cat-tile-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.cat-tile-count {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ==========================================================================
   CATALOG & PRODUCTS SECTION
   ========================================================================== */
.catalog-section {
  padding: 3.5rem 0 5rem;
}

.catalog-toolbar {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

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

.category-pills-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.category-pills-row::-webkit-scrollbar {
  height: 3px;
}

.category-pills-row::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.filter-pill {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-subtle);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
}

.filter-pill:hover {
  color: var(--primary);
  background-color: #fff;
  border-color: var(--border);
}

.filter-pill.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.catalog-search-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.search-icon-svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-light);
  pointer-events: none;
}

.catalog-search-input {
  width: 100%;
  padding: 0.55rem 2rem 0.55rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  background-color: var(--bg-subtle);
  outline: none;
  transition: all var(--transition);
}

.catalog-search-input:focus {
  background-color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 35, 26, 0.08);
}

.clear-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  display: none;
}

.clear-search-btn.visible {
  display: block;
}

.sort-select {
  padding: 0.55rem 1.75rem 0.55rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background-color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

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

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

/* Product Card Component */
.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

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

.product-media {
  position: relative;
  width: 100%;
  padding-top: 130%; /* 4:3 or fashion aspect */
  overflow: hidden;
  background-color: #f5f7f5;
  cursor: pointer;
}

.product-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Card Badges */
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  z-index: 2;
}

.badge-hot {
  background-color: var(--primary);
  color: #ffffff;
}

.badge-special {
  background: linear-gradient(135deg, #c59b43, #d9ad53);
  color: var(--primary-dark);
}

.badge-new {
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.wishlist-toggle-btn:hover, .wishlist-toggle-btn.active {
  color: #e53e3e;
  background-color: #ffffff;
  transform: scale(1.1);
}

.quick-view-overlay-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.product-card:hover .quick-view-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Product Info */
.product-content {
  padding: 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color var(--transition);
}

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

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.stars-svg {
  display: flex;
  color: #eab308;
  gap: 1px;
}

.stars-svg svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-discount-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--success);
  background-color: rgba(27, 131, 84, 0.1);
  padding: 1px 6px;
  border-radius: var(--radius-xs);
}

/* Card Size Selector */
.card-size-selector {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

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

.size-pill-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.size-pill-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Card Action Footer */
.card-actions-footer {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}

.btn-card-bag {
  flex: 1;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-card-bag:hover {
  background-color: var(--primary-light);
}

.btn-card-view {
  background-color: var(--bg-subtle);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.btn-card-view:hover {
  background-color: #fff;
  border-color: var(--primary);
}

/* ==========================================================================
   DEDICATED FULL PRODUCT PAGE VIEW (#productView)
   ========================================================================== */
.product-page-section {
  padding: 2.5rem 0 5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.breadcrumb-nav a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb-nav a:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  color: var(--border);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4.5rem;
}

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

/* Left: Interactive Gallery */
.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-viewport {
  position: relative;
  width: 100%;
  padding-top: 120%;
  background-color: #f3f5f3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.main-image-viewport img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-thumbs-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumb-item {
  width: 80px;
  height: 95px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}

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

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

/* Right: Product Details */
.product-details-pane {
  display: flex;
  flex-direction: column;
}

.pdp-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pdp-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.pdp-stock-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--success);
}

.pdp-stock-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background-color: var(--success);
}

.pdp-pricing-box {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pdp-price-large {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.pdp-price-old {
  font-size: 1.15rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.pdp-discount-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(27, 131, 84, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

.pdp-description-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* Sizing Options */
.pdp-size-section {
  margin-bottom: 1.75rem;
}

.pdp-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.pdp-section-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pdp-size-guide-btn {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: underline;
}

.pdp-sizes-list {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pdp-size-btn {
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--border);
  background-color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition);
}

.pdp-size-btn:hover {
  border-color: var(--primary);
}

.pdp-size-btn.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Quantity & Cart Actions */
.pdp-cta-wrap {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.qty-counter {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: #fff;
}

.qty-btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-main);
}

.qty-btn:hover {
  background-color: var(--bg-subtle);
}

.qty-input {
  width: 44px;
  height: 48px;
  text-align: center;
  border: none;
  font-weight: 700;
  outline: none;
}

.btn-pdp-add-bag {
  flex: 1.2;
  min-height: 48px;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-pdp-add-bag:hover {
  background-color: var(--primary-light);
}

.btn-pdp-buy-now {
  flex: 1;
  min-height: 48px;
  background: linear-gradient(135deg, #c59b43, #e5be6b);
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-pdp-buy-now:hover {
  background: linear-gradient(135deg, #d9ad53, #ebd08d);
  transform: translateY(-1px);
}

/* Accordions for Specifications */
.pdp-accordions {
  border-top: 1px solid var(--border);
}

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

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
}

.accordion-trigger svg {
  transition: transform var(--transition);
  color: var(--text-light);
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.accordion-item.open .accordion-content {
  display: block;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.spec-row {
  display: flex;
  flex-direction: column;
}

.spec-key {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
}

.spec-val {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
}

/* ==========================================================================
   DEDICATED FULL CHECKOUT PAGE VIEW (#checkoutView)
   ========================================================================== */
.checkout-section {
  padding: 3rem 0 6rem;
  background-color: var(--bg-page);
}

.checkout-header-banner {
  text-align: center;
  margin-bottom: 2.5rem;
}

.checkout-page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.checkout-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--success);
  font-weight: 600;
}

.checkout-two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .checkout-two-columns {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Left Column: Form & Steps */
.checkout-form-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.checkout-step-group {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
}

.checkout-step-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background-color: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Form Controls */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: #fff;
  color: var(--text-main);
  outline: none;
  transition: all var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 35, 26, 0.08);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* Payment Selection Radio Cards */
.payment-selector-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-radio-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  background-color: #fff;
}

.payment-radio-box.selected {
  border-color: var(--primary);
  background-color: rgba(8, 35, 26, 0.02);
  box-shadow: 0 0 0 2px var(--primary);
}

.payment-radio-box input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--primary);
}

.payment-box-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.payment-box-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Right Column: Order Summary */
.checkout-summary-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
}

.summary-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 360px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  padding-right: 4px;
}

.summary-item-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.summary-item-img {
  width: 58px;
  height: 68px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

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

.summary-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.summary-item-meta {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.summary-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

/* Coupon Apply Row */
.coupon-apply-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border);
}

.coupon-field {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  outline: none;
}

.btn-apply-code {
  background-color: var(--primary);
  color: #fff;
  padding: 0 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Financial Totals */
.summary-totals-table {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.summary-row.total-bold {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.btn-submit-order {
  width: 100%;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, #08231a, #154c3b);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.btn-submit-order:hover {
  background: linear-gradient(135deg, #103b2e, #1a5e4a);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   ORDER CONFIRMATION / SUCCESS VIEW (#orderSuccessView)
   ========================================================================== */
.order-success-section {
  padding: 4.5rem 0 6rem;
}

.receipt-card {
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.receipt-header-strip {
  background-color: var(--primary);
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}

.success-check-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-pill);
  background: rgba(197, 155, 67, 0.2);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.receipt-order-id {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: monospace;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-top: 0.75rem;
  color: var(--gold-subtle);
}

.receipt-body {
  padding: 2rem;
}

.receipt-email-notice {
  background-color: var(--bg-subtle);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xs);
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.receipt-actions-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   EDITORIAL BRAND PHILOSOPHY STRIP
   ========================================================================== */
.philosophy-strip {
  background-color: var(--primary);
  color: #ffffff;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(197, 155, 67, 0.2);
  border-bottom: 1px solid rgba(197, 155, 67, 0.2);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

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

.philosophy-card {
  text-align: center;
  padding: 0 1rem;
}

.philosophy-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background-color: rgba(197, 155, 67, 0.15);
  border: 1px solid rgba(197, 155, 67, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.philosophy-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.philosophy-card p {
  font-size: 0.88rem;
  color: #b3c5bd;
  line-height: 1.6;
}

/* ==========================================================================
   CUSTOMER REVIEWS CAROUSEL / GRID
   ========================================================================== */
.reviews-section {
  padding: 5rem 0;
  background-color: #fff;
}

.reviews-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.review-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.review-rating-stars {
  display: flex;
  color: #eab308;
  gap: 2px;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  flex: 1;
}

.review-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.author-location {
  font-size: 0.75rem;
  color: var(--text-light);
}

.verified-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ==========================================================================
   PRIVATE CLIENT LIST / NEWSLETTER
   ========================================================================== */
.newsletter-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #09261d 0%, #051912 100%);
  color: #ffffff;
  text-align: center;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.newsletter-desc {
  font-size: 0.95rem;
  color: #c1d3cb;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form-row {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(197, 155, 67, 0.4);
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
  font-size: 0.92rem;
}

.newsletter-input::placeholder {
  color: #9cb5ab;
}

.newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
}

.newsletter-submit-btn {
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #c59b43, #e5be6b);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ==========================================================================
   CART SLIDE-OVER DRAWER
   ========================================================================== */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(4, 20, 14, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background-color: #ffffff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-xl);
}

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

.cart-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.cart-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.cart-badge-pill {
  background-color: var(--gold-subtle);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.cart-close-btn:hover {
  background-color: var(--bg-subtle);
  color: var(--primary);
}

/* Shipping Progress */
.shipping-progress-box {
  background-color: var(--bg-subtle);
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.shipping-progress-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.progress-track {
  width: 100%;
  height: 6px;
  border-radius: var(--radius-pill);
  background-color: var(--border);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #c59b43, #154c3b);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}

.cart-items-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item-card {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 72px;
  height: 86px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

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

.cart-item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.cart-item-size {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

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

.cart-item-price {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background-color: #ffffff;
}

.cart-totals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breakdown-row.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}

.btn-checkout-cta {
  width: 100%;
  padding: 0.9rem;
  background-color: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-checkout-cta:hover {
  background-color: var(--primary-light);
}

/* ==========================================================================
   MODALS ENGINE
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(4, 20, 14, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-dialog {
  transform: translateY(0) scale(1);
}

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

.modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.modal-close-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

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

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

/* ==========================================================================
   FOOTER (Strictly Email, Zero Physical Store/WhatsApp)
   ========================================================================== */
.site-footer {
  background-color: var(--primary-dark);
  color: #ccd7d1;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(197, 155, 67, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

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

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

.footer-col h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #a4b8af;
  margin-bottom: 1.5rem;
}

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

.footer-link-item a {
  font-size: 0.88rem;
  color: #a4b8af;
  transition: color var(--transition);
}

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

.footer-contact-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 155, 67, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.concierge-email-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.concierge-email-link:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #82968d;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #82968d;
}

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

/* ==========================================================================
   MOBILE BOTTOM BAR (Strictly No WhatsApp)
   ========================================================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 99;
}

@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  position: relative;
  width: 20%;
  height: 100%;
}

.bottom-nav-item.active, .bottom-nav-item:hover {
  color: var(--primary);
}

.bottom-nav-item svg {
  width: 20px;
  height: 20px;
}

.bottom-cart-badge {
  position: absolute;
  top: 6px;
  right: 22px;
  background-color: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   TOAST NOTIFICATION ENGINE
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

@media (min-width: 992px) {
  .toast-container {
    bottom: 24px;
    right: 24px;
  }
}

.toast {
  pointer-events: auto;
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  animation: slideUpToast 0.3s ease;
  max-width: 360px;
}

@keyframes slideUpToast {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Print Stylesheet for Invoices */
@media print {
  body {
    background: #fff;
    color: #000;
    padding: 0;
  }
  .top-bar, .site-header, .site-footer, .mobile-bottom-nav, .receipt-actions-row, .toast-container {
    display: none !important;
  }
  .receipt-card {
    border: none;
    box-shadow: none;
    max-width: 100%;
  }
}
