/* ==========================================================================
   UNIQUE EXPRESSIONS - COMPACT PRODUCT TILE CONTENT SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');


:root {
  /* 60% White / Light Theme Foundation */
  --m-bg-canvas: #ffffff;
  /* Pure white background */
  --m-bg-header: #ffffff;
  /* Pure white header */
  --m-bg-search: #f3f4f6;
  /* Light gray search pill */

  /* Surface & Card Backgrounds */
  --m-bg-surface: #f8f9fa;
  /* Subtle off-white surface */
  --m-bg-card: #ffffff;
  /* White card background */
  --m-bg-card-alt: #f1f5f9;
  /* Light alternate background */

  /* Brand Accent Colors (Sleek Black & Slate Grey) */
  --brand-magenta: #0f172a;
  --brand-magenta-dark: #1e293b;
  --brand-blue-accent: #2343b2;

  /* Dark Text & Light Borders for White Background */
  --m-text-primary: #1e293b;
  /* Dark readable text */
  --m-text-secondary: #64748b;
  /* Muted gray text */
  --m-border-subtle: #e2e8f0;
  /* Light gray borders */


  /* Functional Accents */
  --func-orange: #ff6b35;
  --func-green: #10b981;
  --func-gold: #f59e0b;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-m-card: 0 4px 14px rgba(0, 0, 0, 0.25);
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--m-bg-canvas);
  color: var(--m-text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.4;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.app-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background-color: var(--m-bg-canvas);
  padding-bottom: 84px;
}

/* 1. Header (Seamless Borderless) */
.m-app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--m-bg-header);
  padding: 14px 20px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}

.m-header-logo-link {
  display: flex;
  align-items: center;
  margin-left: 4px;
}

.m-header-logo-link img {
  height: 36px;
  width: auto;
  display: block;
}

.m-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-icon-btn-circle {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--m-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.m-icon-btn-circle i {
  font-size: 19px;
  line-height: 1;
  color: #1e293b;
  transition: transform 0.2s ease, color 0.2s ease;
}

.m-icon-btn-circle:hover i {
  color: var(--brand-magenta);
  transform: scale(1.15);
}

.m-icon-btn-circle:active {
  background: rgba(15, 23, 42, 0.1);
  border-color: var(--brand-magenta);
  transform: scale(0.92);
}

.m-badge-count-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  background: var(--brand-magenta);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--m-bg-canvas);
}

/* 2. Sticky Search Bar */
.m-search-wrap-sticky {
  position: sticky;
  top: 57px;
  z-index: 95;
  background: var(--m-bg-header);
  padding: 4px 16px 10px 16px;
  border-bottom: none;
}

.m-search-pill-input {
  background: var(--m-bg-search);
  border: 1px solid var(--m-border-subtle);
  border-radius: 99px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-search-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--m-text-primary);
  font-size: 13px;
  font-weight: 600;
  outline: none;
  min-width: 0;
}

.m-search-input::placeholder {
  color: var(--m-text-secondary);
}

/* Mobile Live Search Dropdown */
.m-search-dropdown-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 14px;
  right: 14px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.2);
  border: 1px solid #e2e8f0;
  padding: 14px;
  z-index: 2000;
  display: none;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.m-search-dropdown-results.active {
  display: block !important;
}

.dt-search-suggestion-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: background 0.15s ease !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.dt-search-suggestion-item:last-child {
  border-bottom: none !important;
}

.dt-search-suggestion-item:hover, .dt-search-suggestion-item:active {
  background: #f8fafc !important;
}

.dt-search-suggestion-item img {
  width: 42px !important;
  height: 42px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1px solid #e2e8f0 !important;
  flex-shrink: 0 !important;
}

/* ==========================================================================
   3. ANIMATIONS & MICRO-INTERACTION SYSTEM FOR CLIENT DEMO
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.35) rotate(-10deg);
  }

  70% {
    transform: scale(0.9) rotate(5deg);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fabGlowPulse {
  0% {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.4), 0 0 0 0 rgba(15, 23, 42, 0.4);
  }

  70% {
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.6), 0 0 0 12px rgba(15, 23, 42, 0);
  }

  100% {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.4), 0 0 0 0 rgba(15, 23, 42, 0);
  }
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.22);
  }
}

@keyframes timerGlow {

  0%,
  100% {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.15);
  }

  50% {
    border-color: rgba(255, 107, 53, 0.7);
    box-shadow: 0 0 16px rgba(255, 107, 53, 0.35);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0.3;
    transform: scale(1.03);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(220%) rotate(25deg);
  }
}

/* 4. Quick Categories Rail (Crisp White Card Tiles) */
.m-section-header {
  padding: 12px 16px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-section-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--m-text-primary);
}

.m-section-sublink {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-magenta);
  cursor: pointer;
  transition: opacity 0.2s;
}

.m-section-sublink:hover {
  opacity: 0.85;
}

/* 4. Quick Categories Rail (Option 3: Soft Pastel Tinted Editorial Cards) */
.m-cat-rail-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 16px 16px 16px;
}

.m-cat-pill-thumb {
  flex: 0 0 94px;
  position: relative;
  height: 122px;
  border-radius: 20px;
  overflow: hidden;
  padding: 5px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* Individual Pastel Color Gradients & Borders */
#mCat-All {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-color: #cbd5e1;
}

#mCat-Toys {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-color: #cbd5e1;
}

#mCat-Gadgets {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-color: #7dd3fc;
}

#mCat-Handicrafts {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-color: #fcd34d;
}

#mCat-Stationery {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-color: #6ee7b7;
}

[id="mCat-Return Gifts"] {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-color: #c4b5fd;
}

.m-cat-pill-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.m-cat-pill-thumb:active {
  transform: scale(0.96);
}

.m-cat-pill-thumb.active-cat {
  border-width: 2.5px !important;
  border-color: var(--brand-magenta) !important;
  box-shadow: 0 0 16px rgba(15, 23, 42, 0.3);
  transform: scale(1.04);
}

.m-cat-img-box {
  width: 100%;
  height: 68px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.m-cat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.m-cat-pill-thumb:hover .m-cat-img-box img {
  transform: scale(1.08);
}

.m-cat-overlay-text {
  padding: 4px 2px 2px 2px;
  text-align: center;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-cat-name-label {
  font-size: 10.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  white-space: nowrap;
}

.m-cat-count-label {
  font-size: 8.5px;
  font-weight: 700;
  color: #64748b;
  margin-top: 1px;
}

/* 5. Featured Collections */
.m-featured-cards-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 18px 16px;
}

.m-featured-bundle-card {
  flex: 0 0 240px;
  position: relative;
  height: 135px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--m-border-subtle);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.m-featured-bundle-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.m-featured-bundle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-featured-bundle-card:hover img {
  transform: scale(1.08);
}

.m-featured-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(20, 28, 72, 0.92) 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.m-featured-tag {
  font-size: 8px;
  font-weight: 800;
  color: var(--func-gold);
  text-transform: uppercase;
}

.m-featured-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin: 2px 0 0 0;
  line-height: 1.2;
}

/* 6. Normal Hero Banner Carousel */
.m-hero-banner-frame {
  position: relative;
  height: 200px;
  margin: 0 16px 16px 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--m-border-subtle);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.m-hero-banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-hero-banner-frame img.hero-fade-anim {
  animation: heroFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 21, 50, 0.9) 100%);
}

.m-hero-banner-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
}

.m-hero-badge-pill {
  background: var(--brand-magenta);
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}

.m-hero-badge-pill::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: shimmerSweep 3.5s infinite;
}

.m-hero-h1-heading {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 4px 0;
}

.m-hero-sub-text {
  font-size: 10px;
  color: #e2e9fc;
  line-height: 1.35;
  margin-bottom: 10px;
  max-width: 95%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.m-hero-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-magenta);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.m-hero-cta-button:hover {
  transform: translateY(-1px) scale(1.02);
  background-color: #334155;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.4);
}

.m-hero-cta-button:active {
  transform: scale(0.96);
}
  transform: scale(0.96);
}

.m-hero-dots-row {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: -8px;
  margin-bottom: 16px;
}

.m-dot-item {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.m-dot-item:hover {
  background: rgba(255, 255, 255, 0.7);
}

.m-dot-item.active {
  width: 16px;
  border-radius: 99px;
  background: var(--brand-magenta);
  box-shadow: 0 0 8px rgba(15, 23, 42, 0.4);
}

/* 7. Shop by Occasion (Crisp White Cards) */
.m-occasion-scroll-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 16px 16px;
}

.m-occasion-chip-card {
  flex: 0 0 98px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 10px 6px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  cursor: pointer;
}

.m-occasion-chip-card:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.m-occasion-chip-card:active {
  transform: scale(0.95);
}

.m-occasion-emoji {
  font-size: 22px;
  margin-bottom: 3px;
  transition: transform 0.25s ease;
}

.m-occasion-chip-card:hover .m-occasion-emoji {
  transform: scale(1.2) rotate(6deg);
}

.m-occasion-label {
  font-size: 10px;
  font-weight: 700;
  color: #16204e;
}

/* 8. Normal Flash Sale Card */
.m-flash-sale-box {
  background: #1f2a63;
  border: 1px solid var(--m-border-subtle);
  border-radius: 18px;
  padding: 10px 14px;
  margin: 0 16px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: timerGlow 2.5s infinite ease-in-out;
  transition: transform 0.25s ease;
}

