/* ==========================================================================
   STAANRIB - PREMIUM BRAAI WOOD
   Master Stylesheet (Updated: Solid Text Visibility, No Image Fire Overlay, Mobile Nav)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette (Exact Hex Values) */
  --staanrib-black:        #0B0A0A;   /* primary background */
  --staanrib-charcoal:     #1A1512;   /* secondary surface / cards */
  --staanrib-cream:        #FFFFFF;   /* crisp pure white primary text */
  --staanrib-cream-dim:    #E6D5B8;   /* secondary bright body text */
  --staanrib-ember:        #C43004;   /* deep ember red-orange */
  --staanrib-flame:        #FF8800;   /* radiant flame orange — CTAs, highlights */
  --staanrib-gold:         #FFC845;   /* bright radiant gold for headings */
  --staanrib-blood-red:    #500A04;   /* banner red behind "PREMIUM BRAAI WOOD" */
  --staanrib-bronze:       #D8C498;   /* aged gold/bronze rings, hairlines, borders */
  --staanrib-charwood:     #3C1400;   /* deep brown for texture/shadow layers */

  /* Surface Variations */
  --staanrib-card-bg:      #161210;
  --staanrib-card-border:  rgba(216, 196, 152, 0.45);
  --staanrib-gold-glow:    rgba(255, 136, 0, 0.35);

  /* Typography */
  --font-display: 'Rye', 'Alfa Slab One', serif;
  --font-heading: 'Staatliches', 'Impact', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout Spacing */
  --site-max-width: 1360px;
  --header-height: 92px;

  /* Transitions */
  --ease-out-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--staanrib-black);
  color: var(--staanrib-cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--staanrib-black);
  color: var(--staanrib-cream);
  min-height: 100vh;
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

::selection {
  background-color: var(--staanrib-flame);
  color: var(--staanrib-black);
}

/* --------------------------------------------------------------------------
   3. LIGHTER NOISE OVERLAY (NO DARK FADE VIGNETTE)
   -------------------------------------------------------------------------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

#ember-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   4. SOLID HIGH-CONTRAST HEADINGS (NO GRADIENT TEXT-FILL FADING)
   -------------------------------------------------------------------------- */
h1, h2, h3, .brand-font {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  line-height: 1.1;
  text-shadow: 0 2px 4px #000000, 0 4px 15px rgba(0, 0, 0, 0.95);
}

.text-flame {
  color: #FF8800 !important;
  text-shadow: 0 2px 4px #000000;
}

.text-gold {
  color: var(--staanrib-gold) !important;
  text-shadow: 0 2px 4px #000000;
}

.text-dim {
  color: var(--staanrib-cream-dim);
}

/* Solid Non-Gradient Distressed Headline Style */
.distressed-title {
  font-family: var(--font-heading);
  color: #FFFFFF;
  text-shadow: 0 2px 4px #000000, 0 4px 18px rgba(0, 0, 0, 0.95);
  position: relative;
  display: inline-block;
  letter-spacing: 0.06em;
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: #FFFFFF !important;
  text-shadow: 0 2px 4px #000000, 0 6px 20px rgba(0, 0, 0, 1);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

/* Solid Bright Flame Orange for "DELIVERED DRY." - No Fading Gradient */
.hero-title-highlight {
  color: #FF8800 !important;
  display: inline-block;
  text-shadow: 0 2px 4px #000000, 0 0 20px rgba(255, 136, 0, 0.8);
  font-weight: bold;
}

.hero-text-backdrop {
  background: rgba(18, 14, 12, 0.95);
  border: 2px solid var(--staanrib-bronze);
  border-left: 5px solid var(--staanrib-flame);
  padding: 2.2rem 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
}

.hero-subtitle-highres {
  font-size: 1.25rem;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 2px 4px #000000;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFC845;
  background: rgba(80, 10, 4, 0.95);
  border: 1px solid var(--staanrib-ember);
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
  font-weight: 700;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--staanrib-flame);
}

/* --------------------------------------------------------------------------
   5. PRODUCT IMAGE CARDS (CLEAN WOOD PHOTOGRAPHY - NO FIRE ANIMATION OVERLAY)
   -------------------------------------------------------------------------- */
.real-wood-card-image-box {
  width: 100%;
  height: 260px;
  position: relative;
  background-color: #0c0908;
  overflow: hidden;
}

.real-wood-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s var(--ease-out-smooth);
}

.product-card:hover .real-wood-photo {
  transform: scale(1.06);
}

.product-watermark-logo {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 55px;
  height: auto;
  opacity: 0.85;
  z-index: 10;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
}

/* --------------------------------------------------------------------------
   6. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn-staanrib {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0B0A0A;
  background-color: var(--staanrib-flame);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform 0.25s var(--ease-out-smooth), background-color 0.25s ease, box-shadow 0.25s ease;
  font-weight: 800;
  border: none;
  box-shadow: 0 4px 25px rgba(255, 136, 0, 0.5);
}

.btn-staanrib::before {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  pointer-events: none;
}

.btn-staanrib:hover {
  background-color: #FFA21A;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(255, 136, 0, 0.75);
}

.btn-staanrib-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.05rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: rgba(26, 21, 18, 0.95);
  border: 1px solid var(--staanrib-bronze);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.25s var(--ease-out-smooth);
}

.btn-staanrib-outline:hover {
  border-color: var(--staanrib-flame);
  color: var(--staanrib-flame);
  background-color: rgba(60, 20, 0, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(196, 48, 4, 0.4);
}

.btn-sm {
  padding: 0.65rem 1.3rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   7. HEADER & MOBILE RESPONSIVE NAVIGATION
   -------------------------------------------------------------------------- */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: background-color 0.35s ease, border-bottom 0.35s ease;
  display: flex;
  align-items: center;
  background-color: rgba(11, 10, 10, 0.95);
  border-bottom: 1px solid rgba(216, 196, 152, 0.35);
  backdrop-filter: blur(14px);
}

.header-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out-smooth);
}

.brand-logo-link:hover .header-logo-img {
  transform: scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 0 16px rgba(255, 136, 0, 0.85)) drop-shadow(0 0 30px rgba(196, 48, 4, 0.6));
}

.brand-logo-link:hover .header-brand-title {
  color: #FFFFFF;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.85);
}

.header-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.95));
  transition: all 0.35s ease;
}

.header-brand-group,
.header-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.header-brand-title {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  letter-spacing: 0.12em;
  color: var(--staanrib-cream);
  line-height: 1;
  display: block;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header-brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--staanrib-flame);
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--staanrib-cream-dim);
  text-transform: uppercase;
  position: relative;
  padding: 0.6rem 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, #FF8800, #C43004, transparent);
  box-shadow: 0 0 10px #FF8800, 0 0 20px #C43004;
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-link:hover {
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255, 136, 0, 0.8), 0 0 25px rgba(196, 48, 4, 0.6);
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.header-admin-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 136, 0, 0.08);
  border: 1px solid rgba(255, 136, 0, 0.3);
  border-radius: 4px;
  color: var(--staanrib-cream);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-admin-btn:hover {
  background: rgba(255, 136, 0, 0.22);
  border-color: var(--staanrib-flame);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(255, 136, 0, 0.45);
  transform: translateY(-2px);
}

