/* ==========================================================================
   Shakeel Watch and Optical — Master Luxury Stylesheet
   Conforming to Zanderio Installation Eligibility Criteria
   Pull Bazar, Urban, Main Bazar Sahiwal, 57000, Pakistan
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #070B14;
  --bg-secondary: #0D1322;
  --bg-card: #121A2F;
  --bg-card-hover: #17223D;
  --bg-elevated: #1B2642;
  --bg-overlay: rgba(7, 11, 20, 0.85);

  /* Gold & Metallic Accents */
  --gold-primary: #C5A059;
  --gold-light: #E5C378;
  --gold-bright: #F5D77F;
  --gold-dark: #8C6D2D;
  --gold-gradient: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #996515 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);
  --gold-glow-strong: 0 0 35px rgba(212, 175, 55, 0.45);

  /* Typography Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-gold: #E5C378;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(197, 160, 89, 0.35);
  --border-gold-hover: rgba(212, 175, 55, 0.7);

  /* Functional Accents */
  --accent-green: #10B981;
  --accent-green-dark: #059669;
  --accent-red: #EF4444;
  --whatsapp-color: #25D366;
  --whatsapp-dark: #128C7E;

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

  /* Layout & Spacing */
  --max-width: 1320px;
  --header-height: 80px;
  --topbar-height: 38px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

input, select, textarea {
  font-family: inherit;
}

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

/* --------------------------------------------------------------------------
   3. Top Announcement Ticker Bar
   -------------------------------------------------------------------------- */
.top-ticker-bar {
  background: #04070D;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  font-size: 0.825rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1001;
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-height);
  padding: 0 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ticker-item i {
  color: var(--gold-light);
  font-size: 0.85rem;
}

.ticker-item a:hover {
  color: var(--gold-light);
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.live-status-pill.closed {
  background: rgba(239, 68, 68, 0.12);
  color: var(--accent-red);
  border-color: rgba(239, 68, 68, 0.3);
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

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

/* --------------------------------------------------------------------------
   4. Header & Navigation (Sticky & Luxury Glassmorphic)
   -------------------------------------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--border-gold);
}

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

/* Brand Logo */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
  transition: var(--transition);
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: translateY(-1px);
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.4));
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.925rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
}

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

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

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

/* Header Action Controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.header-icon-btn:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-gradient);
  color: #070B14;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  border: 1px solid #070B14;
}

.header-tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.header-tel-btn:hover {
  background: var(--gold-primary);
  color: #070B14;
  box-shadow: var(--gold-glow);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.3rem;
}

/* --------------------------------------------------------------------------
   5. Hero Section (Horological Editorial)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 40%, rgba(26, 38, 68, 0.7) 0%, rgba(7, 11, 20, 0.98) 70%),
              url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  background-blend-mode: overlay;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #070B14 0%, rgba(7, 11, 20, 0.85) 45%, rgba(7, 11, 20, 0.4) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 1.5rem;
}

.hero-content {
  max-width: 650px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.hero-title .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.rating-stars {
  color: #F59E0B;
  display: flex;
  gap: 0.15rem;
  font-size: 0.85rem;
}

.rating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
}

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

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold-gradient);
  color: #070B14;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transition: var(--transition);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.5);
  color: #000000;
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-whatsapp-hero:hover {
  background: var(--whatsapp-color);
  color: #FFFFFF;
  border-color: var(--whatsapp-color);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Hero Showcase Card */
.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

