/* ==========================================================================
   BUTTA BOMMA COLLECTIONS - PREMIUM LUXURY BOUTIQUE STYLESHEET
   Theme: Royal Emerald Green (#041c15, #08382b) + Golden Zari (#d4af37, #f6e399)
   ========================================================================== */

:root {
  --forest-900: #031510;
  --forest-800: #05241b;
  --forest-700: #083427;
  --forest-600: #0d4635;
  --forest-500: #145a46;
  --gold-300: #fef08a;
  --gold-400: #f6e399;
  --gold-500: #d4af37;
  --gold-600: #b8860b;
  --gold-700: #8c6508;
  --cream-100: #fcf9f2;
  --cream-200: #f7f1e1;
  --cream-300: #ede2c8;
  --text-light: #f5f5f0;
  --text-muted: #a3b8b0;
  --text-dark: #122820;
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-bright: rgba(246, 227, 153, 0.7);
  --gold-gradient: linear-gradient(135deg, #fef08a 0%, #d4af37 50%, #996515 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f6e399 40%, #d4af37 100%);
  --emerald-gradient: linear-gradient(180deg, #06261d 0%, #03140e 100%);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
  --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.6);
  --font-serif: 'Cinzel', serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--forest-900);
  color: var(--text-light);
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at 50% 10%, #0a3a2c 0%, #041a13 45%, #020e0a 100%);
  background-attachment: fixed;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================================================
   MAIN NAVIGATION HEADER (CLEAN STANDALONE LOGO)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 25, 19, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Clean Logo without any enclosing boxes or shapes */
.brand-logo-clean {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  padding: 0;
  border: none;
}

.main-logo-image {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.35));
  transition: transform 0.3s ease;
}

.brand-logo-clean:hover .main-logo-image {
  transform: scale(1.05);
}

/* Navigation Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #e5ece8;
  padding: 8px 0;
  position: relative;
  transition: color 0.25s ease;
}

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

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

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

/* Nav Dropdown */
.nav-dropdown-wrapper {
  position: relative;
}

.dropdown-arrow {
  font-size: 9px;
  margin-left: 2px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 200px;
  background: var(--forest-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  display: none;
  flex-direction: column;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  display: flex;
  animation: fadeInDown 0.25s ease;
}

.nav-dropdown-menu a {
  padding: 10px 20px;
  font-size: 12px;
  color: #e0eae4;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-400);
  padding-left: 24px;
}

/* Header Actions */
.header-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(8, 52, 39, 0.4);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.action-icon-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.cart-trigger-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  border: 1px solid var(--gold-500);
  color: #0b2219;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.25s ease;
}

.cart-trigger-btn:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.cart-badge-count {
  background: #0b2219;
  color: var(--gold-400);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-400);
  transition: all 0.3s ease;
}

/* Live Search Flyout Panel */
.search-flyout-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--forest-900);
  border-bottom: 2px solid var(--gold-500);
  padding: 20px 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  display: none;
}

.search-flyout-panel.active {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.search-flyout-inner {
  max-width: 900px;
  margin: 0 auto;
}

.search-input-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--forest-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
}

.search-input-box input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.search-input-box input::placeholder {
  color: var(--text-muted);
}

.search-clear-btn {
  background: transparent;
  border: 0;
  color: var(--gold-400);
  font-size: 18px;
  cursor: pointer;
}

