/* ============================================================
   Rajendra Showroom — Luxury Crockery Store Stylesheet
   ============================================================ */


/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  --bg:          #FCFBF7;
  --bg-warm:     #F7F3EB;
  --bg-dark:     #0D2818; /* Vigneto Deep Emerald Green / Dark Charcoal */
  --text:        #1C1C1A;
  --text-light:  #5C5B55;
  --text-muted:  #94928A;
  --gold:        #D4AF37; /* Metallic Gold */
  --gold-light:  #F3E5AB;
  --gold-dark:   #997A15;
  --border:      #EBE7DE;
  --border-dark: #D4CEBF;
  --white:       #FFFFFF;
  --red:         #C0392B;
  --green:       #1E824C;
  --shadow-sm:   0 2px 10px rgba(13,40,24,0.06);
  --shadow-md:   0 6px 24px rgba(13,40,24,0.12);
  --shadow-lg:   0 12px 48px rgba(13,40,24,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Announcement Bar (Vigneto Style) ───────────────────── */
.announcement-bar {
  background: var(--bg-dark);
  color: var(--gold-light);
  text-align: center;
  padding: 9px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
.announcement-bar::-webkit-scrollbar { display: none; }

/* ─── Vigneto Trust Badges Grid ──────────────────────────── */
.vigneto-trust-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}
.vigneto-trust-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vigneto-trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
}
.vigneto-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.vigneto-trust-info {
  display: flex;
  flex-direction: column;
}
.vigneto-trust-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}
.vigneto-trust-sub {
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .vigneto-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 550px) {
  .vigneto-trust-grid { grid-template-columns: 1fr; }
}

/* ─── Vigneto Category Circles ────────────────────────────── */
.vigneto-category-section {
  max-width: 1400px;
  margin: 40px auto 20px;
  padding: 0 24px;
  text-align: center;
}
.vigneto-cat-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--text);
}
.vigneto-cat-sub {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.vigneto-category-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.vigneto-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 120px;
  transition: var(--transition);
}
.vigneto-cat-card:hover { transform: translateY(-4px); }
.vigneto-cat-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-dark);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.vigneto-cat-card:hover .vigneto-cat-circle {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(212,175,55,0.25);
}
.vigneto-cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vigneto-cat-card:hover .vigneto-cat-circle img {
  transform: scale(1.1);
}
.vigneto-cat-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  text-align: center;
}

/* ─── Mega Menu Dropdown (Vigneto Style) ─────────────────── */
.nav-item-has-mega {
  position: relative;
}
.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: -100px;
  width: 780px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 1000;
}
.nav-item-has-mega:hover .mega-menu-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mega-col-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.mega-links a {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  padding: 5px 0;
  transition: var(--transition);
}
.mega-links a:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-wrap img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text);
}
.logo-text .brand-tagline {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}

/* Search */
.search-wrap {
  flex: 1;
  max-width: 560px;
  position: relative;
}
.search-wrap input {
  width: 100%;
  padding: 10px 46px 10px 18px;
  border: 1.5px solid var(--border-dark);
  border-radius: 50px;
  font-size: 13.5px;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
.search-wrap input:focus {
  border-color: var(--gold);
  background: var(--white);
}
.search-wrap input::placeholder { color: var(--text-muted); }
.search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 15px;
  transition: var(--transition);
}
.search-btn:hover { color: var(--gold); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.header-actions a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-light);
  transition: var(--transition);
}
.header-actions a:hover { color: var(--gold); }
.cart-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--bg-dark);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.cart-trigger:hover { background: var(--gold-dark); }
.cart-trigger .cart-icon { font-size: 16px; }
.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Nav Bar ────────────────────────────────────────────── */
.site-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item {
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-item:hover,
.nav-item.active { color: var(--text); border-bottom-color: var(--gold); }
.nav-divider { flex: 1; }
.whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: #25D366;
  letter-spacing: 0.5px;
  padding: 11px 0;
}

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--bg-warm);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 6s ease;
}
.hero:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,28,26,0.65) 0%, rgba(28,28,26,0.15) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.hero-content { max-width: 500px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1.5px solid var(--gold-dark);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ─── Features Strip ─────────────────────────────────────── */
.features-strip {
  background: var(--bg-dark);
  padding: 18px 24px;
}
.features-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
}
.feature-icon { font-size: 18px; }
.feature-text { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 400; }

/* ─── Main Layout ────────────────────────────────────────── */
.main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: start;
}

/* ─── Sidebar ────────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: 110px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.sidebar-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.category-list {
  padding: 10px 0;
  max-height: 380px;
  overflow-y: auto;
}
.category-list::-webkit-scrollbar {
  width: 5px;
}
.category-list::-webkit-scrollbar-track {
  background: transparent;
}
.category-list::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 10px;
}
.category-list::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}
.cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.cat-item:hover { background: var(--bg-warm); color: var(--text); }
.cat-item.active {
  background: var(--bg-warm);
  color: var(--text);
  border-left-color: var(--gold);
  font-weight: 500;
}
.cat-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}
.cat-item:hover .cat-icon,
.cat-item.active .cat-icon,
.mm-cat-item:hover .cat-icon,
.mm-cat-item.active .cat-icon {
  color: var(--gold);
}
.cat-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-warm);
  padding: 2px 7px;
  border-radius: 50px;
}

/* Price Filter */
.sidebar-section {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
}
.sidebar-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.price-range-wrap { display: flex; flex-direction: column; gap: 10px; }
.price-range-inputs { display: flex; gap: 10px; }
.price-input {
  flex: 1;
  padding: 7px 10px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 13px;
  text-align: center;
  outline: none;
  transition: var(--transition);
  background: var(--bg);
}
.price-input:focus { border-color: var(--gold); }
.price-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) 70%, var(--border-dark) 70%, var(--border-dark) 100%);
  outline: none;
  cursor: pointer;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
  cursor: pointer;
}
.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  background-color: var(--gold-dark);
}
.btn-apply-filter {
  width: 100%;
  padding: 9px;
  background: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-apply-filter:hover { background: var(--gold-dark); }

/* ─── Products Section ───────────────────────────────────── */
.products-section {}
.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.products-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}
.products-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}
.products-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.sort-select:focus { border-color: var(--gold); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  padding: 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-light);
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.products-grid.list-view { grid-template-columns: 1fr; }
.products-grid.list-view .product-card { flex-direction: row; height: 160px; }
.products-grid.list-view .product-img-wrap { width: 160px; flex-shrink: 0; }

/* Product Card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-dark);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F5F2EC 0%, #EDE8DE 100%);
  color: var(--border-dark);
  gap: 8px;
}
.placeholder-icon { font-size: 40px; opacity: 0.35; }
.placeholder-text { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.4; }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-sale { background: var(--bg-dark); color: var(--gold-light); }
.badge-new  { background: var(--gold); color: var(--white); }

.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { color: #e74c3c; transform: scale(1.1); }

.product-info { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.rating-val { font-size: 12px; font-weight: 500; color: var(--text); }
.rating-count { font-size: 11px; color: var(--text-muted); }

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 0;
}
.price-current {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-discount {
  font-size: 11px;
  font-weight: 600;
  color: #2ECC71;
  background: rgba(46,204,113,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.product-actions {
  display: flex;
  gap: 8px;
}
.btn-cart {
  flex: 1;
  padding: 9px 12px;
  background: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-align: center;
}
.btn-cart:hover { background: var(--gold-dark); }
.btn-wa {
  padding: 9px 12px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  transition: var(--transition);
}
.btn-wa:hover { background: #20BA5A; }

/* No Products */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.no-products .no-icon { font-size: 60px; margin-bottom: 16px; opacity: 0.3; }
.no-products h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 8px; color: var(--text-light); }

