/* ==========================================================================
   Ghorer Haat - Ultra Luxury E-Commerce Theme (Obsidian & Champagne Gold)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Hind+Siliguri:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Obsidian & Midnight Darks */
  --lux-obsidian: #090e17;
  --lux-midnight: #0f1826;
  --lux-slate: #1c2738;
  --lux-card-dark: #121c2c;
  
  /* Champagne & Royal Gold */
  --lux-gold: #c59b27;
  --lux-gold-light: #e5ca8c;
  --lux-gold-hover: #dbb34b;
  --lux-gold-dark: #966f16;
  --lux-gold-soft: #fcf6e8;
  --lux-gold-grad: linear-gradient(135deg, #dfbc77 0%, #c59b27 50%, #9e7529 100%);
  --lux-gold-foil: linear-gradient(110deg, #c59b27 0%, #f7e2a9 30%, #c59b27 60%, #ffd700 85%, #9e7529 100%);
  --lux-dark-grad: linear-gradient(145deg, #0e1726 0%, #090e17 100%);
  
  /* Surfaces & Canvas */
  --lux-bg: #faf9f6;
  --lux-surface: #ffffff;
  --lux-cream: #f4f1ea;
  --lux-soft-gray: #f0f2f5;
  
  /* Text & Accents */
  --lux-text: #17202d;
  --lux-text-muted: #677587;
  --lux-border: rgba(197, 155, 39, 0.22);
  --lux-border-light: #e8e6df;
  --lux-crimson: #d32f2f;
  
  /* Shadows & Glow */
  --lux-shadow-sm: 0 4px 15px rgba(9, 14, 23, 0.04);
  --lux-shadow: 0 12px 36px -12px rgba(9, 14, 23, 0.09);
  --lux-shadow-lg: 0 24px 50px -15px rgba(9, 14, 23, 0.14);
  --lux-gold-glow: 0 0 25px rgba(197, 155, 39, 0.28);
  --lux-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ================================= Base & Reset ================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', 'Hind Siliguri', sans-serif;
  color: var(--lux-text);
  background-color: var(--lux-bg);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Hind Siliguri', sans-serif;
  color: var(--lux-obsidian);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.font-serif {
  font-family: 'Cinzel', serif;
}

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

img {
  max-width: 100%;
}

/* ================================= Typography & Badges ================================= */
.gold-text {
  background: var(--lux-gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-badge {
  background: var(--lux-gold-soft);
  color: var(--lux-gold-dark);
  border: 1px solid var(--lux-border);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ================================= Luxury Buttons ================================= */
.btn-lux-primary {
  background: var(--lux-gold-grad) !important;
  color: #0b111c !important;
  font-weight: 700 !important;
  border: 0 !important;
  padding: 12px 26px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 8px 20px -6px rgba(197, 155, 39, 0.45) !important;
  transition: var(--lux-transition) !important;
  letter-spacing: 0.2px;
  cursor: pointer;
  text-decoration: none;
}

.btn-lux-primary:hover {
  background: linear-gradient(135deg, #ecd39c 0%, #d4af37 50%, #ad8230 100%) !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(197, 155, 39, 0.6) !important;
}

.btn-lux-dark {
  background: var(--lux-obsidian) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: var(--lux-transition) !important;
  cursor: pointer;
  text-decoration: none;
}

.btn-lux-dark:hover {
  background: var(--lux-midnight) !important;
  border-color: var(--lux-gold) !important;
  color: var(--lux-gold-light) !important;
  transform: translateY(-2px);
  box-shadow: var(--lux-shadow) !important;
}

.btn-lux-outline {
  background: transparent !important;
  color: var(--lux-obsidian) !important;
  border: 1.5px solid var(--lux-gold) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: var(--lux-transition) !important;
  cursor: pointer;
  text-decoration: none;
}

.btn-lux-outline:hover {
  background: var(--lux-gold) !important;
  color: #0b111c !important;
  transform: translateY(-2px);
}

/* ================================= Topbar ================================= */
.topbar {
  background: var(--lux-obsidian);
  color: #e3e8ef;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(197, 155, 39, 0.25);
}

.topbar .top-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lux-gold-light);
  font-weight: 500;
}

.topbar .top-pill i {
  color: var(--lux-gold);
}

.topbar .topbar-contact {
  color: #cbd5e1;
}

.topbar .topbar-contact b {
  color: var(--lux-gold-light);
  margin-left: 4px;
}

/* ================================= Header ================================= */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 155, 39, 0.15);
  box-shadow: 0 10px 30px -15px rgba(9, 14, 23, 0.07);
  transition: var(--lux-transition);
}

.brand-lux {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-crest {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--lux-dark-grad);
  border: 1.5px solid var(--lux-gold);
  display: grid;
  place-items: center;
  color: var(--lux-gold);
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.25);
  transition: var(--lux-transition);
  flex-shrink: 0;
}

.brand-lux:hover .brand-crest {
  transform: rotate(5deg) scale(1.04);
  border-color: var(--lux-gold-light);
  box-shadow: var(--lux-gold-glow);
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--lux-obsidian);
  letter-spacing: -0.5px;
}

.brand-title b {
  background: var(--lux-gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lux-gold-dark);
  font-weight: 700;
  margin-top: 2px;
}

/* Search Bar */
.search-box-lux {
  position: relative;
  display: flex;
  align-items: center;
  background: #f6f8fb;
  border: 1.5px solid var(--lux-border-light);
  border-radius: 30px;
  padding: 4px 6px 4px 20px;
  transition: var(--lux-transition);
}

.search-box-lux:focus-within {
  background: #fff;
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 4px rgba(197, 155, 39, 0.12);
}

.search-box-lux input {
  border: 0;
  outline: 0;
  background: none;
  width: 100%;
  font-size: 14px;
  color: var(--lux-text);
}

.search-box-lux input::placeholder {
  color: #94a3b8;
}

.search-box-lux button {
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lux-obsidian);
  color: var(--lux-gold-light);
  display: grid;
  place-items: center;
  transition: var(--lux-transition);
  flex-shrink: 0;
  cursor: pointer;
}