.search-live-results {
  max-height: 380px;
  overflow-y: auto;
  margin-top: 14px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-result-item:hover {
  background: rgba(212, 175, 55, 0.12);
}

.search-result-item img {
  width: 52px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.search-result-info h4 {
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
}

.search-result-info span {
  font-weight: 700;
  color: var(--gold-400);
  font-size: 14px;
}

.search-empty-state {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   HERO SECTION - ENHANCED VISIBILITY TEMPLE SAREE MODEL & SINGLE TITLE
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 24px 80px;
  overflow: hidden;
  background: #041a13;
  border-bottom: 1px solid var(--border-gold);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: url("hero-bg.jpg") center top / cover no-repeat;
  opacity: 0.82;
  filter: saturate(1.15) contrast(1.05);
  pointer-events: none;
  z-index: 0;
}

.hero-backdrop-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 20, 14, 0.94) 0%, rgba(3, 20, 14, 0.72) 48%, rgba(3, 20, 14, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.hero-text-content {
  padding: 20px 0;
}

.hero-ornament-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ornament-line {
  height: 1px;
  width: 45px;
  background: var(--gold-gradient);
}

.ornament-diamond {
  color: var(--gold-400);
  font-size: 13px;
}

/* Single Classic Serif Gold Headline */
.hero-headline-single {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 28px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  letter-spacing: 4px;
}

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

/* Luxury Buttons */
.gold-luxury-btn {
  background: var(--gold-gradient);
  color: #0b2219;
  border: 1px solid var(--gold-400);
  padding: 14px 32px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.gold-luxury-btn:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.outline-gold-btn {
  background: rgba(4, 28, 20, 0.6);
  color: #fff;
  border: 1px solid var(--gold-500);
  padding: 14px 28px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.outline-gold-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-300);
  color: var(--gold-300);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   ACCORDION GALLERY COMPONENT
   ========================================================================== */
.hero-gallery-wrapper {
  position: relative;
  width: 100%;
}

.gallery-header-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.gallery-header-label small {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
}

.sparkle-gold-icon {
  display: inline-flex;
  align-items: center;
}

.accordion-gallery {
  --ag-accent: #d4af37;
  --ag-overlay: #041c14;
  --ag-text: #ffffff;
  --ag-gap: 12px;
  --ag-radius: 16px;
  --ag-media-size: 380px;

  display: flex;
  flex-direction: row;
  gap: var(--ag-gap);
  width: 100%;
  max-width: 100%;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  height: 480px;
}

.ag-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--ag-radius);
  cursor: pointer;
  display: block;
  text-decoration: none;
  outline: none;
  transform-style: preserve-3d;
  transform-origin: center center;
  background: #07291f;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.8);
  will-change: flex-grow, transform;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.3s ease;
}

.ag-panel:hover, .ag-panel--active {
  border-color: var(--ag-accent);
}

.ag-panel__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.ag-panel__media {
  --ag-gray: 1;
  --ag-dim: 0.35;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(var(--ag-gray));
  will-change: filter;
  overflow: hidden;
}

.ag-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  user-select: none;
}

.ag-panel__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(4, 28, 20, 0.88) 100%),
    color-mix(in srgb, var(--ag-overlay) calc(var(--ag-dim, 0.35) * 100%), transparent);
}

.ag-panel__label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  z-index: 2;
}

.ag-panel__bar {
  flex: 0 0 auto;
  width: 3.5px;
  height: 28px;
  border-radius: 3px;
  background: var(--ag-accent);
  opacity: 0;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

.ag-panel__text {
  color: var(--ag-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   BENEFITS STRIP (ROYAL GOLDEN SVG ICONS)
   ========================================================================== */
.benefits-strip {
  background: var(--forest-800);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 22px 0;
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-icon-badge {
  color: var(--gold-400);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-text h4 {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold-400);
}

.benefit-text span {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION COMMON WRAPPERS
   ========================================================================== */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 24px;
}

.section-title-block {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-400);
}

.section-decorative-divider {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 6px;
  margin: 10px 0 12px;
}

.section-subheading {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   SHOP BY CATEGORY (6 Cards Grid)
   ========================================================================== */
.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  height: 290px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-400);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
}

.category-img-holder {
  width: 100%;
  height: 100%;
  position: relative;
}

.category-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.category-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 28, 20, 0.92) 100%);
}

.category-content-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
  text-align: center;
}

.category-content-tag h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 4px;
}

.category-cta-link {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-400);
  text-transform: uppercase;
}

/* ==========================================================================
   NEW ARRIVALS / PRODUCT CARDS
   ========================================================================== */
.filter-controls-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.category-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill-btn {
  background: var(--forest-800);
  color: var(--text-light);
  border: 1px solid var(--border-gold);
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pill-btn:hover, .pill-btn.active {
  background: var(--gold-gradient);
  color: #041a13;
  border-color: var(--gold-400);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.price-tier-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.price-tier-btn {
  background: rgba(8, 52, 39, 0.4);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.price-tier-btn:hover, .price-tier-btn.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.price-tier-btn strong {
  display: block;
  font-size: 13px;
  color: var(--gold-400);
}

.price-tier-btn span {
  font-size: 10px;
  color: var(--text-muted);
}

.active-filter-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 52, 39, 0.5);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gold-300);
}

.reset-filter-btn {
  background: transparent;
  border: 0;
  color: var(--gold-400);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

/* Products Luxury Grid */
.products-luxury-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-luxury-card {
  background: #062b21;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.product-luxury-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-400);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.25);
}

.product-badge-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-gradient);
  color: #0b2219;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.product-badge-low {
  background: #ef4444;
  color: #fff;
  animation: pulseWarning 2s infinite;
}