/* ─── Cart Drawer ─────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,28,26,0.45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1010;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  border-left: 1px solid var(--border);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-head h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}
.cart-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-light);
  transition: var(--transition);
}
.cart-close-btn:hover { background: var(--border); color: var(--text); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.cart-empty .empty-icon { font-size: 50px; margin-bottom: 12px; opacity: 0.3; }
.cart-empty p { font-size: 14px; }

.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--gold-dark); font-weight: 500; }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  font-size: 14px;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--bg-dark); color: var(--white); border-color: var(--bg-dark); }
.qty-val { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; }
.cart-item-remove { margin-left: auto; color: var(--text-muted); font-size: 18px; transition: var(--transition); }
.cart-item-remove:hover { color: var(--red); }

.cart-foot {
  padding: 20px 22px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.cart-totals { margin-bottom: 16px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.cart-total-row.grand {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
  margin-bottom: 0;
}
.btn-whatsapp-checkout {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  margin-bottom: 10px;
}
.btn-whatsapp-checkout:hover { background: #20BA5A; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-continue-shopping {
  width: 100%;
  padding: 11px;
  border: 1.5px solid var(--border-dark);
  color: var(--text-light);
  border-radius: var(--radius);
  font-size: 13px;
  transition: var(--transition);
}
.btn-continue-shopping:hover { border-color: var(--text); color: var(--text); }

/* ─── Product Modal ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.modal-overlay.visible { opacity: 1; pointer-events: all; }
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  transform: translateY(100%);
  z-index: 1060;
  background: var(--white);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.modal-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 100vh;
  background: var(--white);
}
.modal-img-side {
  background: var(--bg-warm);
  height: 100vh;
  position: sticky;
  top: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  border-right: 1px solid var(--border);
}
.modal-img-side img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Product Gallery in Modal ─── */
.modal-gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}
.modal-main-img-wrap {
  width: 100%;
  flex: 1;
  height: 0;
  min-height: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: opacity 0.15s ease;
}
.modal-thumbnails {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: thin;
}
.modal-thumb {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
  background: var(--white);
}
.modal-thumb:hover {
  border-color: var(--border-dark);
}
.modal-thumb.active {
  border-color: var(--gold);
}
.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* ─── Bulk Order Notice ─── */
.bulk-order-notice {
  margin-top: 4px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bulk-order-notice a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  transition: var(--transition);
}
.bulk-order-notice a:hover {
  color: var(--gold-dark);
}
.modal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--border-dark);
}
.modal-placeholder .mp-icon { font-size: 70px; opacity: 0.3; }

/* Modal Info Layout */
.modal-info { 
  padding: 60px 40px 40px; 
  display: flex; 
  flex-direction: column; 
  background: #fff;
  position: relative;
}
.modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 18px;
  transition: var(--transition);
  z-index: 1100;
  cursor: pointer;
}
.modal-close:hover {
  background: var(--bg-warm);
  transform: rotate(90deg);
}
.modal-cat { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--text-muted); 
  margin-bottom: 8px; 
}
.modal-name { 
  font-family: var(--font-serif); 
  font-size: 28px; 
  font-weight: 500; 
  line-height: 1.25; 
  margin-bottom: 12px; 
  color: var(--text);
}
.modal-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.modal-desc { 
  font-size: 14px; 
  line-height: 1.7; 
  color: var(--text-light); 
  margin-bottom: 20px; 
}
.modal-price { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 4px; 
}
.modal-price .price-original { 
  text-decoration: line-through; 
  color: #888; 
  font-size: 16px; 
  font-weight: 400; 
}
.modal-price .price-current { 
  font-family: var(--font-serif);
  font-size: 24px; 
  font-weight: 600;
  color: var(--text);
}
.modal-price .price-discount-badge {
  background: #fff;
  border: 1.5px solid var(--border-dark);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  margin-left: 4px;
}
.modal-tax-notice {
  font-size: 12px;
  color: #888;
  margin-bottom: 24px;
}

/* Quantity Selector Styles */
.modal-qty-container {
  margin-bottom: 20px;
}
.modal-qty-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.modal-qty-selector {
  display: inline-flex;
  border: 1.5px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.qty-adjust-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.qty-adjust-btn:hover {
  background: var(--bg-warm);
  color: var(--text);
}
.modal-qty-input {
  width: 48px;
  border: none;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  background: none;
  pointer-events: none;
}

/* Color Selector Swatches */
.modal-color-selector {
  margin-bottom: 24px;
}
.color-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.color-swatches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.color-swatch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--border-dark);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text);
  outline: none;
}
.color-swatch-btn:hover {
  background: var(--bg-warm);
  border-color: var(--text-light);
}
.color-swatch-btn.active {
  border: 1.5px solid #d81b60 !important;
  background: #fff5f7 !important;
  color: #d81b60 !important;
  box-shadow: 0 2px 8px rgba(216, 27, 96, 0.15);
}
.color-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.15);
}

/* Size Selector Swatches */
.modal-size-selector {
  margin-bottom: 24px;
}
.size-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.size-swatches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.size-swatch-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text);
  outline: none;
}
.size-swatch-btn .size-name {
  font-size: 13px;
  font-weight: 700;
}
.size-swatch-btn .size-price {
  font-size: 11.5px;
  color: var(--text-light);
  font-weight: 500;
}
.size-swatch-btn:hover {
  background: var(--bg-warm);
  border-color: var(--text-light);
}
.size-swatch-btn.active {
  border: 1.5px solid #d81b60 !important;
  background: #fff5f7 !important;
  color: #d81b60 !important;
  box-shadow: 0 2px 8px rgba(216, 27, 96, 0.15);
}
.size-swatch-btn.active .size-price {
  color: #d81b60 !important;
  font-weight: 600;
}


/* Express Shipping Notice */
.express-shipping-notice {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.express-shipping-notice a {
  color: #27AE60;
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}
.express-shipping-notice a:hover {
  color: #219653;
}

/* Modal Action Buttons (Shopify-style) */
.modal-actions { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  margin-top: 10px; 
}
.btn-add-cart-lg {
  width: 100%;
  padding: 14px;
  background: #fff;
  color: #1c1c1a;
  border: 1.5px solid #1c1c1a;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-add-cart-lg:hover { 
  background: var(--bg-warm); 
}
.btn-wa-lg {
  width: 100%;
  padding: 14px;
  background: #1c1c1a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-wa-lg:hover { 
  background: #333; 
}

/* ─── Toast ───────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-dark);
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
  max-width: 340px;
}
.toast.toast-success { border-left: 3px solid #2ECC71; }
.toast.toast-info    { border-left: 3px solid var(--gold); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(30px); }
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 30px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand {}
.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(0.9);
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  max-width: 250px;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); }

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-row { display: flex; align-items: flex-start; gap: 10px; }
.contact-icon { font-size: 15px; color: var(--gold); margin-top: 1px; }
.contact-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.contact-text a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.contact-text a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── Floating WhatsApp ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  z-index: 800;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.whatsapp-float .wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ─── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-wrapper { grid-template-columns: 200px 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 44px; }
  .hero-overlay { padding: 0 40px; }
}
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; }
  .search-wrap { order: 3; flex: 100%; max-width: 100%; }
  .main-wrapper { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: auto; }
  .hero { height: 380px; }
  .hero-title { font-size: 34px; }
  .modal-inner { grid-template-columns: 1fr; min-height: auto; }
  .modal-img-side { height: auto; min-height: 380px; position: relative; border-right: none; border-radius: 0; }
  .modal-main-img-wrap { height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cart-drawer { width: 100%; }
  .wishlist-drawer { width: 100%; }
}
@media (max-width: 480px) {
  .features-inner { gap: 24px; }
  .hero-overlay { padding: 0 24px; }
  .hero-title { font-size: 28px; }
  .hero-cta { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   LUXURY FULL-PAGE DETAILS MODAL LAYOUT & COMPONENTS
   ============================================================ */

/* Top Navigation Header inside Fullscreen modal */
.modal-header-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1090;
}
.mhn-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mhn-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.mhn-back-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.mhn-back-btn:hover {
  color: var(--text);
}

