﻿/* ================================================================
   AROMICASA – ROYAL MERCHANT THEME
   Color Palette:
     --gold:       #C9A84C   (warm antique gold)
     --gold-light: #E8C96A   (bright highlight gold)
     --gold-dim:   #9B7A2E   (dark gold)
     --cream:      #F8F0E0   (parchment cream)
     --cream-dark: #EFE3C8
     --wine:       #5C1A1A   (deep royal wine / burgundy)
     --wine-light: #7B2828
     --charcoal:   #1C1C1C
     --text:       #2D1B00
     --muted:      #7a6a55
================================================================ */

/* ── Reset & Variables ── */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   #9B7A2E;
  --cream:      #F8F0E0;
  --cream-dark: #EFE3C8;
  --wine:       #5C1A1A;
  --wine-light: #7B2828;
  --charcoal:   #1C1C1C;
  --text:       #2D1B00;
  --muted:      #7a6a55;
  --white:      #ffffff;
  --border:     rgba(201,168,76,0.25);
  --shadow:     0 4px 24px rgba(92,26,26,0.10);
  --shadow-hover: 0 12px 40px rgba(92,26,26,0.20);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, .serif { font-family: 'Playfair Display', serif; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
a { color: var(--wine); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

/* ── Ornamental Divider ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ornament span { color: var(--gold); font-size: 1.2rem; white-space: nowrap; }

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 {
  color: var(--wine);
  margin-bottom: 10px;
}
.section-heading .subtitle {
  color: var(--muted);
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn-royal {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
  color: var(--wine);
  border: none;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-royal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  color: var(--wine);
}
.btn-wine {
  background: var(--wine);
  color: var(--cream);
  border: 2px solid var(--wine);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-wine:hover {
  background: var(--wine-light);
  border-color: var(--wine-light);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-royal {
  background: transparent;
  color: var(--gold-dim);
  border: 1.5px solid var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-royal:hover {
  background: var(--gold);
  color: var(--wine);
}

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.topbar {
  background: var(--wine);
  color: var(--cream-dark);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 7px 0;
}
.topbar i { color: var(--gold); }
.topbar a { color: var(--cream-dark); }
.topbar a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  background: var(--charcoal);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold-dim);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.brand-tagline-wrap {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-site-name {
  font-family: 'Annifont', 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.brand-tagline {
  font-family: 'Cinzel', 'Crimson Text', serif;
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(248,240,224,0.65);
  letter-spacing: 0.12em;
}

@media (max-width: 767.98px) {
  .brand-tagline-wrap { margin-left: 10px; }
  .brand-site-name { font-size: 0.98rem; }
  .brand-tagline { font-size: 0.62rem; letter-spacing: 0.1em; }
}

/* ── Mobile toggle ── */
.navbar-toggler {
  background: none;
  border: 1.5px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.navbar-toggler.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler.open span:nth-child(2) { opacity: 0; }
.navbar-toggler.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.main-nav {
  background: var(--wine);
  border-bottom: 3px solid var(--gold-dim);
}
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link-custom {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link-custom:hover, .nav-item.active .nav-link-custom {
  color: var(--gold-light);
  background: rgba(201,168,76,0.10);
}
.nav-item.active .nav-link-custom {
  border-bottom: 3px solid var(--gold);
  margin-bottom: -3px;
}
.dropdown-arrow { font-size: 0.65rem; transition: var(--transition); }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: var(--charcoal);
  border: 1px solid var(--gold-dim);
  border-top: 2px solid var(--gold);
  min-width: 240px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 99;
  border-radius: 0 0 var(--radius) var(--radius);
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-tagline {
  color: var(--muted);
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.dropdown-viewall {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dropdown-viewall:hover { color: var(--gold-light); }

/* Mobile nav */
@media (max-width: 991.98px) {
  .main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .main-nav.open { max-height: 100vh; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link-custom { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-item.active .nav-link-custom { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: rgba(0,0,0,0.2);
    padding: 10px 20px;
  }
}

/* Header search — pushed to right side on desktop */
.header-search-form {
  display: flex;
  align-items: center;
  max-width: 380px;
  width: 100%;
  gap: 0;
}
.header-search-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  border-right: none;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  width: 100%;
  transition: var(--transition);
}
.header-search-input::placeholder { color: rgba(248,240,224,0.5); }
.header-search-input:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
}
.header-search-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--charcoal);
  padding: 7px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  flex-shrink: 0;
}
.header-search-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }
.app-install-btn {
  border: 1px solid rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.14);
  color: var(--gold-light);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}
.app-install-btn:hover {
  background: var(--gold);
  color: var(--wine);
  border-color: var(--gold);
}
@media (max-width: 991.98px) {
  .header-search-form { order: 3; flex: 0 0 100%; max-width: none; margin-top: 4px; margin-left: 0; }
  .app-install-btn { order: 4; width: 100%; margin-top: 6px; margin-left: 0 !important; }
  .navbar-toggler { order: 2; margin-left: auto; }
}

/* ══════════════════════════════════════════
   HERO BANNER
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #0a0404 0%, var(--wine) 45%, #3b0d0d 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-border-top, .hero-border-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.hero-border-top { top: 0; }
.hero-border-bottom { bottom: 0; }

.hero-content { position: relative; z-index: 2; padding: 60px 0; }
.hero-eyebrow {
  font-family: 'Crimson Text', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}
.hero-title {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  color: rgba(248,240,224,0.8);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(201,168,76,0.07);
  border: 2px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
}
.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  transition: var(--transition);
}
.hero-icon-item:hover { background: rgba(201,168,76,0.15); }
.hero-icon-item i { font-size: 1.8rem; color: var(--gold); }
.hero-icon-item span { font-size: 0.72rem; color: var(--cream-dark); text-align: center; letter-spacing: 0.04em; }

/* ══════════════════════════════════════════
   MARQUEE / ANNOUNCEMENT
══════════════════════════════════════════ */
.announcement-bar {
  background: var(--gold);
  color: var(--wine);
  padding: 9px 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  overflow: hidden;
}
.marquee-wrap {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item { padding: 0 40px; }
.marquee-sep { color: var(--wine-light); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   CATEGORY CARDS (Home grid)
══════════════════════════════════════════ */
.categories-section { padding: 80px 0; background: var(--cream); }
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.category-card:hover::before { transform: scaleX(1); }
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.cat-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--wine), var(--wine-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(92,26,26,0.2);
  transition: var(--transition);
}
.category-card:hover .cat-icon-wrap { transform: scale(1.1); }
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--wine);
  margin-bottom: 6px;
}
.cat-tagline {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
}
.cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--gold-dim);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.category-card:hover .cat-arrow { color: var(--gold); }