.product-img-wrapper {
  position: relative;
  height: 360px;
  overflow: hidden;
  cursor: pointer;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-luxury-card:hover .product-img-wrapper img {
  transform: scale(1.06);
}

.product-quickview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-luxury-card:hover .product-quickview-overlay {
  opacity: 1;
}

.quickview-btn {
  background: #fff;
  color: var(--forest-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.quickview-btn:hover {
  background: var(--gold-400);
}

.product-details-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  background: linear-gradient(180deg, #072e23 0%, #05241b 100%);
}

.product-category-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-500);
  text-transform: uppercase;
}

.product-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin: 6px 0 10px;
  line-height: 1.3;
}

.product-price-tag {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.product-stock-tag {
  font-size: 11.5px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.stock-in {
  color: #86efac;
}

.stock-low {
  color: #fca5a5;
  font-weight: 700;
}

.stock-out {
  color: #f87171;
  font-weight: 700;
}

.product-card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.add-bag-btn {
  background: var(--gold-gradient);
  color: #0b2219;
  border: 0;
  padding: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
}

.add-bag-btn:hover:not(:disabled) {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
}

.add-bag-btn:disabled {
  background: #374151;
  color: #9ca3af;
  cursor: not-allowed;
}

/* ==========================================================================
   CUSTOMIZATION BANNER
   ========================================================================== */
.customization-banner-section {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0 24px;
}

.customization-banner-box {
  background: linear-gradient(90deg, #181008 0%, #301d0a 50%, #181008 100%);
  border: 1.5px solid #d4af37;
  border-radius: var(--radius-md);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.custom-side-decor {
  height: 200px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.custom-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.custom-side-decor:hover .custom-side-img {
  transform: scale(1.06);
}

.decor-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(4, 25, 19, 0.85);
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  padding: 4px;
  text-transform: uppercase;
}

.custom-center-content {
  text-align: center;
}

.custom-eyebrow {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--gold-400);
  text-transform: uppercase;
}

.custom-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 46px);
  font-style: italic;
  font-weight: 600;
  color: #fff;
  margin: 4px 0 8px;
}

.custom-desc {
  font-size: 14.5px;
  color: var(--cream-200);
  margin-bottom: 22px;
}

.custom-desc strong {
  color: var(--gold-300);
}

.custom-btn {
  padding: 13px 30px;
}

/* ==========================================================================
   3D INTERACTIVE CARD STACK REVIEW SYSTEM
   ========================================================================== */
.reviews-section {
  padding-top: 20px;
}

.review-stack-section-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}

/* Left Sidebar Summary Card */
.review-summary-sidebar {
  width: 100%;
}

.review-summary-card {
  background: var(--forest-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.sidebar-crest-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.big-rating-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}

.star-rating-display {
  color: #facc15;
  font-size: 20px;
  letter-spacing: 2px;
  margin: 8px 0;
}

.sidebar-rating-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.rating-bar-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  font-size: 11.5px;
}

.rating-bar-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bar-fill-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill-progress {
  height: 100%;
  background: var(--gold-gradient);
}

/* Right Column: 3D Stack Container */
.review-stack-interactive-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.stack-instruction-hint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--gold-400);
}

.stack-instruction-hint strong {
  color: #fff;
}

.stack-nav-btn {
  background: rgba(8, 52, 39, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stack-nav-btn:hover {
  background: var(--gold-gradient);
  color: #041c14;
}

.stack-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 440px;
  perspective: 800px;
}

.card-rotate {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: grab;
  user-select: none;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.card-rotate:active {
  cursor: grabbing;
}

.card {
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  background: #062b21;
  border: 1.5px solid var(--gold-500);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.stack-review-card-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  width: 100%;
  height: 100%;
}

.stack-media-col {
  height: 100%;
  background: #03140e;
  border-right: 1px solid var(--border-gold);
  position: relative;
}

.stack-media-col img, .stack-media-col video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.stack-media-overlay-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(4, 25, 19, 0.85);
  border: 1px solid var(--border-gold);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  color: var(--gold-400);
  font-weight: 700;
  text-align: center;
}

.stack-content-col {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-stars {
  color: #facc15;
  font-size: 16px;
}

.review-verified-badge {
  font-size: 10px;
  font-weight: 800;
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.review-outfit-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-400);
  margin: 8px 0 10px;
}

.review-text-content {
  font-family: var(--font-display);
  font-size: 18px;
  color: #f3f4f6;
  line-height: 1.45;
  font-style: italic;
  flex: 1;
}

.stack-author-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 14px;
  margin-top: 10px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b2219;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.author-name {
  font-family: var(--font-serif);
  font-size: 13.5px;
  color: #fff;
  font-weight: 700;
}

.author-city {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   STORY & ATELIER PROMISE (ROYAL GOLD CUSTOM SVG BADGES)
   ========================================================================== */
.story-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  padding: 36px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  text-align: center;
}

.atelier-card {
  background: rgba(8, 52, 39, 0.4);
}

.dark-crest-card {
  background: linear-gradient(180deg, #09372a 0%, #041c14 100%);
  border-color: var(--gold-400);
}

.card-icon-crest {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-400);
}

.story-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--gold-400);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.story-card p {
  font-size: 13.5px;
  color: var(--cream-200);
  line-height: 1.6;
}