.m-flash-sale-box:hover {
  transform: scale(1.015);
}

.m-timer-badge {
  font-family: monospace;
  font-size: 11px;
  font-weight: 800;
  color: var(--func-gold);
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 7px;
  border-radius: 6px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   9. TRENDING PRODUCTS 2-COLUMN GRID (COMPACT PROPORTIONATE WHITE BOTTOM BOX)
   ========================================================================== */
/* ==========================================================================
   9. TRENDING PRODUCTS 2-COLUMN GRID (ELEGANT ROUNDED WHITE CARD DESIGN)
   ========================================================================== */
.m-product-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 16px 20px 16px;
}

.m-product-tile-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  cursor: pointer;
}

.m-product-tile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border-color: rgba(15, 23, 42, 0.25);
}

.m-tile-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fafafa;
  overflow: hidden;
}

.m-tile-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.m-discount-badge-orange {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff5500;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 85, 0, 0.25);
  letter-spacing: 0.02em;
  z-index: 2;
}

.m-wishlist-heart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
}

.m-wishlist-heart-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.m-wishlist-heart-btn:active,
.m-wishlist-heart-btn.heart-pop-anim {
  animation: heartPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.m-rating-badge-gold {
  position: absolute;
  bottom: 8px;
  left: 10px;
  background: #ffffff;
  color: #111827;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  z-index: 2;
}

/* Crisp White Content Box Below Image */
.m-tile-content-box {
  padding: 10px 11px 12px 11px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.m-tile-cat-name {
  font-size: 9.5px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.m-tile-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #111827;
  margin: 2px 0 4px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 33px;
}

.m-tile-price-row {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.m-tile-curr-price {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
}

.m-tile-mrp-price {
  font-size: 11.5px;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: line-through;
}

.m-tile-save-green {
  font-size: 10.5px;
  font-weight: 700;
  color: #16a34a;
  margin-top: 1px;
  display: block;
}

.m-tile-add-btn {
  width: 100%;
  margin-top: 10px;
  padding: 8px 10px;
  background: #0f172a;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
  border-radius: 9999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.m-tile-add-btn:hover {
  background: #334155;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.35);
}

.m-tile-add-btn:active {
  transform: scale(0.96);
}

/* ── Interactive Card Quantity Stepper (Zepto / Myntra style) ── */
.m-tile-qty-stepper {
  width: 100%;
  margin-top: 10px;
  height: 34px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 6px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.28);
  user-select: none;
  animation: pulseCardStepper 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-tile-qty-stepper .m-stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1;
}

.m-tile-qty-stepper .m-stepper-btn:hover {
  background: #db2777;
  color: #ffffff;
  transform: scale(1.12);
}

.m-tile-qty-stepper .m-stepper-btn:active {
  transform: scale(0.9);
}

.m-tile-qty-stepper .m-stepper-qty {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.m-tile-qty-stepper .m-stepper-qty span.badge-num {
  background: #db2777;
  padding: 1px 7px;
  border-radius: 99px;
  font-weight: 900;
  font-size: 11px;
}

@keyframes pulseCardStepper {
  0% { transform: scale(0.92); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.m-add-icon-sq {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Horizontal Rails (Crisp White Mini Product Cards) */
.m-horizontal-product-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 16px 16px 16px;
  align-items: flex-start;
}

.m-mini-product-card {
  flex: 0 0 145px;
  width: 145px;
  min-width: 145px;
  max-width: 145px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.m-mini-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.m-mini-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  background: #f8fafc;
  transition: transform 0.35s ease;
}

.m-mini-product-card:hover img {
  transform: scale(1.04);
}

.m-mini-title {
  font-size: 11px;
  font-weight: 600;
  color: #0f172a;
  margin: 8px 0 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  height: 30px;
}

.m-mini-price {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

/* Wholesale B2B Card */
.m-wholesale-b2b-card {
  background: #1a255a;
  border-radius: 20px;
  padding: 18px;
  margin: 0 16px 16px 16px;
  border: 1px solid var(--m-border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m-wholesale-b2b-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.m-wholesale-h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.m-wholesale-desc {
  font-size: 11px;
  color: #e2e9fc;
  margin-bottom: 12px;
}

.m-guarantee-cards-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 16px 16px;
}

.m-guarantee-box {
  flex: 0 0 150px;
  background: var(--m-bg-surface);
  border: 1px solid var(--m-border-subtle);
  border-radius: 16px;
  padding: 12px;
  transition: transform 0.25s ease;
}

.m-guarantee-box:hover {
  transform: translateY(-3px);
}

.m-guarantee-box {
  flex: 0 0 115px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.m-guarantee-icon {
  color: #10b981;
  margin-bottom: 6px;
}

.m-guarantee-title {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

.m-reviews-scroll-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 16px 16px;
}

.m-review-bubble-card {
  flex: 0 0 240px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease;
}

.m-review-bubble-card:hover {
  transform: translateY(-3px);
}

.m-insta-grid-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 16px 16px;
}

.m-insta-grid-scroll img {
  flex: 0 0 100px;
  height: 100px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.m-insta-grid-scroll img:hover {
  transform: scale(1.06);
}

/* Newsletter Card */
.m-newsletter-glass-card {
  background: #1f2a63;
  border: 1px solid var(--m-border-subtle);
  border-radius: 20px;
  padding: 18px;
  margin: 0 16px 16px 16px;
  text-align: center;
}

.m-app-footer {
  background: #0f1538;
  border-top: 1px solid var(--m-border-subtle);
  padding: 24px 16px 28px 16px;
  margin-top: 16px;
}

.m-footer-brand-logo {
  height: 34px;
  width: auto;
  margin-bottom: 10px;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  object-fit: contain;
}

.m-footer-text-p {
  font-size: 11px;
  color: var(--m-text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.m-footer-section-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin: 14px 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.m-footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.m-footer-links-list a {
  color: #e2e9fc;
  font-size: 11px;
  text-decoration: none;
  transition: color 0.2s;
}

.m-footer-links-list a:hover {
  color: var(--brand-magenta);
}

.m-footer-gst-badge {
  background: #f1f5f9;
  color: #334155;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 8px;
}

/* Floating Cart FAB */
.m-floating-cart-fab {
  position: fixed;
  bottom: 68px;
  right: 16px;
  z-index: 120;
  background: var(--brand-magenta);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 99px;
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 11px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
}

.m-floating-cart-fab.visible-fab {
  display: flex !important;
  animation: fabGlowPulse 2.2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.m-floating-cart-fab:hover {
  transform: translateY(-3px) scale(1.06);
}

.m-floating-cart-fab:active {
  transform: scale(0.95);
}

/* Bottom Navigation Bar */
.m-curved-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 480px;
  margin: 0 auto;
  height: 58px;
  background: var(--m-bg-header);
  border-top: 1px solid var(--m-border-subtle);
  z-index: 110;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4px 8px;
  backdrop-filter: blur(10px);
}

.m-nav-tab-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--m-text-secondary);
  gap: 2px;
  text-decoration: none;
  flex: 1;
  text-align: center;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.m-nav-tab-link:hover {
  transform: translateY(-2px);
  color: var(--brand-magenta);
}

.m-nav-tab-link:active {
  transform: scale(0.92);
}

.m-nav-tab-link i {
  font-size: 21px;
  line-height: 1;
  margin-bottom: 1px;
  color: var(--m-text-secondary);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-nav-tab-link.active {
  color: var(--brand-magenta);
  font-weight: 800;
}

.m-nav-tab-link.active i {
  font-size: 23px;
  color: var(--brand-magenta);
  filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.3));
  transform: translateY(-2px);
}

/* Drawers & Modals */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 72, 0.85);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.cart-side-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #ffffff;
  color: #0f172a;
  z-index: 210;
  display: flex;
  flex-direction: column;
  transition: right 0.35s;
}

.drawer-backdrop.active .cart-side-drawer {
  right: 0;
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-body {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #fafafa;
}

.modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%;
  max-width: 420px;
  max-height: 90vh;
  background: #ffffff;
  color: #0f172a;
  border-radius: 28px;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  padding: 24px;
  overflow-y: auto;
}

.drawer-backdrop.active .modal-window {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* --- SPA VIEW ROUTER VISIBILITY RULES --- */
.app-view {
  display: none !important;
}

.app-view.active-view {
  display: block !important;
  animation: fadeInUp 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity;
}

/* Common View Top Header Bar */
.m-view-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  min-height: 56px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.m-view-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  flex: 1;
  padding: 0 8px;
}

/* Shared icon circle button (used in headers) */
.m-icon-btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  color: #0f172a;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  flex-shrink: 0;
}

.m-icon-btn-circle:active {
  background: #0f172a;
  color: #ffffff;
  transform: scale(0.92);
}

.m-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  padding: 6px 14px;
  height: 38px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.m-back-btn:active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: scale(0.95);
}

/* --- PRODUCT DETAIL PAGE (PDP) STYLING (PREMIUM NATIVE MOBILE APP UX) --- */
.pdp-view-wrapper {
  background: #ffffff;
  min-height: 100vh;
  padding-bottom: 180px;
  /* Generous bottom padding so no content is cut off behind buttons! */
  color: #0f172a;
}

.pdp-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pdp-back-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  flex-shrink: 0;
  font-size: 17px;
}

.pdp-back-icon-btn:active {
  background: #0f172a;
  color: #ffffff;
  transform: scale(0.92);
}

.pdp-search-mini-pill {
  flex: 1;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 99px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp-search-mini-input {
  background: none;
  border: none;
  color: #0f172a;
  font-size: 11px;
  font-weight: 500;
  outline: none;
  width: 100%;
}

.pdp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Fixed Cart Badge inside header button */
.pdp-header-actions .m-badge-count-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--brand-magenta);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Image Gallery Box (Full Edge-to-Edge) */
.pdp-gallery-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.pdp-gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-single-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc2626;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(220, 38, 38, 0.3);
}

.pdp-dots-indicator {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.pdp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
}

.pdp-dot.active {
  width: 18px;
  border-radius: 99px;
  background: var(--brand-magenta);
}

/* Main Product Content Section */
.pdp-card-box {
  background: #ffffff;
  color: #0f172a;
  padding: 0 16px 30px 16px;
  margin-bottom: 10px;
}

.pdp-brand-link {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-magenta-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pdp-title-text {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 4px 0 8px 0;
  line-height: 1.3;
}

.pdp-amazon-rating-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pdp-rating-pill {
  background: #fffbeb;
  color: #d97706;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid #fde68a;
}

.pdp-bought-tag {
  background: #f1f5f9;
  color: #334155;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
}

/* Price Section with Crisp Contrast */
.pdp-amazon-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.pdp-discount-tag-red {
  color: #dc2626;
  font-size: 22px;
  font-weight: 800;
}

.pdp-main-price-val {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.pdp-mrp-val {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: line-through;
}

.pdp-tax-note {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  margin-top: 6px;
  margin-bottom: 18px;
  display: block;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
}

/* Variant Selector Chips */
.pdp-variant-chips-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pdp-chip-item {
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.pdp-chip-item.active {
  border-color: var(--brand-magenta);
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

/* Custom Stepper Quantity Selector */
.pdp-stepper-box {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.pdp-stepper-btn {
  width: 40px;
  height: 38px;
  border: none;
  background: #ffffff;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.pdp-stepper-btn:active {
  background: #e2e8f0;
}

.pdp-stepper-val {
  width: 44px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

/* Delivery & Stock Box */
.pdp-amazon-delivery-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 18px;
  font-size: 11px;
  color: #334155;
  line-height: 1.55;
}

.pdp-stock-green {
  color: #16a34a;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Sticky Bottom Bar Locked above Bottom Nav (STRICTLY ONLY SHOWN WHEN #viewPDP IS ACTIVE!) */
.pdp-action-buttons-wrap {
  display: none !important;
  position: fixed;
  bottom: 58px;
  left: 0;
  right: 0;
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  padding: 12px 16px;
  border-top: 1px solid #e2e8f0;
  z-index: 150;
  gap: 10px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
}

#viewPDP.active-view .pdp-action-buttons-wrap {
  display: flex !important;
}

.pdp-btn-amazon-cart {
  flex: 1;
  height: 46px;
  border-radius: 99px;
  background: #141c48;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.15s ease, background-color 0.2s ease;
}

.pdp-btn-amazon-cart:active {
  transform: scale(0.96);
}

.pdp-btn-amazon-buy {
  flex: 1.2;
  height: 46px;
  border-radius: 99px;
  background: var(--brand-magenta);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.35);
  transition: transform 0.15s ease;
}

.pdp-btn-amazon-buy:active {
  transform: scale(0.96);
}

/* --- CHECKOUT VIEW STYLING (LIGHT APP CANVA) --- */
.checkout-container {
  padding: 16px;
  background: #f8fafc;
  min-height: calc(100vh - 110px);
  padding-bottom: 90px;
}

.checkout-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.checkout-step-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-magenta);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.form-label {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 4px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  font-size: 12px;
  outline: none;
  background: #ffffff;
  color: #0f172a;
}

.form-input:focus {
  border-color: var(--brand-magenta);
}

.coupon-input-wrap {
  display: flex;
  gap: 8px;
}

.btn-apply-coupon {
  background: var(--brand-magenta);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border: none;
  padding: 0 18px;
  min-height: 44px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.btn-apply-coupon:active {
  background: #334155;
}

.payment-option-card {
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: #ffffff;
}

.payment-option-card.active {
  border-color: var(--brand-magenta);
  background: #f1f5f9;
}

/* --- CART DRAWER TYPOGRAPHY & STEPPER --- */
.drawer-header h3 {
  font-family: var(--font-sans) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}

.cart-qty-pill-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}

.cart-qty-pill-btn {
  background: #ffffff;
  border: none;
  border-radius: 4px;
  width: 22px;
  height: 22px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* --- ADMIN DASHBOARD STYLING --- */
.admin-container {
  padding: 16px;
  background: #f8fafc;
  min-height: calc(100vh - 110px);
  padding-bottom: 90px;
}

.admin-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.admin-table th,
.admin-table td {
  padding: 8px 6px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.admin-table th {
  background: #f1f5f9;
  font-weight: 800;
  color: #334155;
}





/* --- CHECKOUT VIEW STYLING --- */
.checkout-container {
  padding: 16px;
  margin-bottom: 80px;
}

.checkout-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.checkout-step-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-magenta);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.form-label {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 4px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 12px;
  outline: none;
  background: #f8fafc;
  color: #0f172a;
}

.form-input:focus {
  border-color: var(--brand-magenta);
  background: #ffffff;
}

.coupon-input-wrap {
  display: flex;
  gap: 8px;
}

.btn-apply-coupon {
  background: var(--brand-magenta);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border: none;
  padding: 0 16px;
  border-radius: 12px;
  cursor: pointer;
}

.payment-option-card {
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-option-card.active {
  border-color: var(--brand-magenta);
  background: #f1f5f9;
}

/* --- ADMIN DASHBOARD STYLING --- */
.admin-container {
  padding: 16px;
  margin-bottom: 80px;
}

.admin-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.admin-table th,
.admin-table td {
  padding: 8px 6px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.admin-table th {
  background: #f1f5f9;
  font-weight: 800;
  color: #334155;
}

/* ==========================================================================
   SPRINT 1 SHOPPING JOURNEY UX COMPONENTS
   ========================================================================== */

/* 1. Category Directory Sub-Category Grid */
.m-subcat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.m-subcat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.m-subcat-card:hover {
  transform: translateY(-3px);
  border-color: #0f172a;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.m-subcat-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.m-subcat-title {
  font-size: 12px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2px;
}

.m-subcat-count {
  font-size: 10px;
  color: #64748b;
  font-weight: 600;
}

/* 2. PLP Sticky Filter, Sort & View Bar */
.m-plp-bar-sticky {
  position: sticky;
  top: 56px;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 8px 16px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.m-plp-sort-select {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  padding: 7px 12px;
  height: 36px;
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
  outline: none;
  cursor: pointer;
  font-family: var(--font-sans);
  flex: 1;
}

.m-plp-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  padding: 7px 14px;
  height: 36px;
  font-size: 11.5px;
  font-weight: 800;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.m-plp-filter-btn:hover {
  background: #f1f5f9;
  border-color: #0f172a;
  color: #0f172a;
}

.m-plp-filter-btn:active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.m-plp-view-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #334155;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.m-plp-view-toggle-btn:active {
  background: #0f172a;
  color: #ffffff;
}

/* 1-Column Product List Card Variant */
.m-product-list-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.25s ease;
}

.m-product-list-card:hover {
  transform: translateY(-2px);
}

.m-list-img-frame {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.m-list-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 3. PDP Pincode Delivery Availability Checker */
.m-pincode-checker-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px;
  margin: 14px 0;
}

.m-pincode-input-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

/* Rating Bar Progress Fills */
.rating-bar-bg {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 99px;
}

/* 4. Cart Drawer Free Shipping Progress Bar */
.m-free-shipping-wrap {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

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

.m-shipping-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0f172a, #475569);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* Gift Wrap Box */
.m-gift-wrap-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 11px;
}

/* 5. Voice Search Waveform Pulse */
@keyframes voicePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 20px rgba(15, 23, 42, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(15, 23, 42, 0); }
}

.m-voice-mic-wave {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 20px auto;
  animation: voicePulse 1.8s infinite ease-in-out;
}

/* ==========================================================================
   SPRINT 2 CUSTOMER ACCOUNT & ORDERS STYLING
   ========================================================================== */

/* Profile Header & Stats Grid */
.profile-user-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}

.profile-avatar-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  border: 3px solid #f1f5f9;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.profile-vip-pill {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.profile-stat-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.profile-stat-box:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.profile-stat-num {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.profile-stat-label {
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
}

/* Profile Menu Grid Layout (Myntra-style side-by-side buttons) */
.profile-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .profile-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
  }
}

.profile-menu-grid-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-menu-grid-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.profile-menu-grid-card .profile-menu-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.profile-menu-grid-card .profile-menu-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.profile-menu-grid-card .profile-menu-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.profile-menu-grid-card .profile-menu-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-menu-grid-card .profile-menu-sub {
  font-size: 10px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.profile-menu-grid-card .profile-menu-chevron {
  font-size: 12px;
  color: #cbd5e1;
  margin-left: 4px;
  flex-shrink: 0;
}

/* Profile Menu Tile List */
.profile-menu-tile {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-menu-tile:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.profile-menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.profile-menu-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.profile-menu-sub {
  font-size: 10.5px;
  color: #64748b;
}

/* Address Book Cards */
.address-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.address-card.is-default {
  border-color: #0f172a;
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.address-type-tag {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 99px;
  background: #e2e8f0;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.address-default-badge {
  background: #0f172a;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.address-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}

/* Order Tracking Timeline */
.tracking-timeline-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 16px;
}

.timeline-steps-list {
  position: relative;
  padding-left: 24px;
  margin-top: 12px;
}

.timeline-steps-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e2e8f0;
}

.timeline-step-item {
  position: relative;
  margin-bottom: 16px;
}

.timeline-step-item:last-child {
  margin-bottom: 0;
}

.timeline-step-node {
  position: absolute;
  left: -24px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #cbd5e1;
  z-index: 2;
}

.timeline-step-item.completed .timeline-step-node {
  background: #16a34a;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.timeline-step-item.active .timeline-step-node {
  background: #0f172a;
  border-color: #0f172a;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.18);
  animation: pulseNode 1.5s infinite;
}

@keyframes pulseNode {
  0% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(15, 23, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0); }
}

.timeline-step-title {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}

.timeline-step-desc {
  font-size: 10px;
  color: #64748b;
  margin-top: 1px;
}

/* GST Printable Invoice Modal */
.gst-invoice-modal-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  font-size: 11px;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

/* ==========================================================================
   SPRINT 4 STATIC INFORMATION PAGES STYLING
   ========================================================================== */

.info-hero-card {
  background: linear-gradient(135deg, #0f172a, #334155);
  color: #ffffff;
  border-radius: 20px;
  padding: 22px 18px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}

.info-hero-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #ffffff;
}

.info-hero-sub {
  font-size: 11.5px;
  color: #cbd5e1;
  line-height: 1.5;
}

.info-content-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.info-section-heading {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-text-p {
  font-size: 11.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* FAQ Accordion Styling */
.faq-accordion-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion-header {
  padding: 14px;
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-accordion-body {
  padding: 0 14px 14px 14px;
  font-size: 11px;
  color: #475569;
  line-height: 1.55;
  display: none;
  border-top: 1px dashed #e2e8f0;
  padding-top: 10px;
}

.faq-accordion-item.active {
  border-color: #0f172a;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.faq-accordion-item.active .faq-accordion-body {
  display: block;
}

.faq-accordion-icon {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(180deg);
}

/* ==========================================================================
   SPRINT 3 SUPPORT & BUSINESS MODULES STYLING
   ========================================================================== */

/* Star rating picker */
.star-rating-picker {
  display: flex;
  gap: 8px;
  font-size: 26px;
  color: #cbd5e1;
  cursor: pointer;
  user-select: none;
}
.star-rating-picker span {
  transition: color 0.15s ease, transform 0.15s ease;
}
.star-rating-picker span.active,
.star-rating-picker span:hover {
  color: #f59e0b;
  transform: scale(1.15);
}

/* Rating Bar Breakdown */
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 6px;
}
.rating-bar-bg {
  flex: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #eab308);
  border-radius: 99px;
}

/* Filter Chips Rail */
.chip-filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.chip-pill {
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  white-space: nowrap;
  cursor: pointer;
}
.chip-pill.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Returns Portal Cards */
.return-order-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.return-order-card.selected {
  border-color: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

/* Store Locator & Map */
.store-map-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 190px;
  background: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?q=80&w=800&auto=format&fit=crop') center/cover no-repeat;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-end;
}
.store-map-overlay {
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.4));
  width: 100%;
  padding: 16px;
  color: #ffffff;
}

.facility-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

/* Offers & Promo Cards */
.coupon-promo-card {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(30, 27, 75, 0.25);
}
.coupon-code-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 6px 14px;
  border-radius: 10px;
  font-family: monospace;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
}
.coupon-code-badge:active {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   E-COMMERCE ADMIN DASHBOARD PRO STYLES
   ========================================================================== */
.admin-layout-wrapper {
  display: flex;
  min-height: 100vh;
  background: #f1f5f9;
  font-family: var(--font-sans);
  color: #1e293b;
  position: relative;
  overflow-x: hidden;
}

/* Sidebar */
.admin-sidebar {
  width: 260px;
  background: #0f172a;
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  transition: transform 0.3s ease;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.admin-sidebar-brand {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #1e293b;
}

.admin-brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}

.admin-nav-menu {
  padding: 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.admin-nav-item:hover {
  background: #1e293b;
  color: #f8fafc;
}

.admin-nav-item.active {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.admin-nav-item i {
  font-size: 18px;
}

.admin-sidebar-footer {
  padding: 16px;
  border-top: 1px solid #1e293b;
}

/* Main Content Area */
.admin-main-viewport {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f8fafc;
}

@media (max-width: 900px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }
  .admin-sidebar.mobile-open {
    transform: translateX(0);
  }
  .admin-main-viewport {
    margin-left: 0;
  }
}

/* Header Topbar */
.admin-topbar {
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.admin-page-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Stat Cards Grid */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-stat-val {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 4px;
}

.admin-stat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.admin-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* Admin Data Tables */
.admin-card-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-table-v2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}

.admin-table-v2 th {
  background: #f8fafc;
  padding: 12px 16px;
  font-weight: 700;
  color: #475569;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.admin-table-v2 td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.admin-table-v2 tr:hover td {
  background: #f8fafc;
}

/* Status Badges */
.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}

.admin-badge-success { background: #dcfce7; color: #15803d; }
.admin-badge-warning { background: #fef9c3; color: #a16207; }
.admin-badge-info { background: #e0f2fe; color: #0369a1; }
.admin-badge-danger { background: #fee2e2; color: #b91c1c; }

/* Admin Modal Overlay */
.admin-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.admin-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.admin-modal-window {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

/* ==========================================================================
   DEDICATED PREMIUM DESKTOP LAYOUT (SCALES UP ON SCREENS ≥ 1024px)
   ========================================================================== */

/* 1. Mobile Default Hidden Items for Desktop */
.dt-header { display: none; }
.dt-footer { display: none; }
.dt-hero-split-container { display: none; }
#desktopHomeView { display: none; }

/* 2. Desktop Media Query (≥ 1024px) */
@media (min-width: 1024px) {
  /* Hide Mobile Home View and Mobile Navigation Bars on Desktop */
  #mobileHomeView,
  .m-app-header,
  .m-search-wrap-sticky,
  .m-curved-bottom-nav,
  .m-view-header-bar {
    display: none !important;
  }

  #desktopHomeView {
    display: block !important;
  }

  /* Full Width Widescreen Container (Zero Excess Side Margins) */
  .app-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding-bottom: 0 !important;
    background-color: #faf8f5 !important;
  }

  #appMainContainer {
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    box-sizing: border-box !important;
  }

  /* Balanced Section Spacing */
  .m-section-header {
    margin-top: 48px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .m-section-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.5px !important;
  }

  /* Mobile Elements Hidden on Desktop Screens (≥ 1024px) */
  .m-view-header-bar,
  .m-plp-bar-sticky,
  .m-search-wrap-sticky,
  .m-app-header,
  .m-curved-bottom-nav,
  .m-floating-cart-fab {
    display: none !important;
  }

  /* Desktop Header Bar (Full Width Edge-to-Edge) */
  .dt-header {
    display: block !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
    width: 100% !important;
  }

  /* Tier 1: Announcement Top Bar */
  .dt-top-announcement-bar {
    background: #090d16 !important;
    color: #cbd5e1 !important;
    font-size: 12px !important;
    padding: 7px 0 !important;
    border-bottom: 1px solid #1e293b !important;
    font-weight: 500 !important;
  }

  .dt-top-announcement-inner {
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .dt-top-announce-left, .dt-top-announce-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .dt-top-announce-right a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
  }

  .dt-top-announce-right a:hover {
    color: #f472b6 !important;
  }

  .dt-top-divider {
    color: #334155 !important;
  }

  /* Tier 2: Main Header Top */
  .dt-header-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 32px !important;
    gap: 32px !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .dt-header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .dt-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
  }

  /* Desktop Centered Search & Instant Results Dropdown */
  .dt-search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 auto;
  }

  .dt-search-dropdown-results {
    position: absolute !important;
    top: 54px !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18) !important;
    border: 1px solid #e2e8f0 !important;
    padding: 18px !important;
    z-index: 2000 !important;
    display: none !important;
  }

  .dt-search-dropdown-results.active {
    display: block !important;
  }

  .dt-search-section-label {
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #64748b !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.5px !important;
  }

  .dt-search-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .dt-search-pills span {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    padding: 5px 12px !important;
    border-radius: 99px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .dt-search-pills span:hover {
    background: #0f172a !important;
    color: #ffffff !important;
  }

  .dt-search-icon {
    position: absolute;
    left: 20px;
    font-size: 18px;
    color: #64748b;
  }

  .dt-search-input {
    width: 100%;
    height: 48px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 99px 0 0 99px;
    padding: 0 20px 0 52px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
  }

  .dt-search-input:focus {
    background: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
  }

  .dt-search-btn {
    height: 48px;
    padding: 0 30px;
    background: #0f172a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 0 99px 99px 0;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .dt-search-btn:hover {
    background: #1e293b;
  }

  .dt-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .dt-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .dt-action-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
  }

  .dt-admin-btn {
    background: #f8fafc;
    border-color: #fbcfe8;
    color: #9d174d;
  }

  .dt-badge-dot {
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 99px;
  }

  /* Navigation Bar (Overflow Visible for Dropdowns) */
  .dt-nav-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 10px 24px !important;
    background: #0b1329 !important;
    border-bottom: 2px solid #1e293b !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 1000 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    flex-wrap: nowrap !important;
  }

  #dtNavCategoryLinks {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }

  .dt-nav-link {
    color: #f1f5f9 !important;
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    padding: 8px 16px !important;
    border-radius: 24px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
  }

  .dt-nav-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #d82b7d, #9333ea) !important;
    border-color: transparent !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(216, 43, 125, 0.45) !important;
  }

  .dt-nav-link:active {
    transform: translateY(0) scale(0.97) !important;
  }

  .dt-highlight-link {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.4) !important;
  }

  .dt-highlight-link:hover {
    background: linear-gradient(135deg, #ff5500, #d97706) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 18px rgba(255, 85, 0, 0.5) !important;
  }

  /* Multi-Column Mega Menu Dropdown */
  .dt-mega-menu-parent {
    position: relative !important;
    display: inline-block !important;
  }

  .dt-mega-menu-parent:hover .dt-mega-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .dt-mega-dropdown {
    position: absolute !important;
    top: calc(100% + 4px) !important;
    left: -20px !important;
    width: 880px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35) !important;
    border: 1px solid #cbd5e1 !important;
    padding: 24px !important;
    z-index: 99999 !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  /* Invisible hover bridge to prevent cursor gap flickering */
  .dt-mega-dropdown::before {
    content: '' !important;
    position: absolute !important;
    top: -12px !important;
    left: 0 !important;
    width: 100% !important;
    height: 12px !important;
    background: transparent !important;
  }

  .dt-mega-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) 220px !important;
    gap: 20px !important;
  }

  .dt-mega-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .dt-mega-col-title {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 6px !important;
    padding-bottom: 6px !important;
    border-bottom: 2px solid #f1f5f9 !important;
  }

  .dt-mega-col a {
    color: #475569 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .dt-mega-col a:hover {
    color: #0f172a !important;
    transform: translateX(4px) !important;
  }

  .dt-mega-promo-box {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: #ffffff !important;
    padding: 18px !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }

  .dt-mega-tag {
    font-size: 10px !important;
    font-weight: 800 !important;
    color: #f472b6 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 3px 8px !important;
    border-radius: 99px !important;
    width: fit-content !important;
  }

  .dt-mega-promo-box h4 {
    font-size: 15px !important;
    font-weight: 800 !important;
    margin: 8px 0 4px 0 !important;
  }

  .dt-mega-promo-box p {
    font-size: 12px !important;
    color: #cbd5e1 !important;
    margin: 0 0 12px 0 !important;
  }

  .dt-mega-promo-box button {
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
  }

  /* Desktop Split Hero Section (50/50) */
  .m-hero-banner-frame {
    display: none !important;
  }

  .dt-hero-split-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: #ffffff !important;
    border-radius: 24px !important;
    padding: 44px 48px !important;
    margin: 24px 0 40px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14) !important;
  }

  .dt-hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .dt-hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    color: #f472b6;
    width: fit-content;
  }

  .dt-hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.8px;
  }

  .dt-hero-sub {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 520px;
  }

  .dt-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
  }

  .dt-hero-cta-btn {
    height: 50px;
    padding: 0 32px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    border: none;
    border-radius: 99px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
    transition: transform 0.2s ease;
  }

  .dt-hero-cta-btn:hover {
    transform: translateY(-2px);
  }

  .dt-hero-sec-btn {
    height: 50px;
    padding: 0 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 99px;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .dt-hero-sec-btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .dt-hero-image-right {
    height: 380px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  }  /* Desktop Category Section (6 Equal Columns, Fixed Height 160px) */
  .dt-category-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 16px !important;
    margin: 16px 0 32px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dt-category-card {
    position: relative !important;
    height: 160px !important;
    width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    background: #f8fafc !important;
  }

  .dt-category-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12) !important;
  }

  .dt-category-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.35s ease !important;
  }

  .dt-category-card:hover img {
    transform: scale(1.08) !important;
  }

  .dt-category-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 14px 12px !important;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 100%) !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    pointer-events: none !important;
  }

  .dt-category-overlay h3 {
    font-size: 14px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
  }

  .dt-category-overlay p {
    font-size: 11px !important;
    opacity: 0.85 !important;
    margin: 2px 0 0 0 !important;
    color: #cbd5e1 !important;
  }

  /* Desktop Shop By Occasion Grid (6 Equal Columns Spanning 1440px Container) */
  .dt-occasion-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 16px !important;
    margin: 16px 0 32px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dt-occasion-card {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 16px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .dt-occasion-card:hover {
    background: #ffffff !important;
    border-color: #0f172a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08) !important;
  }

  .dt-occ-icon {
    font-size: 26px !important;
  }

  .dt-occ-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-align: center !important;
  }

  /* Desktop Flash Sale Promo Bar (Spans Full Container Width) */
  .dt-flash-sale-bar {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: #ffffff !important;
    border-radius: 16px !important;
    padding: 16px 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 24px 0 36px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dt-flash-tag {
    background: #0f172a !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    padding: 4px 10px !important;
    border-radius: 99px !important;
    letter-spacing: 0.5px !important;
  }

  .dt-flash-timer {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    color: #cbd5e1 !important;
  }

  .dt-timer-box {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #f472b6 !important;
    padding: 4px 12px !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    font-family: monospace !important;
  }

  /* Desktop Featured Collections (3 Editorial Cards, Fixed Height 200px) */
  .dt-featured-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin: 16px 0 36px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dt-featured-card {
    position: relative !important;
    height: 200px !important;
    width: 100% !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    background: #f8fafc !important;
  }

  .dt-featured-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14) !important;
  }

  .dt-featured-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.35s ease !important;
  }

  .dt-featured-card:hover img {
    transform: scale(1.06) !important;
  }

  .dt-featured-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    padding: 20px !important;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 60%, rgba(15, 23, 42, 0) 100%) !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    pointer-events: none !important;
  }

  .dt-tag-badge {
    background: #0f172a !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 6px !important;
    text-transform: uppercase !important;
  }

  .dt-featured-overlay h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: #ffffff !important;
  }

  /* Desktop Product Grid (Auto-fill compact columns, perfectly proportioned) */
  .dt-product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(210px, 250px)) !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    padding: 16px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  @media (min-width: 1600px) {
    .dt-product-grid {
      grid-template-columns: repeat(auto-fill, minmax(220px, 260px)) !important;
      gap: 24px !important;
    }
  }

  /* Compact Desktop Product Cards */
  .dt-product-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    cursor: pointer !important;
    width: 100% !important;
    max-width: 260px !important;
    box-sizing: border-box !important;
  }

  .dt-product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08) !important;
    border-color: #cbd5e1 !important;
  }

  .dt-card-img-wrapper {
    width: 100% !important;
    height: 190px !important;
    max-height: 200px !important;
    position: relative !important;
    overflow: hidden !important;
    background: #f8fafc !important;
    border-radius: 14px 14px 0 0 !important;
  }

  .dt-card-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.35s ease !important;
  }

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

  .dt-card-content {
    padding: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    gap: 5px !important;
  }

  .dt-card-cat {
    font-size: 9.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #64748b !important;
    letter-spacing: 0.5px !important;
  }

  .dt-card-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    height: 36px !important;
    overflow: hidden !important;
    color: #0f172a !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    margin: 0 !important;
  }

  .dt-card-price-row {
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    margin-top: 4px !important;
  }

  .dt-card-price {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
  }

  .dt-card-mrp {
    font-size: 11.5px !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
  }

  .dt-card-save {
    font-size: 9.5px !important;
    font-weight: 800 !important;
    color: #16a34a !important;
    margin-left: auto !important;
  }

  .dt-card-add-btn {
    margin-top: 8px !important;
    width: 100% !important;
    height: 36px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    transition: background 0.2s ease, transform 0.15s ease !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }

  .dt-card-add-btn:hover {
    background: #1e293b !important;
  }

  /* Desktop Why Unique Expressions Features (4 Columns) */
  .dt-features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin: 20px 0 40px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dt-feature-card {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .dt-feature-icon {
    font-size: 24px !important;
    color: #0f172a !important;
  }

  .dt-feature-card h3 {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
  }

  .dt-feature-card p {
    font-size: 12px !important;
    color: #64748b !important;
    line-height: 1.4 !important;
  }

  /* Desktop Customer Reviews Grid (3 Columns) */
  .dt-reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin: 20px 0 40px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dt-review-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04) !important;
  }

  .dt-review-stars {
    color: #f59e0b !important;
    font-size: 14px !important;
  }

  .dt-review-card p {
    font-size: 13px !important;
    color: #334155 !important;
    line-height: 1.5 !important;
    font-style: italic !important;
  }

  .dt-review-author {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
  }

  /* Desktop Product Detail Page (PDP Split View) */
  .pdp-view-wrapper {
    max-width: 1200px !important;
    margin: 30px auto !important;
    display: grid !important;
    grid-template-columns: 480px 1fr !important;
    gap: 48px !important;
    align-items: start !important;
    padding: 0 !important;
  }

  .pdp-top-bar {
    grid-column: 1 / -1 !important;
    margin-bottom: 12px !important;
  }

  .pdp-gallery-frame {
    height: 480px !important;
    width: 480px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 20px !important;
    position: sticky !important;
    top: 90px !important;
    overflow: hidden !important;
  }

  .pdp-gallery-frame img {
    height: 480px !important;
    width: 480px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
  }

  .pdp-card-box {
    border-radius: 20px !important;
    padding: 32px !important;
  }

  /* Desktop 4-Column Footer */
  .dt-footer {
    display: block !important;
    background: #0f172a;
    color: #f8fafc;
    padding: 64px 64px 28px;
    margin-top: 80px;
    border-radius: 24px 24px 0 0;
  }

  .dt-footer-content {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #1e293b;
  }

  .dt-footer-logo-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: #ffffff;
  }

  .dt-footer-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .dt-footer-badge {
    display: inline-block;
    background: #1e293b;
    color: #38bdf8;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #334155;
  }

  .dt-footer-heading {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
  }

  .dt-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .dt-footer-links a {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
  }

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

  .dt-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 14px;
  }

  .dt-footer-bottom {
    max-width: 1320px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
  }

  /* Widescreen Desktop Sub-Page 2-Column Grids (B2B, Store Locator, Checkout, PDP) */
  .checkout-container {
    max-width: 1440px !important;
    margin: 32px auto !important;
    padding: 0 32px !important;
    box-sizing: border-box !important;
  }

  .dt-2col-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    align-items: start !important;
  }

  .dt-pdp-layout {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 40px !important;
    margin: 24px 0 48px 0 !important;
  }

  .dt-sticky-buy-box {
    position: sticky !important;
    top: 140px !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 32px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08) !important;
  }

  .dt-breadcrumb-strip {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: #64748b !important;
    margin-bottom: 16px !important;
    font-weight: 500 !important;
  }

  .dt-breadcrumb-strip a {
    color: #475569 !important;
    text-decoration: none !important;
  }

  .dt-breadcrumb-strip a:hover {
    color: #0f172a !important;
  }

  /* Product Card Micro-Interactions & Hover Lift */
  .dt-product-card {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .dt-product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12) !important;
  }

  .dt-product-card img {
    transition: transform 0.35s ease !important;
  }

  .dt-product-card:hover img {
    transform: scale(1.06) !important;
  }
}

