/* ==========================================================================
   ATELIER ATLAS — COGNAC PUR & ÉBÈNE PRESTIGE DESIGN SYSTEM
   Theme: Pure Cognac Leather (#A35D31), Deep Ebony (#0C0A09),
          Burnished Brass (#C28E47), Parchment Cream (#FAF6F0), Forest Emerald (#1B4D3E)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600;1,700&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  /* Cognac Leather Palette */
  --primary: #A35D31;
  --primary-hover: #84451D;
  --primary-dark: #6B3413;
  --primary-light: #FAF2EB;
  --primary-glow: rgba(163, 93, 49, 0.28);
  --primary-gradient: linear-gradient(135deg, #B26A3B 0%, #8A461E 100%);
  
  /* Deep Ebony & Charcoal */
  --secondary: #0C0A09;
  --secondary-light: #1C1917;
  --secondary-surface: #26221F;
  --secondary-border: #38332E;
  
  /* Brass & Gold Accents */
  --accent-brass: #C28E47;
  --accent-brass-light: #FBF5EC;
  --accent-brass-dark: #9E6F2E;
  
  /* Trust Emerald */
  --accent-green: #1B4D3E;
  --accent-green-light: #EBF5F0;
  
  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-hover: #20ba59;
  
  /* Backgrounds & Neutrals */
  --bg: #FAF7F2;
  --card-bg: #FFFFFF;
  --bg-subtle: #F3ECE1;
  
  /* Typography Colors */
  --text-main: #171412;
  --text-muted: #6E655E;
  --text-light: #9C9187;
  --text-inverse: #FFFFFF;
  
  /* Borders */
  --border: #E8E0D5;
  --border-light: #F2ECE2;
  --border-focus: #A35D31;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(12, 10, 9, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(12, 10, 9, 0.08), 0 4px 10px -2px rgba(12, 10, 9, 0.03);
  --shadow-lg: 0 20px 40px -8px rgba(12, 10, 9, 0.12), 0 8px 20px -4px rgba(12, 10, 9, 0.05);
  --shadow-glow: 0 10px 30px -5px rgba(163, 93, 49, 0.35);
  --shadow-brass: 0 8px 25px rgba(194, 142, 71, 0.3);
  
  /* Typography Fonts */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-arabic: 'Tajawal', -apple-system, sans-serif;
}

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: clip;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: clip;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

/* RTL Support */
[dir="rtl"] {
  font-family: var(--font-arabic);
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
  font-family: var(--font-arabic);
  font-weight: 800;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   BUTTONS (COGNAC & ÉBÈNE)
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #8A461E 0%, #6B3413 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(163, 93, 49, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--secondary);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--secondary-border);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  background: var(--secondary-surface);
  border-color: var(--accent-brass);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-pulse {
  animation: pulseCognac 2.2s infinite;
}
@keyframes pulseCognac {
  0% { box-shadow: 0 0 0 0 rgba(163, 93, 49, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(163, 93, 49, 0); }
  100% { box-shadow: 0 0 0 0 rgba(163, 93, 49, 0); }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #0C0A09 0%, #1F1B18 50%, #0C0A09 100%);
  color: var(--accent-brass);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 16px;
  text-align: center;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(194, 142, 71, 0.25);
}

.site-header {
  background: rgba(250, 247, 242, 0.98);
  border-bottom: 1px solid var(--border);
  position: relative;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  gap: 20px;
  transition: padding 0.25s ease;
}

/* 💻 Fixed Sticky Header ONLY on Desktop Screens (>= 992px) */
@media (min-width: 992px) {
  .site-header {
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 4px 18px rgba(12, 10, 9, 0.05);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(12, 10, 9, 0.12);
    border-bottom-color: rgba(163, 93, 49, 0.22);
  }

  .site-header.is-scrolled .header-container {
    padding: 9px 0;
  }
}

/* 📱 Mobile & Tablet View (< 992px): Header scrolls away naturally */
@media (max-width: 991px) {
  .site-header {
    position: relative !important;
    top: auto !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent-brass);
  border: 1.5px solid var(--accent-brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: 1.5px;
  line-height: 1;
}
.brand-sub {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}




[dir="rtl"] 
.lang-dropdown-wrap:hover 







/* ==========================================================================
   HERO SHOWCASE SECTION
   ========================================================================== */
.hero-cognac {
  background: linear-gradient(180deg, #F3ECE1 0%, var(--bg) 100%);
  padding: 60px 0 70px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-grid-2 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(163, 93, 49, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-main-title {
  font-size: 3.1rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-main-title span {
  color: var(--primary);
  font-style: italic;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px dashed var(--border);
}
.hero-pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}
.hero-pill-item i {
  color: var(--accent-brass);
}

.hero-img-frame {
  background: #FFFFFF;
  padding: 12px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-frame img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   CATEGORY CARDS
   ========================================================================== */
.categories-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0;
}
.cat-card-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.cat-card-img {
  height: 165px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card-item:hover .cat-card-img {
  transform: scale(1.06);
}
.cat-card-info {
  padding: 16px;
  text-align: center;
}
.cat-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}
.cat-card-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .products-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .products-grid-3,
  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.product-card-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-brass);
  box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: var(--bg-subtle);
  overflow: hidden;
  display: block;
}
.product-img-wrapper > a {
  display: block;
  width: 100%;
  height: 100%;
}
.product-img-main {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease;
}
.product-card-item:hover .product-img-main {
  transform: scale(1.06);
}

.btn-card-whatsapp {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  padding: 11px 14px !important;
  border-radius: var(--radius-md) !important;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.28) !important;
  transition: all 0.25s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  cursor: pointer !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.btn-card-whatsapp:hover {
  background: linear-gradient(135deg, #28e06c 0%, #149c8c 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.42) !important;
  color: #FFFFFF !important;
}
.btn-card-whatsapp:active {
  transform: translateY(0) !important;
}

.btn-detail-whatsapp {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  padding: 15px 18px !important;
  border-radius: var(--radius-md) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  cursor: pointer !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-top: 10px !important;
}

.btn-detail-whatsapp:hover {
  background: linear-gradient(135deg, #28e06c 0%, #149c8c 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.48) !important;
  color: #FFFFFF !important;
}

.btn-detail-whatsapp:active {
  transform: translateY(0) !important;
}

.badge-tag-urgent {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #B83A2E;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}
[dir="rtl"] .badge-tag-urgent {
  left: auto;
  right: 12px;
}

.badge-tag-leather {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--secondary);
  color: var(--accent-brass);
  border: 1px solid var(--accent-brass);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}
[dir="rtl"] .badge-tag-leather {
  right: auto;
  left: 12px;
}

.product-info-box {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #D97706;
  margin-bottom: 12px;
}
.product-stars-count {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.product-stock-counter {
  background: #FFF5F4;
  color: #B83A2E;
  border: 1px solid #F8D7D4;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-prices-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 16px;
}
.product-price-active {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}
.product-price-striked {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-bar-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
  margin: 50px 0 40px;
}
.trust-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.trust-box-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-box-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(163, 93, 49, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-box-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}
.trust-box-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   CHECKOUT BOX (HANDY COD PANEL)
   ========================================================================== */
.checkout-panel-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.input-label-field {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--secondary);
}
.input-control-field {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.input-control-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.form-group-mb {
  margin-bottom: 18px;
}

/* ==========================================================================
   FOOTER (ÉBÈNE & BRASS)
   ========================================================================== */
.site-footer-ebene {
  background: var(--secondary);
  color: #D6CEC5;
  padding: 65px 0 30px;
  margin-top: auto;
  border-top: 3px solid var(--accent-brass);
}
.footer-cols-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--accent-brass);
}
[dir="rtl"] .footer-col-title::after {
  left: auto;
  right: 0;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link-a {
  color: #B5ACA3;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.footer-link-a:hover {
  color: var(--accent-brass);
  transform: translateX(4px);
}
[dir="rtl"] .footer-link-a:hover {
  transform: translateX(-4px);
}
.footer-bottom-row {
  padding-top: 24px;
  border-top: 1px solid var(--secondary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  color: #8C8278;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   WHATSAPP & FLOATING ACTIONS
   ========================================================================== */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #FFFFFF !important;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: all 0.25s ease;
}
[dir="rtl"] .whatsapp-floating-btn {
  right: 24px !important;
  left: auto !important;
}
.whatsapp-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid-2 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-trust-pills {
    justify-content: center;
  }
  .categories-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-main-title {
    font-size: 2.2rem;
  }
  .categories-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .products-grid-3,
  .products-grid-4 {
    grid-template-columns: 1fr !important;
  }
  .trust-items-grid {
    grid-template-columns: 1fr;
  }
  .footer-cols-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
}

/* ==========================================================================
   HEADER CATEGORY DROPDOWN (COGNAC & ÉBÈNE)
   ========================================================================== */




.nav-dropdown-btn:hover, 
  to { opacity: 1; transform: translateY(0); }
}



.nav-dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 22px;
}

[dir="rtl"] .nav-dropdown-item:hover {
  padding-left: 18px;
  padding-right: 22px;
}

.nav-dropdown-item i {
  color: var(--primary);
  font-size: 0.95rem;
  width: 18px;
}

/* ==========================================================================
   CIRCULAR LOGO STYLING (BLISS)
   ========================================================================== */
.brand-logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-brass);
  box-shadow: 0 4px 14px rgba(194, 142, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #0C0A09;
  transition: all 0.3s ease;
}

.brand-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.brand-logo:hover .brand-logo-circle {
  transform: scale(1.06);
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(163, 93, 49, 0.4);
}

.nav-dropdown-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 4px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  border-top: 1px solid var(--border-light);
  margin-top: 4px;
}
.nav-dropdown-group-title:first-child {
  border-top: none;
  margin-top: 0;
}
.nav-dropdown-subitem {
  padding-left: 28px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}
[dir="rtl"] .nav-dropdown-subitem {
  padding-left: 18px !important;
  padding-right: 28px !important;
}

/* ==========================================================================
   HEADER WHATSAPP & LIVRAISON BUTTONS (CHOSSURES STYLE)
   ========================================================================== */
.btn-whatsapp-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45) !important;
  color: #FFFFFF !important;
}

.btn-livraison-header:hover {
  background: var(--surface-alt);
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .btn-livraison-header span,
  .btn-whatsapp-header span {
    display: none;
  }
  .btn-whatsapp-header,
  .btn-livraison-header {
    padding: 8px 10px !important;
  }
}

/* ==========================================================================
   HEADER ACTIONS: WHATSAPP & LIVRAISON (CHOSSURES STYLE)
   ========================================================================== */
.header-actions-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 0.84rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-header-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-header-livraison {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary) !important;
  border: 1.5px solid rgba(163, 93, 49, 0.25);
  font-weight: 800;
  font-size: 0.84rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-header-livraison:hover {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-header-livraison i {
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .btn-header-livraison span, .btn-header-whatsapp span {
    display: none;
  }
  .btn-header-livraison, .btn-header-whatsapp {
    padding: 8px 10px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
}

/* ==========================================================================
   EXACT CHOSSURES HEADER BUTTONS (WHATSAPP & LIVRAISON)
   ========================================================================== */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: #ffffff !important;
  font-weight: 800;
  padding: 7px 14px;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20ba59 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
  color: #ffffff !important;
}

.btn-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #1e293b;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  flex-shrink: 0;
  text-decoration: none;
}
.btn-icon:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.badge-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(163, 93, 49, 0.4);
}
[dir="rtl"] .badge-count {
  right: auto;
  left: -3px;
}

/* ==========================================================================
   FOCUSED WHATSAPP & SUIVI HEADER BUTTONS (SOFTENED & EYE-FRIENDLY)
   ========================================================================== */
.btn-whatsapp-focused {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1E8E47 0%, #157335 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 8px 15px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 8px rgba(30, 142, 71, 0.22);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-whatsapp-focused:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #229c4e 0%, #18833d 100%);
  box-shadow: 0 4px 14px rgba(30, 142, 71, 0.35);
}

.whatsapp-dot-pulse {
  width: 7px;
  height: 7px;
  background: #A3E635;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.9;
}


@keyframes whatsappPulseFocus {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0), 0 0 0 3px rgba(255, 255, 255, 1), 0 6px 18px rgba(37, 211, 102, 0.65);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 0 0 2px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

@keyframes dotBlink {
  0% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.2); }
}

.btn-suivi-livraison {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FAF7F2;
  color: var(--primary) !important;
  border: 1.5px solid rgba(163, 93, 49, 0.35);
  font-weight: 800;
  font-size: 0.84rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-suivi-livraison:hover {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(163, 93, 49, 0.35);
}

.btn-suivi-livraison i {
  color: var(--primary);
  transition: color 0.25s ease;
}

.btn-suivi-livraison:hover i {
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .btn-suivi-livraison span {
    display: none;
  }
  .btn-suivi-livraison {
    padding: 8px 10px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
}

/* ==========================================================================
   SOLID BULLETPROOF CATEGORY DROPDOWN MENU
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-item-dropdown:hover .nav-dropdown-btn,
.nav-item-dropdown.is-open .nav-dropdown-btn {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(12, 10, 9, 0.15);
  min-width: 290px;
  max-height: 480px;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Invisible hover bridge to prevent disappearing */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  display: block;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-item i {
  color: var(--primary);
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
}

.nav-dropdown-item:hover {
  background: var(--parchemin-light);
  color: var(--primary);
}

[dir="rtl"] .nav-dropdown-menu {
  left: auto;
  right: 0;
}

/* ==========================================================================
   BULLETPROOF LANGUAGE DROPDOWN
   ========================================================================== */
.lang-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 6px;
  margin-bottom: -6px;
}

.lang-btn {
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.lang-dropdown-wrap:hover .lang-btn,
.lang-dropdown-wrap.is-open .lang-btn {
  border-color: var(--primary);
  background: var(--parchemin-light);
  color: var(--primary);
}

.lang-menu-box {
  position: absolute;
  top: 100%;
  right: 0;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(12, 10, 9, 0.15);
  min-width: 180px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Invisible hover bridge */
.lang-menu-box::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  display: block;
}

.lang-dropdown-wrap:hover .lang-menu-box,
.lang-dropdown-wrap.is-open .lang-menu-box,
.lang-menu-box:hover {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-option:hover {
  background: var(--parchemin-light);
  color: var(--primary);
}

[dir="rtl"] .lang-menu-box {
  right: auto;
  left: 0;
}

/* ==========================================================================
   MOBILE FULL ADAPTATION (DRAWER, BOTTOM NAV, COMPACT HEADER & GRIDS)
   ========================================================================== */

/* Hamburger Button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.hamburger-btn:hover {
  color: var(--primary);
  background: var(--parchemin-light);
}

/* Mobile Slide-in Drawer */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 9, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-drawer-backdrop.open {
  display: block;
  opacity: 1;
}

.mobile-drawer-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 84%;
  max-width: 330px;
  height: 100%;
  background: #FFFFFF;
  z-index: 2010;
  box-shadow: 10px 0 35px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
[dir="rtl"] .mobile-drawer-panel {
  left: auto;
  right: 0;
  transform: translateX(100%);
  box-shadow: -10px 0 35px rgba(0,0,0,0.3);
}

.mobile-drawer-backdrop.open .mobile-drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--secondary);
  border-bottom: 2px solid var(--accent-brass);
}

.drawer-close-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
}
.drawer-close-btn:hover {
  color: var(--accent-brass);
}

.drawer-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}
.drawer-nav-link:hover,
.drawer-nav-link.active {
  background: var(--parchemin-light);
  color: var(--primary);
}

.drawer-submenu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 20px;
  margin-top: 4px;
}
[dir="rtl"] .drawer-submenu {
  padding-left: 0;
  padding-right: 20px;
}
.drawer-submenu.open {
  display: flex;
}

.drawer-sublink {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.drawer-sublink:hover {
  color: var(--primary);
  background: rgba(163, 93, 49, 0.08);
}

.drawer-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.drawer-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-main);
  background: #FFFFFF;
}
.drawer-lang-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

