﻿/* ================================================================
   Heaven11 â€“ Custom Stylesheet
   Override Bootstrap 5 + full brand design system
   Color Palette:
     --primary-dark   : #423E37
     --gold           : #E3B23C
     --bg-light       : #EDEBD7
     --muted          : #A39594
     --text            : #6E675F
================================================================ */

/* â”€â”€ CSS Custom Properties â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --primary-dark  : #423E37;
  --gold          : #E3B23C;
  --gold-dark     : #C49628;
  --bg-light      : #EDEBD7;
  --muted         : #A39594;
  --text          : #6E675F;
  --white         : #FFFFFF;
  --off-white     : #F5F3EA;

  /* Typography */
  --font-body     : 'Poppins', sans-serif;
  --font-heading  : 'Bebas Neue', 'Oswald', sans-serif;

  /* Spacing */
  --section-py    : 5rem;

  /* Transitions */
  --transition    : 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-sm     : 0 2px 12px rgba(66,62,55,0.08);
  --shadow-md     : 0 6px 28px rgba(66,62,55,0.14);
  --shadow-lg     : 0 12px 48px rgba(66,62,55,0.20);

  /* Bootstrap Overrides */
  --bs-primary    : #423E37;
  --bs-body-bg    : #EDEBD7;
  --bs-body-color : #6E675F;
  --bs-body-font-family: 'Poppins', sans-serif;
}

/* â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  color: var(--primary-dark);
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

/* â”€â”€ Page Fade-In â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.page-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ Utility Classes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-gold       { background-color: var(--gold) !important; }
.text-gold     { color: var(--gold) !important; }
.bg-dark-brand { background-color: var(--primary-dark) !important; }
.bg-off-white  { background-color: var(--off-white) !important; }
.section-py    { padding-top: var(--section-py); padding-bottom: var(--section-py); }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all var(--transition);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--primary-dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover, .btn-gold:focus {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(227,178,60,0.4);
}

.btn-dark-brand {
  background-color: var(--primary-dark);
  color: var(--white);
  border: 2px solid var(--primary-dark);
}
.btn-dark-brand:hover {
  background-color: transparent;
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--primary-dark);
}

/* â”€â”€ Announcement Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.announcement-bar {
  background-color: var(--primary-dark);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* â”€â”€ Navbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.heaven11-navbar {
  background-color: var(--bg-light);
  border-bottom: 1px solid rgba(66,62,55,0.1);
  padding: 0.45rem 0;
  transition: padding var(--transition), box-shadow var(--transition);
  z-index: 1050;
}

.heaven11-navbar.scrolled {
  padding: 0.3rem 0;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-light);
}

.heaven11-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--primary-dark);
  letter-spacing: 0.15em;
  transition: color var(--transition);
}
.heaven11-logo:hover { color: var(--gold); }

.navbar-nav .nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  padding: 0.5rem 0.75rem;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.75rem; right: 0.75rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-nav .nav-link:hover { color: var(--gold); }

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem;
  transition: color var(--transition), transform var(--transition);
  position: relative;
}
.nav-icon-btn:hover { color: var(--gold); transform: scale(1.1); }

.cart-badge {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23423E37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* â”€â”€ Mega Menu â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* ── Shop Dropdown ─────────────────────────────────────── */
.shop-dropdown-parent { position: relative !important; }

.shop-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: var(--bg-light);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 6px 6px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1040;
}
.shop-dropdown-parent:hover .shop-dropdown,
.shop-dropdown-parent:focus-within .shop-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.shop-dropdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4rem 1.1rem 0.2rem;
  margin: 0;
}

.shop-dropdown-item {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
  padding: 0.45rem 1.1rem;
  letter-spacing: 0.03em;
  transition: color var(--transition), padding-left var(--transition);
  white-space: nowrap;
}
.shop-dropdown-item:hover {
  color: var(--gold);
  padding-left: 1.4rem;
}
.shop-dropdown-item--muted {
  color: var(--text);
  font-weight: 400;
}
.shop-dropdown-item--muted:hover { color: var(--gold); }

.shop-dropdown-divider {
  height: 1px;
  background: rgba(66,62,55,0.1);
  margin: 0.4rem 1.1rem;
}