/* ==========================================================================
   PRODUCTION-GRADE E-COMMERCE ADMIN DASHBOARD SYSTEM (UNIQUE EXPRESSIONS)
   ========================================================================== */
.admin-layout-wrapper {
  display: flex !important;
  width: 100vw !important;
  min-height: 100vh !important;
  background: #f8fafc !important;
  font-family: 'Inter', var(--font-sans), sans-serif !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999999 !important;
}

/* 1. SaaS Dark Sidebar (Fixed 280px Width) */
.admin-sidebar {
  width: 280px !important;
  min-width: 280px !important;
  max-width: 280px !important;
  background: #0f172a !important;
  color: #f8fafc !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 100vh !important;
  border-right: 1px solid #1e293b !important;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12) !important;
  z-index: 10 !important;
}

.admin-sidebar-brand {
  padding: 24px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  border-bottom: 1px solid #1e293b !important;
  height: 72px !important;
  box-sizing: border-box !important;
}

.admin-brand-icon {
  width: 40px !important;
  height: 40px !important;
  background: linear-gradient(135deg, #0f172a, #0f172a) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35) !important;
}

.admin-nav-menu {
  padding: 16px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  flex: 1 !important;
  overflow-y: auto !important;
}

.admin-nav-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  color: #94a3b8 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  height: 44px !important;
  box-sizing: border-box !important;
}

.admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

.admin-nav-item.active {
  background: linear-gradient(135deg, #0f172a, #1e293b) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35) !important;
  font-weight: 700 !important;
}

.admin-sidebar-footer {
  padding: 20px 16px !important;
  border-top: 1px solid #1e293b !important;
}

/* 2. Main Admin Viewport & Sticky 72px Topbar */
.admin-main-viewport {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh !important;
  background: #f8fafc !important;
  max-width: calc(100vw - 280px) !important;
}

.admin-topbar {
  height: 72px !important;
  min-height: 72px !important;
  max-height: 72px !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 0 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 5 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03) !important;
}

.admin-page-title {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
  letter-spacing: -0.5px !important;
}

/* 3. Content Area with 32px Padding & Max 1440px Container */
.admin-content-container {
  padding: 32px !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* 4. Stat Cards Grid */
.admin-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-bottom: 32px !important;
}

.admin-stat-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.admin-stat-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
}

.admin-stat-lbl {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.admin-stat-val {
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  margin-top: 6px !important;
  letter-spacing: -0.5px !important;
}

.admin-stat-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  font-weight: 800 !important;
}

/* 5. Panels, Cards & Form Controls */
.admin-card-panel {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 32px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
}

.admin-panel-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 20px !important;
}

.admin-input {
  height: 48px !important;
  border-radius: 12px !important;
  border: 1px solid #cbd5e1 !important;
  padding: 0 16px !important;
  font-size: 15px !important;
  color: #0f172a !important;
  outline: none !important;
  background: #ffffff !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
}