/* Adjust float close placement to fit header on desktop */
.modal-close {
  top: 13px;
  right: 40px;
}

/* Sticky image column height adjustment */
.modal-img-side {
  height: calc(100vh - 70px);
  top: 70px;
}

/* Payment trust badges */
.payment-trust-container {
  margin-top: 35px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
}
.payment-trust-title {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-light);
}
.payment-badges-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.payment-badge-card {
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 38px;
  box-shadow: var(--shadow-xs);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.payment-badge-card.visa { color: #0E4595; }
.payment-badge-card.paytm { color: #00B9F5; text-transform: none; }
.payment-badge-card.mastercard {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
}
.payment-badge-card.mastercard::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #EB001B;
  box-shadow: 8px 0 0 rgba(247,158,27,0.85);
  margin-right: 4px;
}
.payment-badge-card.upi { color: #0F8F56; font-style: italic; }
.payment-badge-card.gpay {
  color: #1A73E8;
  font-weight: 500;
}
.payment-badge-card.gpay span {
  font-weight: 700;
}
.payment-badge-card.phonepe { color: #5F259F; text-transform: none; }

/* Feature Circles */
.feature-circles-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 30px;
  text-align: center;
}
.feature-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-circle-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid #8D7B68;
  background: #F9F7F5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8D7B68;
  margin-bottom: 12px;
  transition: var(--transition);
}
.feature-circle-icon svg {
  width: 28px;
  height: 28px;
}
.feature-circle-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8D7B68;
  line-height: 1.3;
}
.feature-circle-item:hover .feature-circle-icon {
  background: #8D7B68;
  color: var(--white);
  transform: translateY(-3px);
}

/* Cross-Sell listing */
.cross-sell-section {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 24px;
  margin-bottom: 30px;
}
.cross-sell-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.cross-sell-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cross-sell-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.cross-sell-item:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
  background: var(--bg-warm);
}
.cross-sell-img {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  overflow: hidden;
}
.cross-sell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cross-sell-info {
  flex: 1;
}
.cross-sell-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}
.cross-sell-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

/* Description Specifications & About The Product details */
.modal-desc-para {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}
.product-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-spec-list li {
  font-size: 13.5px;
  color: var(--text-light);
  display: flex;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 6px;
}
.product-spec-list li strong {
  color: var(--text);
  min-width: 130px;
  font-weight: 600;
}
.about-product-section {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 24px;
}
.about-product-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.about-product-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-product-highlights li {
  font-size: 13.5px;
  color: var(--text-light);
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
}
.about-product-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 16px;
}