.header-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(145deg, #1c1511 0%, #100c09 100%);
  border: 1.5px solid var(--staanrib-bronze);
  border-radius: 4px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header-cart-btn svg {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-cart-btn:hover {
  border-color: var(--staanrib-flame);
  background: linear-gradient(145deg, #2f170b 0%, #170b05 100%);
  box-shadow: 0 0 25px rgba(255, 136, 0, 0.45), 0 0 45px rgba(196, 48, 4, 0.3);
  transform: translateY(-2px);
  color: #FFFDF5;
}

.header-cart-btn:hover svg {
  filter: drop-shadow(0 0 8px #FF8800);
  transform: scale(1.15);
}

.header-icon-tap-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.95rem;
  background: linear-gradient(145deg, #241a13 0%, #120e0b 100%);
  border: 1.5px solid var(--staanrib-bronze);
  border-radius: 6px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
}

.header-icon-tap-btn svg {
  width: 18px;
  height: 18px;
}

.header-icon-tap-btn.btn-tap-phone svg {
  color: var(--staanrib-flame);
}

.header-icon-tap-btn.btn-tap-whatsapp svg {
  color: #25D366;
}

.header-icon-tap-btn:hover {
  border-color: var(--staanrib-flame);
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.4);
  transform: translateY(-1px);
}

.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--staanrib-flame);
  color: var(--staanrib-black);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50%;
}

/* Mobile Nav Hamburger Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--staanrib-bronze);
  color: #FFFFFF;
  padding: 0.5rem 0.8rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Slide-Down Nav Menu Overlay */
.mobile-nav-menu-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: rgba(11, 10, 10, 0.98);
  border-top: 1px solid var(--staanrib-bronze);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  gap: 1.8rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease-out-smooth);
  box-sizing: border-box;
}

.mobile-nav-menu-overlay.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #FFFFFF;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   8. SECTIONS & LAYOUT (NO SCROLL DARKENING FADE)
   -------------------------------------------------------------------------- */
.scene-perspective-container {
  width: 100%;
  position: relative;
}

.scroll-section {
  position: relative;
  width: 100%;
  padding: 6.5rem 2rem;
  scroll-margin-top: 85px;
}

#hardwoods {
  scroll-margin-top: 100px;
}

#staanrib-fire,
#delivery,
#contact,
#standard,
#testimonials {
  scroll-margin-top: 85px;
}

.section-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-photo-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: contrast(1.1) brightness(0.7);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-guarantee-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(216, 196, 152, 0.35);
  width: 100%;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.guarantee-icon {
  width: 26px;
  height: 26px;
  color: var(--staanrib-flame);
  flex-shrink: 0;
}

.hero-visual-card {
  position: relative;
  background-color: rgba(26, 21, 18, 0.95);
  border: 2px solid var(--staanrib-bronze);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(14px);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-large {
  width: 280px;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.9));
}

.hero-visual-caption {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  color: #FFFFFF;
}

.hero-visual-subtext {
  font-size: 0.95rem;
  color: var(--staanrib-flame);
  margin-top: 0.4rem;
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
}

/* --------------------------------------------------------------------------
   9. SECTION EMBLEM DIVIDERS WITH VISIBLE TRANSPARENT LOGO
   -------------------------------------------------------------------------- */
.section-logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
  position: relative;
}

.section-logo-divider::before, .section-logo-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--staanrib-bronze), transparent);
  opacity: 0.6;
}

.section-logo-mark {
  width: 75px;
  height: 75px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.9));
}

/* --------------------------------------------------------------------------
   10. PILLARS GRID (THE STAANRIB STANDARD)
   -------------------------------------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pillar-card {
  background-color: var(--staanrib-card-bg);
  border: 1px solid var(--staanrib-card-border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
}

.pillar-card:hover {
  border-color: var(--staanrib-flame);
  transform: translateY(-6px);
  background-color: #17110e;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 136, 0, 0.2);
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--staanrib-charwood);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.pillar-card:hover .pillar-number {
  color: var(--staanrib-flame);
  opacity: 0.35;
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  color: var(--staanrib-flame);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #FF8800);
}

.pillar-icon-box svg {
  width: 100%;
  height: 100%;
}

.pillar-title {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px #000000;
}

.pillar-desc {
  font-size: 1rem;
  color: var(--staanrib-cream-dim);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. SHOP & HARDWOOD CARDS
   -------------------------------------------------------------------------- */
.shop-section {
  background-color: var(--staanrib-charcoal);
  position: relative;
  border-top: 1px solid rgba(216, 196, 152, 0.25);
  border-bottom: 1px solid rgba(216, 196, 152, 0.25);
}

.shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.shop-policy-banner {
  background: linear-gradient(90deg, rgba(80, 10, 4, 0.9) 0%, rgba(36, 10, 5, 0.95) 100%);
  border: 1px solid var(--staanrib-ember);
  padding: 1.2rem 2rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.shop-policy-banner:hover {
  border-color: var(--staanrib-flame);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 136, 0, 0.25);
}

.shop-policy-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}

.shop-policy-icon {
  width: 28px;
  height: 28px;
  color: var(--staanrib-flame);
  flex-shrink: 0;
}

.shop-grid-3col,
.shop-grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background-color: var(--staanrib-black);
  border: 1.5px solid var(--staanrib-card-border);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.product-card:hover {
  border-color: var(--staanrib-flame);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 136, 0, 0.25), 0 0 50px rgba(196, 48, 4, 0.15);
}

.product-card:hover .product-watermark-logo {
  opacity: 0.95;
  transform: rotate(4deg) scale(1.08);
  filter: drop-shadow(0 0 12px rgba(255, 136, 0, 0.8));
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--staanrib-blood-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--staanrib-ember);
  z-index: 10;
}

.product-details {
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.product-scientific {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--staanrib-bronze);
  margin-bottom: 0.75rem;
  display: block;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.spec-badge {
  background-color: rgba(60, 20, 0, 0.8);
  border: 1px solid rgba(216, 196, 152, 0.4);
  font-size: 0.75rem;
  color: #FFFFFF;
  padding: 0.25rem 0.6rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--staanrib-cream-dim);
  margin-bottom: 1.2rem;
  line-height: 1.6;
  flex: 1;
}

.product-variant-selector {
  margin-top: auto;
  margin-bottom: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 196, 152, 0.25);
  display: flex;
  flex-direction: column;
}

.variant-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--staanrib-gold);
  font-weight: 700;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

/* Stacked Bag Action Buttons (Full Width Rows) */
.bag-action-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.bag-action-buttons-grid.single {
  display: flex;
  flex-direction: column;
}

.bag-action-btn {
  position: relative;
  background: linear-gradient(145deg, #231b15 0%, #140f0c 100%);
  border: 1.5px solid rgba(216, 196, 152, 0.45);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  width: 100%;
  box-sizing: border-box;
}

.bag-action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 136, 0, 0.25), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.bag-action-btn:hover::before {
  left: 100%;
}

.bag-action-btn:hover {
  border-color: var(--staanrib-flame);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 136, 0, 0.35), 0 0 15px rgba(255, 68, 0, 0.2);
  background: linear-gradient(145deg, #2b1d14 0%, #18110c 100%);
}