.admin-input:focus {
  border-color: #0f172a !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15) !important;
}

.admin-btn-primary {
  height: 44px !important;
  padding: 0 20px !important;
  border-radius: 12px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: background 0.2s ease, transform 0.1s ease !important;
}

.admin-btn-primary:hover {
  background: #1e293b !important;
}

.admin-btn-secondary {
  height: 44px !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  background: #f1f5f9 !important;
  color: #334155 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border: 1px solid #cbd5e1 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.2s ease !important;
}

.admin-btn-secondary:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

.admin-btn-danger {
  height: 44px !important;
  padding: 0 16px !important;
  border-radius: 12px !important;
  background: #ef4444 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}

.admin-btn-danger:hover {
  background: #dc2626 !important;
}

/* 6. Production Tables (56px Row Height) */
.admin-table-v2 {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 14px !important;
}

.admin-table-v2 th {
  background: #f8fafc !important;
  color: #475569 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 0.5px !important;
  padding: 14px 18px !important;
  text-align: left !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.admin-table-v2 td {
  height: 56px !important;
  padding: 12px 18px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  color: #334155 !important;
  box-sizing: border-box !important;
  vertical-align: middle !important;
}

.admin-table-v2 tr:hover td {
  background: #f8fafc !important;
}

.admin-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 12px !important;
  border-radius: 99px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.admin-badge-success { background: #dcfce7 !important; color: #15803d !important; }
.admin-badge-warning { background: #fef3c7 !important; color: #b45309 !important; }
.admin-badge-info { background: #e0f2fe !important; color: #0369a1 !important; }
.admin-badge-danger { background: #fee2e2 !important; color: #b91c1c !important; }

/* 7. Toast Notification Engine */
.admin-toast-container {
  position: fixed !important;
  bottom: 32px !important;
  right: 32px !important;
  z-index: 1000000 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  pointer-events: none !important;
}

.admin-toast {
  pointer-events: auto !important;
  background: #0f172a !important;
  color: #ffffff !important;
  padding: 14px 22px !important;
  border-radius: 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  animation: slideInRight 0.3s ease forwards !important;
}

.admin-toast-success { border-left: 4px solid #10b981 !important; }
.admin-toast-error { border-left: 4px solid #ef4444 !important; }

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

/* Admin Product Modal Window System */
.admin-modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 10000000 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}

.admin-modal-backdrop.active {
  display: flex !important;
}

.admin-modal-window {
  background: #ffffff !important;
  border-radius: 24px !important;
  width: 100% !important;
  max-width: 600px !important;
  padding: 32px !important;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  border: 1px solid #e2e8f0 !important;
  animation: modalFadeUp 0.25s ease forwards !important;
}

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

/* ==========================================================================
   PRODUCTION-GRADE ADMIN PANEL DESIGN SYSTEM (.ap-*)
   ========================================================================== */
.ap-layout-wrapper {
  display: flex !important;
  min-height: 100vh !important;
  background: #f6f8fa !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  color: #0f172a !important;
  width: 100% !important;
}

/* Left Sidebar (260px Width - Shopify/Stripe Grade) */
.ap-sidebar {
  width: 260px !important;
  min-width: 260px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  display: flex !important;
  flex-direction: column !important;
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  z-index: 100 !important;
  border-right: 1px solid #e2e8f0 !important;
  box-sizing: border-box !important;
}

.ap-sidebar-header {
  height: 64px !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-sizing: border-box !important;
}

.ap-brand-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.ap-brand-icon {
  width: 32px !important;
  height: 32px !important;
  background: linear-gradient(135deg, #d82b7d, #9333ea) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 6px rgba(216, 43, 125, 0.25) !important;
}

.ap-brand-text {
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px !important;
  color: #0f172a !important;
  line-height: 1.2 !important;
}

.ap-brand-sub {
  font-size: 9.5px !important;
  color: #64748b !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}

.ap-sidebar-nav {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 12px 10px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.ap-nav-section-title {
  font-size: 10px !important;
  font-weight: 800 !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 14px 10px 4px 10px !important;
}

.ap-nav-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  color: #475569 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all 0.15s ease !important;
  cursor: pointer !important;
  position: relative !important;
}

.ap-nav-item:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
}

.ap-nav-item.active {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
}

.ap-nav-item.active::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 6px !important;
  bottom: 6px !important;
  width: 3px !important;
  background: #d82b7d !important;
  border-radius: 0 3px 3px 0 !important;
}

.ap-nav-item-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.ap-nav-item i {
  font-size: 17px !important;
  color: #64748b !important;
}

.ap-nav-item.active i {
  color: #d82b7d !important;
}

.ap-nav-count-badge {
  background: #f1f5f9 !important;
  color: #475569 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 7px !important;
  border-radius: 99px !important;
  border: 1px solid #e2e8f0 !important;
}

.ap-nav-count-badge.alert {
  background: #fee2e2 !important;
  color: #dc2626 !important;
  border-color: #fca5a5 !important;
}

.ap-sidebar-footer {
  padding: 12px 14px !important;
  border-top: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
}

/* Main Viewport & Continuous Top Header */
.ap-main-viewport {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  background: #f6f8fa !important;
}

.ap-top-header {
  height: 64px !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 28px !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 90 !important;
  box-sizing: border-box !important;
}

.ap-global-search {
  position: relative !important;
  width: 320px !important;
}

.ap-global-search i {
  position: absolute !important;
  left: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #94a3b8 !important;
  font-size: 15px !important;
}

.ap-search-input {
  width: 100% !important;
  height: 36px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 0 12px 0 36px !important;
  font-size: 13px !important;
  color: #0f172a !important;
  outline: none !important;
  transition: all 0.15s ease !important;
}

.ap-search-input:focus {
  background: #ffffff !important;
  border-color: #0f172a !important;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08) !important;
}

.ap-header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.ap-store-status-pill {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #ecfdf5 !important;
  color: #047857 !important;
  border: 1px solid #a7f3d0 !important;
  padding: 4px 10px !important;
  border-radius: 99px !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
}

.ap-status-dot {
  width: 7px !important;
  height: 7px !important;
  background: #10b981 !important;
  border-radius: 50% !important;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3) !important;
}

/* Fluid Content Area - Seamless Integration */
.ap-content-container {
  padding: 24px 28px 40px 28px !important;
  max-width: 1600px !important;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Page Header Title Section */
.ap-page-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 20px !important;
}

.ap-page-title {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
  letter-spacing: -0.01em !important;
}

.ap-breadcrumbs {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  color: #64748b !important;
  margin-bottom: 4px !important;
}

/* Cards & Grid Containers */
.ap-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  padding: 20px 24px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 20px !important;
}

.ap-metrics-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
}

.ap-metric-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  padding: 16px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

.ap-metric-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.ap-metric-value {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  font-variant-numeric: tabular-nums !important;
}

.ap-metric-change {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.ap-metric-change.up { color: #10b981 !important; }
.ap-metric-change.down { color: #ef4444 !important; }

/* High-Density Data Tables */
.ap-table-wrapper {
  overflow-x: auto !important;
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
}

.ap-table {
  width: 100% !important;
  min-width: 680px !important;
  border-collapse: collapse !important;
  text-align: left !important;
  font-size: 13px !important;
  background: #ffffff !important;
}

.ap-table th {
  background: #f8fafc !important;
  color: #475569 !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 12px 16px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  white-space: nowrap !important;
}

.ap-table td {
  padding: 12px 16px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  color: #1e293b !important;
  vertical-align: middle !important;
}

.ap-table tr:hover td {
  background: #f8fafc !important;
}

/* Badges */
.ap-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 3px 9px !important;
  border-radius: 99px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

.ap-badge-success { background: #dcfce7 !important; color: #15803d !important; }
.ap-badge-warning { background: #fef3c7 !important; color: #b45309 !important; }
.ap-badge-danger { background: #fee2e2 !important; color: #b91c1c !important; }
.ap-badge-info { background: #e0f2fe !important; color: #0369a1 !important; }
.ap-badge-purple { background: #f3e8ff !important; color: #7e22ce !important; }

/* Buttons */
.ap-btn {
  height: 36px !important;
  padding: 0 14px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  border: none !important;
  transition: all 0.15s ease !important;
  text-decoration: none !important;
}

.ap-btn-primary {
  background: #0f172a !important;
  color: #ffffff !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08) !important;
}

.ap-btn-primary:hover {
  background: #1e293b !important;
  transform: translateY(-1px) !important;
}

.ap-btn-secondary {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
}

.ap-btn-secondary:hover {
  background: #f8fafc !important;
  border-color: #94a3b8 !important;
}

.ap-btn-danger {
  background: #ef4444 !important;
  color: #ffffff !important;
}

.ap-btn-danger:hover {
  background: #dc2626 !important;
}

.ap-btn-icon {
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
  color: #475569 !important;
  cursor: pointer !important;
}

.ap-btn-icon:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
}

/* Modals */
.ap-modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 1000000 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}

.ap-modal-backdrop.active {
  display: flex !important;
}

.ap-modal-container {
  background: #ffffff !important;
  border-radius: 20px !important;
  width: 100% !important;
  max-width: 640px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25) !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
  animation: modalFadeUp 0.25s ease forwards !important;
}

.ap-modal-header {
  padding: 20px 24px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.ap-modal-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
}

.ap-modal-body {
  padding: 24px !important;
  max-height: 75vh !important;
  overflow-y: auto !important;
}

.ap-modal-footer {
  padding: 16px 24px !important;
  background: #f8fafc !important;
  border-top: 1px solid #e2e8f0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 12px !important;
}

/* Table Action Popover Dropdown (⋮ More) */
.ap-dropdown-wrapper {
  position: relative !important;
  display: inline-block !important;
}

.ap-dropdown-menu {
  position: absolute !important;
  right: 0 !important;
  top: 100% !important;
  margin-top: 4px !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15) !important;
  min-width: 160px !important;
  z-index: 999 !important;
  display: none !important;
  flex-direction: column !important;
  padding: 4px !important;
}

.ap-dropdown-menu.active {
  display: flex !important;
}

.ap-dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
  width: 100% !important;
  text-align: left !important;
}

.ap-dropdown-item:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
}

.ap-dropdown-item.danger {
  color: #ef4444 !important;
}

.ap-dropdown-item.danger:hover {
  background: #fee2e2 !important;
  color: #dc2626 !important;
}

/* Notification Center */
.ap-notif-wrapper {
  position: relative !important;
}

.ap-notif-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  border: 1px solid #e2e8f0 !important;
  background: #f8fafc !important;
  color: #475569 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  position: relative !important;
}

.ap-notif-btn:hover {
  background: #ffffff !important;
  color: #0f172a !important;
}

.ap-notif-badge {
  position: absolute !important;
  top: -4px !important;
  right: -4px !important;
  background: #ef4444 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #ffffff !important;
}

.ap-notif-dropdown {
  position: absolute !important;
  right: 0 !important;
  top: 100% !important;
  margin-top: 8px !important;
  width: 340px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15) !important;
  z-index: 1000 !important;
  display: none !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.ap-notif-dropdown.active {
  display: flex !important;
}

.ap-notif-header {
  padding: 12px 16px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #f8fafc !important;
}

.ap-notif-item {
  padding: 12px 16px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  display: flex !important;
  gap: 12px !important;
  align-items: flex-start !important;
}

.ap-notif-item:hover {
  background: #f8fafc !important;
}

/* Floating Bulk Action Bar */
.ap-bulk-bar {
  background: #0f172a !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 16px !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2) !important;
}

/* ═══════════════════════════════════════════════════════
   PREMIUM VIDEO SECTION — PDP (Mobile + Desktop)
   ═══════════════════════════════════════════════════════ */
.pdp-video-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 20px;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.pdp-video-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pdp-video-label {
  font-size: 10px;
  font-weight: 800;
  color: #f472b6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pdp-video-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.pdp-video-thumb-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pdp-video-thumb-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.pdp-video-thumb-wrap:hover img {
  opacity: 0.8;
}

.pdp-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.pdp-video-thumb-wrap:hover .pdp-video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.pdp-video-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #0f172a;
  margin-left: 4px;
}

.pdp-video-source-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #e2e8f0;
  margin-top: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pdp-video-source-tag:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ═══════════════════════════════════════════════════════
   AMAZON-STYLE PDP — Mobile Layout
   ═══════════════════════════════════════════════════════ */
.pdp-mobile-hero-img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  background: #f8fafc;
  display: block;
}

.pdp-mobile-thumb-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 16px;
  background: #fff;
}

.pdp-mobile-thumb-strip img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s;
}

.pdp-mobile-thumb-strip img.active-thumb {
  border-color: #0f172a;
}

.pdp-section-card {
  background: #fff;
  border-radius: 0;
  padding: 16px;
  border-bottom: 8px solid #f1f5f9;
}

.pdp-section-card:last-child {
  border-bottom: none;
}

.pdp-price-big {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
}

.pdp-price-mrp {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.pdp-discount-badge {
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
}

.pdp-sticky-cta-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 10px 16px max(12px, env(safe-area-inset-bottom, 12px)) 16px;
  display: flex;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

@media (min-width: 1024px) {
  .pdp-sticky-cta-bar { display: none; }
}

.pdp-cta-buy-now {
  flex: 1;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.pdp-cta-add-cart {
  flex: 1;
  background: linear-gradient(135deg, #0f172a, #0f172a);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}


/* ==========================================================================
   PRODUCTION PDP STYLES (PHASE 3 — APPLE / MYNTRA / NYKAA LEVEL)
   ========================================================================== */

/* ── Lightbox Overlay (Native Fullscreen) ── */
.pdp-lightbox-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pdp-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.pdp-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.pdp-lightbox-close {
  position: absolute;
  top: -45px; right: 0;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: none;
  font-size: 28px;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pdp-lightbox-close:hover { background: rgba(255,255,255,0.4); }
.pdp-lightbox-prev, .pdp-lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.25);
  color: #fff;
  border: none;
  font-size: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.pdp-lightbox-prev:hover, .pdp-lightbox-next:hover {
  background: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.1);
}
.pdp-lightbox-prev { left: -60px; }
.pdp-lightbox-next { right: -60px; }
.pdp-lightbox-counter {
  position: absolute;
  bottom: -35px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 700;
}

/* ── Desktop Zoom Result Box ── */
.pdp-zoom-result {
  position: absolute;
  top: 0; left: 105%;
  width: 480px; height: 480px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background-repeat: no-repeat;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  z-index: 100;
  display: none;
  pointer-events: none;
}

/* ── Desktop Layout (60 / 40 Split) ── */
.pdp-dt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px 60px 24px;
}
.pdp-dt-hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 36px;
  align-items: start;
  margin-top: 12px;
}
.pdp-dt-gallery-side {
  position: sticky;
  top: 165px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pdp-dt-thumbs-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
}
.pdp-dt-thumb-card {
  width: 78px; height: 78px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.pdp-dt-thumb-card img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
}
.pdp-dt-thumb-card:hover, .pdp-dt-thumb-card.active {
  border-color: #0f172a !important;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.2), 0 4px 12px rgba(15, 23, 42, 0.15) !important;
  transform: translateY(-2px);
}
.pdp-dt-main-img-box {
  flex: 1;
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  cursor: zoom-in;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  max-height: 480px;
}
.pdp-dt-main-img-box img {
  max-height: 400px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.pdp-dt-buy-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
  position: sticky;
  top: 165px;
}

/* ── Mobile Layout (Myntra / Ajio / Apple style) ── */
.pdp-mb-hero-slider {
  position: relative;
  width: 100%;
  background: #f8fafc;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}
.pdp-mb-hero-slider:active {
  cursor: grabbing;
}
.pdp-dt-main-img-box {
  user-select: none;
  cursor: grab;
  position: relative;
}
.pdp-dt-main-img-box:active {
  cursor: grabbing;
}
.pdp-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  color: #0f172a;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.pdp-slider-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
}
.pdp-slider-prev {
  left: 12px;
}
.pdp-slider-next {
  right: 12px;
}
.pdp-img-counter-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  z-index: 7;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}
.pdp-mb-slider-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.pdp-mb-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.pdp-mb-slide img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  pointer-events: none;
}
.pdp-mb-dots {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 5;
}
.pdp-mb-dot {
  width: 7px; height: 7px;
  border-radius: 99px;
  background: rgba(15, 23, 42, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}
.pdp-mb-dot.active {
  width: 22px;
  background: #0f172a;
}

/* Hide WhatsApp button on checkout view */
body.checkout-active #floatingWhatsappBtn,
#viewCheckout.active-view ~ #floatingWhatsappBtn,
#viewCheckout.active-view #floatingWhatsappBtn {
  display: none !important;
}