.shop-dropdown-all {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4rem 1.1rem;
  transition: color var(--transition);
}
.shop-dropdown-all:hover { color: var(--primary-dark); }

/* Bootstrap dropdown customization */
.heaven11-dropdown {
  border-radius: 4px;
  border: 1px solid rgba(66,62,55,0.12);
  background: var(--bg-light);
  min-width: 200px;
}
.heaven11-dropdown .dropdown-item {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.5rem 1rem;
  transition: background var(--transition);
}
.heaven11-dropdown .dropdown-item:hover {
  background: rgba(227,178,60,0.1);
  color: var(--primary-dark);
}

/* â”€â”€ Search Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--primary-dark);
  z-index: 2000;
  padding: 1.5rem 0;
  transform: translateY(-100%);
  transition: transform var(--transition);
}
.search-overlay.open { transform: translateY(0); }

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.search-field {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gold);
  color: var(--white);
  font-size: 1.4rem;
  padding: 0.5rem 2.5rem 0.5rem 2.5rem;
  outline: none;
  font-family: var(--font-body);
}
.search-field::placeholder { color: var(--muted); }
.search-icon-inner {
  position: absolute;
  left: 1rem;
  color: var(--muted);
  font-size: 1.2rem;
}
.search-inner { position: relative; }

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--primary-dark);
  border-top: 1px solid rgba(227,178,60,0.3);
  border-radius: 0 0 6px 6px;
  z-index: 10;
  max-height: 320px;
  overflow-y: auto;
}
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition);
}
.search-suggestion-item:hover { background: rgba(227,178,60,0.1); }
.search-suggestion-item img {
  width: 44px; height: 44px;
  object-fit: cover; border-radius: 3px;
}
.search-suggestion-name { font-size: 0.9rem; font-weight: 500; }
.search-suggestion-price { font-size: 0.8rem; color: var(--gold); }

/* â”€â”€ Offcanvas Cart â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.heaven11-offcanvas {
  background: var(--bg-light);
  width: 420px !important;
  max-width: 95vw;
}
.offcanvas-footer { background: var(--bg-light); }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(66,62,55,0.1);
  align-items: flex-start;
}
.cart-item-img {
  width: 70px; height: 85px;
  object-fit: cover; border-radius: 3px;
  flex-shrink: 0;
}
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 0.875rem; font-weight: 600; color: var(--primary-dark); }
.cart-item-meta { font-size: 0.75rem; color: var(--muted); }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--primary-dark); }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--muted);
  background: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: var(--primary-dark);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-value { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }

.remove-cart-item {
  background: none; border: none;
  color: var(--muted); font-size: 1rem;
  cursor: pointer; padding: 0;
  transition: color var(--transition);
  align-self: flex-start;
}
.remove-cart-item:hover { color: #dc3545; }

/* â”€â”€ Quick View Modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.heaven11-modal { border: none; border-radius: 6px; overflow: hidden; background: var(--bg-light); }

/* â”€â”€ Hero Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Individual slide */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
}

/* Image fills the slide */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* Ken Burns – odd slides zoom IN */
.hero-slide:nth-child(odd).active img {
  animation: kenBurnsIn 8s ease-in-out forwards;
}
/* Ken Burns – even slides zoom OUT (subtle reverse pan) */
.hero-slide:nth-child(even).active img {
  animation: kenBurnsOut 8s ease-in-out forwards;
}

@keyframes kenBurnsIn {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}
@keyframes kenBurnsOut {
  0%   { transform: scale(1.12) translate(1%, 1%); }
  100% { transform: scale(1)    translate(0, 0); }
}

/* Slide dots indicator */
.hero-slide-dots {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, height 0.3s;
}
.hero-dot.active {
  background: var(--gold);
  height: 22px;
  border-radius: 3px;
  transform: none;
}

/* Progress bar per slide */
.hero-slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 4;
  transition: none;
}
.hero-slide-progress.running {
  transition: width 4s linear;
  width: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66,62,55,0.88) 0%, rgba(66,62,55,0.4) 60%, transparent 100%);
}