.bag-action-btn.secondary {
  border-color: rgba(180, 160, 120, 0.35);
  background: linear-gradient(145deg, #1c1612 0%, #100d0a 100%);
}

.bag-action-btn.secondary:hover {
  border-color: var(--staanrib-flame);
  background: linear-gradient(145deg, #2b1d14 0%, #18110c 100%);
}

.bag-btn-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.bag-btn-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.bag-btn-weight {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.bag-btn-tag {
  font-size: 0.76rem;
  color: var(--staanrib-cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.bag-btn-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.bag-btn-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--staanrib-gold);
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.bag-btn-action {
  font-size: 0.72rem;
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
  color: var(--staanrib-flame);
  font-weight: 800;
  margin-top: 3px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* FIRE EXPLOSION / FLAME BURST ANIMATION ON CLICK */
@keyframes fireBurstEffect {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 136, 0, 0.95), 0 0 0 0 rgba(255, 68, 0, 0.8);
    border-color: #FFFDF5;
  }
  30% {
    transform: scale(1.04);
    box-shadow: 0 0 35px 12px rgba(255, 136, 0, 0.9), 0 0 65px 22px rgba(196, 48, 4, 0.8), inset 0 0 25px rgba(255, 136, 0, 0.7);
    border-color: #FF8800;
  }
  65% {
    transform: scale(1.02);
    box-shadow: 0 0 25px 8px rgba(255, 136, 0, 0.65), 0 0 45px 14px rgba(196, 48, 4, 0.55);
    border-color: var(--staanrib-gold);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: var(--staanrib-bronze);
  }
}

.bag-action-btn.fire-pulse {
  animation: fireBurstEffect 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: linear-gradient(145deg, #421508 0%, #200b04 100%) !important;
  border-color: var(--staanrib-flame) !important;
}

.bag-action-btn.fire-pulse .bag-btn-action {
  color: #FFFDF5;
  text-shadow: 0 0 10px #FF8800, 0 0 20px #C43004;
}

.bag-action-btn.fire-pulse .bag-btn-price {
  color: #FFFDF5;
  text-shadow: 0 0 12px #FF8800;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 196, 152, 0.25);
}

.option-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.option-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}

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

.product-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--staanrib-flame);
  line-height: 1;
}

.product-unit {
  font-size: 0.82rem;
  color: var(--staanrib-cream-dim);
}

/* --------------------------------------------------------------------------
   11. THE STAANRIB FIRE (TECHNIQUE BLOCK WITH LOGO DISPLAY)
   -------------------------------------------------------------------------- */
.technique-section {
  background-color: var(--staanrib-black);
  position: relative;
  overflow: hidden;
}

.technique-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.technique-visual-stage {
  position: relative;
  background-color: var(--staanrib-charcoal);
  border: 2px solid var(--staanrib-bronze);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 460px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.technique-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: contrast(1.15) brightness(0.75);
  pointer-events: none;
  transition: transform 8s ease;
}

.technique-visual-stage:hover .technique-bg-photo {
  transform: scale(1.05);
}

/* Explicit Header Logo Badge on Technique Block */
.technique-header-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.technique-card-logo {
  width: 65px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.95));
}

.staanrib-fire-svg {
  width: 100%;
  max-width: 420px;
  height: 360px;
  position: relative;
  z-index: 2;
}

.technique-steps-nav {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.step-nav-btn {
  flex: 1;
  padding: 0.75rem 0.4rem;
  background-color: rgba(26, 21, 18, 0.9);
  border: 1px solid var(--staanrib-bronze);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-align: center;
  transition: all 0.25s ease;
}

.step-nav-btn.active, .step-nav-btn:hover {
  background-color: var(--staanrib-flame);
  color: var(--staanrib-black);
  border-color: var(--staanrib-flame);
  font-weight: 800;
}

.step-content-display {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(11, 10, 10, 0.92);
  border-left: 4px solid var(--staanrib-flame);
  width: 100%;
  position: relative;
  z-index: 2;
}

.step-display-title {
  font-size: 1.3rem;
  color: var(--staanrib-flame);
  margin-bottom: 0.4rem;
}

.step-display-text {
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.6;
}

.heat-comparison-box {
  background-color: var(--staanrib-card-bg);
  border: 1px solid var(--staanrib-card-border);
  padding: 2.5rem;
  margin-top: 2rem;
}

.chart-bar-group {
  margin-bottom: 1.4rem;
}

.chart-bar-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #FFFFFF;
}

.chart-bar-track {
  height: 14px;
  background-color: rgba(60, 20, 0, 0.5);
  border: 1px solid rgba(216, 196, 152, 0.35);
  position: relative;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--staanrib-ember), var(--staanrib-flame));
}

/* --------------------------------------------------------------------------
   12. INTERACTIVE DELIVERY & MOISTURE CALCULATOR
   -------------------------------------------------------------------------- */
.interactive-section {
  background-color: var(--staanrib-charcoal);
  border-top: 1px solid rgba(216, 196, 152, 0.25);
  border-bottom: 1px solid rgba(216, 196, 152, 0.25);
}

.interactive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.interactive-card {
  background-color: var(--staanrib-black);
  border: 1px solid var(--staanrib-bronze);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-header-logo-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.card-top-logo {
  width: 60px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.9));
}

.moisture-slider-wrapper {
  margin: 2.2rem 0;
}

.moisture-gauge-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1.6rem;
  background-color: var(--staanrib-charcoal);
  border: 1px solid var(--staanrib-card-border);
}

.moisture-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.9;
  color: #FFFFFF;
}

.moisture-status {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-align: right;
}

.range-slider {
  width: 100%;
  height: 12px;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--staanrib-flame) 0%, #76A5AF 100%);
  outline: none;
  border-radius: 6px;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  background: var(--staanrib-cream);
  border: 3px solid var(--staanrib-flame);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 136, 0, 0.9);
}

.moisture-comparison-result {
  padding: 1.5rem;
  border-left: 4px solid var(--staanrib-flame);
  background-color: rgba(60, 20, 0, 0.5);
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.6;
}

.delivery-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.form-input {
  background-color: var(--staanrib-charcoal);
  border: 1px solid var(--staanrib-bronze);
  color: #FFFFFF;
  padding: 1.05rem 1.3rem;
  font-size: 1.08rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-input:focus {
  border-color: var(--staanrib-flame);
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

.delivery-result-box {
  margin-top: 1.6rem;
  padding: 1.5rem;
  background-color: rgba(80, 10, 4, 0.7);
  border: 1px solid var(--staanrib-ember);
  display: none;
}

.delivery-result-box.active {
  display: block;
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--staanrib-black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background-color: var(--staanrib-card-bg);
  border: 1.5px solid var(--staanrib-card-border);
  padding: 2.8rem 2.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--staanrib-flame);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 136, 0, 0.2);
  background-color: #17110e;
}