/* ── Mobile Sticky Bottom CTA Bar ── */
.pdp-mb-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 12px 16px;
  display: flex; gap: 10px;
  z-index: 999;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}
@media (min-width: 1024px) {
  .pdp-mb-sticky-bar { display: none !important; }
}

/* ── Mobile Accordions ── */
.pdp-accordion-group {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 16px;
}
.pdp-accordion-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.pdp-accordion-card.open {
  border-color: #0f172a;
}
.pdp-accordion-header {
  padding: 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 800; color: #0f172a;
  cursor: pointer;
  user-select: none;
}
.pdp-accordion-icon {
  font-size: 18px; color: #64748b;
  transition: transform 0.3s ease;
}
.pdp-accordion-card.open .pdp-accordion-icon {
  transform: rotate(180deg);
  color: #0f172a;
}
.pdp-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 16px;
  font-size: 13.5px; color: #334155; line-height: 1.6;
}
.pdp-accordion-card.open .pdp-accordion-body {
  max-height: 800px;
  padding: 0 16px 16px 16px;
}

/* ── Frequently Bought Together (FBT) ── */
.pdp-fbt-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
}
.pdp-fbt-grid {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 16px;
}
.pdp-fbt-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px;
  width: 140px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}
.pdp-fbt-item img {
  width: 100%; height: 90px;
  object-fit: contain;
}
.pdp-fbt-plus {
  font-size: 20px; font-weight: 900; color: #94a3b8;
}