/* ── Hero Slide Glitch Transition ──────────────────────────────────── */
.hero-slide.glitch-in {
  transition: none !important;
  animation: heroGlitchReveal 0.65s steps(1) both;
}
/* Red chromatic channel ghost */
.hero-slide.glitch-in::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: rgba(255, 38, 38, 0.22);
  mix-blend-mode: screen;
  animation: heroGlitchChromaR 0.65s steps(1) both;
}
/* Gold scanline sweep */
.hero-slide.glitch-in::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px, transparent 2px,
    rgba(255, 210, 0, 0.07) 2px, rgba(255, 210, 0, 0.07) 3px
  );
  animation: heroGlitchScanlines 0.65s steps(1) both;
}

/* Scanline clip-path reveal + skewX jitter */
@keyframes heroGlitchReveal {
  0%   { clip-path: inset(0 0 100% 0); transform: skewX(0deg); }
  8%   { clip-path: inset(0 0 78% 0);  transform: skewX(-2.5deg) translateX(7px); }
  18%  { clip-path: inset(12% 0 58% 0); transform: skewX(2deg) translateX(-5px); }
  28%  { clip-path: inset(55% 0 12% 0); transform: skewX(-1.5deg) translateX(4px); }
  38%  { clip-path: inset(0 0 42% 0);  transform: skewX(1deg) translateX(-3px); }
  48%  { clip-path: inset(42% 0 0% 0); transform: skewX(-0.8deg) translateX(2px); }
  58%  { clip-path: inset(18% 0 8% 0); transform: skewX(0.5deg) translateX(-1px); }
  70%  { clip-path: inset(4% 0 1% 0);  transform: skewX(0deg); }
  82%  { clip-path: inset(0 0 0 0);    transform: none; }
  100% { clip-path: none; transform: none; }
}

/* Red channel lateral oscillation */
@keyframes heroGlitchChromaR {
  0%   { opacity: 1;   transform: translateX(10px); }
  20%  { opacity: 0.7; transform: translateX(-7px); }
  40%  { opacity: 0.5; transform: translateX(5px); }
  60%  { opacity: 0.3; transform: translateX(-3px); }
  80%  { opacity: 0.1; transform: translateX(1px); }
  100% { opacity: 0;   transform: none; }
}