/* ══════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════ */
.products-section { padding: 80px 0; background: #f3e9d6; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-carousel,
.product-card-carousel .carousel-inner,
.product-card-carousel .carousel-item {
  width: 100%;
  height: 100%;
}
.product-card-carousel .carousel-control-prev,
.product-card-carousel .carousel-control-next {
  width: 28px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: var(--transition);
}
.product-card-carousel .carousel-control-prev { left: 8px; }
.product-card-carousel .carousel-control-next { right: 8px; }
.product-card:hover .carousel-control-prev,
.product-card:hover .carousel-control-next { opacity: 1; }
.product-card-carousel .carousel-control-prev-icon,
.product-card-carousel .carousel-control-next-icon {
  width: 0.8rem;
  height: 0.8rem;
}
.product-badge,
.product-badge-top {
  background: var(--wine);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.product-badge-top {
  display: inline-block;
  align-self: flex-start;
  margin: 10px 10px 8px;
  z-index: 2;
}
.product-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, #f0e8d5, #e8d9bc);
}
.product-placeholder i {
  font-size: 3rem;
  color: var(--gold-dim);
  opacity: 0.6;
}
.product-placeholder span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.product-card-body {
  padding: 18px 18px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--wine);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-desc {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc[title] { cursor: help; }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.price-label { font-size: 0.73rem; color: var(--muted); }
.price-mrp {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wine);
}
.price-mrp-strike {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.7;
}
.price-discounted {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2e7d32;
}
/* Currency symbol with explicit spacing */
.price-currency {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  margin-right: 4px;
}
.discount-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 12px;
  border: 1px solid #a5d6a7;
  vertical-align: middle;
}
.product-variants-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.variant-chip {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}
.variant-chip-price {
  font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
}
.price-from-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.product-card-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.btn-view-product {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-view-product:hover { color: var(--gold-dim); }
.btn-view-product i { transition: transform 0.3s ease; }
.btn-view-product:hover i { transform: translateX(4px); }

/* ══════════════════════════════════════════
   FILTER SIDEBAR
══════════════════════════════════════════ */
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-track { background: var(--cream); border-radius: 2px; }
.filter-sidebar::-webkit-scrollbar-thumb { background: var(--gold-dim, #c9a84c88); border-radius: 2px; }
.filter-sidebar::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.filter-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--wine);
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-title i { color: var(--gold); }
.filter-group { margin-bottom: 24px; }
.filter-group-title {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.filter-sidebar #filterSearch {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-size: 0.84rem;
  background: var(--cream);
  color: var(--text);
}
.filter-sidebar #filterSearch:focus {
  border-color: var(--gold);
  box-shadow: none;
  background: #fff;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 0.87rem;
}
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 15px; height: 15px;
  accent-color: var(--wine);
  cursor: pointer;
}
.filter-option label { cursor: pointer; color: var(--text); flex: 1; }
.filter-option:hover label { color: var(--wine); }
.filter-count {
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--cream);
  border-radius: 10px;
  padding: 1px 7px;
}
.price-range-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.price-range-inputs input {
  width: 100%;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 6px 10px;
  font-size: 0.85rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.price-range-inputs input:focus { border-color: var(--gold); }
.btn-apply-filter {
  width: 100%;
  background: var(--wine);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-apply-filter:hover { background: var(--wine-light); }
.btn-clear-filter {
  width: 100%;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 8px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}
.btn-clear-filter:hover { border-color: var(--wine); color: var(--wine); }

/* Mobile filter toggle */
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--wine);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
  transition: var(--transition);
}
@media (max-width: 991.98px) {
  .filter-toggle-btn { display: flex; }
  .filter-sidebar {
    position: fixed;
    top: 0; left: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    z-index: 2000;
    overflow-y: auto;
    transition: left 0.35s ease;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }
  .filter-sidebar.open { left: 0; }
  .filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
  }
  .filter-overlay.open { display: block; }
}

