/* ==========================================================================
   BEST SHIRT EXPORTER — INTERNATIONAL APPAREL ATELIER
   Ultra-Modern Luxury E-Commerce & OEM Apparel Platform
   Pure Email Support • Zero Phone • Zero WhatsApp • International Layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Sophisticated Luxury Palette */
  --bg-dark: #090d16;
  --bg-card-dark: #111827;
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --bg-surface: #f1f5f9;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --accent-primary: #2563eb;       /* Royal Sapphire */
  --accent-primary-hover: #1d4ed8;
  --accent-primary-soft: #eff6ff;
  --accent-gold: #d97706;
  --accent-gold-soft: #fef3c7;
  --accent-emerald: #059669;

  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: rgba(255, 255, 255, 0.12);

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 6px -1px rgba(0, 0, 0, 0.08), 0 1px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.1), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 18px 40px -6px rgba(0, 0, 0, 0.14), 0 8px 18px -4px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 25px 60px -12px rgba(0, 0, 0, 0.22);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */

*, *::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: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 60%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.pill-badge-gold {
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent-gold);
  border-color: rgba(217, 119, 6, 0.25);
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--accent-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary-dark {
  background: var(--text-primary);
  color: #ffffff;
}

.btn-primary-dark:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--bg-surface);
  border-color: var(--text-primary);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Top Global Announcement Bar
   ========================================================================== */

.global-top-bar {
  background: #060911;
  color: #cbd5e1;
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.global-top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.top-bar-notice .live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.9; }
}