/* Related Products ("You may also like") bottom section */
.related-products-section {
  background: #F9F7F5;
  border-top: 1px solid var(--border);
  padding: 60px 40px;
}
.related-products-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  margin-bottom: 36px;
}
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}
.related-card-img {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background: var(--bg-warm);
  overflow: hidden;
}
.related-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.related-card:hover .related-card-img img {
  transform: scale(1.06);
}
.related-card-info {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-card-name {
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
}
.related-card-price {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: auto;
}
.related-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 50px;
  padding: 1px 8px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Responsive modal tweaks */
@media (max-width: 768px) {
  .modal-header-nav {
    padding: 0 16px;
    height: 60px;
  }
  .modal-close {
    top: 8px;
    right: 16px;
  }
  .modal-img-side {
    height: auto;
    min-height: 350px;
    top: 0;
  }
  .modal-info {
    padding: 30px 20px;
  }
  .feature-circles-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
  .related-products-section {
    padding: 40px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   UPI Payment Gateway Modal
   ═══════════════════════════════════════════════════════════ */

.upi-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.upi-modal.open {
  pointer-events: all;
  opacity: 1;
}
.upi-modal-inner {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 420px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 20px 80px rgba(0,0,0,0.22), 0 4px 20px rgba(0,0,0,0.10);
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.upi-modal.open .upi-modal-inner {
  transform: scale(1) translateY(0);
}

/* Header */
.upi-header {
  background: linear-gradient(135deg, #5f259f 0%, #7b2fbe 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.upi-header-left { display: flex; align-items: center; gap: 12px; }
.upi-lock-icon { font-size: 22px; }
.upi-brand { font-size: 15px; font-weight: 700; }
.upi-secure-text { font-size: 11px; opacity: 0.75; margin-top: 1px; }
.upi-amount { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }

/* Screen wrapper */
.upi-screen { padding: 24px; }
.upi-instruction {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

/* App grid */
.upi-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.upi-app-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 8px;
  border: 1.5px solid #e8e4dc;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  transition: all 0.2s ease;
  font-family: 'Jost', sans-serif;
}
.upi-app-btn:hover {
  border-color: #5f259f;
  background: #f9f4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(95, 37, 159, 0.15);
}
.upi-app-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
.gpay-icon    { background: linear-gradient(135deg, #4285F4, #34A853); }
.phonepe-icon { background: linear-gradient(135deg, #5f259f, #7b2fbe); }
.paytm-icon   { background: linear-gradient(135deg, #00BAF2, #0055AA); }
.bhim-icon    { background: linear-gradient(135deg, #FF6B00, #FF9500); }

/* Divider */
.upi-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.upi-divider::before, .upi-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e4dc;
}

/* UPI ID input */
.upi-id-form {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.upi-id-input-wrap { position: relative; flex: 1; }
.upi-id-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d0cac0;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.upi-id-input:focus { border-color: #5f259f; box-shadow: 0 0 0 3px rgba(95,37,159,0.1); }
.upi-verify-btn {
  padding: 11px 18px;
  background: linear-gradient(135deg, #5f259f, #7b2fbe);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}
.upi-verify-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* SSL row */
.upi-ssl-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10.5px;
  color: #999;
}

/* Processing state */
.upi-processing {
  padding: 32px 24px;
  text-align: center;
}
.upi-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid #f0e8ff;
  border-top-color: #5f259f;
  border-radius: 50%;
  animation: upiSpin 0.8s linear infinite;
  margin: 0 auto 18px;
}
@keyframes upiSpin { to { transform: rotate(360deg); } }
.upi-processing-text {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1a;
  margin-bottom: 6px;
}
.upi-processing-sub {
  font-size: 12.5px;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.5;
}
.upi-confirm-btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #27AE60, #2ECC71);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
  font-family: 'Jost', sans-serif;
}
.upi-confirm-btn:hover { opacity: 0.9; }
.upi-fail-btn {
  display: block;
  width: 100%;
  padding: 11px;
  background: rgba(192, 57, 43, 0.08);
  color: #C0392B;
  border: 1.5px solid rgba(192, 57, 43, 0.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
}
.upi-fail-btn:hover { background: #C0392B; color: #fff; }

/* Error screen */
.upi-error-screen {
  padding: 32px 24px;
  text-align: center;
}
.upi-error-icon { font-size: 48px; margin-bottom: 14px; }
.upi-error-screen h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #C0392B; }
.upi-error-screen p { font-size: 13px; color: #888; margin-bottom: 22px; line-height: 1.5; }
.upi-retry-btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #5f259f, #7b2fbe);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  font-family: 'Jost', sans-serif;
}
.upi-cancel-btn {
  display: block;
  width: 100%;
  padding: 11px;
  background: var(--bg-warm);
  color: var(--text-muted);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

/* Close button */
.upi-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.upi-close-btn:hover { background: rgba(255,255,255,0.35); }

/* UTR Verification Box */
.upi-utr-box {
  background: #f9f4ff;
  border: 1.5px solid #d9b8ff;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0 16px;
  text-align: left;
}
.upi-utr-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #5f259f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.upi-utr-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #c9a8f0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1c1c1a;
  letter-spacing: 1px;
  outline: none;
  transition: var(--transition);
  background: #fff;
  font-family: 'Jost', monospace;
}
.upi-utr-input:focus {
  border-color: #5f259f;
  box-shadow: 0 0 0 3px rgba(95,37,159,0.12);
}
.upi-utr-hint {
  font-size: 11px;
  color: #888;
  margin-top: 8px;
  line-height: 1.5;
}
.upi-utr-error {
  font-size: 12px;
  color: #C0392B;
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 8px;
  font-weight: 600;
}

/* Step labels */
.utr-step-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5f259f;
  margin-bottom: 12px;
}

/* QR code display */
.upi-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.upi-qr-img {
  width: 160px;
  height: 160px;
  border: 3px solid #e8e4dc;
  border-radius: 14px;
  padding: 6px;
  background: #fff;
}
.upi-qr-caption {
  font-size: 11px;
  color: #999;
}

/* Manual pay row */
.upi-manual-pay-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f9f4ff;
  border: 1.5px dashed #c9a8f0;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 6px;
}
.upi-vpa-text {
  font-size: 15px;
  font-weight: 700;
  color: #5f259f;
  letter-spacing: 0.5px;
}
.upi-copy-btn {
  padding: 5px 12px;
  background: #5f259f;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Jost', sans-serif;
}
.upi-copy-btn:hover { background: #7b2fbe; }
.upi-copy-btn.copied { background: #27AE60; }

/* Amount reminder */
.upi-amount-reminder {
  text-align: center;
  font-size: 12.5px;
  color: #888;
  margin-bottom: 0;
}

/* Timer */
.upi-timer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: #888;
  margin: 14px 0 12px;
}
.upi-spinner-sm {
  width: 18px;
  height: 18px;
  border: 2.5px solid #f0e8ff;
  border-top-color: #5f259f;
  border-radius: 50%;
  animation: upiSpin 0.8s linear infinite;
  flex-shrink: 0;
}



/* ═══════════════════════════════════════════════════════════
   Product Reviews Section
   ═══════════════════════════════════════════════════════════ */
.reviews-section {
  padding: 36px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.reviews-section-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
}
.reviews-section-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.reviews-avg-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px 22px;
  background: var(--bg-warm);
  border-radius: 14px;
}
.reviews-avg-score {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.reviews-avg-stars { font-size: 20px; letter-spacing: 2px; color: #f5a623; }
.reviews-avg-count { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.reviews-list { display: flex; flex-direction: column; gap: 18px; }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--text); }
.review-date { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.review-stars { font-size: 13px; color: #f5a623; letter-spacing: 1px; }
.review-body { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  color: #27AE60;
  font-weight: 600;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════
   Database Connection Status Badge
   ═══════════════════════════════════════════════════════════ */
.db-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
}
.db-status-badge::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.db-status-badge.online {
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
  border: 1px solid rgba(39, 174, 96, 0.2);
}
.db-status-badge.online::before {
  background: #27AE60;
  box-shadow: 0 0 8px #27AE60;
  animation: pulse-green 2s infinite;
}
.db-status-badge.offline {
  background: rgba(243, 156, 18, 0.1);
  color: #D35400;
  border: 1px solid rgba(243, 156, 18, 0.2);
}
.db-status-badge.offline::before {
  background: #E67E22;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(39, 174, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

/* ============================================================
   MOBILE RESPONSIVENESS AND TOUCH TARGET OPTIMIZATIONS
   ============================================================ */

/* Scrollable Table Wrapper */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

/* Checkout Modal Card (Overrides fullscreen class) */
.checkout-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 1060;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.checkout-modal-card.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
  /* Hide Site Category Navigation in favor of mobile drawer */
  .site-nav {
    display: none !important;
  }
  .sidebar {
    display: none;
  }
  .nav-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 16px;
  }
  .nav-item {
    padding: 12px 14px;
    font-size: 13px;
  }
  .whatsapp-nav {
    padding: 12px 8px;
    margin-left: auto;
  }

  /* Related Products Grid (2 columns on mobile instead of 4) */
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Checkout Modal mobile viewport tweaks */
  .checkout-modal-card {
    max-height: 85vh;
    border-radius: 12px;
  }

  /* Sizing up touch targets for mobile accessibility */
  .qty-adjust-btn, .qty-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .color-swatch-btn, .size-swatch-btn {
    padding: 10px 16px;
    min-height: 44px;
  }
  .product-wishlist {
    width: 44px;
    height: 44px;
    font-size: 18px;
    opacity: 1; /* Make wishlist icon persistent on mobile (no hover state) */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* 2-Column Storefront Grid instead of 1 large card */
  .products-grid:not(.list-view) {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card {
    border-radius: var(--radius);
  }
  .product-info {
    padding: 10px 12px;
  }
  .product-name {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .price-current {
    font-size: 16px;
  }
  .product-rating {
    display: none; /* Hide rating line on tiny phone grids to keep clean spacing */
  }

  /* 2x2 Feature Circles on small screens */
  .feature-circles-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
  }
  .feature-circle-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
  }
  .feature-circle-icon svg {
    width: 20px;
    height: 20px;
  }
  .feature-circle-label {
    font-size: 8.5px;
  }
}

/* ============================================================
   MOBILE MENU DRAWER & TRIGGER STYLING
   ============================================================ */

.mobile-menu-trigger {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-trigger {
    display: block;
    font-size: 26px;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    order: 1;
    z-index: 10;
    padding: 6px;
    line-height: 1;
    margin-right: auto;
    transition: var(--transition);
  }
  .mobile-menu-trigger:active {
    transform: scale(0.9);
    color: var(--gold);
  }
  
  .logo-wrap {
    order: 2;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    z-index: 10;
  }
  .logo-wrap img {
    height: 42px;
  }
  
  .header-actions {
    order: 3;
    margin-left: auto;
    gap: 12px;
  }
  .header-actions .action-text {
    display: none;
  }
  
  .search-wrap {
    order: 4;
    flex: 100%;
    max-width: 100%;
    margin-top: 10px;
  }
  
  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 16px;
  }
  
  .announcement-bar {
    text-align: left;
  }
}

/* Mobile Drawer Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Drawer Container */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.mobile-menu-drawer.open {
  transform: translateX(320px);
}

.mm-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-warm);
}
.mm-head h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.5px;
}
.mm-close-btn {
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}
.mm-close-btn:hover {
  color: var(--text);
}

.mm-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mm-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px;
}
.mm-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mm-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mm-category-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.mm-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.mm-cat-item:hover, .mm-cat-item.active {
  background: var(--bg-warm);
  color: var(--text);
  font-weight: 500;
}
.mm-cat-item.active {
  border-left: 3px solid var(--gold);
}

.mm-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.mm-links li {
  list-style: none;
}
.mm-links a {
  font-size: 14.5px;
  color: var(--text-light);
  transition: var(--transition);
  display: block;
  padding: 2px 0;
}
.mm-links a:hover {
  color: var(--gold-dark);
  padding-left: 4px;
}

/* ─── Store Testimonials/Reviews Section ────────────────── */
.store-reviews-section {
  background: var(--white);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.store-reviews-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.reviews-header-center {
  text-align: center;
  margin-bottom: 50px;
}
.reviews-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
  margin-bottom: 12px;
}
.reviews-main-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}
.reviews-subtitle {
  font-size: 14.5px;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 20px;
}
.reviews-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-warm);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13.5px;
}
.reviews-score-badge .stars {
  color: #f5a623;
  letter-spacing: 1px;
}
.reviews-score-badge .score-text {
  color: var(--text-light);
}

.store-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.store-review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.store-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}
.sr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-bottom: 14px;
}
.sr-info {
  margin-bottom: 10px;
}
.sr-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.sr-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 1px;
}
.sr-stars {
  color: #f5a623;
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.sr-text {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .store-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .store-reviews-section {
    padding: 60px 20px;
  }
  .reviews-main-title {
    font-size: 28px;
  }
}

/* ============================================================
   GOOGLE REVIEW CTA SECTION
   ============================================================ */
.google-review-cta {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e8 100%);
  border-top: 1px solid #ede8e0;
  border-bottom: 1px solid #ede8e0;
  padding: 52px 24px;
}

.google-review-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.google-review-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 260px;
}

.google-g-logo {
  flex-shrink: 0;
  margin-top: 4px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

.google-review-text-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.google-review-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b08450;
}

.google-review-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-top: 2px;
}

.google-review-stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 6px;
}

.gr-star {
  font-size: 20px;
  color: #FBBC05;
  line-height: 1;
  animation: starPulse 2s ease-in-out infinite;
}
.gr-star:nth-child(2) { animation-delay: 0.1s; }
.gr-star:nth-child(3) { animation-delay: 0.2s; }
.gr-star:nth-child(4) { animation-delay: 0.3s; }
.gr-star:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.gr-rating-text {
  font-size: 13px;
  color: #888;
  margin-left: 6px;
  font-weight: 500;
}

.google-review-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
  max-width: 420px;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 50px;
  border: 2px solid #e0dbd2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.google-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.15);
  border-color: #4285F4;
  color: #4285F4;
}

@media (max-width: 640px) {
  .google-review-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .google-review-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }
  .google-review-heading {
    font-size: 22px;
  }
}

/* ─── Wishlist / Registry Drawer & Banner ─── */
.wishlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,28,26,0.45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.wishlist-overlay.visible { opacity: 1; pointer-events: all; }
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1010;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  border-left: 1px solid var(--border);
}
.wishlist-drawer.open { transform: translateX(0); }

