/* ============================================================
   OCCASIONS BY SARA ALKUWARI — Custom Stylesheet
   Complements Tailwind CSS with animations, glassmorphism,
   custom components, and luxury brand aesthetics.
   Theme: Clean Light — White, Charcoal, Gold Accents
   ============================================================ */

/* ─── Google Fonts: Cormorant Garamond + Jost ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8D5A3;
  --gold-dark:    #9A7630;
  --charcoal:     #2C2C2C;
  --charcoal-mid: #4A4A4A;
  --off-white:    #FAFAF8;
  --warm-white:   #F5F3EE;
  --border:       #E8E4DC;
  --shadow:       rgba(44, 44, 44, 0.08);
  --shadow-deep:  rgba(44, 44, 44, 0.18);
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:       12px;
  --radius-lg:    20px;
}

/* ─── Base Resets & Typography ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--off-white);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ─── Gold Accent Text ─── */
.text-gold { color: var(--gold); }
.bg-gold    { background-color: var(--gold); }
.border-gold { border-color: var(--gold); }

/* ─── Scrollbar Styling ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--warm-white); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px var(--shadow);
}

.navbar.transparent {
  background: transparent;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1.1;
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

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

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

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

/* ─── Cart Icon Badge ─── */
.cart-btn {
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  color: var(--charcoal);
  transition: color var(--transition);
}

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

.cart-count {
  position: absolute;
  top: 0; right: 0;
  width: 18px; height: 18px;
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-count.visible {
  transform: scale(1);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: white;
  z-index: 1100;
  transition: right var(--transition);
  box-shadow: -10px 0 40px var(--shadow-deep);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a1208 0%,
    #2C2416 40%,
    #3d3020 70%,
    #1a1208 100%
  );
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1549465220-1a8b9238cd48?w=1800&q=60') center/cover;
  opacity: 0.25;
  mix-blend-mode: luminosity;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
              linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  max-width: 500px;
  line-height: 1.7;
}

/* ─── Floating Gold Orbs (Decorative) ─── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.2), transparent);
  top: -100px; right: 10%;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent);
  bottom: 15%; right: 25%;
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* ─── Scroll Indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--gold);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dark);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  background: transparent;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--charcoal);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-dark:hover { background: var(--charcoal-mid); }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold-light);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  text-align: center;
  line-height: 1.15;
}

.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
  margin: 1.5rem auto;
  border-radius: 1px;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow-deep);
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--warm-white);
}

.product-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Product Badge ─── */
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}

.badge-bestseller { background: var(--gold); color: white; }
.badge-new        { background: var(--charcoal); color: white; }
.badge-limited    { background: #8B2635; color: white; }
.badge-exclusive  { background: var(--gold-dark); color: white; }
.badge-sale       { background: #2D6A4F; color: white; }
.badge-signature  { background: #4A4A6A; color: white; }
.badge-corporate  { background: #1A3A5C; color: white; }
.badge-custom     { background: #5C3D2E; color: white; }
.badge-popular    { background: var(--gold); color: white; }

/* ─── Out of Stock ─── */
.out-of-stock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  backdrop-filter: blur(2px);
}

.out-of-stock-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  border: 1px solid var(--charcoal-mid);
  padding: 8px 16px;
}

/* ─── Quick Add Overlay ─── */
.quick-add-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transform: translateY(100%);
  transition: transform var(--transition);
  z-index: 4;
}

.product-card:hover .quick-add-overlay {
  transform: translateY(0);
}

.quick-add-btn {
  width: 100%;
  padding: 10px;
  background: white;
  color: var(--charcoal);
  border: none;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.quick-add-btn:hover {
  background: var(--gold);
  color: white;
}

/* ─── Product Info ─── */
.product-info {
  padding: 16px;
}

.product-category-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-current {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.price-original {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: line-through;
}

/* ============================================================
   CATEGORY CARDS (Homepage)
   ============================================================ */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card-img {
  transform: scale(1.1);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 20, 8, 0.85) 0%,
    rgba(28, 20, 8, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(
    to top,
    rgba(28, 20, 8, 0.92) 0%,
    rgba(28, 20, 8, 0.5) 50%,
    rgba(201,168,76,0.1) 100%
  );
}

.category-card-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.category-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  line-height: 1.1;
}

.category-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateX(0);
  transition: transform var(--transition);
}

.category-card:hover .category-card-arrow {
  transform: translateX(6px);
}

/* ============================================================
   SHIPPING BANNER
   ============================================================ */
.shipping-banner {
  background: linear-gradient(135deg, #1C1408 0%, #2C2416 50%, #1C1408 100%);
  position: relative;
  overflow: hidden;
}

.shipping-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.shipping-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.shipping-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}

/* ============================================================
   CART SLIDE-OUT PANEL
   ============================================================ */
.cart-panel {
  position: fixed;
  top: 0; right: -480px;
  width: min(480px, 100vw);
  height: 100vh;
  background: white;
  z-index: 2000;
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 80px rgba(0,0,0,0.15);
}

.cart-panel.open { right: 0; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

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

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
}

.cart-close {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-mid);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.cart-close:hover {
  background: var(--charcoal);
  color: white;
  border-color: var(--charcoal);
}

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

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--charcoal-mid);
  text-align: center;
}