/* Scanline sweep top-to-bottom then fade */
@keyframes heroGlitchScanlines {
  0%   { opacity: 1;   transform: translateY(-100%); }
  35%  { opacity: 0.8; transform: translateY(-55%); }
  70%  { opacity: 0.4; transform: translateY(-15%); }
  100% { opacity: 0;   transform: translateY(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s 0.4s ease forwards;
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 0.9s 0.6s ease forwards;
}

.hero-actions {
  opacity: 0;
  animation: fadeInUp 0.9s 0.8s ease forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* â”€â”€ Section Headers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 480px;
}

/* â”€â”€ Product Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--off-white);
}
.product-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}
.product-card:hover .product-image { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  z-index: 2;
}
.product-badge.new { background: var(--primary-dark); color: var(--white); }

.wishlist-btn {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(237,235,215,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition);
  color: var(--muted);
  backdrop-filter: blur(4px);
}
.wishlist-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.wishlist-btn:hover, .wishlist-btn.active {
  background: var(--gold);
  color: var(--primary-dark);
  transform: scale(1.1);
}
.wishlist-btn.active { color: #e02020; background: var(--white); }
.wishlist-btn.active i::before { content: "\f415"; } /* bi-heart-fill */

.quick-view-btn {
  position: absolute;
  bottom: -40px; left: 0; right: 0;
  background: rgba(66,62,55,0.92);
  color: var(--gold);
  border: none;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: bottom var(--transition), background var(--transition);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.product-card:hover .quick-view-btn { bottom: 0; }
.quick-view-btn:hover { background: var(--gold); color: var(--primary-dark); }

.product-info {
  padding: 1rem 1.1rem 1.1rem;
}
.product-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
  display: block;
}
.product-name:hover { color: var(--gold); }

.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.product-price .original {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 0.4rem;
}
.product-price .sale { color: #c0392b; }

/* â”€â”€ Product Carousel (BS5) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-carousel-controls .carousel-control-prev,
.product-carousel-controls .carousel-control-next {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%; bottom: auto;
  transform: translateY(-50%);
  opacity: 1;
}
.product-carousel-controls .carousel-control-prev { left: -20px; }
.product-carousel-controls .carousel-control-next { right: -20px; }
.product-carousel-controls .carousel-control-prev-icon,
.product-carousel-controls .carousel-control-next-icon {
  filter: invert(1) sepia(1) saturate(0) brightness(0);
  width: 14px;
}

/* â”€â”€ Split Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.split-banner-item {
  position: relative;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
}
.split-banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.split-banner-item:hover .split-banner-img { transform: scale(1.07); }

.split-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(66,62,55,0.75) 0%, transparent 60%);
}

.split-banner-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  transform: translateY(10px);
  transition: transform var(--transition);
}
.split-banner-item:hover .split-banner-text { transform: translateY(0); }

.split-banner-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.split-banner-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* â”€â”€ Lookbook Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lookbook-section {
  background: var(--primary-dark);
  overflow: hidden;
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 3px;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
}
.lookbook-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.lookbook-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.lookbook-item:hover .lookbook-img { transform: scale(1.06); }
.lookbook-overlay {
  position: absolute;
  inset: 0;
  background: rgba(66,62,55,0);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background var(--transition);
}
.lookbook-item:hover .lookbook-overlay { background: rgba(66,62,55,0.55); }
.lookbook-cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.lookbook-item:hover .lookbook-cta { opacity: 1; transform: translateY(0); }

/* â”€â”€ Instagram Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 3px; }

@media (max-width: 1199px) { .insta-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 767px)  { .insta-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px)  { .insta-grid { grid-template-columns: repeat(2,1fr); } }

.insta-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.insta-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.insta-item:hover .insta-img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(66,62,55,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-icon { color: var(--white); font-size: 1.8rem; }

/* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonial-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-text {
  font-style: italic;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.85rem; color: var(--primary-dark); }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.heaven11-footer { background: var(--off-white); }

.footer-newsletter {
  background: var(--primary-dark);
  color: var(--white);
}
.footer-newsletter-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-newsletter-sub {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}
.newsletter-input {
  max-width: 360px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
  box-shadow: none;
}

.footer-main { border-bottom: 1px solid rgba(66,62,55,0.1); }
.footer-brand-tagline {
  color: var(--text);
  line-height: 1.75;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-dark);
  letter-spacing: 0.15em;
  display: inline-block;
}
.footer-logo:hover { color: var(--gold); }

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(66,62,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--primary-dark);
  transition: all var(--transition);
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.payment-chip {
  background: var(--white);
  border: 1px solid rgba(66,62,55,0.15);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  color: var(--text);
  letter-spacing: 0.05em;
}

.footer-bottom {
  background: var(--off-white);
  border-top: 1px solid rgba(66,62,55,0.12);
}
.footer-bottom p, .footer-bottom small {
  color: var(--text);
}
.footer-legal-link {
  font-size: 0.78rem;
  color: var(--text);
  transition: color var(--transition);
}
.footer-legal-link:hover { color: var(--gold); }

/* â”€â”€ Shop Page: Filters â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.filter-sidebar {
  background: var(--white);
  border-radius: 4px;
  padding: 1.5rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-sm);
}

/* Mobile filter offcanvas */
.filter-offcanvas {
  background: var(--white);
  border-right: 2px solid var(--gold);
  width: 280px;
  max-width: 82vw;
  top: 30px !important;
  height: calc(100% - 30px) !important;
  z-index: 1049;
}
.filter-offcanvas .offcanvas-header {
  border-bottom: none;
  padding: 0.4rem 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 36px;
}
.filter-offcanvas .offcanvas-header .filter-heading {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  margin: 0;
  flex: 1;
}
.filter-offcanvas .offcanvas-header .btn-close {
  margin: 0 0 0 auto;
  opacity: 0.65;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
}
.filter-offcanvas .offcanvas-header .btn-close:hover { opacity: 1; }
.filter-offcanvas .offcanvas-body {
  padding: 0.35rem 0.75rem;
  overflow-y: auto;
}
.filter-offcanvas .mb-4 { margin-bottom: 0.4rem !important; }
.filter-offcanvas h6 {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.2rem !important;
}
.bg-gold-badge {
  background-color: var(--gold);
  color: var(--primary-dark);
  font-weight: 700;
}
/* Offcanvas backdrop stays below navbar */
.offcanvas-backdrop { z-index: 1040; }
.filter-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-dark);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(66,62,55,0.12);
  margin-bottom: 1rem;
}
.filter-check .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}
.price-range-output { font-size: 0.85rem; font-weight: 600; color: var(--gold); }