.search-box-lux button:hover {
  background: var(--lux-gold);
  color: #0b111c;
  transform: scale(1.06);
}

/* Action Icons */
.head-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--lux-obsidian);
  font-size: 19px;
  position: relative;
  margin-left: 8px;
  transition: var(--lux-transition);
}

.head-action:hover {
  background: #ffffff;
  border-color: var(--lux-gold);
  color: var(--lux-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -4px rgba(197, 155, 39, 0.25);
}

.badge-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--lux-gold-grad);
  color: #090e17;
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid #fff;
}

/* Navigation Bar */
.nav-lux {
  padding: 6px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.nav-lux .nav-link {
  font-weight: 600;
  font-size: 14.5px;
  color: #475569;
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
  transition: var(--lux-transition);
}

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

.nav-lux .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--lux-gold);
  border-radius: 2px;
}

.nav-lux .offer-link {
  color: var(--lux-crimson) !important;
  font-weight: 700;
}

.nav-lux .offer-link i {
  color: var(--lux-gold);
}

.nav-track-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lux-obsidian);
  background: #f8fafc;
  border: 1px solid var(--lux-border-light);
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--lux-transition);
}

.nav-track-btn:hover {
  border-color: var(--lux-gold);
  background: #fff;
  color: var(--lux-gold-dark);
}

/* ================================= Bento Hero ================================= */
.hero-luxury {
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #f3f5f8 0%, #faf8f5 100%);
}

.hero-luxury-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-luxury-ambient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}

.hero-luxury-ambient span:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.25), transparent 70%);
}

.hero-luxury-ambient span:nth-child(2) {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(15, 24, 38, 0.15), transparent 70%);
}

.hero-luxury .container {
  position: relative;
  z-index: 1;
}

.bento-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
}

.bento-box {
  position: relative;
  border-radius: 24px;
  background: var(--lux-surface);
  border: 1px solid var(--lux-border-light);
  padding: 28px;
  box-shadow: var(--lux-shadow);
  overflow: hidden;
  transition: var(--lux-transition);
}

.bento-box:hover {
  border-color: var(--lux-border);
  box-shadow: var(--lux-shadow-lg);
}

/* Main Bento Hero Card */
.bento-main {
  grid-column: span 7;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: #fff;
  background-color: #090e17;
  background-image:
    linear-gradient(90deg, rgba(9, 14, 23, 0.98) 0%, rgba(9, 14, 23, 0.92) 52%, rgba(9, 14, 23, 0.52) 100%),
    var(--hero-product-image);
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(197, 155, 39, 0.3);
  position: relative;
}

.bento-main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.15), transparent 70%);
  pointer-events: none;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid rgba(197, 155, 39, 0.35);
  color: var(--lux-gold-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.bento-main h1 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  margin: 18px 0 14px;
}

.bento-main h1 .highlight {
  background: var(--lux-gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.bento-main p {
  color: #cbd5e1;
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.bento-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.bento-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
}

.bento-pills i {
  color: var(--lux-gold);
}

/* Bento Photo Card */
.bento-photo-card {
  grid-column: span 5;
  grid-row: span 2;
  padding: 0;
  min-height: 320px;
  position: relative;
  border: 1px solid rgba(197, 155, 39, 0.25);
  overflow: hidden;
}

.bento-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-photo-card:hover img {
  transform: scale(1.04);
}

.bento-seal {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(9, 14, 23, 0.88);
  border: 1.5px solid var(--lux-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--lux-gold-light);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.bento-seal strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.bento-seal small {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e2e8f0;
}

.bento-rating-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--lux-border);
  z-index: 2;
}

.bento-rating-chip i {
  color: var(--lux-gold);
}

.bento-rating-chip b {
  font-size: 14px;
  color: var(--lux-obsidian);
}

.bento-rating-chip em {
  font-style: normal;
  font-size: 12px;
  color: var(--lux-text-muted);
}

/* Bento Product Feature Card */
.bento-product-card {
  grid-column: span 4;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--lux-border-light);
  border-radius: 20px;
  position: relative;
  transition: var(--lux-transition);
}

.bento-product-card:hover {
  border-color: var(--lux-gold);
  transform: translateY(-3px);
  box-shadow: var(--lux-shadow-hover);
}

.bento-product-thumb {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  flex-shrink: 0;
  border: 1px solid #edf2f7;
}

.bento-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-product-meta {
  flex: 1;
  min-width: 0;
}

.bento-product-meta small {
  font-size: 11px;
  color: var(--lux-gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bento-product-meta h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 2px 0 6px;
  color: var(--lux-obsidian);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bento-product-meta .price {
  font-size: 16px;
  font-weight: 800;
  color: var(--lux-obsidian);
}

.bento-product-meta .price del {
  font-size: 12px;
  color: #94a3b8;
  margin-left: 6px;
}

/* Bento Royal Offer Card */
.bento-offer-card {
  grid-column: span 4;
  background: linear-gradient(135deg, #182333 0%, #0d1420 100%);
  border: 1px solid var(--lux-border);
  color: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-offer-card .offer-head {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--lux-gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bento-offer-card .offer-value {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  margin: 6px 0;
  background: var(--lux-gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-offer-card p {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.bento-offer-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lux-gold-light);
}

.bento-offer-card a:hover {
  color: #fff;
  gap: 10px;
}

/* Bento Categories Mini */
.bento-cats-card {
  grid-column: span 4;
  background: #fff;
  border: 1px solid var(--lux-border-light);
  padding: 22px;
  border-radius: 20px;
}

.bento-cats-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.bento-cats-head strong {
  font-size: 14.5px;
  color: var(--lux-obsidian);
}

.bento-cats-head a {
  font-size: 12px;
  font-weight: 700;
  color: var(--lux-gold-dark);
}

.bento-cats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bento-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  transition: var(--lux-transition);
}

.bento-cat-btn:hover {
  background: var(--lux-gold-soft);
  border-color: var(--lux-gold);
  color: var(--lux-obsidian);
}

.bento-cat-btn i {
  color: var(--lux-gold);
}

/* ================================= Section Headings ================================= */
.lux-section {
  padding: 75px 0;
}

.lux-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.lux-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lux-gold-dark);
  margin-bottom: 4px;
}

.lux-section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--lux-obsidian);
  margin: 0;
}

.lux-head-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lux-gold-dark);
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--lux-gold-soft);
  border: 1px solid var(--lux-border);
  transition: var(--lux-transition);
}