.testimonial-quote-mark {
  font-family: serif;
  font-size: 5.5rem;
  line-height: 0.6;
  color: var(--staanrib-bronze);
  opacity: 0.45;
  margin-bottom: 1rem;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-mark {
  color: var(--staanrib-flame);
  opacity: 0.85;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-top: 1px solid rgba(216, 196, 152, 0.25);
  padding-top: 1.2rem;
}

.author-badge {
  width: 48px;
  height: 48px;
  background-color: var(--staanrib-charwood);
  border: 1px solid var(--staanrib-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--staanrib-flame);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #FFFFFF;
}

.author-role {
  font-size: 0.85rem;
  color: var(--staanrib-cream-dim);
}

/* --------------------------------------------------------------------------
   14. CONTACT & CUSTOM QUOTE FORM
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--staanrib-charcoal);
  border-top: 1px solid rgba(216, 196, 152, 0.25);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 32px;
  height: 32px;
  color: var(--staanrib-flame);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-text-group h4 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.contact-text-group p {
  font-size: 1.02rem;
  color: var(--staanrib-cream-dim);
}

/* Big Tactile Phone & WhatsApp Tap Buttons with Fire Effect */
.contact-quick-tap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 0.5rem 0 1rem 0;
  width: 100%;
}

.btn-tap-fire {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.05rem;
  background: linear-gradient(145deg, #261a12 0%, #120d0a 100%);
  border: 1.5px solid rgba(216, 196, 152, 0.45);
  border-radius: 8px;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.btn-tap-fire::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 136, 0, 0.3), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-tap-fire:hover::before {
  left: 100%;
}

.btn-tap-fire:hover {
  transform: translateY(-2px);
  border-color: var(--staanrib-flame);
  box-shadow: 0 8px 25px rgba(255, 136, 0, 0.45), 0 0 15px rgba(196, 48, 4, 0.35);
}

.tap-btn-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.btn-tap-phone .tap-btn-icon-box {
  background: rgba(255, 136, 0, 0.15);
  border: 2px solid var(--staanrib-flame);
  color: var(--staanrib-flame);
}

.btn-tap-phone:hover .tap-btn-icon-box {
  background: var(--staanrib-flame);
  color: var(--staanrib-black);
  box-shadow: 0 0 18px #FF8800;
}

.btn-tap-whatsapp {
  border-color: rgba(37, 211, 102, 0.5);
}

.btn-tap-whatsapp:hover {
  border-color: #25D366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 15px rgba(255, 136, 0, 0.3);
}

.btn-tap-whatsapp .tap-btn-icon-box {
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid #25D366;
  color: #25D366;
}

.btn-tap-whatsapp:hover .tap-btn-icon-box {
  background: #25D366;
  color: #000000;
  box-shadow: 0 0 18px #25D366;
}

.tap-btn-icon-box svg {
  width: 22px;
  height: 22px;
}

.tap-btn-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tap-btn-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--staanrib-cream-dim);
  text-transform: uppercase;
  line-height: 1.1;
}

.tap-btn-val {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.btn-tap-phone .tap-btn-val {
  color: var(--staanrib-gold);
}

.btn-tap-whatsapp .tap-btn-val {
  color: #25D366;
}

/* FIRE EXPLOSION ON TAP */
.btn-tap-fire.fire-pulse {
  animation: fireBurstEffect 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  background: linear-gradient(145deg, #451507 0%, #220b04 100%) !important;
  border-color: var(--staanrib-flame) !important;
}

/* Floating Quick-Contact Action Group (Bottom Right) */
.floating-quick-contact-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 998;
}

.floating-tap-btn {
  width: 58px;
  height: 58px;
  border-radius: 50% !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.75);
}

.floating-tap-btn svg {
  width: 28px;
  height: 28px;
}