.sort-select {
  border: 1px solid rgba(66,62,55,0.2);
  border-radius: 2px;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  background: var(--white);
  color: var(--primary-dark);
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(227,178,60,0.2); }

/* â”€â”€ Product Detail Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--off-white);
}
.product-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-gallery-main:hover img { transform: scale(1.03); }

.product-gallery-thumbs .thumb-item {
  width: 70px; height: 85px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--transition), border var(--transition);
  border: 2px solid transparent;
}
.product-gallery-thumbs .thumb-item:hover,
.product-gallery-thumbs .thumb-item.active {
  opacity: 1;
  border-color: var(--gold);
}

.size-selector .size-btn {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(66,62,55,0.25);
  border-radius: 2px;
  background: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--primary-dark);
}
.size-selector .size-btn:hover,
.size-selector .size-btn.selected {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}
.size-selector .size-btn.out-of-stock {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product-tabs .nav-tabs { border-bottom: 2px solid rgba(66,62,55,0.1); }
.product-tabs .nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: none;
  padding: 0.75rem 1.25rem 0.75rem 0;
  border-radius: 0;
  transition: color var(--transition);
}
.product-tabs .nav-link.active {
  color: var(--primary-dark);
  background: none;
  border-bottom: 2px solid var(--gold);
}

/* â”€â”€ Cart & Checkout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cart-table th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-color: rgba(66,62,55,0.12) !important;
}
.cart-table td { border-color: rgba(66,62,55,0.08) !important; vertical-align: middle; }

.order-summary-card {
  background: var(--white);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

/* Checkout Steps */
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}
.step-item {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 180px;
}
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(66,62,55,0.1);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.step-item.active .step-circle { background: var(--gold); color: var(--primary-dark); }
.step-item.done   .step-circle { background: var(--primary-dark); color: var(--white); }
.step-line {
  flex: 1;
  height: 2px;
  background: rgba(66,62,55,0.12);
}
.step-item.done .step-line { background: var(--primary-dark); }
.step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  text-align: center;
  color: var(--muted);
  display: block;
}
.step-item.active .step-label { color: var(--primary-dark); font-weight: 700; }

/* â”€â”€ Forms â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-control, .form-select {
  border: 1px solid rgba(66,62,55,0.22);
  border-radius: 2px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--primary-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227,178,60,0.18);
  outline: none;
  background: var(--white);
}
.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}
.invalid-feedback { font-size: 0.78rem; }

/* â”€â”€ Auth Pages â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.auth-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 460px;
  width: 100%;
}
.auth-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(66,62,55,0.15);
}

/* â”€â”€ Admin Panel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.admin-sidebar {
  width: 250px;
  min-height: 100vh;
  background: var(--primary-dark);
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  padding-top: 1.5rem;
}
.admin-sidebar-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  padding: 0.5rem 1.5rem 1.5rem;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border-left-color: var(--gold);
}
.admin-nav-link i { font-size: 1rem; width: 20px; }
.admin-main { margin-left: 250px; padding: 2rem; min-height: 100vh; background: var(--bg-light); }
.admin-stat-card {
  background: var(--white);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition);
}
.admin-stat-card:hover { transform: translateY(-2px); }
.admin-stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-dark);
  line-height: 1;
}
.admin-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}
.admin-table thead th {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
}

/* â”€â”€ Toast container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.heaven11-toast {
  min-width: 300px;
  border-radius: 14px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.22) !important;
  overflow: hidden;
  border: none !important;
  position: relative;
}

/* slide-in from right */
@keyframes toastSlideIn {
  from { opacity: 0; transform: translateX(120%) scale(.85); }
  to   { opacity: 1; transform: translateX(0)   scale(1);   }
}
/* slide-out to right */
@keyframes toastSlideOut {
  from { opacity: 1; transform: translateX(0)   scale(1);   }
  to   { opacity: 0; transform: translateX(120%) scale(.85); }
}
/* icon bounce */
@keyframes toastIconBounce {
  0%,100% { transform: scale(1);    }
  35%     { transform: scale(1.45); }
  60%     { transform: scale(.88);  }
  80%     { transform: scale(1.15); }
}
/* progress bar drain */
@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0%;   }
}