.lux-head-link:hover {
  background: var(--lux-gold);
  color: #0b111c;
  gap: 10px;
}

/* ================================= Category Cards ================================= */
.category-lux-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #ffffff;
  border: 1px solid var(--lux-border-light);
  border-radius: 20px;
  transition: var(--lux-transition);
  box-shadow: var(--lux-shadow-sm);
  height: 100%;
}

.category-lux-card:hover {
  border-color: var(--lux-gold);
  transform: translateY(-6px);
  box-shadow: var(--lux-shadow-hover);
}

.cat-icon-rim {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(145deg, #faf7ee 0%, #f0ebd9 100%);
  border: 1.5px solid var(--lux-gold);
  display: grid;
  place-items: center;
  font-size: 26px;
  color: var(--lux-gold-dark);
  margin-bottom: 14px;
  transition: var(--lux-transition);
}

.category-lux-card:hover .cat-icon-rim {
  background: var(--lux-gold);
  color: #090e17;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(197, 155, 39, 0.35);
}

.category-lux-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--lux-obsidian);
}

.category-lux-card small {
  font-size: 12px;
  color: var(--lux-text-muted);
}

/* ================================= Product Card ================================= */
.product-card-lux {
  background: #ffffff;
  border: 1px solid #ede9e0;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--lux-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--lux-shadow-sm);
  position: relative;
}

.product-card-lux:hover {
  border-color: var(--lux-gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -12px rgba(197, 155, 39, 0.22);
}

.product-card-thumb {
  position: relative;
  height: 250px;
  background: #f8f9fa;
  overflow: hidden;
}

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

.product-card-lux:hover .product-card-thumb img {
  transform: scale(1.07);
}

.sale-pill-lux {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--lux-crimson);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
  z-index: 2;
}

.wish-pill-lux {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  color: #475569;
  font-size: 16px;
  cursor: pointer;
  transition: var(--lux-transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.wish-pill-lux:hover,
.wish-pill-lux.active {
  background: #fff;
  color: var(--lux-crimson);
  transform: scale(1.1);
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-category {
  font-size: 11.5px;
  color: var(--lux-gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--lux-obsidian);
  line-height: 1.35;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
}

.product-card-title a:hover {
  color: var(--lux-gold-dark);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--lux-gold);
  margin-bottom: 12px;
}

.product-rating span {
  color: var(--lux-text-muted);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f3f5;
}

.product-price-block {
  display: flex;
  flex-direction: column;
}

.product-price-current {
  font-size: 19px;
  font-weight: 800;
  color: var(--lux-obsidian);
  line-height: 1.1;
}

.product-price-current del {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  margin-left: 6px;
}

.product-unit {
  font-size: 11px;
  color: var(--lux-text-muted);
}

.btn-add-cart-lux {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lux-obsidian);
  color: var(--lux-gold-light);
  border: 1px solid var(--lux-border);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: var(--lux-transition);
  cursor: pointer;
}

.btn-add-cart-lux:hover {
  background: var(--lux-gold);
  color: #0b111c;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(197, 155, 39, 0.4);
}

/* ================================= Luxury Deal Banner ================================= */
.deal-lux-section {
  padding: 40px 0;
}

.deal-lux-banner {
  background: radial-gradient(circle at 75% 30%, #1c2a3f 0%, #090e17 80%);
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: 30px;
  padding: 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.deal-lux-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.2), transparent 70%);
  pointer-events: none;
}

.deal-content {
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.deal-content h2 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 14px 0 12px;
}

.deal-content p {
  font-size: 17px;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.lux-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.countdown-digit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid var(--lux-gold);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--lux-gold-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.countdown-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 4px;
}

.countdown-sep {
  font-size: 24px;
  font-weight: 700;
  color: var(--lux-gold);
  margin-bottom: 16px;
}

.deal-image-wrap {
  width: 42%;
  height: 340px;
  border-radius: 200px 24px 24px 200px;
  overflow: hidden;
  border: 2px solid var(--lux-gold);
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.deal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================= Reviews / Testimonials ================================= */
.review-slider {
  --reviews-visible: 3;
  --review-gap: 24px;
  position: relative;
}

.review-slider-viewport {
  overflow: hidden;
  padding: 8px 2px 24px;
  margin: -8px -2px -24px;
}

.review-slider-track {
  display: flex;
  align-items: stretch;
  gap: var(--review-gap);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc((100% - (var(--review-gap) * (var(--reviews-visible) - 1))) / var(--reviews-visible));
  min-width: 0;
}

.lux-review-card {
  background: #ffffff;
  border: 1px solid var(--lux-border-light);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--lux-shadow);
  transition: var(--lux-transition);
}

.lux-review-card:hover {
  border-color: var(--lux-gold);
  transform: translateY(-5px);
  box-shadow: var(--lux-shadow-hover);
}

.review-stars {
  color: var(--lux-gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f1f3f5;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lux-dark-grad);
  border: 1px solid var(--lux-gold);
  display: grid;
  place-items: center;
  color: var(--lux-gold);
  font-weight: 700;
  font-size: 16px;
}