/* Mobile Fixed Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1040;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px;
}

.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: #78716C;
  font-size: 0.68rem;
  font-weight: 700;
  flex: 1;
  height: 100%;
  position: relative;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  padding: 4px 2px;
}
.mobile-bottom-item i {
  font-size: 1.15rem;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.mobile-bottom-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 95%;
  line-height: 1.1;
  text-align: center;
}
.mobile-bottom-item:hover,
.mobile-bottom-item.active {
  color: var(--primary);
}
.mobile-bottom-item.active i {
  transform: translateY(-2px);
}
.mobile-bottom-item.whatsapp-tab {
  color: #1E8E47;
}

.mobile-cart-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
}

.mobile-bottom-badge {
  position: absolute !important;
  top: -4px !important;
  right: -5px !important;
  left: auto !important;
  bottom: auto !important;
  background: var(--primary) !important;
  color: #FFFFFF !important;
  font-size: 0.60rem !important;
  font-weight: 800 !important;
  min-width: 16px !important;
  height: 16px !important;
  padding: 0 3px !important;
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #FFFFFF !important;
  line-height: 1 !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25) !important;
  z-index: 5;
}

/* Sticky Quick Order Bar on Product Details (Mobile) */
.mobile-sticky-buy-bar {
  display: none;
  position: fixed;
  bottom: 62px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
  z-index: 1030;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hamburger-btn {
    display: inline-flex;
  }
  .site-header nav {
    display: none;
  }
  .btn-suivi-livraison span,
  .btn-whatsapp-focused span {
    display: none;
  }
  .btn-suivi-livraison,
  .btn-whatsapp-focused {
    padding: 8px 10px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }
  .mobile-bottom-nav {
    display: flex;
  }
  .mobile-sticky-buy-bar {
    display: flex;
  }
  .whatsapp-floating-btn {
    bottom: 74px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
  
  /* Compact Header */
  .header-container {
    padding: 10px 0;
  }
  .brand-logo .brand-sub {
    display: none;
  }
  .brand-logo-circle {
    width: 40px;
    height: 40px;
  }
  .brand-text {
    font-size: 1.2rem;
  }
  .btn-suivi-livraison,
  .btn-whatsapp-focused {
    display: none;
  }

  /* 🌟 1-Column Product Grid on Phone / Mobile Views (Article Under Article) */
  .products-grid-3,
  .products-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .product-card-item {
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    box-shadow: 0 4px 18px rgba(12, 10, 9, 0.08) !important;
    border: 1.5px solid var(--border) !important;
  }
  .product-img-wrapper {
    aspect-ratio: 4 / 3 !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    background: #FDFBF7 !important;
  }
  .product-img-main {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .product-info-box {
    padding: 16px !important;
  }
  .product-name-heading {
    font-size: 1.08rem !important;
    min-height: auto !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
  }
  .product-price-active {
    font-size: 1.35rem !important;
    font-weight: 900 !important;
  }
  .product-price-striked {
    font-size: 0.95rem !important;
  }

  /* 2-Column Categories Grid */
  .categories-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .cat-card-img {
    height: 130px !important;
  }
  .cat-card-title {
    font-size: 0.95rem !important;
  }
  .cat-card-count {
    font-size: 0.75rem !important;
  }

  /* Trust Bar 2x2 Grid */
  .trust-items-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .trust-box-item {
    padding: 14px !important;
  }
  .trust-box-title {
    font-size: 0.88rem !important;
  }
  .trust-box-desc {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .products-grid-3,
  .products-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .product-card-item {
    border-radius: var(--radius-md) !important;
  }
  .product-img-wrapper {
    aspect-ratio: 4 / 3 !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .product-img-main {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .product-info-box {
    padding: 14px !important;
  }
  .product-name-heading {
    font-size: 1.05rem !important;
  }
  .product-price-active {
    font-size: 1.3rem !important;
  }
  .hero-title-main {
    font-size: 1.9rem !important;
  }
  .hero-tagline-text {
    font-size: 0.92rem !important;
  }
}

/* ==========================================================================
   PERFECT HEADER CART / PANIER BUTTON (CHOSSURES STYLE)
   ========================================================================== */
.cart-icon-btn, .cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--secondary);
  font-size: 1.15rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.cart-icon-btn i, .cart-btn i {
  color: var(--secondary);
  transition: color 0.2s ease;
}

.cart-icon-btn:hover, .cart-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(163, 93, 49, 0.35);
}

.cart-icon-btn:hover i, .cart-btn:hover i {
  color: #FFFFFF;
}

.cart-btn .cart-badge-count, .cart-btn .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: #FFFFFF !important;
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  line-height: 1;
  transition: transform 0.2s ease;
}

.badge-bounce {
  animation: badgePop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes badgePop {
  0% { transform: scale(0.5); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   ADVANCED CATALOG FILTERS & CRITERIA BAR (CHOSSURES STYLE)
   ========================================================================== */
.catalog-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.catalog-sort-select {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: border-color 0.2s ease;
}
.catalog-sort-select:focus,
.catalog-sort-select:hover {
  border-color: var(--primary);
}

/* Category Filter 1st Level */
.category-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}

.filter-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  background: #FFFFFF;
  color: var(--text-main);
  border: 1.5px solid var(--border);
  transition: all 0.2s ease;
}
.filter-pill-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--parchemin-light);
}
.filter-pill-btn.active {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(163, 93, 49, 0.3);
}

/* Secondary Criteria Filter (Pointures / Tailles) */
.criteria-filter-box {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.criteria-filter-label {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.size-pill-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.size-pill-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--parchemin-light);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.size-pill-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #FFFFFF;
}
.size-pill-btn.active {
  background: var(--secondary);
  color: var(--accent-brass) !important;
  border-color: var(--secondary);
  box-shadow: 0 2px 8px rgba(12, 10, 9, 0.25);
}

/* ==========================================================================
   3-TIER HIERARCHICAL FILTERS & CRITERIA BAR (CHOSSURES STYLE)
   ========================================================================== */
.filters-container-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

/* Tier 1: Main Category Pills */
.tier1-category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.tier1-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  background: #FFFFFF;
  color: var(--secondary);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.tier1-pill-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--parchemin-light);
  transform: translateY(-1px);
}
.tier1-pill-btn.active {
  background: var(--secondary);
  color: var(--accent-brass) !important;
  border-color: var(--secondary);
  box-shadow: 0 4px 14px rgba(12, 10, 9, 0.3);
}

/* Tier 2: Subcategory Pills */
.tier2-subcategory-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--parchemin-light);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.tier2-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.tier2-pill-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.tier2-pill-btn.active {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(163, 93, 49, 0.3);
}

/* Tier 3: Category-Specific Criteria Box (Sizes / Length / Dimensions) */
.tier3-criteria-box {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.tier3-criteria-label {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tier3-options-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.tier3-option-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--parchemin-light);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.84rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tier3-option-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #FFFFFF;
}
.tier3-option-btn.active {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(163, 93, 49, 0.3);
}

/* ==========================================================================
   ELEGANT PAGINATION COMPONENT (BLISS & CHOSSURES STYLE)
   ========================================================================== */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  padding-top: 20px;
}

.pagination {
  display: flex !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 8px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.page-item {
  display: inline-flex !important;
  list-style: none !important;
}

.page-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  height: 42px !important;
  padding: 0 14px !important;
  border-radius: var(--radius-md) !important;
  background: #FFFFFF !important;
  border: 1.5px solid var(--border) !important;
  color: var(--secondary) !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.2s ease !important;
}

.page-link:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  background: var(--parchemin-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(163, 93, 49, 0.25) !important;
}

.page-item.active .page-link {
  background: var(--primary) !important;
  color: #FFFFFF !important;
  border-color: var(--primary) !important;
  box-shadow: 0 4px 14px rgba(163, 93, 49, 0.4) !important;
}

.page-item.disabled .page-link {
  color: #94A3B8 !important;
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  opacity: 0.6 !important;
}



/* Size Cards Grid in COD Form */
.size-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.size-card-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  height: auto;
  padding: 6px 4px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.size-card-num {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
}

.size-card-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--parchemin-light);
  transform: translateY(-2px);
}

.size-card-btn.active {
  background: var(--secondary);
  color: var(--accent-brass) !important;
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(12, 10, 9, 0.3);
}

.size-card-btn.active::after {
  content: '✓';
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 0.65rem;
  color: var(--accent-brass);
}

.size-card-stock {
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.1;
  margin-top: 2px;
  white-space: nowrap;
}

.size-card-stock.in-stock {
  color: #16A34A;
  font-weight: 700;
}

.size-card-btn.active .size-card-stock {
  color: #D6CEC5;
}

.size-card-btn.active .size-card-stock.in-stock {
  color: #86EFAC;
}

/* 🌟 Disabled / Out of Stock Size Card */
.size-card-btn.out-of-stock,
.size-card-btn.disabled,
.size-card-btn[disabled] {
  background: #F8FAFC !important;
  border: 1.5px dashed #CBD5E1 !important;
  color: #94A3B8 !important;
  cursor: not-allowed !important;
  opacity: 0.58 !important;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none !important;
  position: relative !important;
  user-select: none !important;
}

.size-card-btn.out-of-stock span:first-child,
.size-card-btn.disabled span:first-child,
.size-card-btn[disabled] span:first-child {
  text-decoration: line-through;
  text-decoration-color: #EF4444;
  text-decoration-thickness: 2px;
}

.size-card-btn.out-of-stock .size-card-stock,
.size-card-btn.disabled .size-card-stock,
.size-card-btn[disabled] .size-card-stock {
  color: #EF4444 !important;
  font-weight: 800 !important;
  font-size: 0.62rem !important;
  display: block !important;
  text-decoration: none !important;
  margin-top: 2px !important;
  letter-spacing: 0.3px !important;
}

.size-card-btn.out-of-stock:hover,
.size-card-btn.disabled:hover,
.size-card-btn[disabled]:hover {
  border-color: #CBD5E1 !important;
  color: #94A3B8 !important;
  background: #F8FAFC !important;
  transform: none !important;
}

/* Color Swatches Grid */
.color-swatches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.color-swatch-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.color-swatch-card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.color-swatch-card.active {
  background: var(--parchemin-light);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(163, 93, 49, 0.25);
}

.color-swatch-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  display: inline-block;
  flex-shrink: 0;
}

/* ==========================================================================
   CLEAN IMAGE BLUR MODAL WITH ARROWS
   ========================================================================== */
.image-blur-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(10, 8, 7, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  z-index: 9999999 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 24px;
  box-sizing: border-box;
}

.image-blur-modal.open {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.image-modal-container {
  position: relative !important;
  max-width: 90vw !important;
  max-height: 88vh !important;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10000001 !important;
  animation: zoomModalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomModalIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.image-modal-img {
  max-width: 88vw !important;
  max-height: 85vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.2) !important;
  user-select: none !important;
}

.modal-close-btn {
  position: fixed !important;
  top: 24px !important;
  right: 28px !important;
  background: rgba(255, 255, 255, 0.25) !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  color: #FFFFFF !important;
  font-size: 2rem !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
  z-index: 10000005 !important;
}
.modal-close-btn:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: scale(1.1) rotate(90deg) !important;
}

.modal-nav-arrow {
  position: fixed !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(255, 255, 255, 0.25) !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  color: #FFFFFF !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
  z-index: 10000005 !important;
}
.modal-nav-arrow:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: translateY(-50%) scale(1.1) !important;
}
.modal-arrow-left {
  left: 28px !important;
}
.modal-arrow-right {
  right: 28px !important;
}

/* 🌟 Suppress floating widgets while modal is active */
body.image-modal-open .floating-concierge-pill,
body.image-modal-open .whatsapp-floating-btn,
body.image-modal-open .mobile-bottom-nav,
body.image-modal-open .mobile-sticky-buy-bar {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.product-main-img-wrap {
  cursor: pointer;
}

/* ==========================================================================
   AUTHENTIC CHOSSURES PRODUCT DETAIL 2-COLUMN LAYOUT & GALLERY
   ========================================================================== */
.product-detail-container {
  padding: 24px 16px 80px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.product-gallery-col,
.product-order-col {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Main Image Viewport */
.product-main-image-viewport {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  margin-bottom: 14px;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  cursor: zoom-in;
}

@media (max-width: 768px) {
  .product-main-image-viewport {
    height: 320px;
  }
}

.product-main-image-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center !important;
  background: #FFFFFF;
  padding: 12px;
  box-sizing: border-box;
  transition: transform 0.25s ease;
}

.product-main-image-viewport:hover img {
  transform: scale(1.02);
}

/* Gallery Thumbnails */
.gallery-thumbs-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 6px;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.thumb-box {
  width: 74px;
  height: 74px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  overflow: hidden;
  background: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-box:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.thumb-box.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(163, 93, 49, 0.35);
}

/* COD Order Box */
.instant-cod-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-md);
}

/* Size Cards Grid */
.size-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.size-card-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.size-card-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--parchemin-light);
  transform: translateY(-2px);
}

.size-card-btn.active {
  background: var(--secondary);
  color: var(--accent-brass) !important;
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(12, 10, 9, 0.3);
}

.size-card-stock {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
}
.size-card-btn.active .size-card-stock {
  color: #D6CEC5;
}

/* Color Swatches Grid */
.color-swatches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.color-swatch-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.color-swatch-card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.color-swatch-card.active {
  background: var(--parchemin-light);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(163, 93, 49, 0.25);
}

.color-swatch-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  display: inline-block;
  flex-shrink: 0;
}




/* ==========================================================================
   INFINITE SMOOTH MARQUEE BANNER TICKER
   ========================================================================== */
.announcement-bar-marquee {
  background: var(--secondary);
  color: #F5F5F4;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-bottom: 1px solid #1C1917;
  position: relative;
  z-index: 100;
}

.announcement-marquee-track {
  display: flex;
  width: max-content;
  animation: announcement-marquee 42s linear infinite !important;
}

.announcement-bar-marquee:hover .announcement-marquee-track {
  animation-play-state: paused;
}

.announcement-marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.marquee-bullet {
  color: var(--accent-brass);
  font-weight: 900;
  font-size: 1.1rem;
}

@keyframes announcement-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* ==========================================================================
   INFINITE SMOOTH MARQUEE BANNER TICKER
   ========================================================================== */
.announcement-bar-marquee {
  background: var(--secondary);
  color: #F5F5F4;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-bottom: 1px solid #1C1917;
  position: relative;
  z-index: 100;
}

.announcement-marquee-track {
  display: flex;
  width: max-content;
  animation: announcement-marquee 42s linear infinite !important;
}

.announcement-bar-marquee:hover .announcement-marquee-track {
  animation-play-state: paused;
}

.announcement-marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.marquee-bullet {
  color: var(--accent-brass);
  font-weight: 900;
  font-size: 1.1rem;
}

@keyframes announcement-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   LUXURY SCROLL FADE-IN ANIMATIONS
   ========================================================================== */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 1.35s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-fade-in {
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity;
}

.reveal-zoom-in {
  opacity: 0;
  transform: scale(0.90) translateY(30px);
  transition: opacity 1.35s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 1.35s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 1.35s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) translateX(0) !important;
}

.delay-100 { transition-delay: 0.18s; }
.delay-200 { transition-delay: 0.35s; }
.delay-300 { transition-delay: 0.52s; }
.delay-400 { transition-delay: 0.70s; }
.delay-500 { transition-delay: 0.88s; }
.delay-600 { transition-delay: 1.05s; }

/* ==========================================================================
   LANDING PAGE LUXURY HERO SHOWCASE (580px WIDE & PROMINENT RADIO BUTTONS)
   ========================================================================== */
@keyframes heroFloatingGlow {
  0%, 100% {
    transform: translateY(0px) scale(1);
    box-shadow: 0 32px 70px -12px rgba(163, 93, 49, 0.38), 0 18px 36px -6px rgba(0, 0, 0, 0.22);
  }
  50% {
    transform: translateY(-10px) scale(1.008);
    box-shadow: 0 42px 85px -10px rgba(163, 93, 49, 0.48), 0 24px 45px -4px rgba(212, 175, 55, 0.3);
  }
}

.hero-showcase-wrapper {
  margin-top: 10px;
  width: 100%;
}