.heaven11-toast.toast-entering { animation: toastSlideIn .38s cubic-bezier(.34,1.56,.64,1) forwards; }
.heaven11-toast.toast-leaving  { animation: toastSlideOut .3s ease-in forwards; }

.heaven11-toast .toast-icon {
  font-size: 1.45rem;
  animation: toastIconBounce .65s ease .15s both;
  flex-shrink: 0;
}
.heaven11-toast .toast-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: rgba(255,255,255,.45);
  animation: toastProgress var(--toast-duration, 3.2s) linear forwards;
}

/* cart-add flying dot */
@keyframes flyToBadge {
  0%   { opacity: 1; transform: scale(1)  translate(0, 0); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: scale(.3) translate(var(--fly-x), var(--fly-y)); }
}
.cart-fly-dot {
  position: fixed;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold, #E3B23C);
  pointer-events: none;
  z-index: 10000;
  animation: flyToBadge .6s cubic-bezier(.4,0,.2,1) forwards;
}

/* â”€â”€ Range Input â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(66,62,55,0.2);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* â”€â”€ Status Badges â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}
.status-pending    { background: rgba(227,178,60,0.15);  color: #9a6f00; }
.status-processing { background: rgba(13,110,253,0.12);  color: #0d6efd; }
.status-shipped    { background: rgba(25,135,84,0.12);   color: #198754; }
.status-delivered  { background: rgba(25,135,84,0.2);    color: #0d6b40; }
.status-cancelled  { background: rgba(220,53,69,0.12);   color: #dc3545; }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
  .shop-dropdown { position: static; transform: none; opacity: 1; visibility: visible; border-top: none; border-radius: 0; box-shadow: none; min-width: 100%; }
  .shop-dropdown-parent:hover .shop-dropdown { box-shadow: none; }
  .admin-sidebar { width: 100%; min-height: auto; position: relative; }
  .admin-main { margin-left: 0; }
  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .lookbook-item:first-child { grid-column: 1 / 3; grid-row: 1; }
}

@media (max-width: 767px) {
  .hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .split-banner-item { height: 300px; }
  .product-gallery-thumbs .thumb-item { width: 52px; height: 64px; }
  .auth-card { padding: 1.75rem; }
  .checkout-steps { gap: 0; }
  .step-label { display: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
  :root { --section-py: 3rem; }
  .heaven11-offcanvas { width: 100vw !important; }
  .lookbook-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .lookbook-item:first-child { grid-column: 1; grid-row: 1 / 3; }
}

/* ================================================================
   HEAVEN11 – EXTENDED ANIMATIONS & NEW COMPONENTS
================================================================ */

/* ── Page Preloader ─────────────────────────────────────────── */
#h11-preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#h11-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--white);
  letter-spacing: 0.2em;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}
.preloader-logo span { color: var(--gold); }
.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: var(--gold);
  animation: preloaderFill 1.2s ease forwards;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes preloaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── Hero Animated Particles ────────────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
}

/* ── Hero Glitch Effect ─────────────────────────────────────── */
.hero-title-glitch {
  position: relative;
  display: inline-block;
}
.hero-title-glitch::before,
.hero-title-glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font-family: var(--font-heading);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
}
.hero-title-glitch::before {
  color: var(--gold);
  animation: glitch-1 4s infinite;
}
.hero-title-glitch::after {
  color: #7effff;
  animation: glitch-2 4s infinite;
}
@keyframes glitch-1 {
  0%, 90%, 100% { transform: none; opacity: 0; }
  91%  { transform: translateX(-3px); opacity: 0.7; }
  93%  { transform: translateX(3px);  opacity: 0.7; }
  95%  { transform: translateX(-2px); opacity: 0.5; }
  97%  { transform: translateX(0);    opacity: 0; }
}
@keyframes glitch-2 {
  0%, 88%, 100% { transform: none; opacity: 0; }
  89%  { transform: translateX(3px) skewX(-2deg);  opacity: 0.6; }
  91%  { transform: translateX(-3px) skewX(2deg);  opacity: 0.6; }
  93%  { transform: translateX(2px);  opacity: 0.3; }
  95%  { transform: none; opacity: 0; }
}