.review-meta strong {
  display: block;
  font-size: 14.5px;
  color: var(--lux-obsidian);
}

.review-meta small {
  font-size: 12px;
  color: var(--lux-text-muted);
}

.review-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.review-slider-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--lux-border);
  border-radius: 50%;
  background: #fff;
  color: var(--lux-obsidian);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--lux-transition);
}

.review-slider-arrow:hover,
.review-slider-arrow:focus-visible {
  background: var(--lux-obsidian);
  color: var(--lux-gold-light);
  border-color: var(--lux-obsidian);
  outline: 0;
}

.review-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.review-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--lux-transition);
}

.review-slider-dot.active {
  width: 24px;
  background: var(--lux-gold);
}

/* ================================= Inner Pages & Details ================================= */
.lux-page-header {
  background: linear-gradient(180deg, #edf1f6 0%, #faf8f5 100%);
  padding: 55px 0 45px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--lux-border-light);
}

.lux-page-header.compact {
  padding: 35px 0;
}

.lux-page-header h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--lux-obsidian);
  margin: 10px 0 6px;
}

.lux-page-header p {
  color: var(--lux-text-muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.lux-breadcrumbs {
  font-size: 13px;
  font-weight: 600;
  color: var(--lux-text-muted);
}

.lux-breadcrumbs a {
  color: var(--lux-gold-dark);
}

.lux-breadcrumbs a:hover {
  text-decoration: underline;
}

/* Product Detail View */
.lux-product-viewport {
  background: #fff;
  border: 1px solid var(--lux-border-light);
  border-radius: 28px;
  overflow: hidden;
  height: 540px;
  position: relative;
  box-shadow: var(--lux-shadow);
}

.lux-product-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-detail-meta {
  padding-left: 20px;
}

.lux-detail-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--lux-obsidian);
  margin: 14px 0 10px;
}

.lux-detail-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--lux-obsidian);
  margin-bottom: 18px;
}

.lux-detail-price del {
  font-size: 18px;
  color: #94a3b8;
  margin-left: 10px;
}

.lux-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.lux-trust-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.lux-trust-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--lux-border-light);
  border-radius: 14px;
}

.lux-trust-pill i {
  font-size: 24px;
  color: var(--lux-gold);
}

.lux-trust-pill strong {
  display: block;
  font-size: 13.5px;
  color: var(--lux-obsidian);
}

.lux-trust-pill small {
  font-size: 11px;
  color: var(--lux-text-muted);
}

/* Cart & Checkout */
.lux-card {
  background: #ffffff;
  border: 1px solid var(--lux-border-light);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--lux-shadow-sm);
}

.lux-cart-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f1f3f5;
}

.lux-cart-item:last-child {
  border-bottom: 0;
}

.lux-cart-thumb {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  flex-shrink: 0;
  border: 1px solid #edf2f7;
}

.lux-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-shipping-bar {
  background: var(--lux-gold-soft);
  border: 1px solid var(--lux-border);
  padding: 12px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--lux-obsidian);
}

.lux-shipping-progress {
  height: 6px;
  border-radius: 10px;
  background: #e2e8f0;
  overflow: hidden;
  margin-top: 6px;
}

.lux-shipping-progress-fill {
  height: 100%;
  background: var(--lux-gold-grad);
  border-radius: 10px;
}

/* Form Controls */
.form-control, .form-select {
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  transition: var(--lux-transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.lux-payment-option {
  display: block;
  cursor: pointer;
  margin-bottom: 10px;
}

.lux-payment-option input {
  display: none;
}

.lux-payment-option-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  transition: var(--lux-transition);
}

.lux-payment-option input:checked + .lux-payment-option-box {
  border-color: var(--lux-gold);
  background: var(--lux-gold-soft);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.15);
}

/* ================================= Footer ================================= */
.lux-footer {
  background: var(--lux-obsidian);
  color: #e2e8f0;
  padding: 75px 0 30px;
  border-top: 2px solid var(--lux-gold);
  position: relative;
}

.lux-footer h5 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
}

.lux-footer h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--lux-gold);
  border-radius: 2px;
}

.lux-footer a:not(.brand-lux) {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 10px;
  transition: var(--lux-transition);
}

.lux-footer a:not(.brand-lux):hover {
  color: var(--lux-gold-light);
  transform: translateX(4px);
}

.lux-footer-contact {
  color: #94a3b8;
  font-size: 14px;
}

.lux-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.lux-footer-contact i {
  color: var(--lux-gold);
  margin-top: 2px;
}

.lux-subscribe-box {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: 12px;
  padding: 4px;
}

.lux-subscribe-box input {
  background: none;
  border: 0;
  color: #fff;
  padding: 8px 14px;
  width: 100%;
  outline: 0;
  font-size: 13.5px;
}

.lux-subscribe-box input::placeholder {
  color: #64748b;
}

.lux-subscribe-box button {
  background: var(--lux-gold-grad);
  border: 0;
  color: #0b111c;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: var(--lux-transition);
}

.lux-subscribe-box button:hover {
  filter: brightness(1.1);
}

.lux-footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #64748b;
}

.lux-payments-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: var(--lux-gold-light);
}