.top-bar-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.currency-picker-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.currency-picker-wrap label {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.currency-selector {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

.currency-selector option {
  background: #0f172a;
  color: #ffffff;
}

.top-bar-email-link {
  color: #93c5fd;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-bar-email-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   International Luxury Sticky Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}

/* Brand Identity */
.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-monogram {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

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

.brand-main-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-main-name span {
  color: var(--accent-primary);
}

.brand-sub-name {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.2s ease;
}

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

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

.header-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  position: relative;
}

.header-action-btn:hover {
  background: #e2e8f0;
}

.cart-icon-btn {
  background: var(--text-primary);
  color: #ffffff;
  border-color: var(--text-primary);
}

.cart-icon-btn:hover {
  background: #1e293b;
}

.cart-badge-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  background: var(--accent-primary);
  color: #ffffff;
}

.mobile-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
}

@media (min-width: 960px) {
  .mobile-hamburger {
    display: none;
  }
}

.mobile-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1100;
  box-shadow: var(--shadow-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.active {
  right: 0;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links a {
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
}

.mobile-nav-links a:hover {
  background: var(--bg-surface);
  color: var(--accent-primary);
}

/* ==========================================================================
   Hero Banner — Pure Luxury Silk / Thread Animation (NO Product Images)
   ========================================================================== */

.hero-luxury-banner {
  position: relative;
  min-height: 82vh;
  background: var(--bg-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 80px;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px;
}

.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--radius-full);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-main-title {
  font-size: 2.6rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

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

.hero-sub-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 680px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-sub-text {
    font-size: 1.18rem;
  }
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Trust Strip Under Hero */
.hero-trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 780px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.metric-item strong {
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 700;
}

.metric-item span {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ==========================================================================
   Value Proposition Strip
   ========================================================================== */

.value-features-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 30px 0;
}

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

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

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

.value-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
}

.value-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-primary-soft);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.value-text-box h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
  color: var(--text-primary);
}

.value-text-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Apparel Products Catalog Section
   ========================================================================== */

.catalog-section {
  padding: 70px 0 90px;
}

.section-head-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.section-pretitle {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.section-headline {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-description {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Catalog Controls & Filter Pills */
.catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

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

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

.cat-pill-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  background: #ffffff;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  white-space: nowrap;
}

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

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

.catalog-search-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.search-field-wrap {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 440px;
}

.search-field-input {
  width: 100%;
  padding: 10px 38px 10px 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-field-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.search-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.search-field-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  display: none;
}

.catalog-sort-select {
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  outline: none;
}

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

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

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

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

/* Individual Product Card */
.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

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

.product-card-visual {
  position: relative;
  aspect-ratio: 4 / 4.2;
  background: #f1f5f9;
  overflow: hidden;
  cursor: pointer;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-quick-action-bar {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  padding: 18px 14px 10px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-fast);
}

.product-card:hover .product-quick-action-bar {
  opacity: 1;
  transform: translateY(0);
}

.product-card-details {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.product-meta-pill {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  text-transform: uppercase;
}

.product-moq-pill {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.product-card-title:hover {
  color: var(--accent-primary);
}

.product-card-fabric {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

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

.product-card-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.product-sizes-hint {
  display: flex;
  gap: 4px;
}

.size-dot {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-surface);
  padding: 2px 5px;
  border-radius: var(--radius-xs);
}

.product-card-cta-group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: auto;
}

.catalog-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-medium);
}

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

/* ==========================================================================
   Full Product Detail Page / Dedicated Modal View
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.modal-container-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: modal-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-pop {
  0% { transform: scale(0.96) translateY(12px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close-trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  cursor: pointer;
}

.modal-close-trigger:hover {
  background: #e2e8f0;
}

/* Product Detail Modal Split Layout */
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .product-modal-grid {
    grid-template-columns: 1.05fr 1fr;
  }
}

.product-modal-gallery {
  background: #f8fafc;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-modal-main-img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.product-modal-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pm-preheader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pm-title {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 800;
}

.pm-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pm-price {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.pm-stock-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.pm-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Option Groups */
.option-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.option-pills-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.option-pill {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.option-pill:hover {
  border-color: var(--text-primary);
}

.option-pill.selected {
  background: var(--text-primary);
  color: #ffffff;
  border-color: var(--text-primary);
}

.qty-counter-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-stepper-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
}

.qty-btn {
  width: 38px;
  height: 38px;
  background: var(--bg-surface);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #e2e8f0;
}

.qty-input {
  width: 50px;
  height: 38px;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  outline: none;
}

/* Specs Table */
.pm-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.pm-specs-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.pm-specs-table tr:last-child td {
  border-bottom: none;
}

.pm-specs-table td:first-child {
  font-weight: 600;
  color: var(--text-muted);
  width: 35%;
}

/* ==========================================================================
   Shopping Bag / Cart Drawer
   ========================================================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #ffffff;
  z-index: 1600;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.cart-drawer.active {
  right: 0;
}

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

.cart-drawer-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

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

.free-shipping-meter {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 18px;
}

.free-shipping-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.meter-track {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: var(--accent-emerald);
  width: 0%;
  transition: width 0.3s ease;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
}

.cart-item-name {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.cart-item-specs {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  margin: 4px 0 8px;
}

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

.cart-item-total {
  font-weight: 700;
  font-size: 0.95rem;
}

.qty-stepper-compact {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.step-btn {
  width: 26px;
  height: 26px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.step-num {
  padding: 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.cart-remove-btn:hover {
  color: #ef4444;
}

.cart-drawer-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border-subtle);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-subtotal-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}

.cart-subtotal-line strong {
  font-size: 1.25rem;
  color: var(--text-primary);
}

/* ==========================================================================
   Comprehensive International Checkout Modal
   ========================================================================== */

.checkout-modal-content {
  max-width: 1080px;
  padding: 32px;
}

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

@media (min-width: 860px) {
  .checkout-grid-layout {
    grid-template-columns: 1.35fr 1fr;
  }
}

.checkout-step-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: var(--text-primary);
  color: #ffffff;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 540px) {
  .form-group-row {
    grid-template-columns: 1fr 1fr;
  }
}

.input-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.bse-input, .bse-select, .bse-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-medium);
  font-family: inherit;
  font-size: 0.9rem;
  background: #ffffff;
  outline: none;
  transition: var(--transition-fast);
}