/* ══════════════════════════════════════════
   CATEGORY PAGE HEADER
══════════════════════════════════════════ */
.category-hero {
  background: linear-gradient(135deg, var(--wine) 0%, #3b0d0d 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.category-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.category-hero h1 { color: var(--cream); }
.category-hero .tagline {
  color: var(--gold-light);
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb-royal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.breadcrumb-royal a { color: var(--gold); opacity: 0.85; }
.breadcrumb-royal a:hover { opacity: 1; }
.breadcrumb-royal span { color: var(--cream-dark); opacity: 0.6; }
.breadcrumb-royal .current { color: var(--cream); }

/* Sort bar */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sort-bar .results-count {
  font-size: 0.85rem;
  color: var(--muted);
}
.sort-bar .results-count strong { color: var(--wine); }
.sort-select {
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-size: 0.82rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--gold); }

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.no-results i {
  font-size: 3rem;
  color: var(--cream-dark);
  margin-bottom: 16px;
  display: block;
}

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════ */
.product-detail-section { padding: 60px 0; }
.product-detail-img-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* ── Product Gallery Carousel ── */
.product-gallery-carousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  aspect-ratio: 1/1;
}
.product-gallery-main {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.product-gallery-carousel .carousel-control-prev,
.product-gallery-carousel .carousel-control-next {
  width: 36px; height: 36px;
  background: rgba(92,26,26,0.75);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s;
}
.product-gallery-carousel:hover .carousel-control-prev,
.product-gallery-carousel:hover .carousel-control-next { opacity: 1; }
.product-gallery-carousel .carousel-control-prev { left: 8px; }
.product-gallery-carousel .carousel-control-next { right: 8px; }
.product-thumb-strip {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.product-thumb-strip::-webkit-scrollbar { height: 3px; }
.product-thumb-strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.product-thumb {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
  opacity: 0.7;
}
.product-thumb.active,
.product-thumb:hover { border-color: var(--wine); opacity: 1; }
.product-detail-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%; height: 100%;
}
.product-detail-placeholder i { font-size: 6rem; color: var(--gold-dim); opacity: 0.5; }
.product-detail-placeholder span { color: var(--muted); font-size: 0.9rem; }

.product-detail-body { padding: 0 0 0 24px; }
.product-detail-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.product-detail-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--wine);
  line-height: 1.2;
  margin-bottom: 12px;
}
.product-detail-desc {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
}