.hero-landing-showcase {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0C0A09;
  border: 2.5px solid rgba(212, 175, 55, 0.55);
  animation: heroFloatingGlow 7s ease-in-out infinite;
  height: 580px !important;
  width: 100% !important;
  box-shadow: 0 25px 60px rgba(12, 10, 9, 0.3);
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1.06);
}

.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-shimmer-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--accent-brass);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Category Radio Row */
.hero-category-radio-row {
  position: absolute;
  bottom: 140px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 40;
}

.hero-category-radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  color: #F5F5F4;
  padding: 8px 15px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.hero-category-radio-pill:hover {
  background: rgba(163, 93, 49, 0.8);
  border-color: var(--accent-brass);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.hero-category-radio-pill.active {
  background: #1C1917;
  border-color: var(--accent-brass);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transform: scale(1.04);
}

.hero-radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #A8A29E;
  background: transparent;
  display: inline-block;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-category-radio-pill.active .hero-radio-dot {
  background: var(--accent-brass);
  border-color: var(--accent-brass);
  box-shadow: 0 0 10px var(--accent-brass);
}

/* Caption Card */
.hero-caption-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(12, 10, 9, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  border-radius: 20px;
  padding: 22px 26px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  z-index: 30;
}

.hero-caption-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hero-caption-sub {
  font-size: 0.92rem;
  color: var(--accent-brass);
  font-weight: 700;
  margin-top: 5px;
  line-height: 1.4;
}

.hero-category-redirect-btn {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35) 0%, rgba(163, 93, 49, 0.5) 100%);
  border: 1.5px solid var(--accent-brass);
  color: #FFFFFF;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-category-redirect-btn:hover {
  background: var(--accent-brass);
  color: var(--secondary);
  transform: translateX(4px) scale(1.08);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

@media (max-width: 960px) {
  .hero-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .hero-landing-showcase {
    height: 460px !important;
  }
  .hero-category-radio-row {
    bottom: 120px;
    left: 14px;
    right: 14px;
    gap: 6px;
  }
  .hero-category-radio-pill {
    font-size: 0.72rem;
    padding: 6px 11px;
  }
  .hero-caption-card {
    padding: 16px 18px;
    bottom: 14px;
    left: 14px;
    right: 14px;
  }
  .hero-caption-title {
    font-size: 1.15rem;
  }
  .hero-category-redirect-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   PRODUCT CARD QUICK ADD TO CART (PANIER) ICONS
   ========================================================================== */
.product-quick-cart-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 10, 9, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--accent-brass);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 15;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  outline: none;
}

.product-quick-cart-icon:hover {
  background: var(--accent-brass);
  color: var(--secondary);
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.product-quick-cart-icon.added {
  background: #10B981 !important;
  border-color: #10B981 !important;
  color: #FFFFFF !important;
  transform: scale(1.2) rotate(0deg);
}

.btn-card-cart-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #F3ECE1;
  border: 1.5px solid var(--border);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
}

.btn-card-cart-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(163, 93, 49, 0.35);
}

.btn-card-cart-icon.added {
  background: #10B981 !important;
  border-color: #10B981 !important;
  color: #FFFFFF !important;
}

/* Floating Luxury Toast Notification */
.bliss-toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(12, 10, 9, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid var(--accent-brass);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.35);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 700;
  font-size: 0.92rem;
  max-width: min(90vw, 560px);
  width: auto;
  box-sizing: border-box;
}

.bliss-toast-container.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.bliss-toast-icon {
  color: #10B981;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.bliss-toast-body {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.35;
}

.bliss-toast-text {
  color: #FFFFFF;
  word-break: break-word;
}

.bliss-toast-link {
  color: var(--accent-brass, #D4AF37);
  text-decoration: underline;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.bliss-toast-link:hover {
  color: #F3ECE1;
}

.bliss-toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0 0 4px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.bliss-toast-close:hover {
  color: #FFFFFF;
}

/* 📱 Responsive Mobile / Phone View for Toast Notification */
@media (max-width: 768px) {
  .bliss-toast-container {
    bottom: 80px; /* Positioned right above the floating mobile bottom nav bar */
    width: calc(100vw - 28px);
    max-width: 420px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.84rem;
    gap: 10px;
    align-items: flex-start;
  }

  .bliss-toast-icon {
    font-size: 1.15rem;
    margin-top: 2px;
  }

  .bliss-toast-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .bliss-toast-text {
    font-size: 0.84rem;
    line-height: 1.35;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .bliss-toast-link {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--accent-brass, #D4AF37);
    text-decoration: underline;
    margin-top: 2px;
  }
}


.btn-card-add-cart-text {
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle, #F3ECE1);
  border: 1.5px solid var(--border);
  color: var(--secondary);
  font-family: var(--font-main);
  font-size: 0.90rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
}

.btn-card-add-cart-text:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(163, 93, 49, 0.18);
}

.btn-card-add-cart-text.added {
  background: #10B981 !important;
  border-color: #10B981 !important;
  color: #FFFFFF !important;
}


/* ==========================================================================
   FLOATING CONCIERGE BUTTON & LUXURY DRAWER (À PROPOS & CONTACT)
   ========================================================================== */
.floating-concierge-pill {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--accent-brass);
  color: #FFFFFF;
  padding: 11px 20px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.25);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
}

.floating-concierge-pill:hover {
  background: var(--accent-brass);
  color: var(--secondary);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.5);
}

.floating-concierge-pill i {
  color: var(--accent-brass);
  transition: color 0.3s ease;
}

.floating-concierge-pill:hover i {
  color: var(--secondary);
}

/* Concierge Drawer Backdrop */
.concierge-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 10, 9, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.concierge-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.concierge-drawer-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 480px;
  max-width: 95vw;
  max-height: 90vh;
  background: #FFFFFF;
  border-top-right-radius: 28px;
  border-top-left-radius: 28px;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

@media (min-width: 769px) {
  .concierge-drawer-panel {
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    max-height: 100vh;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    border-top-left-radius: 0;
    transform: translateX(-100%);
  }
  .concierge-drawer-backdrop.open .concierge-drawer-panel {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .concierge-drawer-backdrop.open .concierge-drawer-panel {
    transform: translateY(0);
  }
  .floating-concierge-pill {
    display: none !important;
  }
}

.concierge-drawer-header {
  background: linear-gradient(135deg, #0C0A09 0%, #1C1917 100%);
  padding: 24px 28px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--accent-brass);
}

.concierge-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.concierge-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.concierge-tabs-row {
  display: flex;
  background: #F3ECE1;
  border-bottom: 1px solid var(--border);
  padding: 6px;
  gap: 6px;
}

.concierge-tab-btn {
  flex: 1;
  padding: 12px 14px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.concierge-tab-btn.active {
  background: #FFFFFF;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.concierge-drawer-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

.concierge-whatsapp-btn {
  background: linear-gradient(135deg, #0C0A09 0%, #1C1917 100%);
  border: 1.5px solid #25D366;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.concierge-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}


/* ==========================================================================
   POURQUOI NOUS CHOISIR & AVIS VÉRIFIÉS CARDS
   ========================================================================== */
.why-us-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-us-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 175, 55, 0.2);
}

.why-us-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(163, 93, 49, 0.2) 100%);
  color: var(--primary);
  border: 2px solid var(--accent-brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.why-us-card:hover .why-us-icon-wrapper {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.12) rotate(6deg);
}

.why-us-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.why-us-card-subtitle {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.why-us-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Testimonial Trust Cards */
.testimonial-trust-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent-brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1.5px solid var(--accent-brass);
  flex-shrink: 0;
}


/* ==========================================================================
   ENTERPRISE ECOMMERCE PRODUCT REVIEWS & CUSTOMER PHOTOS
   ========================================================================== */
.product-reviews-enterprise-section {
  padding: 70px 0 80px;
  background: #FAF8F5;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-stats-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
}

.reviews-score-block {
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 28px;
}

.reviews-big-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.reviews-stars-gold {
  color: #F59E0B;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.reviews-stars-gold .fa-star {
  color: #E2E8F0;
}

.reviews-stars-gold .fa-star.active {
  color: #F59E0B;
}

.reviews-total-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.reviews-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #065F46;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid #A7F3D0;
}

/* Histogram Breakdown */
.reviews-histogram-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--border);
  padding-right: 28px;
}

.histogram-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.hist-star-label {
  width: 44px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hist-progress-bar {
  flex: 1;
  height: 9px;
  background: #E2E8F0;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.hist-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
  border-radius: 9999px;
  transition: width 0.6s ease;
}

.hist-count-label {
  width: 32px;
  text-align: right;
  color: var(--text-muted);
  font-weight: 600;
}

/* CTA Block */
.reviews-cta-block {
  text-align: center;
}

/* Customer Photos Gallery Row */
.customer-photos-gallery-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 26px 30px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
}

.customer-photos-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.customer-photo-thumb {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.customer-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.customer-photo-thumb:hover img {
  transform: scale(1.08);
}

.customer-photo-thumb:hover {
  border-color: var(--accent-brass);
  box-shadow: var(--shadow-md);
}

.customer-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(12,10,9,0.85) 100%);
  color: #FFFFFF;
  padding: 4px 6px;
  font-size: 0.70rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Filter Pills */
.reviews-filter-pills-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.rev-filter-pill {
  padding: 9px 18px;
  border-radius: 9999px;
  border: 1.5px solid var(--border);
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.25s ease;
}

.rev-filter-pill:hover,
.rev-filter-pill.active {
  background: var(--secondary);
  color: #FFFFFF;
  border-color: var(--secondary);
}

/* Single Review Cards */
.reviews-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-review-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.single-review-card:hover {
  border-color: rgba(163, 93, 49, 0.4);
  box-shadow: var(--shadow-md);
}

.single-rev-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.single-rev-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.single-rev-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent-brass);
  border: 1.5px solid var(--accent-brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.single-rev-name {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--secondary);
}

.single-rev-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  flex-wrap: wrap;
}