.bse-input:focus, .bse-select:focus, .bse-textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Payment Radio Options */
.payment-methods-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  background: #ffffff;
  transition: var(--transition-fast);
}

.payment-radio-label:hover {
  border-color: var(--text-primary);
}

.payment-radio-label input:checked + .radio-content {
  font-weight: 700;
}

/* Order Summary Box in Checkout */
.checkout-order-summary-box {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 20px;
}

.co-summary-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.co-thumb-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.co-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xs);
  background: #ffffff;
}

.co-badge-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--text-primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.co-item-title {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
}

.co-item-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.co-item-price {
  font-size: 0.88rem;
  font-weight: 700;
}

/* Coupon box */
.coupon-input-group {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.coupon-feedback {
  font-size: 0.75rem;
  margin-top: 4px;
}

.coupon-feedback.success {
  color: #16a34a;
}

.coupon-feedback.error {
  color: #dc2626;
}

.summary-calc-table {
  width: 100%;
  margin-top: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

.calc-row.grand-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  border-top: 1px dashed var(--border-medium);
  padding-top: 10px;
  margin-top: 6px;
}

/* ==========================================================================
   Order Confirmation & Proforma Receipt
   ========================================================================== */

.confirmation-card {
  max-width: 680px;
  padding: 40px 32px;
  text-align: center;
}

.conf-check-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: #dcfce7;
  color: #16a34a;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.receipt-box {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

.receipt-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.receipt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin: 16px 0;
}

.receipt-table th, .receipt-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.receipt-table th {
  text-align: left;
  font-weight: 700;
  color: var(--text-muted);
}

/* ==========================================================================
   Size Guide Modal
   ========================================================================== */

.sizeguide-card {
  max-width: 720px;
  padding: 32px;
}

.sizeguide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 16px 0;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sizeguide-table th {
  background: var(--bg-surface);
  padding: 10px 14px;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.sizeguide-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-subtle);
}

/* ==========================================================================
   Customer Feedback & Reviews
   ========================================================================== */

.reviews-section {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

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

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

.review-card {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars-row {
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-quote {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author-meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.review-author-meta span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-item-tag {
  display: inline-block;
  font-size: 0.72rem;
  background: #e2e8f0;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 6px;
}

/* ==========================================================================
   Frequently Asked Questions Accordions
   ========================================================================== */

.faq-section {
  padding: 70px 0;
}

.faqs-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item-card:hover {
  border-color: var(--border-medium);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  color: var(--text-primary);
}

.faq-chevron {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-answer-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 22px;
}

.faq-answer-drawer p {
  padding-bottom: 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item-card.open .faq-chevron {
  transform: rotate(45deg);
}

.faq-item-card.open .faq-answer-drawer {
  max-height: 300px;
  transition: max-height 0.35s ease-in-out;
}

/* ==========================================================================
   International Luxury Site Footer
   ========================================================================== */

.site-footer {
  background: #060911;
  color: #94a3b8;
  padding: 70px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 50px;
}

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

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

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-email-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
}

.footer-email-box p {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.footer-email-badge {
  display: inline-block;
  color: #93c5fd;
  font-weight: 700;
  font-size: 0.95rem;
  word-break: break-all;
}

.footer-bottom-bar {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

/* ==========================================================================
   Global Toast Notification
   ========================================================================== */

.bse-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f172a;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bse-toast.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Print Styles for Official Proforma Invoices
   ========================================================================== */

@media print {
  body * {
    visibility: hidden;
  }
  #order-confirmation-modal, #order-confirmation-modal * {
    visibility: visible;
  }
  #order-confirmation-modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 0;
  }
  .modal-close-trigger, .modal-footer-actions, .site-header, .site-footer {
    display: none !important;
  }
}