/* ── Animated Marquee / Ticker ──────────────────────────────── */
.h11-ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 0.6rem 0;
  position: relative;
}
.h11-ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.h11-ticker-track:hover { animation-play-state: paused; }
.h11-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.h11-ticker-item::after {
  content: '✦';
  color: var(--primary-dark);
  opacity: 0.5;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Staggered Animate ──────────────────────────────────────── */
.animate-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.animate-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.animate-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.animate-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.animate-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.animate-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.animate-stagger.visible > *:nth-child(7) { transition-delay: 0.47s; }
.animate-stagger.visible > *:nth-child(8) { transition-delay: 0.54s; }
.animate-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── Text Reveal Clip ───────────────────────────────────────── */
.text-reveal {
  overflow: hidden;
}
.text-reveal-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.text-reveal.visible .text-reveal-inner {
  transform: translateY(0);
}

/* ── Animated Counter ───────────────────────────────────────── */
.counter-section {
  background: var(--primary-dark);
  padding: 4rem 0;
}
.counter-item { text-align: center; }
.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.counter-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-top: 0.5rem;
  display: block;
}

/* ── Floating Hero Badges ───────────────────────────────────── */
.hero-floating-badge {
  position: absolute;
  background: rgba(227,178,60,0.92);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  animation: floatBadge 3s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
.hero-floating-badge:nth-child(2) { animation-delay: 0.8s; }
.hero-floating-badge:nth-child(3) { animation-delay: 1.6s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

/* ── Announcement Bar Animated ──────────────────────────────── */
.announcement-bar {
  background: var(--primary-dark);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  overflow: hidden;
  position: relative;
}
.announcement-track {
  display: inline-flex;
  animation: announceTicker 30s linear infinite;
  white-space: nowrap;
}
.announcement-track:hover { animation-play-state: paused; }
@keyframes announceTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Divider ────────────────────────────────────────── */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.75rem auto 0;
  border-radius: 999px;
}

/* ── Product Card Shimmer (loading) ─────────────────────────── */
.product-card-skeleton {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}
.skeleton-img {
  aspect-ratio: 3/4;
  background: linear-gradient(90deg, #f0ede4 25%, #e8e4d8 50%, #f0ede4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0ede4 25%, #e8e4d8 50%, #f0ede4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin: 0.75rem 1rem 0.4rem;
}
.skeleton-line.short { width: 60%; }
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ── Scroll Progress Bar ────────────────────────────────────── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #fff5d0);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Page Transition ────────────────────────────────────────── */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 99998;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.page-transition-overlay.entering { transform: translateX(0); }
.page-transition-overlay.leaving  { transform: translateX(100%); }

/* ── Contact / About / FAQ page styles ─────────────────────── */
.page-hero {
  background: var(--primary-dark);
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,178,60,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 520px;
  margin: 1rem auto 0;
}

/* ── FAQ accordion ──────────────────────────────────────────── */
.faq-accordion .accordion-button {
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--off-white);
  color: var(--gold);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: none;
}
.faq-accordion .accordion-item {
  border: 1px solid rgba(66,62,55,0.1);
  margin-bottom: 0.5rem;
  border-radius: 4px !important;
  overflow: hidden;
}
.faq-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

/* ── Contact form ───────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(66,62,55,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(227,178,60,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Forgot/Reset password ──────────────────────────────────── */
.auth-link {
  color: var(--gold);
  text-decoration: underline;
  font-size: 0.85rem;
}
.auth-link:hover { color: var(--gold-dark); }

/* ── Track order ────────────────────────────────────────────── */
.track-timeline {
  position: relative;
  padding-left: 2rem;
}
.track-timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: rgba(66,62,55,0.15);
}
.track-step {
  position: relative;
  padding: 0 0 1.5rem 1.5rem;
}
.track-step::before {
  content: '';
  position: absolute;
  left: -1.65rem; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(66,62,55,0.2);
  border: 2px solid rgba(66,62,55,0.2);
  transition: all var(--transition);
}
.track-step.done::before {
  background: var(--gold);
  border-color: var(--gold);
}
.track-step.active::before {
  background: var(--primary-dark);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(227,178,60,0.3);
}
.track-step-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-dark);
}
.track-step-date {
  font-size: 0.75rem;
  color: var(--muted);
}