/* ── Product Specific Reviews Section ── */
.pdp-reviews-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
}
.pdp-review-card {
  border-bottom: 1px solid #f1f5f9;
  padding: 14px 0;
}
.pdp-review-card:last-child { border-bottom: none; }
.pdp-review-author {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.pdp-review-name { font-size: 13.5px; font-weight: 800; color: #0f172a; }
.pdp-review-badge {
  font-size: 10.5px; font-weight: 700; color: #10b981;
  background: #ecfdf5; padding: 2px 8px; border-radius: 99px;
}
.pdp-review-stars { color: #f59e0b; font-size: 12px; margin-bottom: 4px; }
.pdp-review-text { font-size: 13px; color: #475569; line-height: 1.5; }


/* Full-bleed Category Card Banner Header */
.cat-card-full-banner {
  margin: 0 0 14px 0;
  width: 100%;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .cat-card-full-banner {
    margin: 0;
    width: 160px;
    height: 110px;
    border-radius: 14px;
  }
}

/* Premium Circular Category Navigation Strip */
.m-cat-circle-scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 20px;
  scrollbar-width: none;
}

.m-cat-circle-scroll-row::-webkit-scrollbar {
  display: none;
}

.m-cat-circle-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  outline: none;
}

.m-cat-circle-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.m-cat-circle-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-cat-circle-item:hover .m-cat-circle-avatar,
.m-cat-circle-item.active .m-cat-circle-avatar {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.15), 0 6px 14px rgba(15, 23, 42, 0.2);
  transform: scale(1.06);
}

.m-cat-circle-label {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  margin-top: 6px;
  text-align: center;
  white-space: nowrap;
  max-width: 68px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.m-cat-circle-item:hover .m-cat-circle-label,
.m-cat-circle-item.active .m-cat-circle-label {
  color: #0f172a;
  font-weight: 800;
}

/* ==========================================================================
   MOBILE HEADER & LOGO ENHANCEMENT + BLACK LINE REMOVAL
   ========================================================================== */
.m-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  z-index: 120;
}

.m-header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.m-header-logo-link img {
  height: 56px !important;
  width: auto !important;
  max-width: 250px !important;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Remove unwanted floating black line / hero indicator dots */
.m-hero-dots-row,
.m-dot-item {
  display: none !important;
}

/* ==========================================================================
   UPDATED FEATURE STYLES (WhatsApp Widget, Watch Video Modal, Cart Pop-up, Stock Badges)
   ========================================================================== */

/* 1. Floating WhatsApp / Social Widgets (Disabled as requested) */
.whatsapp-widget-container {
  display: none !important;
}

.whatsapp-tooltip-bubble {
  position: relative;
  background: #ffffff;
  color: #0f172a;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: waBounce 2s infinite;
  max-width: 200px;
}

.whatsapp-tooltip-bubble::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 18px;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  transform: rotate(45deg);
}

.whatsapp-fab-btn,
.social-fab-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-fab-btn:hover {
  transform: scale(1.12);
  color: #ffffff !important;
}

.social-fab-btn.whatsapp {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}

.social-fab-btn.youtube {
  background: #FF0000;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.4);
}

.social-fab-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4);
}