.cart-empty-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--warm-white);
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item-category {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 28px; height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.qty-btn:hover { background: var(--warm-white); }

.qty-display {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 28px;
}

.cart-item-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 4px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.05em;
}

.cart-item-remove:hover { color: #E05252; }

/* ─── Cart Footer ─── */
.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--off-white);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--charcoal-mid);
}

.cart-summary-row.total {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 8px;
}

.whatsapp-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: background var(--transition), transform 0.2s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #1DAA54;
  transform: translateY(-2px);
}

.whatsapp-btn svg {
  width: 20px; height: 20px;
  fill: white;
  flex-shrink: 0;
}

/* ============================================================
   SHOP PAGE — FILTERS SIDEBAR
   ============================================================ */
.filter-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.filter-group {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-group-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 14px;
}

/* ─── Custom Checkbox ─── */
.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--charcoal-mid);
  transition: color var(--transition);
}

.filter-checkbox-label:hover { color: var(--charcoal); }

.filter-checkbox-label input {
  display: none;
}

.custom-checkbox {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  background: white;
}

.filter-checkbox-label input:checked + .custom-checkbox {
  background: var(--gold);
  border-color: var(--gold);
}

.custom-checkbox::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.2s;
}

.filter-checkbox-label input:checked + .custom-checkbox::after {
  opacity: 1;
}

.checkbox-count {
  margin-left: auto;
  font-size: 0.7rem;
  color: #bbb;
}

/* ─── Price Range Slider ─── */
.price-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--value, 50%), var(--border) var(--value, 50%));
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin: 12px 0 8px;
}

.price-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: white;
  border: 2px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
  transition: transform 0.2s;
}

.price-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* ─── Sort Dropdown ─── */
.sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 40px 10px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  color: var(--charcoal);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--transition);
}

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

/* ─── Product Grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ─── Results Bar ─── */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.results-count {
  font-size: 0.82rem;
  color: var(--charcoal-mid);
}

.results-count strong {
  color: var(--charcoal);
}

/* ─── No Results State ─── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--charcoal-mid);
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

/* ============================================================
   GLASSMORPHISM CARDS
   ============================================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   NEWSLETTER / FOOTER SECTIONS
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.05em;
}

.footer-logo span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.2rem;
}

.footer-link {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-link:hover { color: var(--gold-light); }

.footer-divider {
  border-color: rgba(255,255,255,0.1);
}

/* ─── Newsletter Input ─── */
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
  padding: 12px 20px;
  background: var(--gold);
  border: none;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background var(--transition);
}

.newsletter-btn:hover { background: var(--gold-dark); }

/* ─── Social Icons ─── */
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* ============================================================
   PAGE HERO (Shop/Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #1C1408 0%, #2C2416 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: white;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.toast {
  background: var(--charcoal);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  white-space: nowrap;
}

.toast.success { background: #2D6A4F; }
.toast.gold    { background: var(--gold-dark); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-10px) scale(0.95); }
}

.toast.leaving {
  animation: toastOut 0.3s ease forwards;
}

/* ============================================================
   MOBILE FILTER PANEL
   ============================================================ */
.mobile-filter-panel {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
}

.mobile-filter-panel.open {
  display: block;
}

.mobile-filter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.mobile-filter-drawer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.mobile-filter-panel.open .mobile-filter-drawer {
  transform: translateY(0);
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */

/* ─── Fade In Up ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Staggered delay utilities ─── */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ─── Gold underline on hover ─── */
.gold-hover {
  transition: color var(--transition);
}
.gold-hover:hover { color: var(--gold); }

/* ─── Active filter pill ─── */
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* ─── Section padding shorthand ─── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ─── Image placeholder shimmer ─── */
.img-shimmer {
  background: linear-gradient(90deg, var(--warm-white) 25%, #eee 50%, var(--warm-white) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .filter-sidebar {
    position: static;
    display: none;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .cart-panel {
    width: 100vw;
    border-radius: 0;
  }

  .product-info { padding: 10px; }
  .product-name { font-size: 0.95rem; }
}