/* ==========================================================================
   MAIN FOOTER (4 CLEAN COLUMNS)
   ========================================================================== */
.main-footer {
  background: #020f0b;
  border-top: 1px solid var(--border-gold);
  padding: 60px 24px 0;
  margin-top: 60px;
}

.footer-top-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1.2fr 1.5fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.footer-tagline {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.official-insta-wrapper {
  margin-top: 10px;
}

.insta-luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(253, 29, 29, 0.3);
  transition: transform 0.25s ease;
}

.insta-luxury-badge:hover {
  transform: translateY(-2px) scale(1.03);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 18px;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  font-size: 12.5px;
  color: #c9d6d0;
}

.footer-nav-list a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #c9d6d0;
}

/* Payment Badges (ONLY UPI and COD) */
.footer-payment-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: center;
}

.payment-badges-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-pill-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.payment-pill-link:hover {
  background: var(--gold-gradient);
  color: #041c14;
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 22px 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.secret-admin-trigger {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  margin-left: 6px;
}

.secret-admin-trigger:hover {
  opacity: 1;
}

/* Vikatech Developer Credit Box */
.developer-credit-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #c9d6d0;
}

.developer-credit-box strong {
  color: var(--gold-400);
}

.dev-divider {
  color: var(--gold-600);
}

.dev-mail {
  color: #e5ece8;
}

.dev-mail:hover {
  color: var(--gold-400);
}

.dev-insta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f472b6;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.dev-insta-link:hover {
  transform: scale(1.08);
  color: #fb7185;
}

/* ==========================================================================
   FLOATING ACTION CLUSTER (OFFICIAL WHATSAPP GRAPHIC)
   ========================================================================== */
.floating-action-cluster {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  overflow: hidden;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.float-wa-graphic {
  background: transparent;
  border: none;
  box-shadow: none;
}

.float-wa-icon-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(37, 211, 102, 0.5));
}

.float-call {
  background: #0284c7;
}

/* ==========================================================================
   MODALS & DRAWERS SYSTEM
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 15, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-card {
  background: #072c21;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  width: 100%;
}

.modal-xs { max-width: 440px; padding: 30px; }
.modal-sm { max-width: 540px; padding: 32px; }
.modal-md { max-width: 700px; padding: 36px; }
.modal-lg { max-width: 950px; padding: 36px; }
.modal-xl { max-width: 1250px; padding: 24px; }

.modal-close-icon {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close-icon:hover {
  background: var(--gold-500);
  color: #041c14;
}

.modal-header-banner h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.modal-header-banner p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Luxury Forms */
.luxury-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--cream-200);
  margin-bottom: 6px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--forest-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

/* Cart Drawer (Right Slide-Over) */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 250;
  display: none;
  justify-content: flex-end;
}

.cart-drawer-backdrop.active {
  display: flex;
}

.cart-drawer-container {
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: #06281f;
  border-left: 1px solid var(--gold-500);
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8);
  animation: slideInRight 0.3s ease;
}

.drawer-top-bar {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--forest-800);
}

.drawer-title-gold {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-400);
  display: block;
}

.drawer-item-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

.drawer-close-btn {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.cart-items-scroll-area {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cart-drawer-item img {
  width: 74px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.cart-item-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.cart-item-size-badge {
  font-size: 10px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-400);
  padding: 2px 6px;
  border-radius: 2px;
  display: inline-block;
  margin: 3px 0 6px;
}

.cart-qty-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-stepper button {
  width: 26px;
  height: 26px;
  background: var(--forest-800);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  border-radius: 2px;
  cursor: pointer;
}

.cart-qty-stepper span {
  font-weight: 700;
  font-size: 13px;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-gold);
  background: var(--forest-800);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cart-total-amount {
  color: var(--gold-400);
}

.cart-summary-sub {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.free-shipping-tag {
  color: #86efac;
  font-weight: 700;
}

.cart-checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Product Detail Modal Body */
.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.product-modal-gallery img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.product-modal-info h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
}

.product-modal-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-400);
  margin: 12px 0 16px;
}