/* Variants Table */
.variants-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.variants-table-title {
  background: var(--wine);
  color: var(--gold-light);
  padding: 10px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.variants-table {
  width: 100%;
  border-collapse: collapse;
}
.variants-table th {
  background: var(--cream-dark);
  padding: 10px 16px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.variants-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}
.variants-table tr:last-child td { border-bottom: none; }
.variants-table tr:hover td { background: var(--cream); }
.price-rate { font-weight: 700; color: var(--wine); }
.price-discounted { font-weight: 700; color: #2e7d32; }
.price-savings {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Related products */
.related-section { padding: 60px 0; background: var(--cream); }

/* ══════════════════════════════════════════
   HOMEPAGE – VALUE PROPS
══════════════════════════════════════════ */
.value-props { padding: 60px 0; background: var(--charcoal); }
.value-prop-item { text-align: center; padding: 20px; }
.value-prop-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.value-prop-title {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.value-prop-text {
  color: rgba(248,240,224,0.65);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   HOMEPAGE – ABOUT BANNER
══════════════════════════════════════════ */
.about-banner {
  background: linear-gradient(135deg, var(--wine) 0%, #2a0808 100%);
  padding: 80px 0;
  position: relative;
}
.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.about-banner h2 { color: var(--cream); }
.about-banner .gold-line {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 16px 0;
}
.about-banner p {
  color: rgba(248,240,224,0.8);
  font-family: 'Crimson Text', serif;
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 540px;
}
.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  color: var(--cream-dark);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: var(--charcoal); margin-top: auto; }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(201,168,76,0.15); }
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.brand-icon-footer {
  font-size: 1.4rem;
  color: var(--gold);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
}
.footer-tagline {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-about {
  color: rgba(248,240,224,0.55);
  font-size: 0.85rem;
  line-height: 1.75;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(248,240,224,0.6);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold-dim);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(248,240,224,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact a { color: rgba(248,240,224,0.6); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,0.25);
}
.footer-bottom p {
  color: rgba(248,240,224,0.35);
  font-size: 0.78rem;
  margin: 0;
}
.footer-bottom strong { color: var(--gold); }
.footer-note { font-style: italic; }

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */
.text-gold { color: var(--gold) !important; }
.text-wine { color: var(--wine) !important; }
.text-muted-royal { color: var(--muted) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-wine { background: var(--wine) !important; }
.gold-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 32px 0;
}
.section-pad { padding: 80px 0; }
.img-royal {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Active filter chips */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.filter-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px 3px 12px;
  font-size: 0.78rem;
  color: var(--wine);
}
.filter-chip button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.filter-chip button:hover { color: var(--wine); }

/* Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Page transition fade ─── */
.page-content { animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }


/* ════════════════════════════════════════════════
   FEATURED PRODUCTS SECTION (grid)
════════════════════════════════════════════════ */
.featured-section { background: var(--cream); }

/* ════════════════════════════════════════════════
   NEW ARRIVALS and HOT SELLING SECTIONS
════════════════════════════════════════════════ */
.section-new-arrivals { background: #f9f4eb; }
.section-hot-selling  { background: #fff5f0; }
.text-fire { color: #e64a19; }

/* ══════════════════════════════════════════
   PAGE HERO (shared: FAQ / Terms / Privacy)
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--wine), #3b0d0d);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.page-hero-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-eyebrow {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.page-hero-desc {
  color: var(--gold-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: .95rem;
}
.page-hero-desc-sm {
  color: var(--gold-light);
  font-size: .85rem;
}

/* ══════════════════════════════════════════
   POLICY PAGES (Terms / Privacy)
══════════════════════════════════════════ */
.policy-section {
  padding: 64px 0;
  background: var(--cream);
}
.policy-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  font-size: .93rem;
  line-height: 1.8;
  color: var(--text);
}
@media (max-width: 575.98px) {
  .policy-content { padding: 24px 20px; }
}
.policy-h2 {
  font-family: 'Playfair Display', serif;
  color: var(--wine);
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
}
.policy-footer-links {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.policy-footer-link {
  color: var(--wine);
  font-size: .88rem;
  text-decoration: none;
  font-weight: 600;
}
.policy-footer-link:hover { color: var(--gold-dim); }
.policy-footer-sep { color: var(--border); }

/* ══════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════ */
.faq-accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.faq-accordion-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--wine);
  background: var(--white);
}
.faq-accordion-btn:not(.collapsed) {
  color: var(--wine);
  background: var(--white);
  box-shadow: none;
}
.faq-accordion-icon {
  color: var(--gold);
  font-size: .7rem;
  transition: transform .3s;
  margin-right: .75rem;
}
.faq-accordion-body {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.75;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.faq-cta-box {
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.faq-cta-icon {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.faq-cta-title {
  font-family: 'Playfair Display', serif;
  color: var(--wine);
  margin-bottom: 8px;
}
.faq-cta-desc {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.faq-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   INTERACTIVE VARIANT CHIPS (product cards)
══════════════════════════════════════════ */
.variant-chip {
  background: none;
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
}
.variant-chip:hover {
  border-color: var(--gold-dim);
  color: var(--wine);
}
.variant-chip.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream);
}
.variant-chip.active .variant-chip-price { color: var(--cream); }

/* ── Price-on-request ── */
.price-on-request {
  color: var(--muted);
  font-style: italic;
}

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════ */
.product-breadcrumb-bar {
  background: var(--wine);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.product-img-note {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}
.gold-rule-sm {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  width: 80px;
  margin-bottom: 20px;
}
.product-cta-row {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.product-brand-note {
  margin-top: 28px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

/* Category page section */
.category-page-section {
  padding: 48px 0;
  background: var(--cream);
}
.sort-label {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Product image modal polish */
.img-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,168,76,0.12), transparent 38%),
    radial-gradient(circle at 80% 80%, rgba(92,26,26,0.22), transparent 42%),
    rgba(14, 10, 10, 0.82);
  backdrop-filter: blur(10px);
}
.img-modal-box {
  position: relative;
  width: min(940px, 94vw);
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.38);
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  padding: 14px 14px 12px;
}
.img-modal-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  background: rgba(0,0,0,0.2);
}
.img-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  background: linear-gradient(135deg, #5c1a1a, #7e2b2b);
  color: #fff;
  font-size: 1.08rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.38);
}
.img-modal-title {
  color: var(--cream);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.img-modal-gallery {
  margin-top: 10px;
  display: none;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 4px;
}
.img-modal-gallery::-webkit-scrollbar { height: 4px; }
.img-modal-gallery::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.5); border-radius: 6px; }
.img-modal-thumb {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0;
  width: 58px;
  height: 58px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}
.img-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-modal-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.25);
}

/* ══════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════ */
.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pagination-royal {
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  align-items: center;
}
.pagination-royal li a {
  display: block;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--wine);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  background: var(--white);
}
.pagination-royal li.active a {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
  pointer-events: none;
}
.pagination-royal li:not(.disabled):not(.active) a:hover {
  background: var(--gold);
  color: var(--wine);
  border-color: var(--gold);
}
.pagination-royal li.disabled a {
  color: var(--muted);
  pointer-events: none;
  opacity: 0.45;
}

/* Category JS pagination — hide off-page items */
.product-item.page-hidden { display: none !important; }

/* ══════════════════════════════════════════
   SEARCH HIGHLIGHT
══════════════════════════════════════════ */
mark {
  background: rgba(201,168,76,0.30);
  color: var(--wine);
  padding: 0 2px;
  border-radius: 2px;
  font-style: normal;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   PRODUCT CARD THUMBNAIL
══════════════════════════════════════════ */
.product-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  cursor: pointer;
}
.product-card:hover .product-card-thumb { transform: scale(1.06); }

/* ══════════════════════════════════════════
   SEARCH RESULT CARDS
══════════════════════════════════════════ */
.search-result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.search-result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}