/* ================================= Mobile Dock ================================= */
.mobile-dock-lux {
  position: fixed;
  bottom: 12px;
  left: 16px;
  right: 16px;
  height: 64px;
  background: rgba(9, 14, 23, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: 20px;
  z-index: 1050;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.mobile-dock-lux a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  transition: var(--lux-transition);
  position: relative;
  padding: 4px 10px;
}

.mobile-dock-lux a i {
  font-size: 20px;
  margin-bottom: 2px;
}

.mobile-dock-lux a.active,
.mobile-dock-lux a:hover {
  color: var(--lux-gold-light);
}

.mobile-dock-lux a.active i {
  color: var(--lux-gold);
}

/* ================================= Admin Console ================================= */
.admin-body {
  --ac-sidebar: 268px;
  --ac-bg: #f4f5f7;
  --ac-card: #ffffff;
  --ac-line: #e6e8ec;
  --ac-muted: #748094;
  --ac-radius: 18px;
  min-height: 100vh;
  background: var(--ac-bg);
  color: #17202d;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ac-side {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--ac-sidebar);
  background: #0a111c;
  color: #c8d0dc;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 1040;
  border-right: 1px solid rgba(197, 155, 39, 0.2);
  scrollbar-width: thin;
  scrollbar-color: #344052 transparent;
}

.ac-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ac-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--lux-gold-grad);
  color: #090e17;
  display: grid;
  place-items: center;
  font-size: 19px;
  flex: none;
  box-shadow: 0 8px 24px rgba(197, 155, 39, .18);
}

.ac-brand b {
  color: #fff;
  font-size: 15px;
  display: block;
  line-height: 1.15;
  max-width: 154px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-brand small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 1.6px;
  color: var(--lux-gold-light);
}

.ac-nav {
  padding: 8px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.ac-nav-head {
  margin: 18px 10px 7px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lux-gold);
  font-weight: 800;
}

.ac-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #c7d0dc;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
  transition: background-color .15s, color .15s, transform .15s;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
}

.ac-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(2px);
}

.ac-link.active {
  background: linear-gradient(135deg, #d2a52f, #b98616);
  color: #080d15;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(197, 155, 39, .16);
}

.ac-link.active i {
  color: #090e17;
}

.ac-link i {
  width: 18px;
  font-size: 16px;
  color: #9aa6b6;
}

.ac-link-tail {
  margin-left: auto;
  width: auto !important;
  font-size: 12px !important;
}

.ac-link-btn {
  cursor: pointer;
}

.ac-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: #c7d0dc;
  list-style: none;
  transition: .15s;
}

.ac-group > summary::-webkit-details-marker {
  display: none;
}

.ac-group > summary > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ac-group > summary > span i {
  width: 18px;
  color: #9aa6b6;
}

.ac-group > summary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ac-group > summary.active {
  background: rgba(197, 155, 39, .12);
  color: var(--lux-gold-light);
}

.ac-group[open] > summary .ac-caret {
  transform: rotate(180deg);
}

.ac-caret {
  width: auto !important;
  font-size: 11px;
  transition: transform .2s;
}

.ac-sub {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 4px 0 7px 19px;
  padding-left: 10px;
  border-left: 1px solid rgba(197, 155, 39, 0.25);
}

.ac-sub .ac-link {
  min-height: 34px;
  padding: 8px 10px;
  font-size: 12.5px;
}

.ac-side-footer {
  position: sticky;
  bottom: 0;
  display: grid;
  gap: 8px;
  padding: 14px 12px 18px;
  background: linear-gradient(180deg, rgba(10, 17, 28, .88), #0a111c 24%);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.ac-side-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
}

.ac-side-user b,
.ac-side-user small {
  display: block;
}

.ac-side-user b {
  max-width: 155px;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-side-user small {
  margin-top: 2px;
  color: #8793a4;
  font-size: 10px;
}

.ac-shell {
  margin-left: var(--ac-sidebar);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ac-top {
  position: sticky;
  top: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 12px 30px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ac-line);
}

.ac-burger,
.ac-icon-btn {
  width: 42px;
  height: 42px;
  flex: none;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--ac-line);
  border-radius: 12px;
  background: #fff;
  color: #273244;
  font-size: 17px;
  cursor: pointer;
  transition: .2s;
}

.ac-burger {
  display: none;
}

.ac-burger:hover,
.ac-icon-btn:hover {
  color: #8a650d;
  border-color: #d5b359;
  background: #fffaf0;
  transform: translateY(-1px);
}

.ac-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(520px, 48vw);
}

.ac-search > i {
  position: absolute;
  left: 15px;
  color: #8792a3;
  z-index: 1;
}

.ac-search input {
  width: 100%;
  height: 44px;
  padding: 0 66px 0 43px;
  border: 1px solid var(--ac-line);
  border-radius: 13px;
  background: #f7f8fa;
  color: #182233;
  font-size: 13px;
  outline: 0;
  transition: .2s;
}

.ac-search input:focus {
  background: #fff;
  border-color: #cfa63d;
  box-shadow: 0 0 0 4px rgba(197, 155, 39, .11);
}

.ac-search kbd {
  position: absolute;
  right: 10px;
  padding: 3px 7px;
  border: 1px solid #dfe2e7;
  border-radius: 6px;
  background: #fff;
  color: #8b95a4;
  font-family: inherit;
  font-size: 9px;
  font-weight: 600;
  box-shadow: none;
}

.ac-top-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}

.ac-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ac-user--top {
  margin-left: 4px;
  padding-left: 13px;
  border-left: 1px solid var(--ac-line);
}

.ac-user-avatar {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #162235, #0a111c);
  border: 1px solid rgba(197, 155, 39, .55);
  color: var(--lux-gold-light);
  font-size: 13px;
  font-weight: 800;
}