.floating-tap-btn.btn-tap-phone {
  background: linear-gradient(145deg, #2b1c12 0%, #150e09 100%);
  border: 2px solid var(--staanrib-flame);
  color: var(--staanrib-flame);
}

.floating-tap-btn.btn-tap-whatsapp {
  background: linear-gradient(145deg, #0d2816 0%, #06170d 100%);
  border: 2px solid #25D366;
  color: #25D366;
}

.floating-tap-tooltip {
  display: none;
}

.quote-form-card {
  background-color: var(--staanrib-black);
  border: 1.5px solid var(--staanrib-bronze);
  padding: 3rem 2.5rem;
  position: relative;
  border-radius: 6px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.quote-card-emblem {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 48px;
  opacity: 0.85;
  pointer-events: none;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.quote-form-card:hover {
  border-color: var(--staanrib-flame);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 136, 0, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FF8800'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background-color: var(--staanrib-black);
  color: #FFFFFF;
  padding: 0.5rem;
}

.contact-feedback-box {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  border-radius: 2px;
}

.contact-feedback-box.success {
  background-color: rgba(20, 80, 20, 0.8);
  border: 1px solid #8FFF85;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   15. E-COMMERCE SHOPPING CART DRAWER
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(11, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background-color: var(--staanrib-black);
  border-left: 1px solid var(--staanrib-bronze);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

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

.cart-step-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.cart-drawer-header {
  padding: 1.2rem 1.6rem;
  background-color: var(--staanrib-charcoal);
  border-bottom: 1px solid rgba(216, 196, 152, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cart-drawer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.cart-drawer-title {
  font-size: 1.4rem;
  color: #FFFFFF;
}

.cart-close-btn {
  color: var(--staanrib-cream-dim);
  font-size: 2.2rem;
  line-height: 1;
  transition: color 0.2s ease;
  padding: 0 0.4rem;
}

.cart-close-btn:hover {
  color: var(--staanrib-flame);
}

.cart-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--staanrib-flame);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  background-color: rgba(255, 136, 0, 0.1);
  border: 1px solid rgba(255, 136, 0, 0.3);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-back-btn:hover {
  background-color: var(--staanrib-flame);
  color: #000000;
}

/* Quick Navigation Actions Bar inside Cart */
.cart-nav-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.6rem;
  background-color: rgba(26, 21, 18, 0.95);
  border-bottom: 1px solid rgba(216, 196, 152, 0.15);
}

.cart-nav-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.btn-continue-shopping {
  color: var(--staanrib-cream-dim);
  border: 1px solid rgba(216, 196, 152, 0.3);
  background-color: transparent;
}

.btn-continue-shopping:hover {
  color: #FFFFFF;
  border-color: var(--staanrib-flame);
  background-color: rgba(255, 136, 0, 0.1);
}

.btn-clear-cart {
  color: #FF8585;
  border: 1px solid rgba(255, 85, 85, 0.3);
  background-color: transparent;
}

.btn-clear-cart:hover {
  color: #FFFFFF;
  background-color: rgba(196, 48, 4, 0.3);
  border-color: var(--staanrib-ember);
}

.cart-items-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cart-empty-message {
  text-align: center;
  color: var(--staanrib-cream-dim);
  margin: auto;
  padding: 2.5rem 1rem;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(216, 196, 152, 0.2);
  gap: 0.8rem;
}

.cart-item-info h4 {
  font-size: 1.12rem;
  color: #FFFFFF;
}

.cart-item-info p {
  font-size: 0.85rem;
  color: var(--staanrib-cream-dim);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--staanrib-charcoal);
  border: 1px solid var(--staanrib-bronze);
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}

.qty-btn {
  color: var(--staanrib-flame);
  font-weight: bold;
  padding: 0 0.35rem;
  font-size: 1.05rem;
}

/* ================= STEP 2: CHECKOUT VIEW STYLES ================= */
.checkout-order-summary-bar {
  padding: 0.85rem 1.6rem;
  background-color: rgba(80, 10, 4, 0.5);
  border-bottom: 1px solid rgba(216, 196, 152, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #FFFFFF;
}

.checkout-form-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-form-intro {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background-color: var(--staanrib-charcoal);
  border: 1px solid rgba(216, 196, 152, 0.25);
  border-radius: 4px;
}

.checkout-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.checkout-label {
  font-size: 0.8rem;
  font-family: var(--font-heading);
  color: var(--staanrib-bronze);
  letter-spacing: 0.05em;
}

.required-star {
  color: #FF5252;
}

.checkout-input {
  background-color: var(--staanrib-black);
  border: 1.5px solid rgba(216, 196, 152, 0.35);
  color: #FFFFFF;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  border-radius: 4px;
  outline: none;
  transition: all 0.2s ease;
}

.checkout-input:focus {
  border-color: var(--staanrib-flame);
  box-shadow: 0 0 8px rgba(255, 136, 0, 0.35);
}

.checkout-input.error {
  border-color: #FF5252;
  background-color: rgba(255, 82, 82, 0.08);
}

.checkout-final-total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #FFFFFF;
  padding-bottom: 0.5rem;
}

.cart-drawer-footer {
  padding: 1.2rem 1.6rem 1.6rem;
  background-color: var(--staanrib-charcoal);
  border-top: 1px solid rgba(216, 196, 152, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-breakdown-table {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--staanrib-cream-dim);
}

.cart-breakdown-row {
  display: flex;
  justify-content: space-between;
}

.cart-min-warning {
  padding: 0.7rem 0.85rem;
  background-color: rgba(80, 10, 4, 0.85);
  border: 1px solid var(--staanrib-ember);
  color: #FFC845;
  font-size: 0.85rem;
  text-align: center;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  border-radius: 3px;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #FFFFFF;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(216, 196, 152, 0.2);
}

.cart-subtotal-amount {
  color: var(--staanrib-flame);
}

.cart-footer-nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.2rem;
}

.cart-footer-link-btn {
  font-size: 0.85rem;
  color: var(--staanrib-cream-dim);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s ease;
}

.cart-footer-link-btn:hover {
  color: var(--staanrib-flame);
}

.cart-footer-link-btn.danger-link {
  color: rgba(255, 120, 120, 0.8);
}

.cart-footer-link-btn.danger-link:hover {
  color: #FF5252;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.footer-main {
  background-color: #060505;
  border-top: 1px solid var(--staanrib-bronze);
  padding: 6rem 2rem 3rem;
  position: relative;
}

.footer-grid {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4.5rem;
  margin-bottom: 4rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.9));
  margin-bottom: 0.5rem;
}

.footer-brand-desc {
  font-size: 1.02rem;
  color: var(--staanrib-cream-dim);
  margin: 1.5rem 0;
  max-width: 420px;
  line-height: 1.65;
}

.footer-heading {
  font-size: 1.3rem;
  color: var(--staanrib-flame);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--staanrib-cream-dim);
  transition: color 0.2s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(216, 196, 152, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--staanrib-cream-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   17. MOBILE & TABLET RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-text-backdrop {
    border-left: none;
    border-top: 5px solid var(--staanrib-flame);
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-grid-3col,
  .shop-grid-products {
    grid-template-columns: 1fr 1fr;
  }
  .technique-grid, .interactive-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .header-brand-title {
    font-size: 1.35rem;
  }
  .header-logo-img {
    height: 44px;
  }
  .header-tap-text {
    display: none;
  }
  .header-icon-tap-btn {
    padding: 0.5rem;
    width: 38px;
    height: 38px;
    justify-content: center;
    border-radius: 50%;
  }
  .header-admin-btn {
    padding: 0.5rem;
  }
  .header-admin-btn .header-admin-text {
    display: none;
  }
  .header-cart-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
  }
  .header-cart-btn span:first-of-type {
    display: none;
  }
  
  .hero-title-main {
    font-size: 2.6rem;
  }
  .hero-guarantee-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-actions .btn-staanrib,
  .hero-actions .btn-staanrib-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .shop-grid-3col,
  .shop-grid-products {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-card {
    width: 100%;
    max-width: 100%;
  }
  .product-details {
    padding: 1.4rem 1.2rem;
  }
  
  .bag-action-btn {
    padding: 0.8rem 0.9rem;
  }
  .bag-btn-weight {
    font-size: 1.05rem;
  }
  .bag-btn-price {
    font-size: 1.25rem;
  }

  .technique-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .technique-visual-stage {
    min-height: 380px;
    padding: 2rem 1.2rem;
  }
  .technique-steps-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }
  .step-nav-btn {
    font-size: 0.8rem;
    padding: 0.65rem 0.3rem;
  }

  .interactive-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }
  .contact-quick-tap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
  }
  .btn-tap-fire {
    width: 100%;
    padding: 0.6rem 0.75rem;
    gap: 0.55rem;
    border-radius: 6px;
  }
  .tap-btn-icon-box {
    width: 34px;
    height: 34px;
  }
  .tap-btn-icon-box svg {
    width: 17px;
    height: 17px;
  }
  .tap-btn-label {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }
  .tap-btn-val {
    font-size: 0.88rem;
  }
  .quote-card-emblem {
    display: none;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    width: 100%;
  }
  .quote-form-card {
    padding: 1.5rem 1.15rem;
    width: 100%;
    box-sizing: border-box;
  }
  .form-input {
    padding: 0.85rem 0.95rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .scroll-section {
    padding: 3rem 1.25rem;
  }
  .distressed-title {
    font-size: 2.2rem !important;
  }
  .shop-policy-banner {
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .floating-quick-contact-bar {
    bottom: 1.2rem;
    right: 1.2rem;
    gap: 0.6rem;
  }
  .floating-tap-btn {
    width: 50px;
    height: 50px;
  }
  .floating-tap-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .header-brand-title {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .header-logo-img {
    height: 38px;
  }
  .hero-title-main {
    font-size: 2.2rem;
  }
  .distressed-title {
    font-size: 1.9rem !important;
  }
  .product-details {
    padding: 1.2rem 0.9rem;
  }
  .bag-action-btn {
    padding: 0.75rem 0.75rem;
  }
  .bag-btn-weight {
    font-size: 0.98rem;
  }
  .bag-btn-tag {
    font-size: 0.7rem;
  }
  .bag-btn-price {
    font-size: 1.2rem;
  }
  .bag-btn-action {
    font-size: 0.65rem;
  }
  .contact-quick-tap-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .btn-tap-fire {
    padding: 0.55rem 0.8rem;
  }
  .tap-btn-val {
    font-size: 0.95rem;
  }
  .quote-form-card {
    padding: 1.25rem 0.85rem;
  }
  .scroll-section {
    padding: 2.5rem 0.95rem;
  }
  .footer-main {
    padding: 3.5rem 1rem 2rem;
  }
  .footer-quick-tap-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }
  .footer-quick-tap-group .btn-tap-fire {
    width: 100%;
    padding: 0.55rem 0.65rem !important;
    justify-content: center;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   ADMIN PANEL STYLES
   ========================================================================== */

/* --- Admin Login Modal --- */
.admin-login-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.admin-login-overlay.active { opacity: 1; pointer-events: auto; }

.admin-login-card {
  background: linear-gradient(145deg, #1A1512, #0D0B0A);
  border: 1px solid var(--staanrib-bronze);
  box-shadow: 0 30px 80px rgba(0,0,0,.9), 0 0 60px rgba(255,136,0,.08);
  padding: 3rem 3.5rem;
  width: 100%; max-width: 460px;
  position: relative;
  animation: adminFadeUp .4s var(--ease-out-smooth) both;
}
@keyframes adminFadeUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-10px)} 40%,80%{transform:translateX(10px)} }
.admin-shake { animation: shake .5s ease !important; }

.admin-close-x {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-size: 2rem; line-height: 1; color: var(--staanrib-cream-dim);
  background: none; border: none; cursor: pointer;
  transition: color .2s;
}
.admin-close-x:hover { color: var(--staanrib-flame); }

.admin-login-brand {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(216,196,152,.25);
}
.admin-login-logo { height: 60px; width: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,.9)); }
.admin-login-title { font-size: 2rem; color: #FFF; margin-bottom: .5rem; }
.admin-login-error {
  background: rgba(196,48,4,.2); border: 1px solid var(--staanrib-ember);
  color: #FF8080; font-size: .9rem; padding: .85rem 1rem;
  margin-bottom: 1rem; text-align: center;
}

/* --- Full Admin Panel --- */
.admin-panel {
  position: fixed; inset: 0; z-index: 8000;
  display: flex;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  background: #0B0A0A;
}
.admin-panel.active { opacity: 1; pointer-events: auto; }

/* --- Sidebar --- */
.admin-sidebar {
  width: 260px; flex-shrink: 0;
  background: #0F0D0C;
  border-right: 1px solid rgba(216,196,152,.2);
  display: flex; flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.admin-sidebar-brand {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.8rem 1.6rem;
  border-bottom: 1px solid rgba(216,196,152,.2);
  background: #0B0A0A;
}
.admin-sidebar-logo { height: 52px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.9)); }

.admin-nav {
  flex: 1; display: flex; flex-direction: column;
  padding: 1.5rem 0; gap: .25rem;
  overflow-y: auto;
}
.admin-nav-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.6rem;
  background: none; border: none;
  font-family: var(--font-heading); font-size: 1rem; letter-spacing: .12em;
  color: var(--staanrib-cream-dim);
  text-transform: uppercase; text-align: left;
  cursor: pointer; transition: all .2s ease;
  border-left: 3px solid transparent;
}
.admin-nav-item:hover { color: #FFF; background: rgba(255,136,0,.06); }
.admin-nav-item.active { color: var(--staanrib-flame); border-left-color: var(--staanrib-flame); background: rgba(255,136,0,.08); }
.admin-nav-icon { font-size: 1.3rem; }

.admin-sidebar-footer {
  padding: 1.5rem 1.6rem;
  border-top: 1px solid rgba(216,196,152,.2);
  display: flex; flex-direction: column; gap: .75rem;
}
.admin-user-info {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem; background: rgba(255,136,0,.06);
  border: 1px solid rgba(255,136,0,.15); margin-bottom: .25rem;
}
.admin-user-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #4ADE80; box-shadow: 0 0 8px #4ADE80;
  flex-shrink: 0;
}
.admin-logout-btn {
  width: 100%; padding: .75rem;
  background: rgba(196,48,4,.2); border: 1px solid var(--staanrib-ember);
  color: #FFF; font-family: var(--font-heading); font-size: .95rem;
  letter-spacing: .1em; cursor: pointer; transition: all .2s;
}
.admin-logout-btn:hover { background: rgba(196,48,4,.4); }
.admin-view-site-btn {
  width: 100%; padding: .65rem;
  background: rgba(216,196,152,.08); border: 1px solid rgba(216,196,152,.3);
  color: var(--staanrib-cream-dim); font-family: var(--font-heading); font-size: .9rem;
  letter-spacing: .08em; cursor: pointer; transition: all .2s; text-align: center;
}
.admin-view-site-btn:hover { color: #FFF; border-color: var(--staanrib-bronze); }

/* --- Main Content Area --- */
.admin-main {
  flex: 1; overflow-y: auto;
  padding: 2.5rem 3rem;
  background: #100E0D;
}
.admin-page-header { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(216,196,152,.15); }
.admin-page-title { font-size: 2.4rem; color: #FFF; margin-bottom: .4rem; }
.admin-page-subtitle { color: var(--staanrib-cream-dim); font-size: 1rem; }

/* --- Stats Grid --- */
.admin-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.admin-stat-card {
  background: #161210; border: 1px solid rgba(216,196,152,.2);
  padding: 2rem 1.8rem; text-align: center;
  transition: border-color .25s;
}
.admin-stat-card:hover { border-color: var(--staanrib-bronze); }
.admin-stat-card.highlight { border-color: rgba(255,136,0,.35); background: rgba(255,136,0,.05); }
.admin-stat-card.warning { border-color: rgba(255,200,69,.25); background: rgba(255,200,69,.04); }
.admin-stat-card.success { border-color: rgba(74,222,128,.2); background: rgba(74,222,128,.04); }
.admin-stat-icon { font-size: 2rem; margin-bottom: .5rem; }
.admin-stat-value { font-family: var(--font-heading); font-size: 2.8rem; color: var(--staanrib-flame); line-height: 1; margin-bottom: .4rem; }
.admin-stat-label { font-family: var(--font-heading); font-size: .85rem; letter-spacing: .14em; color: var(--staanrib-cream-dim); }

/* --- Section Subtitle --- */
.admin-section-subtitle {
  font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: .12em;
  color: var(--staanrib-gold); margin-bottom: 1.5rem;
}

/* --- Tables --- */
.admin-table-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.admin-filter-group { display: flex; gap: .5rem; flex-wrap: wrap; }
.admin-filter-btn {
  padding: .5rem 1.2rem;
  background: rgba(216,196,152,.08); border: 1px solid rgba(216,196,152,.25);
  color: var(--staanrib-cream-dim); font-family: var(--font-heading); font-size: .9rem;
  letter-spacing: .08em; cursor: pointer; transition: all .2s;
}
.admin-filter-btn:hover { color: #FFF; border-color: var(--staanrib-bronze); }
.admin-filter-btn.active { background: var(--staanrib-flame); border-color: var(--staanrib-flame); color: #0B0A0A; font-weight: 800; }
.admin-table-count { font-family: var(--font-heading); font-size: .95rem; color: var(--staanrib-cream-dim); letter-spacing: .08em; }

.admin-table-wrapper { overflow-x: auto; }
.admin-table {
  width: 100%; border-collapse: collapse;
  font-size: .92rem; min-width: 900px;
}
.admin-table thead { background: #0B0A0A; }
.admin-table th {
  font-family: var(--font-heading); font-size: .85rem; letter-spacing: .1em;
  color: var(--staanrib-flame); padding: 1rem 1.2rem; text-align: left;
  border-bottom: 1px solid rgba(216,196,152,.2); white-space: nowrap;
}
.admin-table-row td {
  padding: .9rem 1.2rem; border-bottom: 1px solid rgba(216,196,152,.08);
  color: var(--staanrib-cream-dim); vertical-align: middle;
}
.admin-table-row:hover td { background: rgba(255,136,0,.04); }
.admin-table-row.clickable { cursor: pointer; }
.admin-empty-row { text-align: center; color: var(--staanrib-cream-dim); padding: 2rem; }

.admin-order-id {
  font-family: var(--font-heading); font-size: .9rem; letter-spacing: .08em;
  color: var(--staanrib-gold); background: rgba(255,200,69,.08);
  padding: .2rem .6rem; border: 1px solid rgba(255,200,69,.2);
}
.admin-item-tag {
  display: inline-block; font-size: .78rem; font-family: var(--font-heading);
  background: rgba(60,20,0,.8); border: 1px solid rgba(216,196,152,.25);
  color: #FFF; padding: .15rem .5rem; margin: .1rem .1rem .1rem 0;
}
.admin-action-btn {
  padding: .45rem 1rem; background: rgba(216,196,152,.1);
  border: 1px solid rgba(216,196,152,.3); color: #FFF;
  font-family: var(--font-heading); font-size: .82rem; letter-spacing: .08em;
  cursor: pointer; transition: all .2s;
}
.admin-action-btn:hover { border-color: var(--staanrib-flame); color: var(--staanrib-flame); }

/* Status Badges */
.admin-status-badge {
  font-family: var(--font-heading); font-size: .8rem; letter-spacing: .08em;
  padding: .3rem .8rem; white-space: nowrap;
}
.status-pending   { background: rgba(255,200,69,.15); color: #FFC845; border: 1px solid rgba(255,200,69,.3); }
.status-confirmed { background: rgba(59,130,246,.15); color: #60A5FA; border: 1px solid rgba(59,130,246,.3); }
.status-delivered { background: rgba(74,222,128,.12); color: #4ADE80; border: 1px solid rgba(74,222,128,.25); }
.status-cancelled { background: rgba(196,48,4,.15);   color: #EF4444; border: 1px solid rgba(196,48,4,.3); }

.admin-status-select {
  padding: .4rem .8rem; font-family: var(--font-heading); font-size: .8rem;
  letter-spacing: .05em; border: 1px solid rgba(216,196,152,.3);
  background: #1A1512; color: #FFF; cursor: pointer; outline: none;
  transition: border-color .2s;
}
.admin-status-select:focus { border-color: var(--staanrib-flame); }
.admin-status-select.status-pending   { color: #FFC845; border-color: rgba(255,200,69,.4); }
.admin-status-select.status-confirmed { color: #60A5FA; border-color: rgba(59,130,246,.4); }
.admin-status-select.status-delivered { color: #4ADE80; border-color: rgba(74,222,128,.4); }
.admin-status-select.status-cancelled { color: #EF4444; border-color: rgba(196,48,4,.4); }

/* --- Order Detail Modal --- */
.admin-order-overlay {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.88); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.admin-order-overlay.active { opacity: 1; pointer-events: auto; }
.admin-order-modal {
  background: linear-gradient(145deg,#1A1512,#0D0B0A);
  border: 1px solid var(--staanrib-bronze);
  box-shadow: 0 30px 80px rgba(0,0,0,.9);
  padding: 2.5rem; width: 100%; max-width: 780px;
  max-height: 90vh; overflow-y: auto; position: relative;
  animation: adminFadeUp .35s var(--ease-out-smooth) both;
}
.order-detail-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(216,196,152,.2); gap: 1rem;
}
.order-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.order-detail-card {
  background: #100E0D; border: 1px solid rgba(216,196,152,.15);
  padding: 1.5rem;
}
.order-detail-card-title {
  font-family: var(--font-heading); font-size: 1rem; letter-spacing: .14em;
  color: var(--staanrib-flame); margin-bottom: 1rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(216,196,152,.15);
}
.order-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .45rem 0; font-size: .95rem; color: var(--staanrib-cream-dim);
  border-bottom: 1px solid rgba(216,196,152,.06);
}
.order-detail-row span { flex: 1; }
.order-detail-row strong { color: #FFF; }

/* --- Admin Form Controls --- */
.admin-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.admin-form-group { display: flex; flex-direction: column; gap: .5rem; }
.admin-form-label {
  font-family: var(--font-heading); font-size: .88rem; letter-spacing: .12em; color: #FFF;
}
.admin-form-input {
  background: #0B0A0A; border: 1px solid rgba(216,196,152,.3);
  color: #FFF; padding: .9rem 1.1rem; font-size: 1rem;
  font-family: var(--font-body); outline: none; transition: border-color .25s;
  resize: vertical;
}
.admin-form-input:focus { border-color: var(--staanrib-flame); box-shadow: 0 0 15px rgba(255,136,0,.2); }
.admin-form-hint { font-size: .8rem; color: var(--staanrib-cream-dim); line-height: 1.4; }

/* --- Product Cards --- */
.admin-product-card {
  background: #161210; border: 1px solid rgba(216,196,152,.2);
  padding: 2.5rem; transition: border-color .25s;
}
.admin-product-card:hover { border-color: rgba(216,196,152,.4); }
.admin-product-header {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.8rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(216,196,152,.15);
}

/* --- Delivery Preview Box --- */
.admin-settings-card {
  background: #161210; border: 1px solid rgba(216,196,152,.2);
  padding: 2.5rem;
}
.delivery-preview-box {
  margin-top: 2rem; padding: 2rem;
  background: rgba(255,136,0,.04);
  border: 1px solid rgba(255,136,0,.2);
}
.delivery-example { display: flex; flex-direction: column; gap: .75rem; }
.delivery-example-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem; background: rgba(255,255,255,.03);
  border: 1px solid rgba(216,196,152,.08); gap: 1rem; flex-wrap: wrap;
  font-size: .95rem; color: var(--staanrib-cream-dim);
}

/* --- Admin Login & Password Toggle --- */
.admin-password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.admin-toggle-pw-btn {
  position: absolute;
  right: 0.8rem;
  background: none;
  border: none;
  color: var(--staanrib-cream-dim);
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-toggle-pw-btn:hover {
  color: var(--staanrib-flame);
  transform: scale(1.15);
}

/* --- Mobile vs Desktop Visibility --- */
.admin-mobile-only { display: none !important; }
.admin-desktop-only { display: block; }

/* --- Mobile Topbar & Tabs --- */
.admin-mobile-topbar {
  background: #0B0A0A;
  border-bottom: 1px solid rgba(216, 196, 152, 0.2);
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-mobile-action-btn {
  padding: 0.45rem 0.85rem;
  background: rgba(216, 196, 152, 0.08);
  border: 1px solid rgba(216, 196, 152, 0.25);
  color: var(--staanrib-cream);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
.admin-mobile-action-btn.danger {
  background: rgba(196, 48, 4, 0.2);
  border-color: var(--staanrib-ember);
  color: #EF4444;
}

.admin-mobile-tab-nav {
  display: flex;
  background: #14100E;
  border-bottom: 1px solid rgba(216, 196, 152, 0.2);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.admin-mobile-tab-nav::-webkit-scrollbar { display: none; }
.admin-mobile-tab-item {
  flex: 1;
  min-width: 90px;
  padding: 0.85rem 0.6rem;
  text-align: center;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--staanrib-cream-dim);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-mobile-tab-item.active {
  color: var(--staanrib-flame);
  border-bottom-color: var(--staanrib-flame);
  background: rgba(255, 136, 0, 0.08);
  font-weight: bold;
}

/* --- Orders Toolbar & Filter Pills --- */
.admin-orders-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.admin-filter-pills-scroll {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.admin-filter-pill {
  padding: 0.6rem 1.1rem;
  background: rgba(216, 196, 152, 0.08);
  border: 1px solid rgba(216, 196, 152, 0.25);
  color: var(--staanrib-cream-dim);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.admin-filter-pill:hover {
  color: #FFFFFF;
  border-color: var(--staanrib-bronze);
}
.admin-filter-pill.active {
  background: var(--staanrib-flame);
  border-color: var(--staanrib-flame);
  color: #0B0A0A;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.4);
}

.admin-search-box {
  width: 100%;
}
.admin-search-input {
  width: 100%;
  background: #161210;
  border: 1px solid rgba(216, 196, 152, 0.25);
  color: #FFFFFF;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border-radius: 4px;
  outline: none;
  transition: all 0.25s;
}
.admin-search-input:focus {
  border-color: var(--staanrib-flame);
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.25);
}

/* --- Row Actions & Badges --- */
.admin-row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}
.admin-btn-action {
  padding: 0.4rem 0.75rem;
  background: rgba(216, 196, 152, 0.08);
  border: 1px solid rgba(216, 196, 152, 0.25);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.admin-btn-action.complete-btn {
  background: rgba(74, 222, 128, 0.15);
  border-color: rgba(74, 222, 128, 0.4);
  color: #4ADE80;
  font-weight: bold;
}
.admin-btn-action.complete-btn:hover {
  background: #4ADE80;
  color: #0B0A0A;
}
.admin-btn-action.view-btn:hover {
  border-color: var(--staanrib-flame);
  color: var(--staanrib-flame);
}
.admin-btn-action.archive-btn:hover {
  border-color: var(--staanrib-gold);
  color: var(--staanrib-gold);
}
.admin-btn-action.delete-btn {
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.3);
}
.admin-btn-action.delete-btn:hover {
  background: #EF4444;
  color: #FFFFFF;
}

.admin-done-pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
}
.admin-done-pill-block {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 0.65rem 0.5rem;
  border-radius: 4px;
}
.admin-archived-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-family: var(--font-heading);
  color: var(--staanrib-gold);
  background: rgba(255, 200, 69, 0.1);
  border: 1px solid rgba(255, 200, 69, 0.3);
  padding: 0.15rem 0.4rem;
  margin-left: 0.3rem;
  border-radius: 2px;
}
.archived-row { opacity: 0.65; }
.archived-card { opacity: 0.75; border-color: rgba(255, 200, 69, 0.3) !important; }

.admin-btn-mini {
  padding: 0.3rem 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  background: rgba(216, 196, 152, 0.1);
  border: 1px solid rgba(216, 196, 152, 0.25);
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
}
.admin-btn-mini.success {
  background: rgba(74, 222, 128, 0.15);
  border-color: rgba(74, 222, 128, 0.4);
  color: #4ADE80;
}

/* --- Mobile Order Cards --- */
.admin-mobile-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admin-order-card-mobile {
  background: #161210;
  border: 1px solid rgba(216, 196, 152, 0.2);
  border-radius: 6px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.admin-order-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(216, 196, 152, 0.12);
}
.admin-order-client-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFFFFF;
  margin-top: 0.2rem;
}
.admin-order-card-total {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--staanrib-flame);
  font-weight: bold;
}
.admin-order-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--staanrib-cream-dim);
}
.admin-order-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-order-items-preview {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.admin-order-card-note {
  margin-top: 0.4rem;
  background: #0D0B0A;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  border-left: 3px solid var(--staanrib-flame);
}
.admin-order-card-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(216, 196, 152, 0.12);
  flex-wrap: wrap;
}
.admin-card-action-btn {
  padding: 0.65rem 0.85rem;
  background: rgba(216, 196, 152, 0.08);
  border: 1px solid rgba(216, 196, 152, 0.25);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.admin-card-action-btn.view {
  border-color: var(--staanrib-bronze);
  color: var(--staanrib-cream);
}
.admin-card-action-btn.archive {
  color: var(--staanrib-gold);
  border-color: rgba(255, 200, 69, 0.3);
}
.admin-card-action-btn.delete {
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.3);
}
.admin-empty-card {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #161210;
  border: 1px dashed rgba(216, 196, 152, 0.2);
  border-radius: 6px;
  color: var(--staanrib-cream-dim);
}

/* --- Products Topbar & Catalog Grid --- */
.admin-products-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.admin-products-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.admin-product-card-top {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.admin-product-image-preview-box {
  position: relative;
  width: 140px;
  height: 110px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid var(--staanrib-bronze);
  background: #0B0A0A;
  flex-shrink: 0;
}
.admin-product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-upload-photo-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.2rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
}
.admin-upload-photo-btn:hover {
  background: var(--staanrib-flame);
  color: #0B0A0A;
  font-weight: bold;
}
.admin-product-header-info {
  flex: 1;
  min-width: 200px;
}
.admin-product-card-footer {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Photo Upload Dropzone */
.admin-photo-upload-dropzone {
  background: #161210;
  border: 2px dashed rgba(255, 136, 0, 0.35);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.2rem;
  transition: all 0.25s;
}
.admin-photo-upload-dropzone:hover {
  border-color: var(--staanrib-flame);
  background: rgba(255, 136, 0, 0.04);
}

.order-modal-action-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(216, 196, 152, 0.15);
}

/* --- Toast --- */
.admin-toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99999;
  padding: 1rem 1.6rem; font-family: var(--font-heading); font-size: 1rem;
  letter-spacing: .08em; border-left: 4px solid;
  box-shadow: 0 10px 40px rgba(0,0,0,.8);
  transform: translateY(20px); opacity: 0; transition: all .35s ease; display: none;
}
.admin-toast.show { transform: translateY(0); opacity: 1; }
.admin-toast-success { background: #0F2A14; border-color: #4ADE80; color: #4ADE80; }
.admin-toast-error   { background: #2A0A0A; border-color: #EF4444; color: #EF4444; }

/* --- Admin footer trigger link --- */
.admin-footer-trigger {
  font-size: .75rem; color: rgba(255,255,255,.15); letter-spacing: .05em;
  cursor: pointer; transition: color .2s; text-decoration: none;
}
.admin-footer-trigger:hover { color: rgba(255,136,0,.5); }

/* --- Full Responsive Breakpoints for Admin Panel --- */
@media (max-width: 900px) {
  .admin-desktop-only { display: none !important; }
  .admin-mobile-only { display: flex !important; }
  
  .admin-panel {
    flex-direction: column;
  }
  .admin-sidebar {
    display: none !important;
  }
  .admin-main {
    padding: 1.5rem 1.2rem;
    height: calc(100vh - 110px);
  }
  .admin-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .admin-stat-card {
    padding: 1.4rem 1rem;
  }
  .admin-stat-value {
    font-size: 2.2rem;
  }
  .admin-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .order-detail-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .admin-page-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 600px) {
  .admin-login-card {
    padding: 2rem 1.2rem;
    margin: 1rem;
    width: 95%;
  }
  .admin-order-modal {
    padding: 1.5rem 1.2rem;
    margin: 1rem;
    max-height: 94vh;
  }
  .admin-product-card {
    padding: 1.5rem 1.2rem;
  }
  .admin-product-card-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-product-image-preview-box {
    width: 100%;
    height: 160px;
  }
  .admin-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-filter-pill {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}