/* @keyframes for hero text reveal delay chain */
.hero-eyebrow  { animation-delay: 0.2s; }
.hero-title    { animation-delay: 0.4s; }
.hero-subtitle { animation-delay: 0.65s; }
.hero-actions  { animation-delay: 0.85s; }
.hero-floating-badge-1 { top: 25%; right: 8%; animation-delay: 1.2s; }
.hero-floating-badge-2 { top: 60%; right: 12%; animation-delay: 2s; }
.hero-floating-badge-3 { top: 40%; right: 5%; animation-delay: 1.6s; }


/* ================================================================
   MOBILE OPTIMIZATIONS – Hero & Animations
================================================================ */

/* ── Tablet (≤768px) ─────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Hero section: reduce min-height so it doesn't swallow the screen */
  .hero-section {
    min-height: 88vh;
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  /* Hero content: left-align, tighter padding */
  .hero-content {
    padding-top: 5rem !important;
    padding-bottom: 0 !important;
  }

  /* Title: slightly tighter line-height on small screens */
  .hero-title {
    line-height: 1;
    margin-bottom: 1rem;
  }

  /* Subtitle: shorten max-width so it doesn't collide with overlay */
  .hero-subtitle {
    max-width: 100%;
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
  }

  /* CTA buttons: full-width stacked */
  .hero-actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .hero-actions .btn {
    width: 100%;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    text-align: center;
  }

  /* Slide dots: move to bottom-center on mobile */
  .hero-slide-dots {
    bottom: 1.25rem;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    gap: 0.4rem;
  }
  .hero-dot.active {
    width: 22px;
    height: 6px;
    border-radius: 3px;
  }

  /* Slide progress bar: thinner */
  .hero-slide-progress { height: 2px; }

  /* Ken Burns: disable on mobile (saves CPU/GPU) */
  .hero-slide:nth-child(odd).active img,
  .hero-slide:nth-child(even).active img {
    animation: none;
  }

  /* Glitch effect: disable on mobile (renders poorly on small screens) */
  .hero-title-glitch::before,
  .hero-title-glitch::after {
    display: none;
  }

  /* Particles: reduce visual footprint */
  .hero-particle {
    width: 1.5px !important;
    height: 1.5px !important;
  }

  /* Scroll indicator: hide on short viewports */
  .hero-scroll-indicator { display: none; }

  /* Ticker: slightly smaller text */
  .h11-ticker-item {
    font-size: 0.68rem;
    padding: 0 1.25rem;
  }

  /* Counter section: tighter padding */
  .counter-section { padding: 2.5rem 0; }
  .counter-number  { font-size: clamp(2rem, 8vw, 3rem); }

  /* Announcement bar text */
  .announcement-track { font-size: 0.7rem; }
}

/* ── Small mobile (≤480px) ───────────────────────────────────── */
@media (max-width: 480px) {

  .hero-section { min-height: 85vh; }

  /* Eyebrow label: smaller */
  .hero-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.6rem;
  }

  /* Overlay: heavier gradient so text always readable on small screens */
  .hero-overlay {
    background: linear-gradient(160deg, rgba(66,62,55,0.92) 0%, rgba(66,62,55,0.6) 70%, transparent 100%);
  }

  /* Particles: hide entirely on very small screens */
  .hero-particles { display: none; }

  /* Ticker speed: slow down so text is readable */
  .h11-ticker-track { animation-duration: 35s; }

  /* Preloader logo: smaller */
  .preloader-logo { font-size: clamp(1.8rem, 10vw, 3rem); }
  .preloader-bar  { width: 140px; }

  /* Counter: 2-column grid instead of 4 */
  .counter-section .row > [class*="col"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