.showcase-frame {
  position: relative;
  background: linear-gradient(145deg, #131B30 0%, #0D1322 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--gold-glow);
  max-width: 420px;
  width: 100%;
}

.showcase-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  background: #070B14;
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-frame:hover .showcase-img-wrap img {
  transform: scale(1.05);
}

.showcase-floating-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.showcase-details {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-watch-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.showcase-watch-specs {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.showcase-price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-family: var(--font-sans);
}

/* --------------------------------------------------------------------------
   6. Trust Badges & Retail Credibility Bar
   -------------------------------------------------------------------------- */
.trust-bar-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.25rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(197, 160, 89, 0.06);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.925rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.trust-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. Filter & Catalog Controls
   -------------------------------------------------------------------------- */
.catalog-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  position: relative;
}

.catalog-controls {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.catalog-top-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.catalog-search-input {
  width: 100%;
  background: rgba(7, 11, 20, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.2rem 0.75rem 2.8rem;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.catalog-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.sort-select-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sort-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.sort-select {
  background: rgba(7, 11, 20, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.sort-select:focus {
  border-color: var(--gold-primary);
}

/* Category Filter Pills */
.category-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.cat-pill-btn {
  white-space: nowrap;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.825rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.cat-pill-btn i {
  color: var(--gold-light);
  font-size: 0.8rem;
}

.cat-pill-btn:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.cat-pill-btn.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #070B14;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cat-pill-btn.active i {
  color: #070B14;
}

/* --------------------------------------------------------------------------
   9. Product Cards Grid (Strictly Watches)
   -------------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 160, 89, 0.15);
}

.product-image-box {
  position: relative;
  width: 100%;
  height: 280px;
  background: #05080F;
  overflow: hidden;
}

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

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

/* Badges */
.product-badge-group {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}

.badge-tag {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-tag.original {
  background: rgba(7, 11, 20, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  backdrop-filter: blur(6px);
}

.badge-tag.warranty {
  background: rgba(16, 185, 129, 0.85);
  color: #FFFFFF;
}

.badge-tag.featured {
  background: var(--gold-gradient);
  color: #070B14;
}

/* Quick Action Buttons on Hover */
.product-hover-actions {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 3;
}

.product-card:hover .product-hover-actions {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.hover-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(7, 11, 20, 0.9);
  border: 1px solid var(--border-gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.hover-action-btn:hover {
  background: var(--gold-gradient);
  color: #070B14;
  border-color: transparent;
  transform: scale(1.1);
}

.hover-action-btn.active-wish {
  color: #EF4444;
}

/* Product Info */
.product-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-tag {
  font-size: 0.725rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-specs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.spec-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.725rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Pricing in PKR strictly */
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 1.1rem;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-bright);
  font-family: var(--font-sans);
}

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

.price-savings {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  margin-left: auto;
}

/* Card Button Actions */
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.btn-add-cart {
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.5px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--gold-gradient);
  color: #070B14;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-buy-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-buy-whatsapp:hover {
  background: var(--whatsapp-color);
  color: #FFFFFF;
  border-color: var(--whatsapp-color);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Empty Catalog State */
.empty-catalog-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  background: var(--bg-secondary);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
}

.empty-catalog-state i {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   10. Physical Storefront & Sahiwal Maps Showcase (Zanderio Requirement)
   -------------------------------------------------------------------------- */
.storefront-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.storefront-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.storefront-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.store-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.store-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.storefront-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.storefront-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.store-details-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.store-detail-card:hover {
  background: rgba(197, 160, 89, 0.05);
  border-color: var(--border-gold);
}

.store-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.store-card-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.store-card-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.store-card-content a {
  color: var(--gold-light);
  font-weight: 600;
}

.store-card-content a:hover {
  text-decoration: underline;
}

.storefront-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-maps-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold-gradient);
  color: #070B14;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-maps-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  color: #000;
}

.btn-call-direct {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
}

.btn-call-direct:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Interactive Map Card */
.storefront-map-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.map-header-bar {
  background: #090E1B;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

.map-plus-code {
  font-size: 0.75rem;
  color: var(--gold-light);
  background: rgba(197, 160, 89, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
}

.map-iframe-container {
  width: 100%;
  height: 380px;
  position: relative;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.map-footer-bar {
  padding: 0.75rem 1.25rem;
  background: #090E1B;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   11. Customer Reviews Section (5.0 Stars Proof - 6 Real Reviews)
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.reviews-summary-card {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(13, 19, 34, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.score-display-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.big-rating-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.rating-stars-lg {
  color: #F59E0B;
  font-size: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.rating-count-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.reviews-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

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

.review-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #070B14;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.reviewer-location {
  font-size: 0.775rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.google-verified-icon {
  color: #4285F4;
  font-size: 1.1rem;
}

.review-stars {
  color: #F59E0B;
  display: flex;
  gap: 0.15rem;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-item-purchased {
  font-size: 0.775rem;
  color: var(--gold-light);
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* --------------------------------------------------------------------------
   12. Slide-out Shopping Cart Drawer
   -------------------------------------------------------------------------- */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #0B1120;
  border-left: 1px solid var(--border-gold);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.8);
}

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

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

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #FFFFFF;
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cart-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: var(--accent-red);
}

.cart-delivery-progress {
  padding: 0.85rem 1.5rem;
  background: rgba(197, 160, 89, 0.08);
  border-bottom: 1px solid var(--border-subtle);
}

.delivery-progress-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.progress-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 0.4s ease;
}

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

.cart-empty-state {
  margin: auto;
  text-align: center;
  padding: 2rem;
}

.cart-empty-state i {
  font-size: 3.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.cart-empty-state h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.cart-empty-state p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  transition: var(--transition);
}

.cart-item-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-gold);
}

.cart-item-img {
  width: 75px;
  height: 75px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #070B14;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.qty-control-group {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.15rem;
  margin-top: 0.25rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.qty-btn:hover {
  color: var(--gold-light);
}

.qty-display {
  padding: 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
}

.cart-item-remove-btn {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.5rem;
  transition: var(--transition);
}

.cart-item-remove-btn:hover {
  color: var(--accent-red);
}

.cart-drawer-footer {
  padding: 1.5rem;
  background: #080D18;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-pricing-summary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.pricing-row.total-row {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.65rem;
  margin-top: 0.25rem;
}

.pricing-row.total-row .total-amount {
  color: var(--gold-bright);
  font-size: 1.3rem;
}

.btn-checkout-drawer {
  background: var(--gold-gradient);
  color: #070B14;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-checkout-drawer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
  color: #000;
}

/* --------------------------------------------------------------------------
   13. Pakistani Frictionless Checkout Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.checkout-modal-card {
  background: #0F1629;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--gold-glow);
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: var(--transition);
}

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

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

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: var(--accent-red);
}

.checkout-modal-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
}

/* Checkout Form */
.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group label span.required {
  color: var(--accent-red);
}

.form-control {
  background: rgba(7, 11, 20, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #FFFFFF;
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.country-code-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}

/* Shipping Options Radio Group */
.shipping-options-list, .payment-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.custom-radio-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.custom-radio-card:hover {
  background: rgba(197, 160, 89, 0.06);
  border-color: var(--border-gold);
}

.custom-radio-card input[type="radio"] {
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
}

.radio-card-content {
  flex: 1;
}

.radio-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
}

.radio-card-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.radio-card-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Order Summary Sidebar in Checkout */
.checkout-summary-sidebar {
  background: rgba(7, 11, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order-items-mini-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 220px;
  overflow-y: auto;
}

.mini-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.825rem;
}

.mini-item-name {
  color: var(--text-secondary);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.mini-item-price {
  font-weight: 700;
  color: #FFFFFF;
}

.btn-place-order {
  background: var(--gold-gradient);
  color: #070B14;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  width: 100%;
}

.btn-place-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.55);
  color: #000;
}

/* --------------------------------------------------------------------------
   14. Order Confirmation & Receipt Modal
   -------------------------------------------------------------------------- */
.confirmation-card {
  max-width: 620px;
  text-align: center;
  padding: 2.5rem;
  background: #0E1528;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0,0,0,0.9), var(--gold-glow-strong);
}

.confirmation-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem auto;
  animation: scalePop 0.5s ease;
}

@keyframes scalePop {
  0% { transform: scale(0.5); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.confirmation-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.order-id-badge {
  display: inline-block;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.confirmation-message {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.receipt-box {
  background: rgba(7, 11, 20, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.receipt-row strong {
  color: #FFFFFF;
}

.receipt-row.total {
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.65rem;
  margin-top: 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.btn-confirm-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

.btn-confirm-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.btn-print-receipt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
}

.btn-print-receipt:hover {
  border-color: var(--gold-primary);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   15. Product Quick View Modal
   -------------------------------------------------------------------------- */
.quickview-card {
  max-width: 900px;
  background: #0E1528;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--gold-glow);
}

.quickview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quickview-img-box {
  background: #070B14;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.quickview-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quickview-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #FFFFFF;
  line-height: 1.3;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.825rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.specs-table td {
  padding: 0.55rem 0;
}

.specs-table td:first-child {
  color: var(--text-muted);
  width: 42%;
}

.specs-table td:last-child {
  color: #FFFFFF;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   16. Floating WhatsApp Business Widget
   -------------------------------------------------------------------------- */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-chat-bubble {
  background: #0E1628;
  border: 1px solid var(--border-gold);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: bounceSoft 3s infinite ease-in-out;
}

@keyframes bounceSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.whatsapp-float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: #1EBE5D;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* --------------------------------------------------------------------------
   17. Official Store Footer (Verified Zanderio Details)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #04070D;
  border-top: 1px solid var(--border-gold);
  color: var(--text-muted);
  font-size: 0.875rem;
  padding-top: 4.5rem;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.footer-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  width: fit-content;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-gradient);
}

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

.footer-links-list a {
  color: var(--text-secondary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--gold-light);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

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

/* Zanderio Compliance Seal */
.zanderio-seal-box {
  margin-top: 1.25rem;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.seal-icon {
  color: var(--gold-light);
  font-size: 1.5rem;
}

.seal-text-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
}

.seal-text-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.75rem 0;
  background: #020408;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
}

.payment-badges-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   18. Policy Modals (Warranty, Returns, Shipping, Authenticity)
   -------------------------------------------------------------------------- */
.policy-modal-card {
  max-width: 680px;
  background: #0E1628;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

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

.policy-modal-body {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.policy-modal-body h4 {
  color: var(--gold-light);
  margin: 1.2rem 0 0.4rem 0;
  font-size: 1rem;
}

.policy-modal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   19. Toast Notification System
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  top: 100px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast-item {
  background: #0E172E;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FFFFFF;
  font-size: 0.875rem;
  pointer-events: auto;
  animation: slideInToast 0.3s ease;
  min-width: 280px;
}

.toast-item.success i {
  color: var(--accent-green);
}

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

/* --------------------------------------------------------------------------
   20. Mobile Navigation & Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-badges-row, .hero-cta-group {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .storefront-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-ticker-bar {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #070B14;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }

  .main-nav.mobile-active {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-tel-btn {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .catalog-controls {
    padding: 1rem;
  }

  .checkout-modal-body {
    grid-template-columns: 1fr;
  }

  .quickview-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-logo-img {
    height: 42px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-gold, .btn-whatsapp-hero {
    width: 100%;
  }

  .whatsapp-chat-bubble {
    display: none;
  }
}