.verified-badge {
  color: #059669;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.size-purchased-badge {
  background: #F3ECE1;
  color: var(--primary);
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

.single-rev-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.single-rev-stars {
  color: #E2E8F0;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.single-rev-stars .fa-star.active {
  color: #F59E0B;
}

.single-rev-text {
  font-size: 0.96rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.single-rev-photos-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.single-rev-attached-photo {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.single-rev-attached-photo:hover {
  transform: scale(1.06);
  border-color: var(--primary);
}

.single-rev-helpful-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.82rem;
}

.btn-helpful {
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.btn-helpful:hover,
.btn-helpful.liked {
  background: rgba(163, 93, 49, 0.12);
  color: var(--primary);
  border-color: var(--primary);
}

/* Lightbox Modal */
.review-lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.review-lightbox-content {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.lightbox-img-wrap {
  background: #0C0A09;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}

.lightbox-info-wrap {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 960px) {
  .reviews-stats-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .reviews-score-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .reviews-histogram-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .review-lightbox-content {
    grid-template-columns: 1fr;
  }
  .lightbox-img-wrap img {
    max-height: 320px;
  }
}


/* Thumb pop bounce animation for helpful votes */
@keyframes thumbPop {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.45) rotate(-20deg); }
  50% { transform: scale(0.9) rotate(8deg); }
  75% { transform: scale(1.15) rotate(-5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.btn-helpful {
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.btn-helpful i {
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease;
}

.btn-helpful:hover i {
  transform: translateY(-2px);
}

.btn-helpful i.pop {
  animation: thumbPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.btn-helpful.liked {
  background: rgba(163, 93, 49, 0.12);
  color: var(--primary);
  border-color: var(--primary);
}


/* 🌟 Quantity Stepper for Instant COD Form */
.express-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: #FAF8F5;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4px;
    box-shadow: var(--shadow-sm);
}
.express-qty-stepper .qty-btn {
    width: 38px;
    height: 38px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.express-qty-stepper .qty-btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    transform: scale(1.05);
}
.express-qty-stepper .qty-btn:active {
    transform: scale(0.95);
}
.express-qty-stepper .qty-number-input {
    width: 48px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--secondary);
    outline: none;
    -moz-appearance: textfield;
}
.express-qty-stepper .qty-number-input::-webkit-outer-spin-button,
.express-qty-stepper .qty-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ==========================================================================
   CUSTOMER REVIEWS & WHATSAPP SOCIAL PROOF SLIDERS
   ========================================================================== */
.slider-carousel-wrapper {
    position: relative;
    width: 100%;
}

.slider-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 4px 20px;
    scroll-behavior: smooth;
}

.slider-carousel-track::-webkit-scrollbar {
    display: none;
}

.slider-item-review {
    flex: 0 0 calc(25% - 15px);
    min-width: 270px;
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .slider-item-review {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .slider-item-review {
        flex: 0 0 85%;
        min-width: 260px;
    }
}

.slider-item-wa {
    flex: 0 0 calc(25% - 15px);
    min-width: 260px;
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .slider-item-wa {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .slider-item-wa {
        flex: 0 0 78%;
        min-width: 240px;
    }
}

/* Slider Nav Arrows */
.slider-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    user-select: none;
}

.slider-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(184, 115, 51, 0.35);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

/* WhatsApp Proof Cards */
.wa-proof-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1.5px solid #E7D5C7;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.wa-proof-card:hover {
    transform: translateY(-6px);
    border-color: #25D366;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.2);
}

.wa-proof-header {
    background: #075E54;
    color: #FFFFFF;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 700;
}

.wa-proof-img-wrap {
    position: relative;
    width: 100%;
    height: 380px;
    background: #ECE5DD;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-proof-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.wa-proof-card:hover .wa-proof-img-wrap img {
    transform: scale(1.04);
}

.wa-proof-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 94, 84, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.88rem;
    gap: 8px;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(2px);
}

.wa-proof-card:hover .wa-proof-overlay {
    opacity: 1;
}

.wa-proof-footer {
    padding: 12px 14px;
    background: #FAF8F5;
    border-top: 1px solid #E7D5C7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

/* Lightbox Modal */
.wa-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 7, 0.92);
    backdrop-filter: blur(10px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wa-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: waZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes waZoomIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* 🌟 Luxury Form Input with Embedded Icons (LTR + RTL Support) */
.input-with-icon-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-with-icon-wrapper .input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

[dir="ltr"] .input-with-icon-wrapper .input-icon,
html:not([dir="rtl"]) .input-with-icon-wrapper .input-icon {
    left: 15px;
    right: auto;
}

[dir="rtl"] .input-with-icon-wrapper .input-icon {
    right: 15px;
    left: auto;
}

.input-with-icon-wrapper input.form-input,
.input-with-icon-wrapper input.input-control-field {
    width: 100%;
    height: 48px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.92rem;
    background: #FFFFFF;
    color: var(--secondary);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

[dir="ltr"] .input-with-icon-wrapper input.form-input,
[dir="ltr"] .input-with-icon-wrapper input.input-control-field,
html:not([dir="rtl"]) .input-with-icon-wrapper input.form-input,
html:not([dir="rtl"]) .input-with-icon-wrapper input.input-control-field {
    padding-left: 44px !important;
    padding-right: 14px !important;
}

[dir="rtl"] .input-with-icon-wrapper input.form-input,
[dir="rtl"] .input-with-icon-wrapper input.input-control-field {
    padding-right: 44px !important;
    padding-left: 14px !important;
}

.input-with-icon-wrapper input.form-input:focus,
.input-with-icon-wrapper input.input-control-field:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(163, 93, 49, 0.16) !important;
    background: #FFFFFF !important;
    outline: none !important;
}

.input-with-icon-wrapper:focus-within .input-icon {
    color: var(--primary) !important;
    transform: translateY(-50%) scale(1.08);
}

/* ==========================================================================
   📦 REFACTORED COMPONENT CLASSES (CLEAN & CACHED ARCHITECTURE)
   ========================================================================== */

/* 1. Product Card Component Elements (Catalog & Home) */
.product-card-sizes-wrap {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.product-card-size-chip {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 6px;
    background: var(--bg-subtle, #FAF6F0);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--secondary);
    line-height: 1.2;
    transition: all 0.2s ease;
}

/* 📱 Hide pointures / dimensions on phone & mobile view for article cards (accueil & catalogue) */
@media (max-width: 768px) {
    .product-card-sizes-wrap,
    .product-card-size-chip {
        display: none !important;
    }
}

.product-card-actions-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.btn-card-order-action {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 2. Multi-Quantity Pack Tier Offer Cards (Product Detail) */
.pack-tier-section {
    margin-bottom: 22px;
}

.pack-tier-label {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pack-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}

.pack-tier-card {
    border: 1.5px solid var(--border);
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 14px 10px 12px;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    user-select: none;
}

.pack-tier-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pack-tier-card.active {
    border: 2px solid var(--primary);
    background: var(--primary-light, #FAF2EB);
    box-shadow: 0 4px 14px rgba(163, 93, 49, 0.15);
}

.pack-tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: 0.62rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 9999px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.pack-tier-badge.badge-popular {
    background: #D97706;
}

.pack-tier-badge.badge-best {
    background: #10B981;
}

.pack-tier-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.3px;
}

.pack-tier-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
    margin: 3px 0;
}

.pack-tier-savings {
    font-size: 0.72rem;
    font-weight: 700;
    color: #10B981;
}

.pack-tier-regular {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* 3. Multi-Item Dynamic Pack Configuration Builder (Product Detail) */
.pack-config-box {
    background: #FFFDF9;
    border: 1.5px solid #FDE68A;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 20px;
}

.pack-config-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px dashed #FDE68A;
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.pack-config-title {
    font-weight: 800;
    font-size: 0.92rem;
    color: #92400E;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pack-config-pill {
    font-size: 0.72rem;
    font-weight: 800;
    color: #92400E;
    background: #FEF3C7;
    padding: 3px 10px;
    border-radius: 9999px;
}

.pack-pieces-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pack-piece-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: border-color 0.2s ease;
}

.pack-piece-card:hover {
    border-color: #CBD5E1;
}

.pack-piece-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.pack-piece-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pack-piece-summary {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-light, #FAF2EB);
    padding: 2px 8px;
    border-radius: 4px;
}

/* 4. Upsell / Order Bump Card (Product Detail) */
.upsell-bump-card {
    background: #FFFBEB;
    border: 2px dashed #F59E0B;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upsell-bump-card:hover {
    background: #FEF3C7;
    border-color: #D97706;
}

.upsell-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--primary);
    flex-shrink: 0;
    cursor: pointer;
}

.upsell-bump-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #FDE68A;
    flex-shrink: 0;
}

.upsell-bump-content {
    flex-grow: 1;
}

.upsell-bump-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.upsell-bump-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: #1E293B;
}

.upsell-bump-price {
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--primary);
}

.upsell-bump-desc {
    font-size: 0.78rem;
    color: #92400E;
    margin-top: 2px;
    line-height: 1.35;
}

/* 5. Express Order Customer Fields Group (Product Detail) */
.express-fields-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.express-note-alert {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px dashed #D97706;
    background: #FFFDF9;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: #92400E;
}

/* ==========================================================================
   HOMEPAGE HERO & LUXURY SHOWCASE COMPONENTS
   ========================================================================== */
.hero-cognac {
  padding-top: 75px;
  padding-bottom: 85px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  pointer-events: none;
}

.hero-mobile-scroll-cue {
  display: none !important;
}

.hero-container-inner {
  position: relative;
  z-index: 2;
}

.hero-single-wrapper {
  max-width: 680px;
  width: 100%;
}

.hero-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text-glass-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 32px;
  padding: 40px 44px;
  box-shadow: 0 25px 60px rgba(163, 93, 49, 0.09), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-text-glass-card .hero-badge-tag {
  background: rgba(163, 93, 49, 0.12);
  color: #9A3412;
  border: 1.5px solid rgba(163, 93, 49, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.hero-text-glass-card .hero-main-title {
  font-size: 2.85rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-text-glass-card .hero-main-title span {
  background: linear-gradient(135deg, #A35D31 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  display: inline-block;
}

.hero-text-glass-card .hero-description {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 26px;
  font-weight: 500;
}

.hero-text-glass-card .hero-trust-pills {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(212, 175, 55, 0.4);
  width: 100%;
}

.hero-text-glass-card .hero-pill-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1E293B;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 7px 10px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  flex: 1 1 0px;
  text-align: center;
}

.hero-text-glass-card .hero-pill-item i {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 0.85rem;
}

.hero-cta-buttons-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  margin-bottom: 28px;
}

.hero-cta-btn-primary {
  padding: 15px 28px;
  font-size: 1.02rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hero-cta-btn-whatsapp {
  padding: 15px 24px;
  font-size: 1.02rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Universes Showcase Section */
.universes-showcase-section {
  padding: 60px 0 65px;
  background: linear-gradient(180deg, var(--bg) 0%, #FAF7F2 100%);
  border-bottom: 1px solid var(--border);
}

.universe-tabs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
  z-index: 10;
}

.universe-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  color: var(--secondary);
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-family: inherit;
  outline: none;
}

.universe-tab-btn i {
  color: var(--primary);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.universe-tab-btn:hover {
  border-color: var(--accent-brass);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(163, 93, 49, 0.15);
}

.universe-tab-btn.active {
  background: linear-gradient(135deg, #1C1917 0%, #0C0A09 100%);
  border-color: var(--accent-brass);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(163, 93, 49, 0.25);
  transform: scale(1.03);
}

.universe-tab-btn.active i {
  color: var(--accent-brass);
}

.universe-showcase-container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

@keyframes heroFloatingGlow {
  0%, 100% {
    transform: translateY(0px) scale(1);
    box-shadow: 0 32px 75px -12px rgba(163, 93, 49, 0.38), 0 0 35px rgba(212, 175, 55, 0.22);
  }
  50% {
    transform: translateY(-10px) scale(1.008);
    box-shadow: 0 42px 90px -10px rgba(163, 93, 49, 0.48), 0 0 45px rgba(212, 175, 55, 0.35);
  }
}

.hero-landing-showcase {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #0C0A09;
  border: 2.5px solid rgba(212, 175, 55, 0.6);
  animation: heroFloatingGlow 7s ease-in-out infinite;
  height: 540px;
  width: 100%;
  box-shadow: 0 25px 65px rgba(12, 10, 9, 0.25);
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.85s cubic-bezier(0.25, 0.8, 0.25, 1), transform 2.0s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: scale(1.04);
}

.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-shimmer-badge {
  position: absolute;
  top: 26px;
  right: 28px;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--accent-brass);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
}

.universe-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 10, 9, 0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 40;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  outline: none;
}

.universe-slider-arrow:hover {
  background: var(--accent-brass);
  color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.universe-slider-arrow.prev {
  left: 20px;
}

.universe-slider-arrow.next {
  right: 20px;
}

.hero-category-bubble-row {
  position: absolute;
  bottom: 148px;
  right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
  background: rgba(12, 10, 9, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-bubble-btn {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
  outline: none;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.hero-bubble-btn:hover {
  background: rgba(212, 175, 55, 0.8);
  transform: scale(1.3);
}

.hero-bubble-btn.active {
  width: 32px;
  height: 12px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #F3ECE1 0%, #D4AF37 50%, #A35D31 100%);
  border: 1.5px solid #FFFFFF;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.95), 0 0 0 3px rgba(212, 175, 55, 0.35);
  transform: scale(1);
}

.hero-caption-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(12, 10, 9, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  border-radius: 24px;
  padding: 22px 26px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  z-index: 30;
}

.hero-caption-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hero-caption-sub {
  font-size: 0.92rem;
  color: var(--accent-brass);
  font-weight: 700;
  margin-top: 5px;
  line-height: 1.4;
}

.hero-category-redirect-btn {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35) 0%, rgba(163, 93, 49, 0.5) 100%);
  border: 1.5px solid var(--accent-brass);
  color: #FFFFFF;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-category-redirect-btn:hover {
  background: var(--accent-brass);
  color: var(--secondary);
  transform: translateX(4px) scale(1.08);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.announcement-marquee-track {
  animation: announcement-marquee 42s linear infinite;
}

@media (max-width: 991px) {
  .hero-cognac {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .hero-text-glass-card {
    padding: 30px 24px;
    border-radius: 24px;
  }
  .hero-text-glass-card .hero-main-title {
    font-size: 2.2rem;
  }
  .hero-landing-showcase {
    height: 440px;
    border-radius: 28px;
  }
}

@media (max-width: 768px) {
  .hero-cognac {
    padding: 0 !important;
    margin: 0;
    overflow: visible;
    position: relative;
    border-bottom: 1px solid var(--border);
  }

  .hero-bg-layer {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100svh - 65px) !important;
    height: calc(100vh - 65px) !important;
    z-index: 1 !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
    pointer-events: auto !important;
  }

  /* Floating Scroll Cue on Mobile: visible on refresh when only image is showing */
  .hero-mobile-scroll-cue {
    position: absolute !important;
    bottom: 110px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(24, 21, 18, 0.88) !important;
    color: #FFFFFF !important;
    border: 1.5px solid rgba(212, 175, 55, 0.75) !important;
    border-radius: 9999px !important;
    padding: 10px 22px !important;
    backdrop-filter: blur(18px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(190%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3) !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    animation: heroCuePulse 2.4s ease-in-out infinite !important;
    -webkit-tap-highlight-color: transparent !important;
    white-space: nowrap !important;
  }

  .hero-mobile-scroll-cue .cue-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #FFFFFF;
  }

  .hero-mobile-scroll-cue .cue-bounce-arrow {
    font-size: 0.92rem;
    color: #E6CA65;
    animation: cueBounceArrow 1.6s ease-in-out infinite;
  }

  .hero-mobile-scroll-cue.cue-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, 18px) scale(0.92) !important;
  }

  /* Content inner overlapping the sticky background */
  .hero-container-inner {
    position: relative !important;
    z-index: 3 !important;
    margin-top: calc(-100svh + 65px) !important;
    margin-top: calc(-100vh + 65px) !important;
    padding-top: calc(75svh - 65px) !important;
    padding-top: calc(75vh - 65px) !important;
    padding-bottom: 50px !important;
    pointer-events: none;
  }

  .hero-single-wrapper {
    pointer-events: auto;
  }

  .hero-grid-2 {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
  }

  /* Text Glass Card on Mobile: starts hidden so only image shows on refresh */
  .hero-text-glass-card {
    width: 100%;
    padding: 24px 18px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.35);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    will-change: transform, opacity;
  }

  /* When scrolled, card animates into view smoothly above the image */
  .hero-text-glass-card.hero-card-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32), 0 0 0 1.5px rgba(212, 175, 55, 0.45) !important;
  }
  .hero-text-glass-card .hero-badge-tag {
    padding: 5px 12px;
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  .hero-text-glass-card .hero-main-title {
    font-size: 1.85rem;
    line-height: 1.22;
    margin-bottom: 12px;
  }
  .hero-text-glass-card .hero-description {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .hero-cta-buttons-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 18px;
  }
  .hero-cta-btn-primary, .hero-cta-btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.98rem;
    font-weight: 800;
    border-radius: 12px;
  }
  .hero-text-glass-card .hero-trust-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-text-glass-card .hero-pill-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    font-size: 0.84rem;
    font-weight: 700;
    gap: 12px;
    text-align: left;
    white-space: normal;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  }
  .hero-text-glass-card .hero-pill-item i {
    font-size: 1.05rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 22px;
    text-align: center;
  }
  .hero-text-glass-card .hero-pill-item span {
    white-space: normal;
    color: #1E293B;
    font-size: 0.84rem;
    line-height: 1.3;
    flex: 1;
  }
  .hero-showcase-wrapper {
    width: 100%;
  }
  .hero-landing-showcase {
    width: 100%;
    height: 380px;
    border-radius: 44px 16px 44px 16px;
    border-width: 2px;
    animation: none;
  }
  .hero-shimmer-badge {
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    font-size: 0.72rem;
  }
  .hero-category-bubble-row {
    bottom: 88px;
    right: 12px;
    padding: 5px 10px;
    gap: 6px;
  }
  .hero-bubble-btn {
    width: 9px;
    height: 9px;
  }
  .hero-bubble-btn.active {
    width: 24px;
    height: 9px;
  }
  .hero-caption-card {
    padding: 12px 14px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 14px;
    gap: 8px;
  }
  .hero-caption-title {
    font-size: 1.02rem;
  }
  .hero-caption-sub {
    font-size: 0.76rem;
    margin-top: 2px;
  }
  .hero-category-redirect-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .products-grid-4, 
  .products-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }
  .product-card-item {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 1.5px solid var(--border);
  }
  .product-img-wrapper {
    aspect-ratio: 4 / 3;
    width: 100%;
    min-height: 250px;
    max-height: 320px;
    display: block;
    background: #FDFBF7;
  }
  .product-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .product-info-box {
    padding: 18px;
  }
  .product-name-heading {
    font-size: 1.15rem;
    min-height: auto;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .product-price-active {
    font-size: 1.35rem;
    font-weight: 900;
  }
  .product-price-striked {
    font-size: 0.95rem;
  }
  .categories-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cat-card-img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-cognac {
    padding: 0 !important;
  }
  .hero-container-inner {
    padding-top: 72svh !important;
    padding-top: 72vh !important;
    padding-bottom: 35px !important;
  }
  .hero-text-glass-card {
    padding: 20px 14px;
    border-radius: 20px;
  }
  .hero-text-glass-card .hero-main-title {
    font-size: 1.62rem;
  }
  .hero-landing-showcase {
    height: 330px;
    border-radius: 36px 14px 36px 14px;
  }
  .product-img-wrapper {
    min-height: 220px;
    max-height: 280px;
  }
  .cat-card-img {
    height: 130px;
  }
}

/* ==========================================================================
   CART PAGE COMPONENTS
   ========================================================================== */
.cart-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.cart-main-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-items-count-badge {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--bg-subtle, #F3ECE1);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.cart-continue-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.cart-continue-link:hover {
    gap: 9px;
}

.cart-layout-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 28px;
    align-items: start;
}

.cart-desktop-table-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    text-align: left;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.cart-product-media {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-thumb-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
    background: #FDFBF7;
    display: block;
}

.cart-product-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--secondary);
    text-decoration: none;
    line-height: 1.3;
    display: block;
    margin-bottom: 4px;
}

.cart-size-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--parchemin-light, #FAF5EE);
    border: 1px solid rgba(163, 93, 49, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.cart-price-cell {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.05rem;
}

.cart-subtotal-cell {
    text-align: right;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary);
    font-size: 1.15rem;
}

.cart-stepper-form {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #FFFFFF;
}

.stepper-btn {
    border: none;
    background: #FAF7F2;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-weight: 800;
    color: var(--secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}
.stepper-btn:hover {
    background: #EFE8DE;
}

.stepper-val {
    width: 34px;
    text-align: center;
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--secondary);
}

.cart-trash-btn {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    color: #DC2626;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.cart-trash-btn:hover {
    background: #DC2626;
    color: #FFFFFF;
}

.cart-mobile-cards-list {
    display: none;
}

.cart-actions-subbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.cart-clear-link {
    background: none;
    border: none;
    font-size: 0.82rem;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
}

.cart-summary-box {
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

.cart-summary-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 16px;
    border-bottom: 1.5px solid var(--border-light);
    padding-bottom: 12px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.cart-summary-row strong {
    color: var(--secondary);
    font-weight: 800;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid var(--border);
    margin-bottom: 18px;
}
.cart-total-row span:first-child {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--secondary);
}
.cart-total-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
}

.cart-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-btn-checkout {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 900;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
}

.cart-btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 11px;
    font-size: 0.88rem;
    border-radius: var(--radius-md);
}

.cart-empty-box {
    text-align: center;
    padding: 60px 20px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    max-width: 540px;
    margin: 20px auto;
}
.cart-empty-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FAF2EB;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    margin: 0 auto 18px;
    box-shadow: 0 4px 18px rgba(163, 93, 49, 0.15);
}
.cart-empty-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 8px;
}
.cart-empty-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 22px;
}