.wishlist-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wishlist-head h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}
.wishlist-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.wishlist-close-btn:hover { background: var(--border); color: var(--text); }

.wishlist-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.wishlist-foot {
  padding: 20px 22px;
  background: #fdfdfd;
  border-top: 1px solid var(--border);
}

.wishlist-shared-banner {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.product-wishlist.active {
  background: #fff !important;
  color: #ff4d4d !important;
  border-color: #ff4d4d !important;
  font-size: 20px !important;
}

/* Coupon status styles */
#couponStatusMessage {
  transition: all 0.2s ease;
}

/* Invoice print specific styling */
@media print {
  body * {
    visibility: hidden;
  }
  .invoice-box, .invoice-box * {
    visibility: visible;
  }
  .invoice-box {
    position: absolute;
    left: 0;
    top: 0;
  }
}

/* ─── Integrated Gift Card Modal Styles ─── */
.giftcard-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.giftcard-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.giftcard-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 90%;
  max-width: 820px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10010;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.giftcard-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.giftcard-modal-inner {
  position: relative;
  padding: 36px;
}
.giftcard-modal-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
}
.preset-btn {
  padding: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.preset-btn:hover {
  border-color: var(--text-light);
}
.preset-btn.active {
  border-color: var(--gold);
  background: #fffdf9;
  color: var(--gold-dark);
  box-shadow: 0 2px 8px rgba(191, 160, 106, 0.15);
}

@media (max-width: 768px) {
  .giftcard-modal {
    max-height: 90vh;
    overflow-y: auto;
  }
  .giftcard-modal-inner {
    padding: 36px 20px 20px;
  }
  .giftcard-modal-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ─── Static SEO Collections Section ─── */
.seo-collections-section {
  padding: 80px 24px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seo-collections-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.seo-header {
  text-align: center;
  margin-bottom: 48px;
}
.seo-header h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.seo-header h2 span {
  color: var(--gold-dark);
}
.seo-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.seo-col {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.seo-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(191,160,106,0.08);
  border-color: var(--gold-light);
}
.seo-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-block;
}
.seo-col h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.seo-col p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.seo-col p strong {
  color: var(--text);
  font-weight: 600;
}
@media (max-width: 1024px) {
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .seo-collections-section {
    padding: 60px 16px;
  }
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .seo-header h2 {
    font-size: 26px;
  }
  .seo-header p {
    font-size: 14px;
  }
}

/* ─── Instant Search Autocomplete ─── */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 350px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid var(--border);
}
.search-suggestion-item:last-child {
  border-bottom: none;
}
.search-suggestion-item:hover,
.search-suggestion-item.selected {
  background: var(--bg-warm);
}
.ss-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2px;
}
.ss-info {
  flex: 1;
  min-width: 0;
}
.ss-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ss-cat {
  font-size: 10.5px;
  color: var(--text-light);
  margin-top: 1px;
}
.ss-price {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-dark);
}
.ss-no-results {
  padding: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
}