.size-selection-header {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-400);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.size-pill-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.size-pill-option {
  padding: 8px 14px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: var(--forest-800);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-pill-option.active, .size-pill-option:hover {
  background: var(--gold-gradient);
  color: #041c14;
  border-color: var(--gold-400);
}

.product-specs-list {
  list-style: none;
  font-size: 13px;
  color: var(--cream-200);
  margin-bottom: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 14px;
}

.product-specs-list li {
  margin-bottom: 6px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--forest-900);
  border-right: 1px solid var(--gold-500);
  z-index: 300;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gold-400);
}

.drawer-close {
  background: transparent;
  border: 0;
  color: var(--gold-400);
  font-size: 20px;
  cursor: pointer;
}

.drawer-links a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   ADMIN CONTROL ROOM & SALES DASHBOARD ANALYTICS STYLES
   ========================================================================== */
.admin-modal-container {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: #02120c;
  border-bottom: 1px solid var(--gold-500);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-title-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-title-badge h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold-400);
  letter-spacing: 1px;
}

.admin-role-tag {
  font-size: 10px;
  font-weight: 800;
  background: #22c55e;
  color: #041c14;
  padding: 2px 8px;
  border-radius: 2px;
}

.admin-topbar-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-nav-tab {
  background: var(--forest-800);
  border: 1px solid var(--border-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-nav-tab.active, .admin-nav-tab:hover {
  background: var(--gold-gradient);
  color: #041c14;
  border-color: var(--gold-400);
}

.admin-logout-btn {
  background: #dc2626;
  color: #fff;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.admin-tab-content-area {
  padding: 24px;
  max-height: 78vh;
  overflow-y: auto;
  background: #041c15;
}

/* 11 Summary Cards Grid */
.admin-metrics-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.admin-stat-card {
  background: var(--forest-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.admin-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

.admin-stat-card span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.admin-stat-card b {
  display: block;
  font-size: 24px;
  color: var(--gold-400);
  margin-top: 4px;
  font-family: var(--font-sans);
}

/* Chart Canvas Boxes */
.admin-charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.chart-card-box {
  background: var(--forest-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.chart-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.chart-title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold-400);
  letter-spacing: 1px;
}

.chart-canvas-holder {
  position: relative;
  height: 260px;
  width: 100%;
}

/* Sales Filter Buttons */
.sales-filters-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--forest-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
}

.filter-chip-btn {
  background: rgba(8, 52, 39, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip-btn:hover, .filter-chip-btn.active {
  background: var(--gold-gradient);
  color: #041c14;
  border-color: var(--gold-400);
}

/* Admin Data Table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  background: var(--forest-800);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 13px;
}

.admin-table th {
  background: #06281f;
  color: var(--gold-400);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-gold);
}

.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: #fff;
}

.admin-table tr:hover {
  background: rgba(212, 175, 55, 0.08);
}

/* Stepper inside table */
.table-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--forest-900);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 2px 6px;
}

.table-stepper button {
  width: 24px;
  height: 24px;
  background: var(--forest-700);
  border: 0;
  color: var(--gold-400);
  font-weight: bold;
  cursor: pointer;
}

.table-stepper input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: 0;
  color: #fff;
  font-weight: 700;
}

/* Image Upload Dropzone inside Admin */
.image-upload-dropzone {
  border: 2px dashed var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  background: rgba(8, 52, 39, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.image-upload-dropzone:hover {
  background: rgba(212, 175, 55, 0.1);
}

.preview-thumb-box {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.preview-thumb-box img {
  width: 70px;
  height: 85px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--gold-500);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes pulseWarning {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .category-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-luxury-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-inner-container {
    grid-template-columns: 1fr;
  }
  .price-tier-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .review-stack-section-layout {
    grid-template-columns: 1fr;
  }
  .admin-metrics-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-charts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .products-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .customization-banner-box {
    grid-template-columns: 1fr;
  }
  .custom-side-decor {
    display: none;
  }
  .story-grid-layout {
    grid-template-columns: 1fr;
  }
  .product-modal-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-card {
    height: 220px;
  }
  .benefits-container {
    grid-template-columns: 1fr;
  }
  .benefit-item {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }
  .price-tier-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .admin-metrics-summary-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .accordion-gallery {
    flex-direction: column;
    height: auto;
  }
  .ag-panel {
    min-height: 90px;
  }
  .stack-review-card-inner {
    grid-template-columns: 1fr;
  }
  .stack-media-col {
    height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--border-gold);
  }
  .stack-container {
    height: 520px;
  }
}