@media (min-width: 992px) {
  .whatsapp-widget-container {
    bottom: 24px !important;
    right: 24px !important;
  }
  .social-fab-btn,
  .whatsapp-fab-btn {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
}

.whatsapp-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.6;
  animation: waPulse 2s infinite;
  z-index: -1;
}

@keyframes waBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* 2. Stock Inventory Badges */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.stock-badge-in {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.stock-badge-low {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  animation: pulseGlow 1.5s infinite alternate;
}

.stock-badge-out {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

@keyframes pulseGlow {
  0% { opacity: 0.85; }
  100% { opacity: 1; transform: scale(1.02); }
}

/* 3. Add to Cart Pop-Up Modal */
.cart-popup-modal-container {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
  border: 1px solid #e2e8f0;
  animation: modalPopIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-item-preview-card {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-top: 12px;
}

.qty-picker-group {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 3px;
}

.qty-picker-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.qty-picker-btn:hover:not(:disabled) {
  background: #e2e8f0;
}

.qty-picker-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* 4. Watch Video Walkthrough Modal */
.watch-video-modal-window {
  width: 100%;
  max-width: 640px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid #1e293b;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-aspect-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1e293b;
}

.video-aspect-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 5. Preset Image Selection Buttons for Category Modal */
.cat-preset-btn {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 10px;
  font-weight: 800;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cat-preset-btn.active,
.cat-preset-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