/* ─── Premium Floating WhatsApp Support Widget ─── */
.wa-floating-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  font-family: var(--font-sans);
}
.wa-floating-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-floating-bubble:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.wa-bubble-icon {
  font-size: 28px;
  color: #fff;
}
.wa-bubble-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #E74C3C;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 10px;
  border: 1.5px solid #fff;
  animation: pulseBadge 2s infinite;
}
@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.wa-widget-card {
  width: 330px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform-origin: bottom right;
  animation: slideUpWa 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUpWa {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.wa-widget-header {
  background: #075E54;
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.wa-widget-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.wa-widget-status-info {
  flex: 1;
}
.wa-widget-name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.wa-widget-status {
  font-size: 11px;
  opacity: 0.85;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.wa-widget-status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
}
.wa-widget-close {
  background: none;
  border: none;
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.15s ease;
}
.wa-widget-close:hover { opacity: 1; }
.wa-widget-body {
  padding: 16px;
  background: #E5DDD5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wa-widget-welcome {
  background: var(--white);
  padding: 12px 14px;
  border-radius: 0 10px 10px 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  position: relative;
}
.wa-widget-welcome::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent var(--white) transparent transparent;
}
.wa-widget-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  resize: none;
  height: 64px;
  font-family: var(--font-sans);
}
.wa-widget-footer {
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}
.wa-widget-send-btn {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
  transition: background 0.15s ease;
}
.wa-widget-send-btn:hover {
  background: #20BA5A;
}

/* ─── Frequently Bought Together Smart Bundles ─── */
.modal-bundle-container {
  margin-top: 24px;
  background: var(--bg-warm);
  border: 1.5px solid var(--border-dark);
  border-radius: 8px;
  padding: 18px;
  text-align: left;
}
.modal-bundle-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.modal-bundle-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-bundle-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-bundle-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}
.modal-bundle-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-dark);
}
.modal-bundle-item-name {
  font-weight: 600;
}
.modal-bundle-item-price {
  color: var(--gold-dark);
  font-weight: 700;
}
.modal-bundle-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.modal-bundle-total-price {
  font-size: 14px;
  font-weight: 700;
}
.modal-bundle-total-price .discounted {
  color: #27AE60;
  font-size: 16px;
}
.modal-bundle-total-price .original {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 12px;
  margin-right: 6px;
}
.btn-add-bundle {
  padding: 8px 16px;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-add-bundle:hover {
  background: var(--gold-dark);
}

/* ─── Urgency & FOMO Badges ─── */
.product-badge-fomo {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.badge-bestseller {
  background: #bf953f;
  background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  color: #000;
  text-shadow: 0 0.5px 0 rgba(255,255,255,0.4);
}
.badge-new {
  background: #27AE60;
}
.badge-lowstock {
  background: #E67E22;
}

/* Modal specific badge styles */
.modal-badge-fomo {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-left: 10px;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .wa-floating-container {
    bottom: 16px;
    right: 16px;
  }
  .wa-widget-card {
    width: 290px;
  }
}

/* ============================================================
   FEATURE 1: DARK MODE
   ============================================================ */
body.dark-mode {
  --bg: #1A1A1D;
  --bg-warm: #222224;
  --bg-dark: #F0EDE8;
  --text: #E8E4DC;
  --text-light: #A8A79F;
  --text-muted: #706F68;
  --gold: #D9C49A;
  --gold-light: #BFA06A;
  --gold-dark: #E8D5A8;
  --border: #3A3A3D;
  --border-dark: #4A4A4D;
  --white: #2A2A2D;
  --red: #E74C3C;
  --green: #2ECC71;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
}
body.dark-mode .site-header { background: #222224; }
body.dark-mode .announcement-bar { background: #111113; }
body.dark-mode .search-wrap input { background: #2A2A2D; color: #E8E4DC; border-color: #4A4A4D; }
body.dark-mode .search-wrap input:focus { background: #333336; }
body.dark-mode img { opacity: 0.92; }
body.dark-mode .hero-overlay { background: linear-gradient(to top, rgba(26,26,29,0.85), transparent); }
body.dark-mode .product-card { background: #2A2A2D; border-color: #3A3A3D; }
body.dark-mode .site-footer { background: #111113; }
body.dark-mode .features-strip { background: #222224; border-color: #3A3A3D; }
body.dark-mode .checkout-modal-card { background: #2A2A2D; }
body.dark-mode .cart-drawer { background: #222224; }
body.dark-mode .modal-inner { background: #1A1A1D; }
body.dark-mode .store-review-card { background: #2A2A2D; border-color: #3A3A3D; }
body.dark-mode .seo-col { background: #2A2A2D; border-color: #3A3A3D; }
body.dark-mode .google-review-cta { background: #222224; }
body.dark-mode .sidebar { background: #222224; }
body.dark-mode .cat-item:hover, body.dark-mode .cat-item.active { background: #333336; }
body.dark-mode .mobile-menu-drawer { background: #222224; }
body.dark-mode .wa-widget-card { background: #2A2A2D; border-color: #3A3A3D; }
body.dark-mode .search-suggestions { background: #2A2A2D; border-color: #3A3A3D; }
body.dark-mode select, body.dark-mode input, body.dark-mode textarea { background: #2A2A2D; color: #E8E4DC; border-color: #4A4A4D; }

.dark-mode-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border-dark); background: var(--bg);
  cursor: pointer; font-size: 18px; transition: all 0.4s ease;
}
.dark-mode-toggle:hover { border-color: var(--gold); transform: rotate(30deg); }
body.dark-mode .dark-mode-toggle { background: #333336; border-color: var(--gold); }

/* ============================================================
   FEATURE 2: ORDER TRACKER
   ============================================================ */
.tracker-modal-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 10000; justify-content: center; align-items: center;
}
.tracker-modal-overlay.active { display: flex; }
.tracker-modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 560px; width: 92%; max-height: 85vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); animation: modalSlideUp 0.35s ease;
}
.tracker-modal-header {
  padding: 24px 28px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.tracker-modal-header h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text); }
.tracker-modal-header .close-btn { font-size: 22px; color: var(--text-muted); cursor: pointer; transition: var(--transition); }
.tracker-modal-header .close-btn:hover { color: var(--red); }
.tracker-modal-body { padding: 24px 28px; }
.tracker-search-row { display: flex; gap: 10px; margin-bottom: 24px; }
.tracker-search-row input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--border-dark);
  border-radius: var(--radius); font-size: 14px; background: var(--bg);
  color: var(--text); outline: none; transition: var(--transition);
}
.tracker-search-row input:focus { border-color: var(--gold); }
.tracker-search-row button {
  padding: 12px 20px; background: var(--gold); color: #fff; border: none;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.tracker-search-row button:hover { background: var(--gold-dark); }
.tracker-order-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
}
.tracker-order-card h4 { font-family: var(--font-serif); font-size: 16px; margin-bottom: 4px; }
.tracker-order-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 18px; }
.tracker-stepper {
  display: flex; align-items: flex-start; justify-content: space-between;
  position: relative; margin: 0 8px;
}
.tracker-stepper::before {
  content: ''; position: absolute; top: 16px; left: 16px; right: 16px;
  height: 3px; background: var(--border); z-index: 0;
}
.tracker-stepper .progress-fill {
  position: absolute; top: 16px; left: 16px; height: 3px;
  background: var(--gold); z-index: 1; transition: width 0.6s ease;
}
.tracker-step { display: flex; flex-direction: column; align-items: center; z-index: 2; flex: 1; }
.tracker-step-circle {
  width: 34px; height: 34px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 14px; transition: all 0.4s ease; margin-bottom: 8px;
}
.tracker-step.completed .tracker-step-circle { background: var(--gold); border-color: var(--gold); color: #fff; }
.tracker-step.active .tracker-step-circle {
  background: #fff; border-color: var(--gold); color: var(--gold);
  box-shadow: 0 0 0 4px rgba(191,160,106,0.2); animation: stepPulse 2s infinite;
}
@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(191,160,106,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(191,160,106,0.1); }
}
.tracker-step-label {
  font-size: 10px; font-weight: 500; color: var(--text-muted);
  text-align: center; line-height: 1.3; max-width: 70px;
}
.tracker-step.completed .tracker-step-label,
.tracker-step.active .tracker-step-label { color: var(--gold-dark); font-weight: 600; }

/* ============================================================
   FEATURE 3: TABLE PLANNER
   ============================================================ */
.table-planner-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.88); z-index: 10001;
  flex-direction: column; align-items: center; justify-content: center;
}
.table-planner-overlay.active { display: flex; }
.table-planner-container { width: 94%; max-width: 900px; max-height: 90vh; display: flex; flex-direction: column; gap: 16px; }
.table-planner-topbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.table-planner-topbar h3 { font-family: var(--font-serif); font-size: 20px; color: #fff; }
.table-planner-topbar .tp-close { color: #fff; font-size: 28px; cursor: pointer; opacity: 0.7; transition: var(--transition); }
.table-planner-topbar .tp-close:hover { opacity: 1; }
.table-selector { display: flex; gap: 10px; justify-content: center; }
.table-selector-btn {
  padding: 8px 18px; border: 2px solid rgba(255,255,255,0.25); border-radius: 50px;
  color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  cursor: pointer; transition: var(--transition); background: rgba(255,255,255,0.05);
}
.table-selector-btn:hover, .table-selector-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(191,160,106,0.1); }
.table-surface {
  position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-lg);
  overflow: hidden; background-size: cover; background-position: center;
  cursor: crosshair; box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.table-product-item {
  position: absolute; width: 100px; height: 100px; cursor: grab; user-select: none;
  border-radius: 50%; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: box-shadow 0.2s ease;
}
.table-product-item:active { cursor: grabbing; }
.table-product-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.5); }
.table-product-item img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.table-product-item .tp-remove {
  position: absolute; top: -4px; right: -4px; width: 22px; height: 22px;
  background: var(--red); color: #fff; border-radius: 50%; font-size: 12px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; transition: var(--transition);
}
.table-product-item:hover .tp-remove { opacity: 1; }
.table-planner-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.table-planner-actions button {
  padding: 10px 22px; border-radius: var(--radius); font-size: 13px;
  font-weight: 600; cursor: pointer; transition: var(--transition);
}
.tp-btn-add { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.tp-btn-add:hover { background: rgba(255,255,255,0.2); }
.tp-btn-save { background: var(--gold); color: #fff; border: none; }
.tp-btn-save:hover { background: var(--gold-dark); }
@media (max-width: 600px) {
  .table-product-item { width: 65px; height: 65px; }
  .table-selector { flex-wrap: wrap; }
}

/* ============================================================
   FEATURE 4: CUSTOMER PHOTO GALLERY
   ============================================================ */
.customer-gallery-section { padding: 60px 24px; background: var(--bg-warm); }
.customer-gallery-inner { max-width: 1200px; margin: 0 auto; }
.customer-gallery-header { text-align: center; margin-bottom: 36px; }
.customer-gallery-header .gallery-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.customer-gallery-header h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 600; color: var(--text); margin: 8px 0; }
.customer-gallery-header p { font-size: 14px; color: var(--text-light); max-width: 500px; margin: 0 auto; }
.customer-photo-grid { columns: 4; column-gap: 14px; }
.customer-photo-card {
  break-inside: avoid; margin-bottom: 14px; border-radius: var(--radius);
  overflow: hidden; position: relative; cursor: pointer; transition: var(--transition);
}
.customer-photo-card:hover { transform: translateY(-3px); }
.customer-photo-card img { width: 100%; display: block; transition: transform 0.4s ease; }
.customer-photo-card:hover img { transform: scale(1.04); }
.customer-photo-card .photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff; opacity: 0; transition: var(--transition);
}
.customer-photo-card:hover .photo-overlay { opacity: 1; }
.customer-photo-card .photo-overlay .photo-name { font-size: 13px; font-weight: 600; }
.customer-photo-card .photo-overlay .photo-caption { font-size: 11px; opacity: 0.8; margin-top: 2px; }
.gallery-upload-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  padding: 12px 28px; background: var(--text); color: var(--bg); border: none;
  border-radius: var(--radius); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition); letter-spacing: 0.5px;
}
.gallery-upload-btn:hover { background: var(--gold); color: #fff; }
.photo-upload-modal {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 10000; justify-content: center; align-items: center;
}
.photo-upload-modal.active { display: flex; }
.photo-upload-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  max-width: 460px; width: 92%; box-shadow: var(--shadow-lg);
}
.photo-upload-card h3 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 18px; }
.photo-upload-card label {
  display: block; font-size: 12px; font-weight: 600; color: var(--text-light);
  margin-bottom: 5px; margin-top: 14px; letter-spacing: 0.5px; text-transform: uppercase;
}
.photo-upload-card input, .photo-upload-card textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border-dark);
  border-radius: var(--radius); font-size: 14px; background: var(--bg);
  color: var(--text); outline: none;
}
.photo-upload-card textarea { resize: vertical; min-height: 60px; }
.photo-upload-card input:focus, .photo-upload-card textarea:focus { border-color: var(--gold); }
.photo-upload-preview { margin-top: 12px; border-radius: var(--radius); overflow: hidden; max-height: 180px; }
.photo-upload-preview img { width: 100%; object-fit: cover; }
.photo-upload-actions { display: flex; gap: 10px; margin-top: 20px; }
.photo-upload-actions button { flex: 1; padding: 12px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.pu-btn-cancel { background: var(--bg); color: var(--text); border: 1.5px solid var(--border-dark); }
.pu-btn-submit { background: var(--gold); color: #fff; border: none; }
.pu-btn-submit:hover { background: var(--gold-dark); }
@media (max-width: 768px) { .customer-photo-grid { columns: 2; } }
@media (max-width: 480px) { .customer-photo-grid { columns: 2; column-gap: 8px; } .customer-photo-card { margin-bottom: 8px; } }

/* ============================================================
   FEATURE 5: GIFT CARD BALANCE CHECKER
   ============================================================ */
.balance-checker-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 10000; justify-content: center; align-items: center;
}
.balance-checker-overlay.active { display: flex; }
.balance-checker-card {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 420px; width: 92%; box-shadow: var(--shadow-lg);
  animation: modalSlideUp 0.35s ease; overflow: hidden;
}
.balance-checker-header {
  background: linear-gradient(135deg, #1C1C1A 0%, #3A3A2E 100%);
  padding: 28px; text-align: center; color: var(--gold-light);
}
.balance-checker-header .bc-icon { font-size: 36px; margin-bottom: 8px; }
.balance-checker-header h3 { font-family: var(--font-serif); font-size: 22px; color: #fff; }
.balance-checker-header p { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.balance-checker-body { padding: 28px; }
.bc-input-row { display: flex; gap: 10px; margin-bottom: 20px; }
.bc-input-row input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--border-dark);
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; background: var(--bg);
  color: var(--text); outline: none;
}
.bc-input-row input:focus { border-color: var(--gold); }
.bc-input-row button {
  padding: 12px 20px; background: var(--gold); color: #fff; border: none;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.bc-input-row button:hover { background: var(--gold-dark); }
.bc-result-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-align: center;
}
.bc-result-card .bc-balance { font-family: var(--font-serif); font-size: 38px; font-weight: 700; color: var(--gold); margin: 8px 0; }
.bc-result-card .bc-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.bc-result-card .bc-details {
  display: flex; justify-content: center; gap: 24px; margin-top: 14px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.bc-result-card .bc-detail-item { text-align: center; }
.bc-result-card .bc-detail-val { font-size: 16px; font-weight: 600; color: var(--text); }
.bc-result-card .bc-detail-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.bc-error { text-align: center; color: var(--red); font-size: 14px; font-weight: 500; padding: 16px; }
.balance-checker-footer {
  padding: 16px 28px; border-top: 1px solid var(--border); text-align: center;
}
.balance-checker-footer button {
  padding: 8px 24px; font-size: 13px; color: var(--text-muted);
  border: 1px solid var(--border); background: var(--white);
  border-radius: var(--radius); cursor: pointer; transition: var(--transition);
}
.balance-checker-footer button:hover {
  background: var(--border-dark);
}

/* ─── Vigneto Architecture & Full-Width Container Grid ────── */
.main-wrapper-full {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 24px;
}

.vigneto-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.vigneto-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.vigneto-pills::-webkit-scrollbar { display: none; }
.vigneto-pill {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-dark);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.vigneto-pill:hover, .vigneto-pill.active {
  background: var(--bg-dark);
  color: var(--gold-light);
  border-color: var(--bg-dark);
}

.vigneto-sort-select {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-dark);
  font-size: 13px;
  background: var(--white);
  color: var(--text);
  outline: none;
  cursor: pointer;
}

/* Vigneto Product Grid: 4 columns desktop, 2 columns mobile */
.vigneto-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .vigneto-products-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 768px) {
  .vigneto-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* Vigneto Product Card with Image Hover Flip */
.vigneto-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.vigneto-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.vigneto-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vigneto-card-img-primary, .vigneto-card-img-secondary {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.vigneto-card-img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.vigneto-card:hover .vigneto-card-img-secondary {
  opacity: 1;
  transform: scale(1.06);
}
.vigneto-card:hover .vigneto-card-img-primary {
  opacity: 0;
  transform: scale(1.06);
}

.vigneto-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bg-dark);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

.vigneto-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}
.vigneto-wishlist-btn:hover {
  background: var(--white);
  color: var(--red);
  transform: scale(1.1);
}

.vigneto-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vigneto-rating-line {
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.vigneto-card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.vigneto-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
}
.vigneto-price-current {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.vigneto-price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.vigneto-add-btn {
  width: 100%;
  padding: 10px;
  background: var(--bg-dark);
  color: var(--gold-light);
  border: none;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.vigneto-add-btn:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* Refrens Invoicing Badge */
.refrens-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #7c3aed; /* Purple theme */
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
  margin-top: 15px;
}
.refrens-badge:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.25);
  color: var(--white) !important;
}
.refrens-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.refrens-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}
.refrens-subtitle {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.85;
  font-weight: 500;
  font-family: var(--font-sans);
}
.refrens-title {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* ─── Luxury Animations & Scroll Micro-Interactions ──────── */

/* Scroll Reveal Base */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Product Card Luxury Hover Effects */
.product-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  will-change: transform, box-shadow;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.008);
  box-shadow: 0 14px 36px rgba(191, 160, 106, 0.22), 0 4px 12px rgba(28, 28, 26, 0.08);
  border-color: var(--gold-light);
}

.product-img-wrap {
  overflow: hidden;
}
.product-card .product-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img {
  transform: scale(1.07);
}

/* Tactile Button Feedback */
button, .btn-primary, .btn-wa-lg, .cart-trigger, .wishlist-trigger {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}
button:active, .btn-primary:active, .btn-wa-lg:active {
  transform: scale(0.96) !important;
}

/* WhatsApp Pulse Ring Animation */
@keyframes waPulseRing {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float, .wa-floating-bubble {
  animation: waPulseRing 3s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

/* ─── Screenshot 1: Split Hero Section & Slate Promo ──────── */
.vigneto-hero-split {
  display: flex;
  min-height: 480px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.vigneto-hero-left {
  flex: 1.8;
  position: relative;
  overflow: hidden;
}
.vigneto-hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vigneto-hero-right {
  flex: 1;
  background: #62728D; /* Slate Blue matching Screenshot 1 */
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
  position: relative;
}
.vigneto-ribbon-left, .vigneto-ribbon-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  background: rgba(0,0,0,0.15);
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
}
.vigneto-ribbon-left { left: 0; }
.vigneto-ribbon-right { right: 0; }

.vigneto-promo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}
.vigneto-promo-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}
.vigneto-promo-title em { font-style: italic; font-weight: 400; }
.vigneto-promo-date {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 6px 16px;
  background: var(--white);
  color: #62728D;
  border-radius: 4px;
  margin-bottom: 24px;
}
.vigneto-promo-off {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 8px;
}
.vigneto-promo-off span { font-size: 24px; font-weight: 300; display: block; letter-spacing: 4px; }

/* ─── Screenshot 2: "Shop the Look" Reel Slider ───────────── */
.shop-the-look-section {
  max-width: 1400px;
  margin: 50px auto;
  padding: 0 24px;
}
.stl-heading {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}
.stl-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.stl-grid::-webkit-scrollbar { display: none; }
.stl-card {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
}
.stl-card-img-wrap {
  position: relative;
  aspect-ratio: 9 / 14;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
}
.stl-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stl-view-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.stl-info {
  margin-top: 10px;
}
.stl-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.stl-price-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  margin-top: 4px;
}
.stl-price-curr { font-weight: 700; color: var(--text); }
.stl-price-old { color: var(--text-muted); text-decoration: line-through; }

/* ─── Screenshot 3: "Let customers speak for us" ──────────── */
.reviews-vigneto-section {
  background: #FAF9F6;
  padding: 50px 24px;
  text-align: center;
}
.rv-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}
.rv-score-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}
.rv-black-boxes {
  display: flex;
  gap: 3px;
}
.rv-box {
  width: 22px;
  height: 22px;
  background: #000;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-count-text { font-size: 13px; color: var(--text-light); text-decoration: underline; }

.rv-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rv-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.rv-stars { color: #E67E22; font-size: 14px; margin-bottom: 8px; }
.rv-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.rv-body { font-size: 13px; color: var(--text-light); line-height: 1.4; margin-bottom: 14px; }
.rv-author { font-size: 12px; font-weight: 700; color: var(--text); }
.rv-product-link { font-size: 11px; color: var(--text-muted); text-decoration: underline; margin-top: 2px; }

/* ─── Screenshot 5: Line-Art Category Icons Footer Strip ─── */
.lineart-category-strip {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  background: var(--white);
  text-align: center;
}
.lineart-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}
.lineart-icons-row {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
}

/* ─── Sidebar + Vigneto Grid Layout ─── */
.main-wrapper-sidebar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  gap: 32px;
}
.sidebar {
  width: 240px;
  flex-shrink: 0;
}
.products-content-main {
  flex: 1;
  min-width: 0;
}
.sidebar-block {
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.sidebar-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-item {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s ease;
}
.cat-item:hover, .cat-item.active {
  background: var(--bg-warm);
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 992px) {
  .main-wrapper-sidebar {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPREHENSIVE MOBILE RESPONSIVENESS ENGINE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

@media (max-width: 768px) {
  /* 1. Header Ticker & Main Header */
  .announcement-bar {
    font-size: 11px;
    padding: 6px 10px;
  }
  .header-inner {
    flex-wrap: wrap;
    padding: 10px 14px;
  }
  .site-nav {
    border-top: 1px solid var(--border);
  }
  .nav-inner {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 8px 12px;
    gap: 16px;
    scrollbar-width: none;
  }
  .nav-inner::-webkit-scrollbar {
    display: none;
  }

  /* 2. Split Hero Banner */
  .vigneto-hero-split {
    flex-direction: column;
    min-height: auto;
  }
  .vigneto-hero-left {
    height: 240px;
    width: 100%;
  }
  .vigneto-hero-right {
    width: 100%;
    padding: 28px 16px;
  }
  .vigneto-ribbon-left, .vigneto-ribbon-right {
    display: none !important;
  }
  .vigneto-promo-title {
    font-size: 28px !important;
    line-height: 1.15;
  }
  .vigneto-promo-sub {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .vigneto-promo-date {
    font-size: 12px;
    padding: 4px 12px;
  }
  .vigneto-promo-off {
    font-size: 22px !important;
  }

  /* 3. Line Art Icons Strip */
  .lineart-category-strip {
    padding: 20px 12px !important;
  }
  .lineart-title {
    font-size: 22px !important;
    margin-bottom: 14px !important;
  }
  .lineart-icons-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px 8px !important;
  }
  .lineart-item div {
    font-size: 28px !important;
  }
  .lineart-item span {
    font-size: 10.5px !important;
  }

  /* 4. Category Circles Grid */
  .vigneto-category-section {
    padding: 24px 12px !important;
  }
  .vigneto-cat-heading {
    font-size: 24px !important;
  }
  .vigneto-cat-sub {
    font-size: 12px !important;
    margin-bottom: 16px !important;
  }
  .vigneto-category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px 10px !important;
  }
  .vigneto-cat-circle {
    width: 76px !important;
    height: 76px !important;
  }
  .vigneto-cat-title {
    font-size: 11.5px !important;
  }

  /* 5. Shop the Look Reel Slider */
  .shop-the-look-section {
    padding: 24px 12px !important;
  }
  .stl-heading {
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }
  .stl-grid {
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 10px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .stl-card {
    min-width: 150px !important;
    scroll-snap-align: start !important;
  }
  .stl-title {
    font-size: 12px !important;
  }

  /* 6. "Let customers speak for us" Reviews Horizontal Scroll */
  .reviews-vigneto-section {
    padding: 24px 12px !important;
  }
  .rv-heading {
    font-size: 24px !important;
  }
  .rv-cards-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding-bottom: 10px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .rv-card {
    min-width: 260px !important;
    max-width: 280px !important;
    scroll-snap-align: start !important;
  }

  /* 7. Full-Width Container & 2-Column Product Grid */
  .main-wrapper-full {
    padding: 16px 10px !important;
  }
  .vigneto-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .vigneto-card {
    padding: 8px !important;
    border-radius: 10px !important;
  }
  .vigneto-card-img-primary, .vigneto-card-img-secondary {
    padding: 4px !important;
  }
  .vigneto-card-badge {
    font-size: 9px !important;
    padding: 3px 6px !important;
  }
  .vigneto-card-title {
    font-size: 12px !important;
    height: 32px !important;
    line-height: 1.3 !important;
  }
  .vigneto-price-curr {
    font-size: 14px !important;
  }
  .vigneto-add-btn {
    padding: 9px 6px !important;
    font-size: 11px !important;
    letter-spacing: 0.3px !important;
  }

  /* 8. Filter Bar & Pills Horizontal Scroll */
  .vigneto-filter-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
  }
  .vigneto-pills {
    width: 100% !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding-bottom: 4px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none;
  }
  .vigneto-pills::-webkit-scrollbar {
    display: none;
  }

  /* 9. Drawers & Dialog Modals */
  .cart-drawer, .wishlist-drawer {
    width: 100% !important;
    max-width: 100% !important;
  }
  .modal-dialog, .upi-modal-inner, #screenshotModal, .modal-content {
    width: 95% !important;
    padding: 16px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }

  /* Prevent iOS Input Auto-Zoom */
  input[type="text"], input[type="tel"], input[type="number"], select, textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .vigneto-hero-left {
    height: 200px !important;
  }
  .vigneto-category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px 8px !important;
  }
  .vigneto-cat-circle {
    width: 68px !important;
    height: 68px !important;
  }
  .vigneto-cat-title {
    font-size: 10.5px !important;
  }
  .vigneto-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}