.ac-user-meta b,
.ac-user-meta small {
  display: block;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-user-meta b {
  color: #17202d;
  font-size: 12px;
}

.ac-user-meta small {
  margin-top: 2px;
  color: var(--ac-muted);
  font-size: 10px;
}

.ac-main {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 28px 30px 44px;
}

.ac-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.ac-page-head h1 {
  margin: 3px 0 5px;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -.8px;
}

.ac-page-actions,
.ac-toolbar-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ac-eyebrow {
  margin: 0;
  color: #9a7419;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ac-muted {
  margin: 0;
  color: var(--ac-muted);
  font-size: 13px;
}

.ac-btn-solid,
.ac-btn-ghost,
.btn-brand {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 11px;
  font-size: 12.5px;
  font-weight: 700;
}

.ac-btn-solid,
.btn-brand {
  border: 1px solid #bc8d1b !important;
  background: linear-gradient(135deg, #d3aa3d, #b88411) !important;
  color: #10151d !important;
  box-shadow: 0 8px 20px rgba(185, 132, 17, .18);
}

.ac-btn-solid:hover,
.btn-brand:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.ac-btn-ghost {
  border: 1px solid var(--ac-line);
  background: #fff;
  color: #273244;
}

.ac-btn-ghost:hover {
  border-color: #cfaa4c;
  background: #fffaf0;
  color: #75550b;
}

.ac-card {
  margin-bottom: 18px;
  padding: 22px;
  background: var(--ac-card);
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  box-shadow: 0 10px 30px rgba(25, 36, 53, .045);
}

.admin-card {
  margin-bottom: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  box-shadow: 0 10px 30px rgba(25, 36, 53, .045);
}

.ac-card-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.ac-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ac-link-inline {
  color: #946e12;
  font-size: 12px;
  font-weight: 700;
}

.ac-link-inline:hover {
  color: #624806;
}

.ac-filter {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 18px;
}

.ac-field {
  display: grid;
  gap: 5px;
}

.ac-field label,
.ac-form-label {
  margin: 0;
  color: #596679;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25px;
}

.ac-field input,
.ac-field select,
.ac-filter-control {
  height: 42px;
  min-width: 160px;
  padding: 8px 12px;
  border: 1px solid #dde1e7;
  border-radius: 10px;
  background: #fff;
  color: #243044;
  font-size: 12px;
  outline: 0;
}

.ac-field input:focus,
.ac-field select:focus,
.ac-filter-control:focus {
  border-color: #cda23a;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, .11);
}

.ac-chip {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--ac-line);
  border-radius: 999px;
  background: #f8f9fb;
  color: #526074;
  font-size: 11px;
  font-weight: 700;
}

.ac-chip:hover,
.ac-chip.is-on {
  border-color: rgba(197, 155, 39, .42);
  background: #fff7e4;
  color: #805e0c;
}

.ac-filter-note {
  flex-basis: 100%;
  margin: 2px 0 0;
  color: var(--ac-muted);
  font-size: 11px;
}

.ac-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.ac-stat-grid--half {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ac-stat-grid > .ac-card,
.ac-two-col > .ac-card {
  margin-bottom: 0;
}

.ac-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 124px;
  overflow: hidden;
}

.ac-stat::after {
  content: '';
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(197, 155, 39, .07);
}

.ac-stat-label {
  color: #526074;
  font-size: 12px;
  font-weight: 600;
}

.ac-stat-label small {
  display: block;
  margin-top: 2px;
  color: #8a95a4;
  font-size: 9px;
  font-weight: 500;
}

.ac-stat-num {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #111a27;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 800;
  letter-spacing: -.8px;
}

.ac-stat--icon {
  padding-left: 78px;
}

.ac-stat-ico {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 17px;
}

.ac-ico-green { background: #e9f8ef; color: #187448; }
.ac-ico-amber { background: #fff3d7; color: #94670a; }
.ac-ico-violet { background: #f0ebff; color: #6d46bb; }
.ac-ico-red { background: #ffebec; color: #bd3b43; }

.ac-chart {
  min-height: 330px;
}

.ac-bars {
  height: 210px;
  display: flex;
  align-items: flex-end;
  gap: clamp(3px, .65vw, 10px);
  margin-top: 24px;
  padding: 18px 14px 0;
  border-bottom: 1px solid #dfe3e9;
  background: repeating-linear-gradient(to bottom, #fff 0, #fff 51px, #f0f2f5 52px);
}

.ac-bar {
  min-height: 4px;
  flex: 1;
  border-radius: 6px 6px 1px 1px;
  background: linear-gradient(180deg, #d9b34e, #aa790c);
  opacity: .86;
  cursor: help;
  transition: opacity .15s, transform .15s;
}

.ac-bar:hover {
  opacity: 1;
  transform: scaleX(1.16);
}

.ac-daily {
  margin-top: 15px;
  font-size: 11px;
}

.ac-daily summary {
  width: fit-content;
  color: #85620e;
  font-weight: 700;
  cursor: pointer;
}

.ac-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .85fr);
  gap: 18px;
  margin-bottom: 18px;
}

.ac-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.ac-status {
  min-height: 92px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  gap: 1px 7px;
  padding: 13px;
  border: 1px solid #e8eaee;
  border-radius: 12px;
  background: #fafbfc;
}

.ac-status > i {
  grid-row: 1 / 3;
  align-self: center;
  color: #af8218;
  font-size: 18px;
}

.ac-status b {
  color: #162031;
  font-size: 18px;
}

.ac-status small {
  color: var(--ac-muted);
  font-size: 9px;
}

.ac-cat-list {
  display: grid;
  gap: 8px;
}

.ac-cat {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
}

.ac-cat:hover {
  border-color: #ead9ad;
  background: #fffbf2;
}

.ac-cat-ico {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f5edd9;
  color: #936d11;
}

.ac-cat-name {
  color: #243044;
  font-size: 11px;
  font-weight: 700;
}

.ac-cat-name small {
  display: block;
  margin-top: 2px;
  color: var(--ac-muted);
  font-size: 9px;
  font-weight: 500;
}

.ac-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 13px 15px;
  border: 1px solid;
  border-radius: 12px;
  font-size: 12px;
}

.ac-alert span {
  flex: 1;
}

.ac-alert button {
  border: 0;
  background: none;
  color: inherit;
}

.ac-alert--success { background: #edf9f1; border-color: #c4e8cf; color: #266b3d; }
.ac-alert--danger { background: #fff0f0; border-color: #f2c8cb; color: #a2363e; }

.ac-table-card {
  padding: 0;
  overflow: hidden;
}

.ac-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ac-line);
}

.ac-table {
  margin: 0;
  color: #273244;
  font-size: 11px;
}

.ac-table thead th {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ac-line);
  background: #f8f9fb;
  color: #748094;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ac-table tbody td {
  padding: 14px 16px;
  border-color: #eef0f3;
  vertical-align: middle;
}

.ac-table tbody tr:hover {
  background: #fffdf8;
}

.ac-table-title {
  display: block;
  max-width: 260px;
  overflow: hidden;
  color: #17202d;
  font-size: 11.5px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ac-table-sub {
  display: block;
  margin-top: 3px;
  color: #8792a2;
  font-size: 9px;
}

.admin-thumb {
  width: 48px;
  height: 48px;
  flex: none;
  border: 1px solid #e6e8ec;
  border-radius: 12px;
  background: #f4f5f7;
  object-fit: cover;
}

.ac-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  text-transform: capitalize;
  white-space: nowrap;
}

.ac-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.ac-badge--active,
.ac-badge--delivered { background: #eaf8ef; color: #277346; }
.ac-badge--hidden,
.ac-badge--cancelled,
.ac-badge--refunded { background: #f0f1f3; color: #6b7482; }
.ac-badge--pending { background: #fff3d8; color: #906509; }
.ac-badge--confirmed { background: #e7f3ff; color: #2770ae; }
.ac-badge--processing { background: #f0eaff; color: #7048b4; }
.ac-badge--shipped { background: #e7f8f7; color: #207b77; }

.ac-row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.ac-action-btn {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #e0e3e8;
  border-radius: 9px;
  background: #fff;
  color: #596579;
  font-size: 13px;
}

.ac-action-btn:hover {
  border-color: #d1a943;
  background: #fff9eb;
  color: #805d0a;
}

.ac-action-btn--danger:hover {
  border-color: #efb8bc;
  background: #fff1f2;
  color: #bb3942;
}

.ac-pagination {
  padding: 17px 20px;
  border-top: 1px solid var(--ac-line);
}

.ac-empty {
  padding: 58px 20px !important;
  text-align: center;
}

.ac-empty i {
  display: block;
  margin-bottom: 12px;
  color: #c19a37;
  font-size: 30px;
}

.ac-empty b,
.ac-empty small {
  display: block;
}

.ac-empty small {
  margin-top: 5px;
  color: var(--ac-muted);
}

.ac-order-select {
  width: 138px;
  height: 36px;
  padding: 6px 28px 6px 10px;
  border: 1px solid #dde1e7;
  border-radius: 9px;
  background-color: #fff;
  font-size: 10px;
  text-transform: capitalize;
}

.ac-sort-input {
  width: 82px;
  height: 36px;
  padding: 6px 9px;
  border: 1px solid #dde1e7;
  border-radius: 9px;
  background: #fff;
  color: #273244;
  font-size: 11px;
}

.ac-sort-input:focus {
  border-color: #cda23a;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, .11);
}

.ac-modal .modal-content {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(12, 20, 32, .22);
  overflow: hidden;
}

.ac-modal .modal-header,
.ac-modal .modal-footer {
  padding: 18px 22px;
  border-color: var(--ac-line);
}

.ac-modal .modal-body {
  padding: 22px;
  background: #fafbfc;
}

.ac-modal .form-label {
  margin-bottom: 6px;
  color: #4d5a6d;
  font-size: 10px;
  font-weight: 700;
}

.ac-modal .form-control,
.ac-modal .form-select {
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
}

.ac-modal textarea.form-control {
  min-height: 105px;
}

.ac-side-overlay {
  display: none;
}

.ac-category-icon,
.ac-setting-icon {
  width: 42px;
  height: 42px;
  flex: none;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #f8efd9;
  color: #916a0d;
  font-size: 17px;
}

.ac-count-card {
  min-width: 112px;
  display: grid;
  padding: 13px 18px;
  border: 1px solid #e6d4a7;
  border-radius: 14px;
  background: #fffaf0;
  color: #805d0b;
  text-align: center;
}

.ac-count-card b {
  font-size: 23px;
  line-height: 1;
}

.ac-count-card small {
  margin-top: 4px;
  color: #8a7450;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.ac-message-list {
  display: grid;
  gap: 12px;
}

.ac-message {
  margin: 0;
  padding: 18px 20px;
}

.ac-message.is-unread {
  border-left: 4px solid #c79724;
  background: #fffefa;
}

.ac-message-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.ac-message-avatar {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #121c2b;
  color: #e5ca8c;
  font-size: 12px;
  font-weight: 800;
}

.ac-message-head h2 {
  margin: 0;
  font-size: 13px;
}

.ac-message-head p {
  margin: 4px 0 0;
  color: #748094;
  font-size: 10px;
}

.ac-message-head p a:hover {
  color: #936b0d;
}

.ac-message-head time {
  color: #8a95a4;
  font-size: 9px;
  white-space: nowrap;
}

.ac-message-body {
  margin: 14px 0 14px 53px;
  padding: 14px 16px;
  border-radius: 11px;
  background: #f7f8fa;
  color: #475468;
  font-size: 11px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.ac-message-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.ac-settings-grid,
.ac-settings-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ac-settings-grid .ac-card,
.ac-settings-layout .ac-card {
  margin-bottom: 0;
}

.ac-setting-panel .form-label {
  margin-bottom: 6px;
  color: #526074;
  font-size: 10px;
  font-weight: 700;
}

.ac-setting-panel .form-control,
.ac-setting-panel .form-select {
  min-height: 44px;
  border-radius: 10px;
  font-size: 12px;
}

.ac-setting-panel textarea.form-control {
  min-height: 96px;
}

.ac-help {
  margin: 8px 0 0;
  color: #8792a2;
  font-size: 9px;
}

.ac-form-actions {
  position: sticky;
  bottom: 16px;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(223, 226, 232, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(18, 28, 43, .08);
}

.ac-section-toggle {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}

.ac-section-toggle:hover {
  border-color: #d9bd76;
  transform: translateY(-2px);
}

.ac-section-toggle b,
.ac-section-toggle small {
  display: block;
}

.ac-section-toggle b {
  color: #202b3c;
  font-size: 12px;
}

.ac-section-toggle small {
  margin-top: 4px;
  color: #7f8a9a;
  font-size: 9px;
  line-height: 1.5;
}

.ac-switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex: none;
}

.ac-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ac-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d8dce2;
  transition: .2s;
}

.ac-switch span::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(20, 29, 42, .22);
  transition: .2s;
}

.ac-switch input:checked + span {
  background: #c7951f;
}

.ac-switch input:checked + span::after {
  transform: translateX(20px);
}

/* ================================= Responsive Fixes ================================= */
@media (max-width: 991px) {
  body {
    padding-bottom: 80px;
  }
  .bento-main {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 36px 24px;
  }
  .bento-main h1 {
    font-size: 36px;
  }
  .bento-photo-card {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 260px;
  }
  .bento-product-card,
  .bento-offer-card,
  .bento-cats-card {
    grid-column: span 6;
  }
  .deal-lux-banner {
    padding: 36px;
    flex-direction: column;
    text-align: center;
  }
  .deal-content {
    max-width: 100%;
  }
  .lux-countdown {
    justify-content: center;
  }
  .deal-image-wrap {
    display: none;
  }
  .lux-product-viewport {
    height: 380px;
  }
  .lux-detail-meta {
    padding-left: 0;
  }
  .review-slider {
    --reviews-visible: 2;
  }
  .ac-side {
    transform: translateX(-100%);
    transition: transform .25s;
    box-shadow: 18px 0 50px rgba(5, 10, 18, .2);
  }
  .ac-side.open {
    transform: none;
  }
  .ac-shell {
    margin-left: 0;
  }
  .admin-body {
    padding-bottom: 0;
  }
  .admin-body.ac-nav-open {
    overflow: hidden;
  }
  .ac-side-overlay {
    position: fixed;
    inset: 0;
    z-index: 1035;
    display: block;
    border: 0;
    background: rgba(5, 10, 18, .48);
    opacity: 0;
    visibility: hidden;
    transition: .2s;
  }
  .ac-side-overlay.open {
    opacity: 1;
    visibility: visible;
  }
  .ac-burger {
    display: inline-grid;
  }
  .ac-top {
    padding-inline: 20px;
  }
  .ac-main {
    padding: 24px 20px 36px;
  }
  .ac-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ac-two-col {
    grid-template-columns: 1fr;
  }
  .ac-settings-grid,
  .ac-settings-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-luxury {
    padding: 24px 0 40px;
  }
  .bento-grid {
    gap: 14px;
  }
  .bento-box {
    padding: 20px;
    border-radius: 18px;
  }
  .bento-main h1 {
    font-size: 28px;
  }
  .bento-main p {
    font-size: 14px;
  }
  .bento-product-card,
  .bento-offer-card,
  .bento-cats-card {
    grid-column: 1 / -1;
  }
  .lux-section {
    padding: 50px 0;
  }
  .lux-section-title {
    font-size: 26px;
  }
  .product-card-thumb {
    height: 190px;
  }
  .review-slider {
    --reviews-visible: 1;
    --review-gap: 16px;
  }
  .lux-review-card {
    padding: 24px;
  }
  .ac-stat-grid {
    grid-template-columns: 1fr;
  }
  .ac-stat-grid--half {
    grid-template-columns: 1fr;
  }
  .ac-top {
    min-height: 66px;
    gap: 10px;
    padding: 10px 14px;
  }
  .ac-main {
    padding: 20px 14px 30px;
  }
  .ac-search {
    width: 100%;
  }
  .ac-search input {
    padding-right: 14px;
  }
  .ac-search kbd,
  .ac-user--top,
  .ac-top-actions .ac-icon-btn:first-child {
    display: none;
  }
  .ac-page-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .ac-page-actions,
  .ac-page-actions .btn {
    width: 100%;
  }
  .ac-page-actions .btn {
    flex: 1;
  }
  .ac-card,
  .admin-card {
    padding: 17px;
    border-radius: 14px;
  }
  .ac-filter {
    align-items: stretch;
  }
  .ac-filter .ac-field,
  .ac-filter .ac-field input,
  .ac-filter .ac-field select,
  .ac-filter > .ac-btn-solid {
    width: 100%;
  }
  .ac-chart {
    min-height: 280px;
  }
  .ac-bars {
    height: 160px;
    gap: 2px;
    padding-inline: 3px;
  }
  .ac-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ac-table-head {
    align-items: stretch;
    flex-direction: column;
  }
  .ac-toolbar-actions,
  .ac-toolbar-actions > * {
    width: 100%;
  }
  .ac-toolbar-actions .btn {
    justify-content: center;
  }
  .ac-message-head {
    flex-wrap: wrap;
  }
  .ac-message-head time {
    width: 100%;
    padding-left: 53px;
  }
  .ac-message-body {
    margin-left: 0;
  }
  .ac-message-actions {
    align-items: stretch;
    flex-wrap: wrap;
  }
  .ac-message-actions > * {
    flex: 1;
  }
  .ac-message-actions .ac-action-btn {
    width: 100%;
  }
  .ac-section-toggle {
    align-items: flex-start;
  }
  .ac-form-actions,
  .ac-form-actions .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .ac-top-actions .ac-icon-btn {
    display: none;
  }
  .ac-status-grid {
    grid-template-columns: 1fr;
  }
}