@media (max-width: 768px) {
    .cart-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .cart-desktop-table-card {
        display: none !important;
    }

    .cart-mobile-cards-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .cart-mobile-card {
        background: #FFFFFF !important;
        border: 1.5px solid var(--border) !important;
        border-radius: var(--radius-md) !important;
        padding: 14px !important;
        box-shadow: 0 2px 8px rgba(12, 10, 9, 0.04) !important;
    }

    .cart-mobile-top {
        display: flex !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    .cart-mobile-thumb-link {
        flex-shrink: 0 !important;
    }

    .cart-mobile-thumb {
        width: 76px !important;
        height: 76px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        border: 1px solid var(--border) !important;
        background: #FDFBF7 !important;
        display: block !important;
    }

    .cart-mobile-details {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .cart-mobile-title {
        font-family: var(--font-heading) !important;
        font-weight: 800 !important;
        font-size: 0.95rem !important;
        color: var(--secondary) !important;
        text-decoration: none !important;
        line-height: 1.3 !important;
        display: block !important;
        margin-bottom: 4px !important;
    }

    .cart-mobile-delete {
        background: rgba(220, 38, 38, 0.08) !important;
        border: 1px solid rgba(220, 38, 38, 0.2) !important;
        width: 30px !important;
        height: 30px !important;
        border-radius: 6px !important;
        color: #DC2626 !important;
        cursor: pointer !important;
        font-size: 0.85rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .cart-mobile-unit-price {
        font-size: 0.82rem !important;
        color: var(--text-muted) !important;
        margin-top: 4px !important;
    }

    .cart-mobile-bottom {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-top: 12px !important;
        padding-top: 10px !important;
        border-top: 1px dashed var(--border-light) !important;
    }

    .cart-mobile-qty-wrap {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .cart-mobile-qty-label {
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        color: var(--text-muted) !important;
    }

    .cart-mobile-total-wrap {
        text-align: right !important;
    }

    .cart-mobile-total-label {
        display: block !important;
        font-size: 0.68rem !important;
        color: var(--text-muted) !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }

    .cart-mobile-total-price {
        font-family: var(--font-heading) !important;
        font-weight: 900 !important;
        color: var(--primary) !important;
        font-size: 1.15rem !important;
        line-height: 1.1 !important;
        display: block !important;
    }

    .cart-summary-column {
        margin-top: 6px !important;
    }

    .cart-summary-box {
        position: static !important;
        padding: 18px !important;
    }

    .cart-total-value {
        font-size: 1.4rem !important;
    }
}

/* ==========================================================================
   CHECKOUT PAGE COMPONENTS
   ========================================================================== */
@media (max-width: 600px) {
    .checkout-fields-row {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   ORDER SUCCESS & ORDER CONFIRMATION PAGE COMPONENTS
   ========================================================================== */
.success-page-wrap,
.confirm-page-wrap {
    padding: 30px 16px 80px;
    max-width: 740px;
    margin: 0 auto;
}

.success-main-card,
.confirm-main-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(212, 175, 55, 0.28);
    border-radius: 28px;
    padding: 36px 28px;
    box-shadow: 0 20px 50px rgba(163, 93, 49, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-main-card::before,
.confirm-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #A35D31 0%, #D4AF37 50%, #10B981 100%);
}

.success-hero-icon,
.success-icon-wrap {
    width: 80px;
    height: 80px;
    background: #ECFDF5;
    color: #10B981;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    margin-bottom: 16px;
    box-shadow: 0 0 0 10px #F0FDF4, 0 8px 24px rgba(16, 185, 129, 0.15);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 10px #F0FDF4; }
    50% { transform: scale(1.04); box-shadow: 0 0 0 16px rgba(240, 253, 244, 0.7); }
    100% { transform: scale(1); box-shadow: 0 0 0 10px #F0FDF4; }
}

.success-status-pill,
.confirm-status-badge {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.pill-confirmed,
.confirm-status-badge {
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #86EFAC;
}

.pill-pending {
    background: #FFF7ED;
    color: #9A3412;
    border: 1px solid #FED7AA;
}

.success-title,
.confirm-title {
    font-size: 1.85rem;
    font-weight: 900;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.success-subtitle,
.confirm-subtitle {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 24px;
}

.tracking-code-box {
    background: #FAF8F5;
    border: 1.5px dashed rgba(212, 175, 55, 0.6);
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tracking-number {
    font-size: 1.3rem;
    font-weight: 900;
    color: #0F172A;
    font-family: var(--font-heading, inherit);
    letter-spacing: 0.5px;
}

.copy-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 800;
    background: #FFFFFF;
    border: 1.5px solid var(--accent-brass, #D4AF37);
    color: #0F172A;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.copy-btn:hover {
    background: #FAF8F5;
    transform: translateY(-1px);
}

.fast-action-card {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    border: 2px solid #86EFAC;
    border-radius: 20px;
    padding: 22px 20px;
    margin-bottom: 26px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(34, 197, 94, 0.12);
}

.fast-action-btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-wa-confirm {
    background: #166534;
    color: #FFFFFF;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(22, 101, 52, 0.3);
    transition: all 0.2s ease;
}
.btn-wa-confirm:hover {
    background: #14532D;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-wa-send {
    background: #25D366;
    color: #FFFFFF;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}
.btn-wa-send:hover {
    background: #20BA5A;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-edit-order {
    background: #FFFFFF;
    color: #166534;
    border: 1.5px solid #86EFAC;
    padding: 12px 18px;
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.btn-edit-order:hover {
    background: #F0FDF4;
}

.stepper-container {
    background: #FAF8F5;
    border: 1px solid #EFE8DF;
    border-radius: 20px;
    padding: 20px 16px;
    margin-bottom: 26px;
    text-align: left;
}

.stepper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.stepper-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stepper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 6px;
}

.stepper-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-bubble {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    background: #E2E8F0;
    color: #64748B;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stepper-step.completed .step-bubble {
    background: #10B981;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}

.stepper-step.active .step-bubble {
    background: #A35D31;
    color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(163, 93, 49, 0.18);
    animation: activePulse 1.8s infinite;
}

.step-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748B;
    line-height: 1.3;
}

.stepper-step.completed .step-label,
.stepper-step.active .step-label {
    color: #0F172A;
    font-weight: 800;
}

.stepper-grid::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: #E2E8F0;
    z-index: 1;
}

.stepper-progress-bar {
    position: absolute;
    top: 18px;
    left: 12%;
    height: 3px;
    background: linear-gradient(90deg, #10B981 0%, #A35D31 100%);
    z-index: 1;
}

.receipt-box {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 20px;
    padding: 22px;
    text-align: left;
    margin-bottom: 26px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 14px;
}

.receipt-item-card {
    background: #FAF8F5;
    border: 1px solid #EFE8DF;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.receipt-item-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    flex-shrink: 0;
}

.receipt-item-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
}

.receipt-item-price {
    font-size: 1.05rem;
    font-weight: 900;
    color: #A35D31;
    font-family: var(--font-heading, inherit);
    white-space: nowrap;
    text-align: right;
}

.receipt-totals {
    border-top: 1.5px dashed #CBD5E1;
    padding-top: 14px;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.receipt-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #64748B;
}

.receipt-total-grand {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1.5px dashed #CBD5E1;
    padding-top: 12px;
    margin-top: 4px;
}

.grand-price-text {
    font-size: 1.45rem;
    font-weight: 900;
    color: #A35D31;
    font-family: var(--font-heading, inherit);
}

.delivery-dest-badge {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 14px;
    font-size: 0.82rem;
    color: #9A3412;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-concierge-card {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border: 1.5px solid #86EFAC;
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    flex-wrap: wrap;
}

.wa-concierge-btn {
    background: #25D366;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    white-space: nowrap;
    transition: transform 0.2s ease;
}
.wa-concierge-btn:hover {
    transform: scale(1.03);
    color: #FFFFFF;
}

.action-buttons-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.action-btn-primary {
    background: #A35D31;
    color: #FFFFFF;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(163, 93, 49, 0.25);
    transition: all 0.2s ease;
}
.action-btn-primary:hover {
    background: #874921;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.action-buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.action-btn-secondary {
    background: #FFFFFF;
    color: #0F172A;
    border: 1.5px solid #CBD5E1;
    padding: 12px 18px;
    font-size: 0.86rem;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.action-btn-secondary:hover {
    background: #F8FAFC;
    border-color: #94A3B8;
}

@media (max-width: 576px) {
    .success-page-wrap,
    .confirm-page-wrap {
        padding: 16px 12px 60px;
    }
    .success-main-card,
    .confirm-main-card {
        padding: 26px 16px;
        border-radius: 22px;
    }
    .success-title,
    .confirm-title {
        font-size: 1.45rem;
    }
    .success-hero-icon,
    .success-icon-wrap {
        width: 68px;
        height: 68px;
        font-size: 2.2rem;
    }
    .tracking-code-box {
        flex-direction: column;
        text-align: center;
        padding: 14px;
    }
    .tracking-code-box > div {
        text-align: center !important;
    }
    .tracking-number {
        font-size: 1.2rem;
    }
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
    .fast-action-btn-group {
        flex-direction: column;
    }
    .btn-wa-confirm, .btn-wa-send, .btn-edit-order {
        width: 100%;
        justify-content: center;
    }
    .stepper-container {
        padding: 16px 10px;
    }
    .step-bubble {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .step-label {
        font-size: 0.65rem;
    }
    .stepper-grid::before,
    .stepper-progress-bar {
        top: 15px;
    }
    .action-buttons-row {
        grid-template-columns: 1fr;
    }
    .wa-concierge-card {
        flex-direction: column;
        text-align: center;
    }
    .wa-concierge-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   CONTACT PAGE COMPONENTS
   ========================================================================== */
.contact-hero-section {
    background: linear-gradient(180deg, #F3ECE1 0%, var(--bg) 100%);
    padding: 60px 0 65px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 52px;
    align-items: start;
}

.contact-form-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 44px 48px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-brass) 0%, var(--primary) 100%);
    border-top-left-radius: var(--radius-xl);
    border-bottom-left-radius: var(--radius-xl);
}

.contact-input-field {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--secondary);
    background: #FAF8F5;
    transition: all 0.3s ease;
    outline: none;
}

.contact-input-field:focus {
    background: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(163, 93, 49, 0.12);
}

.contact-direct-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 36px 38px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-channel-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-channel-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-channel-item:hover .contact-channel-icon {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    transform: scale(1.08);
}

.contact-whatsapp-banner {
    background: linear-gradient(135deg, #0C0A09 0%, #1C1917 100%);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 1.5px solid var(--accent-brass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

@media (max-width: 960px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .contact-form-card {
        padding: 28px 22px;
    }
    .contact-direct-card {
        padding: 28px 22px;
    }
}

/* ==========================================================================
   ABOUT PAGE COMPONENTS
   ========================================================================== */
.about-hero-section {
    background: linear-gradient(180deg, #F3ECE1 0%, var(--bg) 100%);
    padding: 60px 0 70px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-editorial-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-story-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 44px 48px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-brass) 0%, var(--primary) 100%);
    border-top-left-radius: var(--radius-xl);
    border-bottom-left-radius: var(--radius-xl);
}

.about-p-lead {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.about-p-body {
    font-size: 1.02rem;
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-quote-box {
    background: linear-gradient(135deg, #0C0A09 0%, #1C1917 100%);
    color: #FFFFFF;
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-brass);
    margin: 28px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.about-quote-text {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-style: italic;
    color: #F3ECE1;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-quote-author {
    font-size: 0.85rem;
    color: var(--accent-brass);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-visual-stack {
    position: relative;
}

.about-visual-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 120px 32px 120px 32px;
    border: 3px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 25px 60px rgba(12, 10, 9, 0.3);
}

.about-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #FFFFFF;
    border: 2px solid var(--accent-brass);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.about-val-item {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    text-align: center;
}

.about-val-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.about-val-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

@media (max-width: 960px) {
    .about-editorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-story-card {
        padding: 28px 22px;
    }
    .about-visual-main {
        height: 380px;
        border-radius: 60px 20px 60px 20px;
    }
    .about-floating-badge {
        position: static;
        margin-top: 16px;
        max-width: 100%;
    }
}

/* ==========================================================================
   STOREFRONT GENERAL UTILITIES & ATOM CLASSES
   ========================================================================== */
.store-flex-center {
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.store-flex-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.store-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.store-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .store-grid-2,
    .store-grid-3,
    .store-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Typography & Colors */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-gold { color: var(--accent-brass) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-success { color: #16A34A !important; }
.text-danger { color: #DC2626 !important; }
.text-white { color: #FFFFFF !important; }

.font-heading { font-family: var(--font-heading), serif; }
.font-sans { font-family: var(--font-main), sans-serif; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Storefront Form Controls */
.store-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
}

.store-form-input,
.store-form-select,
.store-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: var(--secondary);
    background: #FAF8F5;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.store-form-input:focus,
.store-form-select:focus,
.store-form-textarea:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(163, 93, 49, 0.2);
    outline: none;
}

/* Rating Stars */
.star-gold { color: #F59E0B !important; }
.star-gray { color: #CBD5E1 !important; }

/* Navbar Brand & Language */
.header-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-brass);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header-brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: 1px;
}

.header-brand-sub {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: #FFFFFF;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    padding: 6px;
    z-index: 1000;
    display: none;
}

/* Order Status Badges */
.order-status-badge {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-confirmed,
.status-confirmed_call,
.status-confirmed_1click,
.status-confirmed_whatsapp {
    background: #E0F2FE;
    color: #0284C7;
    border: 1px solid #BAE6FD;
}

.status-pending {
    background: #FFF7ED;
    color: #EA580C;
    border: 1px solid #FED7AA;
}

.status-processing {
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
}

.status-shipped {
    background: #FAF5F0;
    color: var(--primary);
    border: 1px solid #E7D5C7;
}

.status-delivered {
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #86EFAC;
}

.status-unreachable {
    background: #F1F5F9;
    color: #475569;
    border: 1px solid #CBD5E1;
}

.status-cancelled {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

/* Stepper Node & Content */
.track-step-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #CBD5E1;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px #FFFFFF;
    transition: all 0.3s ease;
}

.track-step-node.step-active {
    background: var(--primary);
}

.track-step-node.step-blue {
    background: #0284C7;
}

.track-step-node.step-green {
    background: #16A34A;
}

.track-step-content {
    flex-grow: 1;
    background: #FAFAFA;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    transition: all 0.3s ease;
}

.track-step-content.content-active {
    background: #FAF8F5;
    border-color: #E7D5C7;
}

.track-step-content.content-blue {
    background: #F0F9FF;
    border-color: #BAE6FD;
}

.track-step-content.content-green {
    background: #F0FDF4;
    border-color: #86EFAC;
}

.d-none {
    display: none !important;
}

/* ==========================================================================
   MULTI-ITEM PACK TIER & CONFIGURATION SYSTEM
   ========================================================================== */
.pack-tier-section {
    margin-bottom: 22px;
}

.pack-tier-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.pack-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 640px) {
    .pack-tier-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.pack-tier-card {
    position: relative;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.pack-tier-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pack-tier-card.active {
    border-color: var(--primary);
    background: #FAF5F0;
    box-shadow: 0 4px 16px rgba(163, 93, 49, 0.18);
}

.pack-tier-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 9999px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.pack-tier-badge.badge-popular {
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
    color: #FFFFFF;
}

.pack-tier-badge.badge-best {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #FFFFFF;
}

.pack-tier-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pack-tier-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}

.pack-tier-price span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.pack-tier-savings {
    font-size: 0.72rem;
    font-weight: 800;
    color: #16A34A;
    background: #DCFCE7;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
}

.pack-tier-regular {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Pack Configuration Box */
.pack-config-box {
    background: #FAF8F5;
    border: 1.5px solid #E7D5C7;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.02);
}

.pack-config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #D6C2B4;
}

.pack-config-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pack-config-pill {
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(163, 93, 49, 0.1);
    padding: 3px 10px;
    border-radius: 9999px;
}

.pack-pieces-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pack-piece-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.pack-piece-card:hover {
    border-color: #D6C2B4;
}

.pack-piece-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #F1ECE6;
}

.pack-piece-ordinal {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pack-piece-summary {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--primary);
    background: #FAF5F0;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #E7D5C7;
}

.pack-field-group {
    margin-bottom: 10px;
}

.pack-field-group:last-child {
    margin-bottom: 0;
}

.pack-field-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pack Size Chips Grid */
.pack-sizes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pack-size-chip {
    min-width: 44px;
    height: auto;
    min-height: 38px;
    padding: 4px 8px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: #FFFFFF;
    color: var(--secondary);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.pack-size-stock {
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 1px;
    white-space: nowrap;
}
.pack-size-stock.in {
    color: #16A34A;
}
.pack-size-chip.active .pack-size-stock.in {
    color: #FEF08A;
}
.pack-size-stock.out {
    color: #EF4444;
    font-weight: 800;
}

.pack-size-chip:hover:not(.disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.pack-size-chip.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #FFFFFF !important;
    font-weight: 900 !important;
    box-shadow: 0 2px 8px rgba(163, 93, 49, 0.35);
}

.pack-size-chip.disabled,
.pack-size-chip.out-of-stock {
    background: #F8FAFC !important;
    border-color: #E2E8F0 !important;
    color: #94A3B8 !important;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.6;
}

/* Pack Color Chips Grid */
.pack-colors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pack-color-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: #FFFFFF;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.pack-color-chip:hover {
    border-color: var(--primary);
}

.pack-color-chip.active {
    border-color: var(--primary) !important;
    background: #FAF2EB !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
}

.pack-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    display: inline-block;
}







/* ==========================================================================
   EXTRACTED STOREFRONT COMPONENT & UTILITY CLASSES
   ========================================================================== */
.st-00024d { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: var(--secondary); margin-top: 10px; line-height: 1.2; }
.st-00a4ec { font-size: 0.85rem; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.st-00bdb6 { font-weight: 700; font-size: 0.78rem; color: var(--text-muted); }
.st-00be3d { font-size: 1.6rem; color: #10B981; }
.st-01228f { padding: 12px 28px; font-size: 0.95rem; }
.st-01c596 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.st-01c94e { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }
.st-023b06 { padding: 12px 24px; font-size: 0.95rem; width: 100%; justify-content: center; }
.st-02707d { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--secondary); display: flex; align-items: center; gap: 8px; }
.st-0327f1 { color: #F59E0B; font-size: 0.95rem; margin-bottom: 10px; }
.st-049d82 { padding: 70px 0; }
.st-04d902 { background: #ECFDF5; border: 1.5px solid #10B981; color: #065F46; padding: 12px 16px; border-radius: 12px; margin-bottom: 20px; text-align: left; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.st-068fc6 { font-weight: 800; font-size: 0.82rem; color: var(--secondary); }
.st-07351e { width: 40px; height: 40px; font-size: 0.85rem; }
.st-07b4c0 { font-size: 0.92rem; font-weight: 800; color: var(--secondary); }
.st-07baf2 { font-size: 0.78rem; color: #64748B; margin-top: 3px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.st-07c6a7 { margin-top: 4px; }
.st-07e582 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; }
.st-082edb { margin-bottom: 14px; }
.st-088017 { font-weight: 800; font-size: 0.8rem; color: var(--primary); padding: 6px 12px 2px; text-transform: uppercase; }
.st-08ddd2 { font-size: 1.1rem; font-weight: 900; color: var(--primary); font-family: var(--font-heading); }
.st-098233 { font-size: 1.15rem; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }
.st-0a24f5 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; color: var(--secondary); margin-top: 2px; }
.st-0afef8 { font-size: 2.2rem; color: var(--accent-brass); margin-bottom: 12px; }
.st-0b29d8 { font-family: var(--font-heading); color: var(--primary); }
.st-0b62c1 { font-size: 1.12rem; color: var(--text-muted); margin-top: 12px; line-height: 1.6; }
.st-0ce55d { margin-right: 8px; color: var(--primary); }
.st-0d5e7b { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 28px; flex-wrap: wrap; gap: 14px; }
.st-0de1f9 { margin-top: 20px; }
.st-0e3c59 { max-width: 680px; margin: 0 auto; }
.st-0f34a8 { font-size: 2.2rem; font-weight: 800; color: var(--secondary); margin: 0; line-height: 1.2; }
.st-0f9c67 { font-size: 1.15rem; font-weight: 800; color: var(--secondary); margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.st-0fa8e0 { border-top: 1px dashed var(--border); margin-top: 10px; padding-top: 8px; text-align: right; font-weight: 900; font-size: 1rem; color: var(--secondary); }
.st-1062cc { margin-bottom: 22px; }
.st-108460 { font-size: 2.2rem; font-weight: 900; color: var(--primary); font-family: var(--font-heading); }
.st-10b9dc { font-size: 0.65rem; }
.st-10bda5 { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(12, 10, 9, 0.75); backdrop-filter: blur(8px); z-index: 99999; align-items: center; justify-content: center; padding: 20px; }
.st-111945 { color: #D97706; }
.st-1123cf { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: #FFFFFF; margin-bottom: 14px; }
.st-11cbbd { font-size: 0.8rem; font-weight: 700; color: #b91c1c; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.st-12729b { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--primary); }
.st-12bb8d { padding: 16px 36px; font-size: 1.05rem; }
.st-13db75 { min-width: 0; }
.st-1464be { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.st-14b6ac { color: #FFFFFF !important; }
.st-154bd5 { padding: 70px 0; background: linear-gradient(135deg, #0C0A09 0%, #1C1917 100%); color: #FFFFFF; text-align: center; }
.st-164497 { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; }
.st-170c5b { display: flex; justify-content: space-between; font-size: 0.92rem; color: #16A34A; font-weight: 700; }
.st-17a3e4 { font-size: 0.75rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.st-182425 { font-size: 0.8rem; color: var(--text-muted); }
.st-184b61 { font-size: 1.1rem; }
.st-18fb93 { background: #EAF6EE; border: 1.5px solid #2F6F44; color: #164627; padding: 14px 20px; border-radius: var(--radius-md); font-weight: 700; }
.st-199b58 { font-size: 0.75rem; }
.st-19ad98 { color: #22C55E; font-size: 1.25rem; }
.st-1a294c { display: flex; align-items: center; gap: 12px; flex-grow: 1; }
.st-1b23c0 { font-size: 0.8rem; font-weight: 800; color: var(--primary); text-transform: uppercase; margin-right: 4px; }
.st-1be710 { display: flex; align-items: center; justify-content: center; gap: 8px; background: #1E8E47; border-color: #1E8E47; font-size: 0.9rem; padding: 11px; }
.st-1d0d3d { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.st-1e52e2 { font-size: 0.78rem; font-weight: 800; color: #166534; background: #FFFFFF; padding: 2px 10px; border-radius: var(--radius-full); border: 1px solid #86EFAC; }
.st-1e5a3c { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 20px; }
.st-1ee9a3 { font-weight: 800; font-size: 0.9rem; }
.st-1f388b { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.st-1fc7be { font-size: 0.98rem; color: var(--text-muted); margin-top: 6px; }
.st-20461f { padding: 12px 34px; font-weight: 800; font-size: 0.95rem; border-radius: 9999px; background: #FFFFFF; border: 1.5px solid var(--secondary); color: var(--secondary); display: inline-flex; align-items: center; gap: 10px; cursor: pointer; transition: all 0.3s ease; }
.st-20dacc { background: #FEF2F2; color: #DC2626; padding: 4px 10px; border-radius: var(--radius-full); font-weight: 800; font-size: 0.8rem; border: 1px solid #FCA5A5; }
.st-222583 { font-size: 0.72rem; font-weight: 800; color: #991B1B; text-transform: uppercase; letter-spacing: 1px; }
.st-22b0e3 { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }
.st-238074 { position: absolute; top: -45px; right: 0; background: rgba(255,255,255,0.25); border: none; color: #FFFFFF; font-size: 1.6rem; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.st-264ab1 { display: flex; align-items: center; justify-content: center; gap: 8px; color: #166534; font-weight: 900; font-size: 1.05rem; margin-bottom: 6px; }
.st-265908 { cursor: pointer; }
.st-26e79a { margin-top: 14px; color: #FFFFFF; font-size: 1rem; font-weight: 700; background: rgba(0,0,0,0.6); padding: 6px 18px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.15); }
.st-270784 { border: 2px dashed var(--accent-brass); border-radius: var(--radius-lg); padding: 18px; text-align: center; background: #FAF8F5; cursor: pointer; }
.st-283bb0 { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.st-28747b { font-size: 1.05rem; display: block; margin-bottom: 2px; }
.st-28c5b9 { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.st-2a39f4 { padding: 16px 28px; font-size: 1.05rem; }
.st-2a7823 { font-size: 0.95rem; font-weight: 800; color: var(--secondary); }
.st-2aff11 { font-size: 0.95rem; font-weight: 900; color: #0F172A; }
.st-2b3d2c { padding: 40px 20px 60px; }
.st-2cc008 { background: #FAF7F2; padding: 12px; border-radius: 8px; border: 1px solid var(--border); text-align: center; }
.st-2cdd65 { justify-content: center; text-align: center; }
.st-2ce315 { font-size: 0.75rem; color: #EA580C; font-weight: 700; background: #FFF7ED; padding: 2px 10px; border-radius: var(--radius-full); }
.st-2f1377 { height: 50px; }
.st-2f3108 { color: var(--text-muted); max-width: 480px; margin: 6px auto 0; }
.st-301422 { margin-bottom: 28px; }
.st-3061ae { font-weight: 800; font-size: 0.88rem; color: var(--secondary); }
.st-312ad1 { font-size: 0.98rem; color: var(--text-main); line-height: 1.8; }
.st-31e9b5 { width: 64px; height: 64px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 16px; border: 1.5px solid #E7D5C7; }
.st-320fe7 { color: var(--primary-dark); font-weight: 800; }
.st-32b16f { font-size: 0.75rem; font-weight: 800; background: #DCFCE7; color: #166534; padding: 3px 10px; border-radius: 9999px; }
.st-32fded { color: #15803D; font-size: 0.86rem; margin-bottom: 16px; line-height: 1.5; }
.st-33864b { background: var(--secondary-surface); border: 1.5px solid var(--secondary-border); padding: 12px; border-radius: var(--radius-md); box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.st-34c017 { font-size: 0.82rem; color: var(--accent-green); font-weight: 700; margin-top: 4px; }
.st-34c292 { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
.st-3516a8 { font-size: 1.05rem; font-weight: 800; color: var(--secondary); text-decoration: none; }
.st-35800f { display: flex; flex-direction: column; gap: 24px; }
.st-35ea0e { padding: 50px 24px 90px; max-width: 760px; }
.st-36eb49 { display: flex; gap: 6px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; align-items: center; }
.st-37a071 { font-family: var(--font-heading); font-size: 2.3rem; font-weight: 800; color: var(--secondary); margin-top: 6px; }
.st-38443c { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.88rem; padding: 10px; }
.st-38b61c { display: flex; gap: 6px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
.st-39152b { width: 44px; height: 44px; }
.st-3a54e1 { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-size: 0.92rem; }
.st-3abe89 { background: #FFFFFF; padding: 14px 10px; border-radius: var(--radius-md); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.st-3b1ff3 { max-width: 1100px; padding: 24px 16px 50px; }
.st-3b40ff { font-size: 0.76rem; font-weight: 700; color: #A35D31; text-transform: uppercase; letter-spacing: 0.8px; }
.st-3b55a4 { font-size: 0.85rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; }
.st-3bed43 { background: #ffffff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 36px; }
.st-3cb3ff { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.st-3d207a { font-size: 1rem; display: block; }
.st-3e9514 { padding: 12px 30px; font-size: 0.95rem; }
.st-3efb47 { background: #FFFFFF; border: 1px solid #E2E8F0; padding: 1px 6px; border-radius: 4px; font-weight: 700; color: #9A3412; }
.st-3efb6c { font-size: 1.6rem; font-weight: 800; color: var(--secondary); margin-bottom: 16px; }
.st-3f4b38 { flex-grow: 1; padding: 14px 20px; font-size: 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-weight: 600; }
.st-3f9689 { font-size: 1.5rem; color: #10B981; }
.st-3f9b0d { padding: 70px 0 60px; background: #FFF8F0; border-bottom: 1px solid var(--border); }
.st-3fdbea { background: #111827; color: #FFFFFF; font-weight: 900; font-size: 1.25rem; min-width: 42px; height: 42px; border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 2px 4px rgba(0,0,0,0.3); }
.st-40caa6 { font-size: 0.72rem; opacity: 0.85; }
.st-42314d { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--secondary); margin-top: 6px; }
.st-424597 { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.st-42df6b { width: 100%; justify-content: center; padding: 12px; font-size: 0.95rem; margin-top: 10px; }
.st-434ba0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.st-434e76 { text-align: center; max-width: 820px; margin: 0 auto; }
.st-462cd5 { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; }
.st-4657d2 { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-size: 0.95rem; font-weight: 800; color: #F59E0B; background: #FAF8F5; }
.st-4723ad { width: 100%; justify-content: center; padding: 12px; font-size: 0.95rem; margin-top: 16px; }
.st-48dda1 { text-align: center; margin-bottom: 30px; }
.st-4958d4 { font-size: 0.82rem; font-weight: 800; color: var(--secondary); margin-left: 6px; }
.st-4a25d6 { font-size: 0.98rem; color: var(--text-muted); margin-top: 6px; max-width: 650px; }
.st-4a7739 { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; border: 1px solid #E2E8F0; flex-shrink: 0; }
.st-4a8473 { font-size: 0.78rem; font-weight: 700; color: var(--primary); }
.st-4aa76e { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.st-4b891a { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 4px; }
.st-4cdea8 { padding: 9px 18px; font-size: 0.88rem; flex-shrink: 0; }
.st-4def7e { color: var(--accent-brass); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.st-4e1d32 { background: #ffffff; border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow-md); }
.st-4e2913 { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.st-4fb4d8 { margin-right: 8px; color: var(--accent-brass); }
.st-502873 { display: flex; align-items: center; gap: 14px; }
.st-508de8 { margin-top: 4px; accent-color: var(--primary); width: 18px; height: 18px; }
.st-524a44 { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--border); padding-bottom: 20px; margin-bottom: 30px; flex-wrap: wrap; gap: 14px; }
.st-5282f2 { color: #15803D; font-size: 0.86rem; margin-bottom: 14px; }
.st-529983 { text-align: center; padding: 40px; background: #FFFFFF; border-radius: var(--radius-lg); border: 1px dashed var(--border); }
.st-529dee { background: #DC2626; color: #FFFFFF; font-weight: 900; font-size: 0.82rem; padding: 4px 10px; border-radius: 6px; position: absolute; top: 12px; left: 12px; z-index: 5; box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3); }
.st-52aafa { padding: 35px 20px 70px; }
.st-52cefb { width: 40px; height: 40px; border-radius: 50%; background: #25D366; color: #FFFFFF; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.st-536d1b { font-size: 0.8rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.st-53bac2 { color: var(--accent-brass); font-size: 1.25rem; }
.st-561810 { display: flex; justify-content: space-between; align-items: baseline; border-top: 1.5px dashed #E7D5C7; padding-top: 12px; margin-top: 4px; }
.st-568b66 { font-size: 1.2rem; }
.st-5776d3 { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.st-57972c { font-size: 0.95rem; color: #0F172A; }
.st-588c38 { font-weight: 800; color: var(--secondary); font-size: 0.95rem; }
.st-59a4ec { font-size: 0.85rem; font-weight: 800; color: var(--secondary); display: flex; align-items: center; gap: 6px; }
.st-5a5e81 { padding: 50px 0 60px; background: linear-gradient(180deg, #FFF9F5 0%, #FFF3EB 100%); border-top: 1px solid #FFE4D6; border-bottom: 1px solid #FFE4D6; position: relative; overflow: hidden; }
.st-5ab595 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--secondary); }
.st-5aba71 { padding: 13px 28px; font-size: 0.98rem; font-weight: 800; border-radius: var(--radius-md); }
.st-5b6f3b { font-size: 0.95rem; color: var(--text-muted); margin-top: 6px; max-width: 600px; }
.st-5c0179 { font-size: 0.82rem; font-weight: 800; color: #B83A2E; text-transform: uppercase; letter-spacing: 2px; }
.st-5c0f3f { font-size: 0.75rem; color: #F59E0B; }
.st-5c4d23 { background: #FFFFFF; border: 1.5px solid #E2E8F0; border-radius: 8px; padding: 12px 14px; }
.st-5d77d2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; text-align: center; }
.st-5e029f { margin-top: 24px; }
.st-5f1132 { color: var(--text-muted); font-size: 0.85rem; }
.st-5fc355 { display: flex; gap: 20px; position: relative; z-index: 2; }
.st-5fc585 { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--accent-brass); font-weight: 800; }
.st-60496a { display: flex; flex-direction: column; gap: 8px; }
.st-60d0b7 { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.st-625b5b { color: #FFFFFF; font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; letter-spacing: 0.5px; }
.st-628309 { font-size: 2.2rem; font-weight: 800; margin-top: 6px; color: var(--secondary); }
.st-64b373 { color: #10B981; }
.st-6510a1 { background: #FFFFFF; border: 2px solid #F87171; box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.15); border-radius: 16px; padding: 12px 20px; display: flex; align-items: center; gap: 12px; }
.st-6525e3 { width: 10px; height: 10px; border-radius: 50%; background: ${col.hex}; display: inline-block; border: 1px solid rgba(0,0,0,0.1); }
.st-6599cf { text-align: left; }
.st-66381f { font-size: 0.85rem; color: var(--accent-brass); font-weight: 700; max-width: 250px; }
.st-66745c { padding: 12px 22px; font-size: 0.92rem; }
.st-68103a { font-weight: 900; color: #DC2626; font-size: 1.2rem; }
.st-6977ec { background: #FEE2E2; border: 1.5px solid #FCA5A5; color: #991B1B; padding: 12px 16px; border-radius: var(--radius-md); margin-bottom: 16px; font-size: 0.85rem; }
.st-6ac5f2 { font-size: 2.4rem; color: var(--accent-brass); margin-bottom: 16px; }
.st-6c5d22 { color: #D97706; font-size: 0.95rem; }
.st-6df5b8 { font-size: 0.78rem; color: var(--text-muted); }
.st-6df6f5 { background: #ffffff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.st-6e427d { margin-top: 20px; padding-top: 14px; border-top: 1px dashed var(--border); font-size: 0.80rem; color: var(--text-muted); }
.st-6ebf6c { padding-right: 14px; }
.st-6ee713 { text-align: center; max-width: 780px; margin: 0 auto 50px; }
.st-6ee8e0 { font-size: 1.25rem; color: var(--text-muted); text-decoration: line-through; font-weight: 600; }
.st-6f79cf { background: var(--secondary-surface); border: 1px solid var(--secondary-border); padding: 18px; border-radius: var(--radius-md); font-size: 0.85rem; color: #D6CEC5; }
.st-70525c { font-size: 0.92rem; color: var(--text-dark); line-height: 1.6; font-style: italic; margin: 0; }
.st-712d62 { padding: 60px 0 30px; }
.st-713a44 { padding: 50px 20px 90px; max-width: 900px; }
.st-738473 { font-size: 0.88rem; font-weight: 700; color: var(--secondary); }
.st-73f62d { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; color: var(--secondary); margin-top: 4px; }
.st-745783 { font-size: 1.05rem; font-weight: 900; color: var(--secondary); }
.st-74ad69 { font-size: 1.35rem; }
.st-750d9c { color: #0F172A; }
.st-752954 { position: absolute; left: 35px; top: 20px; bottom: 30px; width: 3px; background: #E2E8F0; z-index: 1; }
.st-752d26 { background: #FFFFFF; border: 1px solid #E2E8F0; padding: 1px 6px; border-radius: 4px; font-weight: 700; color: #0F172A; }
.st-759bb6 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; color: var(--secondary); margin-top: 2px; }
.st-76c1ea { font-size: 0.88rem; color: #D6D3D1; margin-top: 4px; }
.st-78ebcc { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #FFFFFF !important; font-weight: 800; font-size: 0.95rem; padding: 14px 28px; border-radius: var(--radius-full); text-decoration: none; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); transition: all 0.25s ease; }
.st-7919ef { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.st-791c1e { padding: 10px 22px; }
.st-7a020c { background: #ECFDF5; border: 1.5px solid #10B981; color: #065F46; padding: 20px 24px; border-radius: var(--radius-lg); margin-bottom: 36px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-sm); }
.st-7a0d39 { padding: 50px 0 70px; background: #FAF7F2; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.st-7a28e2 { font-size: 2.5rem; color: #EA580C; margin-bottom: 12px; }
.st-7a2b64 { margin-bottom: 36px; }
.st-7b27cd { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.88rem; font-weight: 700; color: var(--secondary); }
.st-7c7ea3 { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; margin-bottom: 24px; }
.st-7cb830 { width: 38px; height: 38px; }
.st-7dd4a8 { color: #F59E0B; font-size: 0.95rem; margin-bottom: 12px; }
.st-7dd8d2 { text-align: center; max-width: 750px; margin: 0 auto 36px; }
.st-7ed39a { background: #FFFFFF; border-radius: var(--radius-xl); padding: 36px 32px; width: 560px; max-width: 95vw; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); border: 2px solid var(--accent-brass); position: relative; }
.st-7f751e { font-size: 1.25rem; font-weight: 800; color: var(--secondary); }
.st-807228 { width: 40px; height: 40px; }
.st-8118c0 { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 20px; }
.st-817269 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 18px; color: var(--secondary); border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.st-8364b1 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; flex-wrap: wrap; gap: 4px; }
.st-861559 { display: inline-flex; align-items: center; gap: 6px; background: #FEF2F2; color: #DC2626; border: 1.5px solid #FCA5A5; font-size: 0.82rem; font-weight: 800; padding: 5px 14px; border-radius: 9999px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.st-86c8e5 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.st-876ae1 { font-size: 1.05rem; font-weight: 900; color: #166534; margin-bottom: 6px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.st-8774f9 { background: #fee2e2; border: 1px solid #ef4444; color: #991b1b; padding: 14px 18px; border-radius: var(--radius-md); margin-bottom: 20px; font-size: 0.9rem; }
.st-889541 { font-size: 0.95rem; color: var(--text-dark); line-height: 1.6; font-style: italic; }
.st-8a06f3 { background: #fff7ed; border: 1.5px solid #fed7aa; border-radius: var(--radius-md); padding: 12px 16px; margin-top: 18px; display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #9a3412; font-weight: 800; }
.st-8a2140 { height: 190px; width: 100%; object-fit: cover; background: #f3ece1; }
.st-8a9a8c { font-size: 0.75rem; transition: transform 0.2s ease; }
.st-8ac551 { display: flex; gap: 8px; }
.st-8deca8 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.st-8eb440 { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 900; }
.st-8f04e3 { font-size: 1.05rem; color: #A8A29E; line-height: 1.7; margin-bottom: 30px; }
.st-907cae { font-weight: 800; font-size: 0.88rem; color: var(--secondary); display: block; margin-bottom: 6px; }
.st-90ad1f { font-size: 1.3rem; color: #22C55E; }
.st-9368fc { font-size: 0.7rem; color: var(--accent-brass); }
.st-9394c5 { font-size: 0.78rem; color: #059669; font-weight: 700; }
.st-94412d { font-size: 0.82rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; }
.st-945ec4 { font-size: 1.15rem; color: #25D366; }
.st-948a78 { color: #FFFFFF; border-color: rgba(255,255,255,0.2); padding: 8px 18px; font-size: 0.85rem; }
.st-9490fa { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #FAF7F2; border-radius: var(--radius-md); border: 1px solid var(--border); }
.st-94a31b { text-align: center; padding: 60px 20px; background: #FFFFFF; border-radius: var(--radius-xl); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.st-9683a3 { font-size: 0.76rem; color: #16A34A; font-weight: 700; margin-top: 2px; }
.st-96cdfc { color: #16A34A; font-weight: 700; }
.st-96cf4f { color: #F59E0B; font-size: 0.75rem; }
.st-977713 { text-align: center; margin-bottom: 36px; }
.st-9a0a2e { font-size: 0.75rem; font-weight: 800; color: var(--primary); background: #FAF2EB; padding: 2px 8px; border-radius: 4px; border: 1px solid #FCD34D; }
.st-9b583a { color: var(--primary); margin-right: 4px; }
.st-9bc1af { margin-top: 44px; display: flex; justify-content: center; }
.st-9c1cde { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.st-9c20ad { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--secondary); margin-top: 8px; line-height: 1.2; }
.st-9c7663 { display: none; }
.st-9c9106 { padding: 70px 0 60px; background: linear-gradient(180deg, var(--bg) 0%, #F3ECE1 50%, var(--bg) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.st-9d13f7 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
.st-9db353 { display: flex; gap: 6px; flex-wrap: wrap; }
.st-9e7fa1 { font-size: 0.98rem; font-weight: 800; color: var(--secondary); }
.st-9f1ca5 { color: var(--text-muted); margin: 8px 0 20px; }
.st-9f413f { font-size: 0.78rem; color: #10B981; font-weight: 700; }
.st-9fe867 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--secondary); margin-top: 2px; }
.st-a0621e { font-size: 1.08rem; color: var(--text-muted); margin-top: 14px; line-height: 1.7; }
.st-a0fcf2 { margin-bottom: 8px; }
.st-a1a57e { font-size: 0.8rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; }
.st-a1bf45 { display: grid; grid-template-columns: 1fr 1.5fr; gap: 16px; margin-bottom: 16px; }
.st-a246f8 { font-size: 0.8rem; font-weight: 700; color: var(--primary); background: #FFFFFF; border: 1px solid #E7D5C7; padding: 2px 10px; border-radius: var(--radius-full); }
.st-a2c7d0 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.st-a2f9ae { color: #25D366; font-size: 1.2rem; }
.st-a4660e { font-size: 0.78rem; color: #166534; }
.st-a4a7cb { color:#10B981; }
.st-a513f2 { font-size: 1.8rem; color: #25D366; flex-shrink: 0; }
.st-a51872 { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.st-a5d011 { flex-grow: 1; }
.st-a5defb { color: #10B981; font-weight: 800; }
.st-a671e5 { font-size: 1.15rem; }
.st-a75de9 { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }
.st-aae91c { font-size: 1.2rem; color: #10B981; }
.st-ab706f { background: #FAF8F5; border: 1px solid #E7D5C7; color: #78350F; padding: 2px 7px; border-radius: 4px; font-weight: 700; font-size: 0.76rem; }
.st-ad055b { margin-bottom: 18px; }
.st-ad3331 { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.st-add8d6 { font-family: var(--font-heading); font-size: 2.3rem; font-weight: 800; margin-top: 6px; color: var(--secondary); }
.st-ae6334 { background: #ECFDF5; border: 1.5px solid #10B981; color: #065F46; padding: 18px 24px; border-radius: var(--radius-lg); margin-bottom: 30px; display: flex; align-items: center; gap: 14px; }
.st-b137f6 { background: #FAF8F5; border: 1.5px solid #E7D5C7; border-radius: var(--radius-md); padding: 22px; }
.st-b30ae2 { color: #A35D31; }
.st-b372e5 { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.st-b3bfe1 { display:none;visibility:hidden; }
.st-b3ea03 { border-radius: 8px; overflow: hidden; height: 180px; margin-bottom: 12px; border: 1.5px solid rgba(212, 175, 55, 0.35); box-shadow: 0 4px 12px rgba(0,0,0,0.35); }
.st-b3ea03 iframe { width: 100% !important; height: 100% !important; border: 0 !important; display: block; }
.st-b4217d { background: var(--bg-subtle); border: 1.5px dashed var(--accent-brass); padding: 14px; border-radius: var(--radius-md); margin-bottom: 20px; }
.st-b473bd { color: var(--primary); font-weight: 800; font-size: 1rem; }
.st-b49d7c { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 18px; }
.st-b50118 { color: #DC2626; font-weight: 800; }
.st-b50bb3 { font-size: 0.8rem; font-weight: 800; color: var(--secondary); }
.st-b65194 { border-color: #FCA5A5; box-shadow: 0 4px 16px rgba(220, 38, 38, 0.08); }
.st-b702de { font-size: 0.82rem; color: var(--primary); font-weight: 700; }
.st-b725a3 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.st-b8322e { max-height: 80vh; max-width: 90vw; object-fit: contain; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.2); }
.st-b85226 { font-size: 2.2rem; font-weight: 800; margin-top: 4px; color: var(--secondary); }
.st-b9671a { display: flex; align-items: center; justify-content: center; gap: 8px; background: rgba(212, 175, 55, 0.15); color: var(--accent-brass); border: 1.5px solid rgba(212, 175, 55, 0.4); padding: 10px 14px; border-radius: 8px; text-decoration: none; font-weight: 800; font-size: 0.85rem; transition: all 0.2s ease; }
.st-b988e2 { font-size: 0.85rem; color: var(--accent-brass); font-weight: 700; }
.st-baa6ad { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.st-bb191e { color: var(--text-muted); font-size: 0.92rem; margin-top: 2px; }
.st-bb64e4 { background: #ea580c; flex-shrink: 0; }
.st-bbd4a4 { font-weight: 800; color: var(--secondary); font-size: 0.88rem; }
.st-bc6901 { color: var(--accent-green, #1B4D3E); font-weight: 800; }
.st-bd2731 { font-weight: 800; font-size: 1rem; color: var(--secondary); }
.st-bd6754 { text-align: center; margin-top: 30px; display: none; }
.st-bdb5c7 { color: var(--accent-brass); font-size: 0.72rem; font-weight: 700; }
.st-be0399 { color: ${i <= rating ? '#F59E0B' : '#CBD5E1'}; margin-right: 2px; }
.st-bf1e4e { font-family: var(--font-heading); font-size: 1.2rem; color: var(--secondary); margin-bottom: 6px; }
.st-bfe35c { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 0.95rem; }
.st-c059d4 { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.st-c0626b { font-weight: 800; font-size: 0.95rem; color: #FFFFFF; }
.st-c2cd4f { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.st-c3c359 { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.st-c428b4 { font-size: 0.78rem; font-weight: 800; color: #0284C7; background: #FFFFFF; padding: 2px 10px; border-radius: var(--radius-full); border: 1px solid #BAE6FD; }
.st-c5a072 { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--text-muted); }
.st-c5e722 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.st-c60f63 { color: var(--primary); font-size: 0.9rem; }
.st-c729fa { display: flex; justify-content: space-between; font-size: 0.88rem; }
.st-c7f9af { font-weight: 800; color: var(--secondary); text-decoration: none; font-size: 0.95rem; }
.st-c8e49f { font-family: var(--font-heading); font-size: 2.3rem; font-weight: 900; color: var(--secondary); margin-bottom: 8px; }
.st-c9b4f7 { font-size: 0.72rem; color: var(--text-muted); }
.st-ca6ca3 { font-size: 0.75rem; color: #166534; font-weight: 700; background: #DCFCE7; padding: 2px 10px; border-radius: var(--radius-full); }
.st-cb0853 { display: flex; flex-direction: column; align-items: center; }
.st-cb4589 { display:none; }
.st-cb4f0e { color: var(--primary); font-size: 0.7rem; }
.st-cc5107 { width: 100%; padding: 16px; font-size: 1.05rem; }
.st-cc5795 { color: var(--primary); font-size: 1.3rem; margin-bottom: 6px; }
.st-cc6198 { padding: 14px 28px; font-size: 1rem; white-space: nowrap; }
.st-cc7133 { font-size: 1.3rem; color: #FFFFFF !important; }
.st-cc9d09 { font-size: 0.9rem; color: #B5ACA3; line-height: 1.65; margin-bottom: 16px; }
.st-cca577 { font-size: 0.88rem; color: #14532D; display: block; }
.st-cdda22 { position: absolute; top: 12px; right: 14px; background: rgba(0,0,0,0.5); color: #fff; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; z-index: 10; }
.st-ce0f03 { font-size: 1.1rem; color: #25D366; }
.st-ce785f { background: #FAF8F5; border: 1px solid #E7D5C7; color: var(--primary); padding: 2px 7px; border-radius: 4px; font-weight: 700; font-size: 0.76rem; }
.st-cf6b75 { font-size: 1.1rem; flex-shrink: 0; }
.st-cf8cbc { display: flex; align-items: center; gap: 6px; }
.st-d03555 { font-size: 0.78rem; font-weight: 700; color: #A35D31; background: #FFF7ED; border: 1px solid #FFEDD5; padding: 2px 10px; border-radius: 9999px; }
.st-d08f67 { color: #059669; }
.st-d0b19d { font-size: 1rem; color: var(--secondary); }
.st-d0ec0e { font-size: 0.78rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.st-d205ab { background: #ffffff; border: 1.5px solid #FCA5A5; border-radius: var(--radius-lg); padding: 40px; text-align: center; box-shadow: var(--shadow-sm); }
.st-d2494b { font-size: 0.75rem; color: #D6D3D1; }
.st-d2778a { min-width: 290px; max-height: 480px; overflow-y: auto; }
.st-d3a1db { font-size: 0.72rem; font-weight: 700; background: #FFFFFF; border: 1px solid #E2E8F0; color: #9A3412; padding: 2px 6px; border-radius: 4px; }
.st-d49eab { padding: 8px 20px; font-size: 0.85rem; }
.st-d4ffe9 { background: #FFFFFF; border: 1px solid #E7D5C7; border-radius: 8px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.st-d547af { margin: 6px 0 0 16px; padding: 0; }
.st-d6ba1f { font-size: 1.15rem; font-weight: 800; color: var(--secondary); text-decoration: none; }
.st-d71aaf { padding: 40px 0 70px; }
.st-d82d03 { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.st-d90ced { color: #FFFFFF; text-decoration: none; }
.st-d97748 { font-size: 3.5rem; color: var(--primary); margin-bottom: 16px; }
.st-d984f7 { font-size: 0.92rem; color: var(--text-dark); line-height: 1.7; margin-bottom: 14px; }
.st-db91d0 { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.st-dcb898 { background: #25D366; border-color: #25D366; color: #FFFFFF; padding: 12px 22px; }
.st-dcd2ad { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 4px; }
.st-dd8eb2 { font-size: 0.7rem; }
.st-de0140 { font-size: 1.8rem; font-weight: 900; color: var(--secondary); margin-bottom: 8px; }
.st-de7837 { background: #FFFFFF; border-radius: var(--radius-xl); padding: 36px 32px; width: 520px; max-width: 95vw; box-shadow: var(--shadow-lg); border: 2px solid var(--accent-brass); position: relative; }
.st-e022e0 { font-weight: 800; font-size: 0.95rem; color: var(--secondary); }
.st-e1d8ef { font-weight: 700; color: var(--secondary); font-size: 0.82rem; }
.st-e1e3d6 { background: #FFFFFF; border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-sm); }
.st-e2ec23 { background: #DC2626; color: #FFFFFF; font-weight: 900; font-size: 1.25rem; min-width: 42px; height: 42px; border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 12px rgba(220, 38, 38, 0.4); }
.st-e2f176 { background: #0C0A09; color: #F3ECE1; padding: 14px 18px; border-radius: var(--radius-md); border-left: 3px solid var(--accent-brass); font-style: italic; font-size: 0.88rem; margin: 16px 0; }
.st-e329b3 { color: var(--primary); font-size: 1.1rem; }
.st-e35596 { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.st-e3b5c6 { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.st-e3b7f7 { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }
.st-e3ce56 { position: absolute; top: 14px; left: 14px; }
.st-e48ac4 { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.st-e495c2 { margin-top: 14px; padding-top: 10px; border-top: 1px dashed var(--border); font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.st-e4d343 { font-size: 1.05rem; font-weight: 800; color: var(--secondary); margin-bottom: 6px; }
.st-e4f1bb { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--secondary); }
.st-e4f954 { font-size: 0.78rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.st-e5ed40 { padding: 60px 0 75px; background: #FAF8F5; border-bottom: 1px solid var(--border); }
.st-e6787a { color: var(--accent-brass); text-decoration: underline; margin-left: 8px; font-weight: 800; }
.st-e83bf1 { font-size: 0.72rem; font-weight: 800; color: #64748B; text-transform: uppercase; display: block; margin-bottom: 4px; }
.st-e885f1 { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.st-e955a9 { margin-top: 24px; text-align: center; }
.st-e9ebf7 { height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.st-ea644f { font-size: 1.8rem; color: var(--accent-brass); margin-bottom: 6px; }
.st-ea933a { font-size: 0.75rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.st-eb1777 { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-muted); }
.st-eb2b00 { display: flex; gap: 12px; flex-wrap: wrap; }
.st-ebd771 { font-size: 0.82rem; color: var(--accent-brass); font-weight: 700; margin-top: 2px; }
.st-ebe652 { text-align: right; min-width: 90px; }
.st-ec849b { font-family: var(--font-heading); font-size: 1.08rem; font-weight: 700; color: var(--secondary); margin-bottom: 12px; line-height: 1.5; }
.st-ecc668 { display: inline-flex; align-items: center; gap: 5px; font-size: 0.76rem; font-weight: 700; background: #FAF8F5; border: 1px solid #E7D5C7; color: #78350F; padding: 3px 8px; border-radius: 4px; }
.st-ef2791 { display: flex; gap: 20px; position: relative; z-index: 2; padding-bottom: 28px; }
.st-ef3e49 { border-top: 1.5px dashed #E7D5C7; padding-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.st-efb699 { margin-bottom: 16px; }
.st-eff71d { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.st-f099a6 { padding: 4px 10px; border-radius: 6px; font-size: 0.78rem; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: all 0.15s ease; border: 1.5px solid ${item.color === col.name ? 'var(--primary)' : 'var(--border)'}; background: ${item.color === col.name ? '#FAF2EB' : '#FFFFFF'}; font-weight: ${item.color === col.name ? '900' : '600'}; color: var(--secondary); }
.st-f10d27 { padding: 12px 24px; }
.st-f1bb68 { width: 100%; padding: 16px; font-size: 1.05rem; justify-content: center; }
.st-f26247 { color: var(--text-muted); font-size: 0.92rem; margin-top: 4px; }
.st-f35de8 { color: #FFFFFF; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; }
.st-f56556 { font-size: 0.85rem; font-weight: 800; color: #15803D; text-transform: uppercase; letter-spacing: 2px; display: inline-flex; align-items: center; gap: 6px; }
.st-f590e8 { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(12, 10, 9, 0.7); backdrop-filter: blur(8px); z-index: 99999; align-items: center; justify-content: center; padding: 20px; }
.st-f5cf05 { font-size: 0.78rem; font-weight: 800; color: var(--primary); background: #FFFFFF; padding: 2px 10px; border-radius: var(--radius-full); border: 1px solid #E7D5C7; }
.st-f6ab1b { width: 100%; padding: 16px 14px; font-size: 1.05rem; font-weight: 900; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 8px 25px rgba(163, 93, 49, 0.4); text-transform: uppercase; }
.st-f72907 { background: #FAF8F5; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; margin-bottom: 26px; }
.st-f79953 { font-size: 1rem; font-weight: 800; color: var(--secondary); margin-bottom: 14px; border-bottom: 1.5px solid #E7D5C7; padding-bottom: 8px; display: flex; align-items: center; justify-content: space-between; }
.st-f7c1ab { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.st-f82096 { color: var(--primary); font-size: 1.2rem; margin-bottom: 4px; }
.st-f92438 { font-size: 0.85rem; padding: 8px 16px; }
.st-f9452b { max-width: 760px; margin: 0 auto; }
.st-fa57db { text-align: center; max-width: 780px; margin: 0 auto; }
.st-fb22a3 { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 28px; margin-bottom: 36px; border-bottom: 1px solid var(--secondary-border); }
.st-fb8238 { padding: 4px 10px; border-radius: 6px; font-size: 0.82rem; cursor: ${isOut ? 'not-allowed' : 'pointer'}; transition: all 0.15s ease; border: 1.5px ${isOut ? 'dashed #CBD5E1' : (isSel ? 'solid var(--primary)' : 'solid var(--border)')}; background: ${isOut ? '#F8FAFC' : (isSel ? 'var(--primary)' : '#FFFFFF')}; color: ${isOut ? '#94A3B8' : (isSel ? '#FFFFFF' : 'var(--secondary)')}; font-weight: ${isSel ? '900' : '700'}; opacity: ${isOut ? '0.55' : '1'}; ${isOut ? 'text-decoration: line-through;' : ''}; }
.st-fc8687 { color: var(--accent-brass); font-size: 0.75rem; font-weight: 700; }
.st-fd86d8 { width: 48px; height: 48px; border-radius: 50%; background: rgba(163, 93, 49, 0.12); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.st-ff4235 { padding: 70px 0 50px; }
.st-ff5af8 { padding: 10px 20px; font-size: 0.88rem; border-color: var(--accent-brass); color: var(--secondary); font-weight: 800; }
.st-ffd970 { font-weight: 800; font-size: 0.85rem; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }

/* ==========================================================================
   MOBILE PHONE PRODUCT GRID CONFIGURATION (1 COLUMN vs 2 COLUMNS)
   ========================================================================== */
@media (max-width: 640px) {
  /* 🌟 MODE 2 COLONNES (DEUX PAR DEUX) SUR TÉLÉPHONE */
  body.mobile-cols-2 .products-grid-3,
  body.mobile-cols-2 .products-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
  }
  body.mobile-cols-2 .product-card-item {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid var(--border) !important;
    display: flex !important;
    flex-direction: column !important;
  }
  body.mobile-cols-2 .product-img-wrapper {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    display: block !important;
    background: #FDFBF7 !important;
    position: relative !important;
  }
  body.mobile-cols-2 .product-img-main {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  body.mobile-cols-2 .product-badge-discount {
    font-size: 0.65rem !important;
    padding: 3px 6px !important;
    top: 6px !important;
    left: 6px !important;
  }
  body.mobile-cols-2 .product-info-box {
    padding: 10px 8px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
  }
  body.mobile-cols-2 .product-category-meta {
    font-size: 0.68rem !important;
    margin-bottom: 2px !important;
  }
  body.mobile-cols-2 .product-name-heading {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    min-height: 2.3em !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  body.mobile-cols-2 .product-price-row {
    margin-top: auto !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
    margin-bottom: 8px !important;
    flex-wrap: wrap !important;
  }
  body.mobile-cols-2 .product-price-active {
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
  }
  body.mobile-cols-2 .product-price-striked {
    font-size: 0.75rem !important;
    color: #94A3B8 !important;
  }
  body.mobile-cols-2 .product-card-btn {
    padding: 8px 6px !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    border-radius: 6px !important;
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }

  /* 🌟 MODE 1 COLONNE (UN PAR UN) SUR TÉLÉPHONE */
  body.mobile-cols-1 .products-grid-3,
  body.mobile-cols-1 .products-grid-4 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    width: 100% !important;
  }
  body.mobile-cols-1 .product-card-item {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  }
  body.mobile-cols-1 .product-img-wrapper {
    aspect-ratio: 4 / 3 !important;
    width: 100% !important;
    min-height: auto !important;
  }
  body.mobile-cols-1 .product-info-box {
    padding: 16px !important;
  }
  body.mobile-cols-1 .product-name-heading {
    font-size: 1.08rem !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
  }
  body.mobile-cols-1 .product-price-active {
    font-size: 1.35rem !important;
    font-weight: 900 !important;
  }
  body.mobile-cols-1 .product-card-btn {
    padding: 11px 18px !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
  }
}

/* ==========================================================================
   👞 PRODUCT DETAIL GALLERY & FULLSCREEN BLUR LIGHTBOX MODAL
   ========================================================================== */
.product-detail-container {
  padding-top: 24px;
  padding-bottom: 60px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.product-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.product-main-image-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #FDFBF7;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  box-shadow: 0 4px 20px rgba(12, 10, 9, 0.06);
  transition: all 0.3s ease;
}

.product-main-image-viewport:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(163, 93, 49, 0.15);
}

.product-main-image-viewport img,
#mainProductImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.product-main-image-viewport:hover img {
  transform: scale(1.03);
}

.gallery-thumbs-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 4px 2px 8px;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.thumb-box {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  background: #FDFBF7;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.thumb-box:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.thumb-box.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(163, 93, 49, 0.35);
  transform: scale(1.04);
}

/* 🖼️ Fullscreen Image Lightbox Modal with Blur Background */
.image-blur-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999999 !important;
  background: rgba(10, 8, 7, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
}

.image-blur-modal.open {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.image-modal-container {
  position: relative;
  max-width: 90vw;
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomModalIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomModalIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.image-modal-img,
#modalMainImage {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.12);
  display: block;
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 2.2rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000000;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.modal-close-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.1) rotate(90deg);
}

.modal-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  z-index: 10000000;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.modal-nav-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 10px 25px rgba(163, 93, 49, 0.5);
}

.modal-arrow-left {
  left: 28px;
}

.modal-arrow-right {
  right: 28px;
}

@media (max-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-gallery-col {
    position: static;
  }
}

@media (max-width: 768px) {
  .modal-close-btn {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }
  .modal-nav-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .modal-arrow-left {
    left: 12px;
  }
  .modal-arrow-right {
    right: 12px;
  }
  .image-modal-img,
  #modalMainImage {
    max-width: 95vw;
    max-height: 75vh;
  }
}

/* ==========================================================================
   MOBILE HERO SHOWCASE ANIMATIONS
   ========================================================================== */
@keyframes heroCuePulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    transform: translateX(-50%) scale(1.04);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5), 0 0 28px rgba(212, 175, 55, 0.5);
  }
}

@keyframes cueBounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* ==========================================================================
   ALIEXPRESS-STYLE FULL-WIDTH HERO IMAGE ON MOBILE (PHONE VIEWS)
   ========================================================================== */
.header-back-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--secondary);
  cursor: pointer;
  padding: 8px 12px 8px 4px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
  position: relative;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}
.header-back-btn:hover,
.header-back-btn:active {
  color: var(--primary);
  background: var(--parchemin-light);
}
[dir="rtl"] .header-back-btn i {
  transform: rotate(180deg);
}

.ali-item-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  z-index: 4;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .header-back-btn {
    display: inline-flex;
  }

  /* Hide breadcrumb on phone views like AliExpress */
  .product-detail-container > .st-36eb49 {
    display: none !important;
  }

  /* Remove container side padding and top space so image sits directly below header */
  .container.product-detail-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    max-width: 100% !important;
  }

  /* Full-width edge-to-edge AliExpress main image */
  .product-gallery-col {
    width: 100%;
    margin: 0;
  }

  .product-main-image-viewport {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1.18 !important;
    height: auto !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: none !important;
    margin-bottom: 12px !important;
    background: #FFFFFF !important;
    touch-action: pan-y;
  }

  .product-main-image-viewport img,
  #mainProductImage {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }

  /* Maintain thumbnail images underneath like in the current app */
  .gallery-thumbs-wrapper {
    padding: 2px 16px 14px !important;
    box-sizing: border-box;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-thumbs-wrapper::-webkit-scrollbar {
    display: none;
  }

  /* Gallery sub-elements (live viewers, reassurance badges) maintain side padding */
  #liveViewersBannerBox,
  .product-gallery-col > .st-5d77d2 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  /* Maintain information and COD form exactly like the old version with side padding */
  .product-order-col {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
    width: 100%;
  }

  /* Long description maintains side padding */
  .product-detail-container > .st-e1e3d6 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
}

/* ==========================================================================
   RICH PRODUCT DESCRIPTION (TEXT, IMAGES & VIDEOS)
   ========================================================================== */
.rich-product-description {
  line-height: 1.75;
  color: var(--text);
  font-size: 0.98rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.rich-product-description p {
  margin-bottom: 14px;
}
.rich-product-description img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--radius-md, 8px);
  margin: 14px 0;
  display: block;
}
.rich-product-description iframe,
.rich-product-description video {
  max-width: 100% !important;
  width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius-md, 8px);
  margin: 16px 0;
  border: none;
}
.rich-product-description h1,
.rich-product-description h2,
.rich-product-description h3,
.rich-product-description h4 {
  color: var(--secondary);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.rich-product-description ul,
.rich-product-description ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.rich-product-description table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.rich-product-description table th,
.rich-product-description table td {
  border: 1px solid var(--border, #E2E8F0);
  padding: 8px 12px;
}



