/* Saanjh Shringar - Ultimate Premium Peach Design System */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #FF8A7A;          /* Vibrant Peach Blossom */
  --primary-hover: #E07A5F;    /* Terracotta Deep Coral */
  --primary-light: #FFF0EC;    /* Creamy Nude Blush */
  --secondary: #D4AF37;        /* Soft Royal Gold */
  --secondary-hover: #B8962D;  /* Rich Gold Accent */
  --bg-color: #FFF9F7;         /* Pearlescent Warm Background */
  --card-bg: #FFFFFF;          /* Pure White Ivory */
  --text-main: #2D1F1D;        /* Espresso Cocoa Dark Text */
  --text-muted: #7E6C6A;       /* Warm Gray Muted Text */
  --border-color: #F7E5E1;     /* Ultra Soft Peach Border */
  --success: #2EC4B6;          /* Mint Green Accent */
  --danger: #E63946;           /* Soft Velvet Red */
  
  --shadow-sm: 0 4px 12px rgba(224, 122, 95, 0.05);
  --shadow: 0 10px 30px rgba(224, 122, 95, 0.08);
  --shadow-lg: 0 20px 45px rgba(224, 122, 95, 0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .luxury-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #FFD4CC;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- DYNAMIC HEADER DESIGN --- */

/* Desktop Top Promotion Alert Bar */
.promo-bar {
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 0 15px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  z-index: 1000;
  position: relative;
  overflow: hidden;
  height: 38px; /* Fixed height for vertical slide alignment */
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-slider {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.promo-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.promo-slide i {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Base Header */
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  max-width: 200px;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(224, 122, 95, 0.1));
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(255, 138, 122, 0.3);
  border: 2px solid #FFF;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 2px;
}

/* Expanded Desktop Search Bar */
.search-wrapper {
  flex: 1;
  max-width: 550px;
  position: relative;
}

.search-bar {
  width: 100%;
  padding: 12px 20px 12px 45px;
  background: var(--primary-light);
  border: 1px solid transparent;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.search-bar::placeholder {
  color: #B59C99;
}

.search-bar:focus {
  background: #FFF;
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 138, 122, 0.1);
}

.search-wrapper i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-hover);
  font-size: 1.05rem;
  transition: var(--transition);
}

.search-bar:focus + i {
  color: var(--primary-hover);
  transform: translateY(-50%) scale(1.1);
}

/* Desktop Action Nav */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.action-btn {
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.action-btn:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
}

.action-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary-hover);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

/* Primary Categories Menu Bar (Desktop) */
.menu-bar {
  background: white;
  border-bottom: 1px solid var(--border-color);
  z-index: 998;
}

.menu-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 5px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 10px 10px 0 0;
  transition: var(--transition);
}

.menu-link:hover, .menu-link.active {
  color: var(--primary);
}

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

.menu-link i {
  font-size: 0.9rem;
}

/* Mobile-Specific Navigation Elements */
.mobile-menu-trigger {
  display: none;
}

.mobile-bottom-nav {
  display: none;
}

/* --- HERO BANNER & SLIDESHOW --- */
.hero-slider {
  max-width: 1300px;
  margin: 30px auto;
  padding: 0 30px;
  position: relative;
  transition: var(--transition);
}

.hero-slides-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
}

.hero-slide-wrapper {
  border-radius: 24px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 138, 122, 0.15);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.hero-slide-wrapper.hidden {
  opacity: 0 !important;
  pointer-events: none;
  z-index: 1;
}

.hero-slide-wrapper.active {
  opacity: 1 !important;
  pointer-events: auto;
  z-index: 5;
}

.hero-content {
  flex: 1;
  padding: 80px 90px;
  z-index: 2;
  max-width: 55%;
  transition: var(--transition);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 60%, transparent 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px 0 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 138, 122, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-hover);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  width: fit-content;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary-hover);
  background: linear-gradient(120deg, var(--primary-hover) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 480px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 138, 122, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition-slow);
  width: fit-content;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 138, 122, 0.45);
}

.hero-image-area {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  transition: transform 6s ease;
  z-index: 1;
  filter: brightness(0.95);
}

.hero-slide-wrapper:hover .hero-image-area {
  transform: scale(1.06);
}

.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 80px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 138, 122, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

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

/* --- CATEGORIES SLIDER BAR --- */
.categories-section {
  max-width: 1300px;
  margin: 40px auto 20px;
  padding: 0 30px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--text-main);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.categories-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 5px 25px;
  scrollbar-width: none; /* Firefox */
}

.categories-grid::-webkit-scrollbar {
  display: none; /* Chrome */
}

.category-card {
  flex: 0 0 160px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.category-card:hover, .category-card.active {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-color);
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
  transition: var(--transition);
}

.category-card:hover .category-icon-box,
.category-card.active .category-icon-box {
  background: var(--primary);
  color: white;
  transform: rotate(10deg);
}

.category-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.category-card-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- MAIN CATALOG & PRODUCT GRID --- */
.storefront-container {
  max-width: 1300px;
  margin: 40px auto 80px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Left Sidebar Filter (Desktop) */
.filter-sidebar {
  position: sticky;
  top: 130px;
  height: fit-content;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.filter-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
}

.filter-group:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.filter-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  color: var(--text-main);
}

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

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-checkbox-label:hover {
  color: var(--primary-hover);
}

.filter-checkbox-label input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

/* Range slider custom styling */
.price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.price-box {
  flex: 1;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-main);
  text-align: center;
}

/* Sorting / Toolbar Control on Catalog */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 15px 25px;
  box-shadow: var(--shadow-sm);
}

.result-counter {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.result-counter strong {
  color: var(--text-main);
}

.sorting-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sorting-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sorting-select {
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.sorting-select:focus {
  border-color: var(--primary);
}

/* Dynamic Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Product Card Design */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 138, 122, 0.4);
  box-shadow: var(--shadow-lg);
}

.product-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Perfect Square 1:1 Aspect Ratio! All pictures exact identical size! */
  background-color: var(--primary-light);
  overflow: hidden;
}

.product-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-card-image {
  transform: scale(1.08);
}

/* Badges on cards */
.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-color);
  color: var(--primary-hover);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}

.product-tag.segment-premium {
  color: var(--secondary);
  border-color: rgba(212, 175, 55, 0.3);
}

.wishlist-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  z-index: 3;
}

.wishlist-toggle:hover {
  background: white;
  color: var(--danger);
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.15);
}

.wishlist-toggle.active {
  color: var(--danger);
}

/* Glass Quick View Layer */
.quick-view-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(45, 31, 29, 0.7) 0%, rgba(45, 31, 29, 0) 100%);
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 4;
}

.product-card:hover .quick-view-overlay {
  transform: translateY(0);
}

.quick-view-btn {
  background: white;
  color: var(--text-main);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.quick-view-btn:hover {
  background: var(--primary);
  color: white;
}

/* Card Body Content */
.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.08rem;
  color: var(--text-main);
  margin-bottom: 8px;
  text-decoration: none;
  transition: var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.5em;
  line-height: 1.25em;
  white-space: normal !important;
}

.product-title:hover {
  color: var(--primary-hover);
}

/* Ratings */
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--secondary);
}

.product-rating span {
  color: var(--text-muted);
  margin-left: 4px;
}

/* Price layout */
.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.price-stack {
  display: flex;
  flex-direction: column;
}

.price-actual {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-mrp {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-top: -2px;
}

.add-cart-btn {
  background: var(--primary-light);
  color: var(--primary-hover);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
}

.add-cart-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

/* --- SLIDE-OUT CART DRAWER --- */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 31, 29, 0.4);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 480px;
  max-width: 100%;
  background: white;
  z-index: 1060;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

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

.drawer-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  background: var(--primary-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-main);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer-close:hover {
  background: var(--primary);
  color: white;
}

.drawer-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
}

/* Shipping Progress / Free Delivery Goal */
.shipping-alert-box {
  background: var(--primary-light);
  border-radius: 16px;
  padding: 15px 20px;
  margin-bottom: 25px;
}

.shipping-alert-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shipping-alert-text span {
  color: var(--primary-hover);
  font-weight: 700;
}

.shipping-progress-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 138, 122, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.shipping-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--primary), var(--primary-hover));
  border-radius: 10px;
  transition: width 0.5s ease;
}

/* Cart Items List */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

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

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--primary-light);
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  border-radius: 50px;
  padding: 2px;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--text-main);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: white;
  color: var(--primary);
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 600;
  width: 28px;
  text-align: center;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #B59C99;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  padding: 2px;
}

.cart-item-remove:hover {
  color: var(--danger);
}

/* Empty Cart View */
.empty-cart-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.empty-cart-view i {
  font-size: 3rem;
  color: var(--border-color);
  margin-bottom: 20px;
}

.empty-cart-view p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Drawer Footer */
.drawer-footer {
  padding: 30px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-color);
}

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

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.summary-val {
  font-weight: 600;
  color: var(--text-main);
}

.summary-row.total .summary-val {
  font-size: 1.35rem;
  color: var(--primary-hover);
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,138,122,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,138,122,0.4);
}

/* --- QUICK VIEW & CHECKOUT MODALS --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 31, 29, 0.4);
  backdrop-filter: blur(5px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-card {
  background: white;
  border-radius: 28px;
  width: 900px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-slow);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-main);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--primary);
  color: white;
}

/* Quick View Inner Grid */
.product-details-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-preview-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  background: var(--primary-light);
  border: 1px solid var(--border-color);
}

.details-content {
  display: flex;
  flex-direction: column;
}

.details-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-hover);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.details-title {
  font-size: 2rem;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 12px;
}

.details-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.details-sku {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.details-sku strong {
  color: var(--text-main);
}

.details-price-row {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 25px;
}

.details-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
}

.details-mrp {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.details-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Variant Pill Selector inside modal */
.variant-block {
  margin-bottom: 30px;
}

.variant-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--text-main);
}

.variant-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-pill {
  background: white;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.variant-pill:hover, .variant-pill.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-hover);
}

/* Modal Actions */
.details-actions {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

.modal-add-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255,138,122,0.3);
  transition: var(--transition);
}

.modal-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,138,122,0.4);
}

.modal-wishlist-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition);
}

.modal-wishlist-btn:hover {
  border-color: var(--danger);
  color: var(--danger);
  background: #FFF5F5;
}

/* --- CHECKOUT FORM MODAL --- */
.checkout-modal-card {
  width: 650px;
}

.checkout-grid {
  padding: 40px;
}

.checkout-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.checkout-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 4px 15px rgba(255, 138, 122, 0.08);
}

/* Checkout Summary Block */
.checkout-order-summary {
  background: var(--primary-light);
  border-radius: 20px;
  padding: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.checkout-summary-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 138, 122, 0.2);
  padding-bottom: 12px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.order-place-btn {
  width: 100%;
  background: linear-gradient(135deg, #2EC4B6 0%, #20A498 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(46,196,182,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.order-place-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46,196,182,0.35);
}

/* Order Success Animation State */
.success-state {
  text-align: center;
  padding: 50px 30px;
}

.success-icon-box {
  width: 80px;
  height: 80px;
  background: #E8F8F5;
  color: #2EC4B6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 25px;
  animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

/* --- FOOTER DESIGN --- */
footer {
  background: linear-gradient(135deg, #FFF6F4 0%, #FFEAE5 50%, #FFDDD6 100%);
  border-top: 1px solid rgba(255, 138, 122, 0.2);
  padding: 80px 30px 40px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about-col {
  padding-right: 40px;
}

.footer-desc {
  font-size: 0.95rem;
  color: #A38982; /* Warm beige-brown */
  margin-top: 20px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-color);
  color: #8C736C; /* Warm light brown */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.social-icon:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #8C736C; /* Elegant light brown */
  letter-spacing: 0.05em;
}

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

.footer-link {
  color: #A38982; /* Soft beige-brown */
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-hover);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 138, 122, 0.2);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #B59C99; /* Soft warm beige */
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Custom Overrides for Brand Logo elements in Footer */
footer .logo-main {
  color: #8C736C !important;
}

footer .logo-sub {
  color: #B59C99 !important;
}

/* --- NOTIFICATION LOGS CENTER STYLES --- */
.notif-dropdown-panel-hidden {
  opacity: 0;
  transform: scale(0.85) translateY(-15px);
  pointer-events: none;
  transition: var(--spring-transition) !important;
}

.notif-dropdown-panel-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  transition: var(--spring-transition) !important;
}

.notif-log-item {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 138, 122, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.notif-log-item:hover {
  background: rgba(255, 138, 122, 0.05);
}

.notif-log-item:last-child {
  border-bottom: none;
}

.notif-log-item.unread {
  background: rgba(255, 138, 122, 0.03);
}

.notif-log-item.unread:hover {
  background: rgba(255, 138, 122, 0.06);
}

.notif-unread-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px var(--primary);
  display: inline-block;
}

.notif-log-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.25);
}

.notif-log-title {
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.notif-log-body {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  margin-top: 3px;
}

.notif-log-time {
  font-size: 0.72rem;
  color: #B59C99;
}

.notif-empty-state {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.notif-empty-state i {
  font-size: 2.2rem;
  color: var(--border-color);
  margin-bottom: 5px;
}


/* --- RESPONSIBILITY BREAKPOINTS (CROSS-DEVICE LAYOUT) --- */

/* ipad / Tablet Portrait View (768px - 1023px) */
@media (max-width: 1023px) {
  .header-container {
    padding: 15px 20px;
  }
  
  .search-wrapper {
    max-width: 320px;
  }
  
  .menu-list {
    gap: 25px;
  }
  
  .hero-slide {
    min-height: 380px;
  }
  
  .hero-content {
    max-width: 55%;
    padding: 40px;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .storefront-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .filter-sidebar {
    display: none; /* Hide sidebar filter on tablet, handled by drawer/bottom sheet if added later */
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-about-col {
    padding-right: 0;
  }
}

/* Base Mobile-only Components (Hidden on Desktop / iPad by default) */
.mobile-sidebar,
.mobile-search-overlay,
.mobile-bottom-nav {
  display: none;
}

/* Mobile Layout View (< 768px) */
@media (max-width: 767px) {
  :root {
    --header-height-mobile: 60px;
  }
  
  body {
    padding-bottom: 75px; /* Leave space for bottom sticky navigation */
  }
  
  .promo-bar {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
  
  header {
    position: sticky;
    top: 0;
    z-index: 1001;
  }
  
  .header-container {
    padding: 10px 15px;
    height: var(--header-height-mobile);
    gap: 10px;
  }
  
  .search-wrapper {
    display: none; /* Hide top search bar on mobile, accessed via Bottom Nav Search */
  }
  
  .header-actions {
    gap: 5px;
  }
  
  .action-btn {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
  
  .action-btn.search-trigger-header {
    display: flex;
  }
  
  /* Mobile Hamburger Menu */
  .mobile-menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--text-main);
    cursor: pointer;
    width: 36px;
    height: 36px;
  }
  
  /* Brand Adjustments */
  .logo-main {
    font-size: 1.25rem;
  }
  .logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
  }
  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }
  
  /* Hide standard category menu bar on mobile */
  .menu-bar {
    display: none;
  }
  
  /* Floating Mobile Search Box */
  .mobile-search-overlay {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    background: white;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  
  .mobile-search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .mobile-search-box {
    position: relative;
    width: 100%;
  }
  
  .mobile-search-box input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--primary-light);
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
  }
  
  .mobile-search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-hover);
  }
  
  /* Hero Slider Banner on Mobile (Wider & centered) */
  .hero-slider {
    margin: 10px auto;
    padding: 0 8px; /* Thinner padding for wider mobile look! */
  }
  
  .hero-slides-container {
    border-radius: 16px;
  }
  
  .hero-slide-wrapper {
    min-height: 380px !important;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 92% !important;
    width: calc(100% - 32px) !important;
    margin: 16px;
    padding: 24px 20px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(45, 31, 29, 0.15) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: none;
  }
  
  .hero-badge {
    padding: 5px 12px;
    font-size: 0.65rem;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.95);
  }
  
  .hero-title {
    font-size: 1.55rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  
  .hero-subtitle {
    font-size: 0.78rem;
    margin-bottom: 14px;
    line-height: 1.4;
    max-width: 320px;
  }
  
  .hero-btn {
    padding: 8px 18px;
    font-size: 0.78rem;
    width: fit-content;
  }
  
  .hero-image-area {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    border-radius: inherit;
    filter: brightness(0.85);
  }
  
  .hero-slider-dots {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 12px !important;
  }
  
  /* Categories on Mobile */
  .categories-section {
    margin: 25px auto 10px;
    padding: 0 8px; /* Thinner padding for wider mobile look! */
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .category-card {
    flex: 0 0 120px;
    padding: 12px 10px;
    border-radius: 16px;
  }
  
  .category-icon-box {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  
  .category-card-name {
    font-size: 0.8rem;
  }
  
  .category-card-count {
    font-size: 0.7rem;
  }
  
  /* Storefront on Mobile */
  .storefront-container {
    margin: 15px auto 40px;
    padding: 0 8px; /* Thinner padding for wider mobile look! */
  }
  
  .catalog-toolbar {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  
  .result-counter {
    font-size: 0.8rem;
  }
  
  .sorting-select {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on mobile! */
    gap: 14px; /* Generous gap for breathing space and wider layout! */
  }
  
  .product-card {
    border-radius: 18px;
    background: #ffffff !important;
    box-shadow: 0 6px 18px rgba(232, 121, 101, 0.04) !important;
    border: 1px solid rgba(232, 121, 101, 0.08) !important;
  }
  
  .product-card-body {
    padding: 10px 8px 8px; /* Compressed padding to reduce vertical stretch! */
  }

  .product-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
  }

  .product-brand {
    font-size: 0.65rem;
    margin-bottom: 0;
  }

  .product-rating-compact {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e67e22; /* Warm secondary brand tone */
  }
  
  .product-title {
    font-size: 0.84rem;
    height: 2.4em;
    line-height: 1.2em;
    margin-bottom: 6px;
  }
  
  .product-card-footer {
    padding-top: 8px;
  }

  .price-actual {
    font-size: 1.0rem;
    font-weight: 700;
    color: #E87965;
  }
  
  .price-mrp {
    font-size: 0.75rem;
  }
  
  .add-cart-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  
  .product-tag {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 0.65rem;
  }
  
  .wishlist-toggle {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  
  /* Quick view overlay disabled on mobile since we tap card for full view or details sheet */
  .quick-view-overlay {
    display: none !important;
  }
  
  /* Mobile Bottom Navigation Bar - Sticky Mobile App Style! */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 66px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(224, 122, 95, 0.14);
    z-index: 1002;
    align-items: center;
    justify-content: space-around;
    padding: 5px 10px;
    transition: var(--spring-transition);
  }
  
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    flex: 1;
  }
  
  .mobile-nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 3px;
  }
  
  .mobile-nav-item.active {
    color: var(--primary-hover);
  }
  
  .mobile-nav-item.active i {
    animation: bounce 0.3s ease;
  }
  
  @keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }
  
  .mobile-nav-badge {
    position: absolute;
    top: -2px;
    right: 22%;
    background: var(--primary-hover);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
  }
  
  /* Mobile Sidebar slide-out navigation */
  .mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 290px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-right: 1px solid rgba(255, 138, 122, 0.15);
    z-index: 1055;
    box-shadow: 15px 0 45px rgba(224, 122, 95, 0.12);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    padding: 25px;
  }
  
  .mobile-sidebar.active {
    transform: translateX(0);
  }
  
  .mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .mobile-sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .mobile-sidebar-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 12px;
    transition: var(--spring-transition);
    border: 1px solid transparent;
  }
  
  .mobile-sidebar-item i {
    color: var(--text-muted);
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
    transition: var(--transition);
  }
  
  .mobile-sidebar-item:hover {
    background: rgba(255, 138, 122, 0.05);
    color: var(--primary-hover);
    border-color: rgba(255, 138, 122, 0.1);
  }
  
  .mobile-sidebar-item.active {
    background: linear-gradient(90deg, rgba(255, 138, 122, 0.12) 0%, rgba(255, 240, 236, 0.3) 100%) !important;
    color: var(--primary-hover) !important;
    font-weight: 600 !important;
    border-left: 3px solid var(--primary) !important;
    border-radius: 0 12px 12px 0 !important;
    border-color: rgba(255, 138, 122, 0.15) !important;
  }
  
  .mobile-sidebar-item.active i {
    color: var(--primary-hover) !important;
    transform: scale(1.1);
  }
  
  /* Quick view modal grid adjustments */
  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 25px;
  }
  
  .details-title {
    font-size: 1.5rem;
  }
  
  .details-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .modal-wishlist-btn {
    width: 100%;
    border-radius: 50px;
    height: 48px;
    gap: 8px;
  }
  
  .checkout-modal-card {
    border-radius: 20px;
  }
  
  .checkout-grid {
    padding: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  footer {
    padding: 40px 20px 40px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ==========================================================================
   FRAMER MOTION SPRING PHYSICS EMULATION & TRANSITION SYSTEMS
   ========================================================================== */

/* Butter-smooth Spring Cubic-Bezier Transitions */
:root {
  --spring-transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --spring-transition-slow: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Interactive Transitions */
.scale-hover {
  transition: var(--spring-transition) !important;
}
.scale-hover:hover {
  transform: scale(1.04) !important;
}
.scale-hover:active {
  transform: scale(0.97) !important;
}

.hover-rotate {
  transition: var(--spring-transition) !important;
}
.hover-rotate:hover {
  transform: rotate(90deg) !important;
}

/* Sliding Spring Components Drawer (emulating cart slides) */
.drawer.spring-slide-right {
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Scaling Spring Modals (emulating details popups) */
.modal-backdrop .modal-card.spring-scale {
  transform: scale(0.7) translateY(50px);
  opacity: 0;
  transition: var(--spring-transition-slow) !important;
}
.modal-backdrop.active .modal-card.spring-scale {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Framer Motion Entry Animation Utility Classes */
.animate-fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.animate-slide-down {
  animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.spring-in {
  animation: springIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.animate-pulse {
  animation: pulse 2s infinite ease-in-out;
}

/* Keyframes definitions mimicking fluid motion curves */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes springIn {
  from { opacity: 0; transform: translateY(35px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 0.9; transform: scale(1.04); }
  70% { transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

/* Best Sellers Horizontal Scroll Layout */
.best-sellers-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.best-sellers-scroll::-webkit-scrollbar {
  display: none !important; /* Hide scrollbars Chrome/Safari */
}
.best-seller-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.product-tag.segment-best-seller {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  color: white;
  border-color: var(--secondary-hover);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
}

/* Widen and support responsive layouts on mobile */
@media (max-width: 767px) {
  .best-sellers-section {
    padding: 0 8px !important; /* Wider on mobile screens! */
    margin: 30px auto 10px !important;
  }
  .best-sellers-scroll {
    gap: 15px !important;
    padding-bottom: 15px !important;
  }
  .best-seller-card {
    flex: 0 0 220px !important; /* Slightly more compact card on mobile to fit nicely! */
  }
}

/* ==========================================================================
   ULTRA-PREMIUM GLASSMORPHISM & SOFT BORDERS THEMING
   ========================================================================== */

/* Frosted Glass Cards & Sidebars */
.product-card {
  background: #ffffff !important;
  border: 1px solid rgba(232, 121, 101, 0.09) !important;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 8px 24px rgba(232, 121, 101, 0.04), 0 2px 6px rgba(0, 0, 0, 0.01) !important;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(232, 121, 101, 0.28) !important;
  box-shadow: 0 16px 36px rgba(232, 121, 101, 0.12), 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.glassmorphic-sidebar {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: var(--shadow-sm);
  border-radius: 24px;
}

.glassmorphic-toolbar {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: var(--shadow-sm);
}

.glassmorphic-badge {
  background: rgba(255, 240, 236, 0.5) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px dashed var(--primary) !important;
  color: var(--text-main);
}

/* Sliding Shopping Bag Drawer Frosted glass */
.drawer {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(255, 255, 255, 0.5) !important;
}

/* Modal details frosted glass skin */
.modal-card {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

/* ==========================================================================
   DYNAMIC DUAL-COLUMN LIVE-SEARCH MODAL STYLING
   ========================================================================== */

.search-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 31, 29, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

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

.search-modal-card {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  width: 900px;
  max-width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  padding: 40px;
  transform: scale(0.9);
  transition: var(--transition-slow);
}

.search-modal-backdrop.active .search-modal-card {
  transform: scale(1);
}

.search-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--primary-light);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-main);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.search-modal-close:hover {
  background: var(--primary);
  color: white;
}

.modal-search-box-wrapper {
  position: relative;
  width: 100%;
  box-shadow: var(--shadow-sm);
  border-radius: 50px;
}

.modal-search-box-wrapper input {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 15px 25px 15px 55px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  outline: none;
  color: var(--text-main);
  transition: var(--transition);
}

.modal-search-box-wrapper input:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 138, 122, 0.15);
}

.search-icon-gold {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.15rem;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  padding-top: 10px;
}

/* Scroll Snap offsets for horizontal Best Sellers lists on desktop */
.best-seller-card {
  scroll-snap-align: start;
}

/* Widen mobile viewport padding offsets */
@media (max-width: 767px) {
  .search-modal-card {
    padding: 30px 15px;
    border-radius: 20px;
    max-height: 90vh;
  }
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .modal-search-box-wrapper input {
    padding: 12px 20px 12px 45px;
    font-size: 0.95rem;
  }
  .search-icon-gold {
    left: 18px;
    font-size: 1rem;
  }
}

/* --- DEDICATED PRODUCT DETAILS PAGE STYLES --- */
.details-thumbnail-img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  background: white;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.details-thumbnail-img:hover, .details-thumbnail-img.active {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.star-select {
  transition: var(--transition);
}

.star-select:hover {
  transform: scale(1.2);
}

.star-select.active {
  color: var(--secondary) !important;
}

.review-item-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}

.review-item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.verified-buyer-badge {
  background: rgba(46,196,182,0.1);
  color: var(--success);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Specs & Tabs Grid enhancements */
@media (max-width: 991px) {
  .product-core-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .reviews-split-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

/* --- PREMIUM INTERACTIVE FAQ ACCORDION STYLES --- */
.faq-item {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--spring-transition) !important;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.faq-header {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.faq-header:hover {
  color: var(--primary-hover);
}

.faq-chevron {
  font-size: 0.9rem;
  color: var(--secondary);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 28px 25px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Accordion Active States */
.faq-item.active {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-hover);
}

@media (max-width: 767px) {
  .faq-header {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  .faq-content-inner {
    padding: 0 20px 20px;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   HOMEPAGE PREMIUM 5 SECTIONS STYLING
   ========================================================================== */

/* 1. Heritage Story Section */
.story-section {
  background: linear-gradient(135deg, rgba(255, 240, 236, 0.5) 0%, rgba(255, 249, 247, 0.8) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.story-text-container {
  padding-right: 20px;
}
.story-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--primary-hover);
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
  margin: 25px 0;
  line-height: 1.6;
}
.story-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 138, 122, 0.15);
}
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}
.story-image-wrapper:hover .story-img {
  transform: scale(1.04);
}
.story-overlay-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 18px 24px;
  box-shadow: var(--shadow);
}

/* 2. Curated Looks collage */
.curated-looks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.look-card {
  height: 480px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-slow);
}
.look-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.look-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.look-card:hover .look-bg-img {
  transform: scale(1.08);
}
.look-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(45, 31, 29, 0) 40%, rgba(45, 31, 29, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}
.look-card:hover .look-overlay {
  background: linear-gradient(180deg, rgba(45, 31, 29, 0) 30%, rgba(45, 31, 29, 0.85) 100%);
}
.look-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 50px;
  align-self: flex-start;
  margin-bottom: 12px;
}
.look-title {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.2;
}
.look-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}
.look-link {
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.look-card:hover .look-link {
  color: #fff;
  gap: 10px;
}

/* 3. Trust Pillars Section */
.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pillar-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.pillar-icon-box {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-hover);
  font-size: 1.6rem;
  box-shadow: 0 4px 10px rgba(255, 138, 122, 0.1);
  transition: var(--transition);
}
.pillar-card:hover .pillar-icon-box {
  background: var(--primary);
  color: #fff;
  transform: rotateY(180deg);
}
.pillar-card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-main);
}
.pillar-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 4. Artisan Atelier Banner */
.atelier-banner {
  background: linear-gradient(135deg, rgba(45, 31, 29, 0.95) 0%, rgba(65, 46, 43, 0.98) 100%),
              url('https://images.unsplash.com/photo-1630019852942-f89202989a59?q=80&w=1200&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
  border-radius: 30px;
  padding: 70px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.atelier-subtitle {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  display: block;
}
.atelier-title {
  color: #fff;
  font-size: 2.2rem;
  max-width: 750px;
  margin: 0 auto 20px;
  line-height: 1.3;
}
.atelier-desc {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* 5. Customer Diaries (Testimonials) */
.diaries-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 5px 25px;
}
.diaries-grid::-webkit-scrollbar {
  display: none;
}
.diary-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  flex: 0 0 380px;
  scroll-snap-align: start;
}
.diary-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.diary-stars {
  color: var(--secondary);
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.diary-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}
.diary-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}
.diary-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary-hover);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 138, 122, 0.25);
}
.diary-meta-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
}
.diary-meta-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.diary-verified-badge {
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Responsive breakdowns */
@media (max-width: 1024px) {
  .curated-looks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diary-card {
    flex: 0 0 340px !important;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-text-container {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .curated-looks-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .trust-pillars-grid {
    display: flex !important;
    gap: 15px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 10px 5px 20px !important;
  }
  .trust-pillars-grid::-webkit-scrollbar {
    display: none !important;
  }
  .pillar-card {
    flex: 0 0 240px !important;
    padding: 25px 20px !important;
    border-radius: 20px !important;
    scroll-snap-align: start !important;
  }
  .diaries-grid {
    gap: 15px !important;
    padding: 10px 5px 20px !important;
  }
  .diary-card {
    flex: 0 0 300px !important;
    padding: 20px !important;
  }
  .atelier-title {
    font-size: 1.5rem;
  }
  .look-card {
    height: 250px !important;
    border-radius: 16px !important;
  }
  .look-overlay {
    padding: 15px !important;
  }
  .look-badge {
    padding: 4px 8px !important;
    font-size: 0.6rem !important;
    margin-bottom: 6px !important;
  }
  .look-title {
    font-size: 1.05rem !important;
    margin-bottom: 4px !important;
  }
  .look-desc {
    display: none !important;
  }
  .look-link {
    font-size: 0.7rem !important;
  }
}

/* ==========================================================================
   TESTIMONIAL PRODUCTS & LIVE VIDEO SHOWCASE
   ========================================================================== */

/* Testimonial Product Thumbnails */
.diary-product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-light);
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 138, 122, 0.3);
  margin-bottom: 18px;
  text-decoration: none;
  transition: var(--transition);
}
.diary-product-link:hover {
  background: #FFF0EC;
  border-color: var(--primary);
  transform: translateY(-1px);
}
.diary-product-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 138, 122, 0.15);
}
.diary-product-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Immersive Live Video Showcase */
.video-showcase-section {
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(255, 249, 247, 0.8) 0%, rgba(255, 240, 236, 0.5) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.video-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.video-player-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 138, 122, 0.25);
  background: #000;
  height: 420px;
}
.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-hover);
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}
.video-player-wrapper:hover .video-overlay-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary);
  color: #fff;
}
.video-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(45, 31, 29, 0.85);
  backdrop-filter: blur(10px);
  color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 10;
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .video-player-wrapper {
    height: 300px;
  }
}

/* ==========================================================================
   ABOUT PAGE LUXURY DESIGN SYSTEM
   ========================================================================== */

/* About Hero Canvas */
.about-hero {
  background: linear-gradient(135deg, #FFEBE5 0%, #FFF5F2 50%, #FFF9F7 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 100px 20px;
  text-align: center;
}
.about-hero-badge {
  background: rgba(255,138,122,0.1);
  border: 1px solid rgba(255,138,122,0.25);
  color: var(--primary-hover);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}
.about-hero-title {
  font-size: 3.2rem;
  color: var(--text-main);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.15;
}
.about-hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Timeline Layout */
.timeline-section {
  padding: 90px 0;
  background: var(--bg-color);
}
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline-container::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background-color: #fff;
  border: 3px solid var(--secondary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-left {
  left: 0;
}
.timeline-right {
  left: 50%;
}
.timeline-right::after {
  left: -9px;
}
.timeline-content {
  padding: 25px 30px;
  background: #fff;
  position: relative;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-hover);
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
}
.timeline-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-main);
}
.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Meet the Curators */
.curators-section {
  padding: 90px 0;
  background: rgba(255, 245, 242, 0.4);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.curators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.curator-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.curator-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.curator-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.curator-info {
  padding: 30px;
}
.curator-role {
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: block;
}
.curator-name {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-main);
}
.curator-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Audits Section */
.audits-section {
  padding: 95px 0;
}
.audits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.audit-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.audit-card:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.audit-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary-hover);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(255,138,122,0.1);
}
.audit-card:hover .audit-icon-wrapper {
  background: var(--primary);
  color: #fff;
}
.audit-card-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-main);
}
.audit-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .timeline-container::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item::after {
    left: 22px;
  }
  .timeline-right {
    left: 0%;
  }
  .curators-grid {
    grid-template-columns: 1fr;
  }
  .audits-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-title {
    font-size: 2.2rem;
  }
}


/* --- MOBILE FILTER FLOATING DRAWER SYSTEM --- */
.mobile-filter-trigger-btn {
  display: none;
}

.mobile-filter-drawer {
  display: none;
}

@media (max-width: 767px) {
  .mobile-filter-trigger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 90px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 25px rgba(255, 138, 122, 0.4);
    z-index: 1001;
    cursor: pointer;
    transition: var(--spring-transition);
  }
  
  .mobile-filter-trigger-btn:active {
    transform: scale(0.95);
  }
  
  .mobile-filter-drawer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 2px solid var(--border-color);
    border-radius: 30px 30px 0 0;
    z-index: 1050;
    box-shadow: 0 -15px 40px rgba(45, 31, 29, 0.15);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 80vh;
    overflow-y: auto;
    padding: 25px;
  }
  
  .mobile-filter-drawer.active {
    transform: translateY(0);
  }
  
  .mobile-filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
  }
  
  .mobile-filter-drawer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
  }
  
  .mobile-filter-drawer-close {
    background: var(--primary-light);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-hover);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .mobile-filter-drawer-close:hover {
    background: var(--primary);
    color: white;
  }
  
  /* Hide desktop-only action items in header on mobile */
  .desktop-only-action {
    display: none !important;
  }
  
  /* Clean up logo layout on mobile so it never wraps */
  .brand-logo {
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }
  .logo-main {
    font-size: 1.15rem !important;
  }
  .logo-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.95rem !important;
  }
}

/* ==========================================================================
   RESPONSIVE PRODUCT DETAILED ACTIONS BLOCK
   ========================================================================== */
.product-actions-block {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
  align-items: flex-end;
}

.product-actions-row-top {
  display: contents; /* Default fallback for desktop so elements align in row */
}

.action-qty-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.action-btn-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.action-fav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.desktop-only-action-label {
  display: block;
}

@media (max-width: 767px) {
  .product-actions-block {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 15px !important;
  }
  
  .product-actions-row-top {
    display: flex !important;
    gap: 15px !important;
    align-items: flex-end !important;
    width: 100% !important;
  }
  
  .action-qty-wrapper {
    flex: 1 !important;
  }
  
  .action-fav-wrapper {
    flex: none !important;
  }
  
  .action-fav-wrapper .modal-wishlist-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .desktop-only-action-label {
    display: none !important;
  }
  
  .action-btn-wrapper .modal-add-btn {
    width: 100% !important;
    height: 50px !important;
    border-radius: 50px !important;
    margin-top: 0 !important;
    padding: 12px 20px !important;
  }
}

/* ==========================================================================
   LUXURY SIDEBAR TRUST BOX & GLITTER SHINE EFFECT
   ========================================================================== */
.sidebar-trust-box {
  margin-top: auto;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 240, 236, 0.6) 0%, rgba(255, 255, 255, 0.8) 100%) !important;
  border-radius: 16px;
  font-size: 0.78rem;
  border: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.sidebar-trust-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.6) 50%, transparent 55%);
  animation: shine-effect 5s infinite linear;
  pointer-events: none;
}

@keyframes shine-effect {
  0% { transform: translate(-30%, -30%) rotate(0deg); }
  100% { transform: translate(30%, 30%) rotate(0deg); }
}

/* ==========================================================================
   RESPONSIVE BODY PADDING & MAIN VIEWPORT SPACE
   ========================================================================== */
@media (max-width: 767px) {
  body {
    padding-bottom: 100px !important; /* Spacious bottom padding to ensure zero bottom nav overlap! */
  }
  
  #main-content-viewport {
    padding-top: 25px !important; /* Elegant top breathing margin below sticky header */
    padding-bottom: 80px !important;
  }

  /* Catalog toolbar mobile stacking layouts */
  .catalog-toolbar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 15px !important;
  }
  
  .sorting-wrapper {
    width: 100% !important;
    justify-content: space-between !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .sorting-select {
    flex: 1 !important;
    margin-left: 10px !important;
    text-align: right !important;
    padding: 6px 12px !important;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM HERO CAROUSEL NAVIGATIONS & CUSTOM CAROUSELS STYLING
   ========================================================================== */

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 121, 101, 0.2);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero-nav-arrow:hover {
  background: #E87965;
  color: white;
  border-color: #E87965;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 121, 101, 0.3);
}

.hero-nav-arrow.left {
  left: 20px;
}

.hero-nav-arrow.right {
  right: 20px;
}

@media (max-width: 767px) {
  .hero-nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .hero-nav-arrow.left {
    left: 10px;
  }
  .hero-nav-arrow.right {
    right: 10px;
  }
}

.occasion-slide-card img {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

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

/* Hide scrollbar on occasions slider container */
#occasions-scroll-view::-webkit-scrollbar {
  display: none !important;
}

#diaries-scroll-view::-webkit-scrollbar {
  display: none !important;
}

/* ==========================================================================
   PREMIUM PRODUCT VIDEO SPOTLIGHT REELS
   ========================================================================== */
.video-spotlight-section {
  width: 100%;
}

.spotlight-reels-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.spotlight-reel-card {
  width: 32%;
  min-width: 280px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(232, 121, 101, 0.08);
  transition: var(--transition);
}

.spotlight-reel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 121, 101, 0.2);
}

.reel-video-wrapper {
  height: 440px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
}

.reel-video-wrapper:hover .reel-overlay-play {
  opacity: 1;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%) scale(1.1);
}

.reel-duration {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 3;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255,255,255,0.1);
}

.reel-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 4;
}

.reel-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
  transition: width 0.1s linear;
}

.reel-product-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 25px;
  left: 15px;
  right: 15px;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-slow);
}

.spotlight-reel-card:hover .reel-product-card {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(232, 121, 101, 0.3);
  box-shadow: 0 15px 35px rgba(232, 121, 101, 0.15);
}

.reel-prod-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  flex-shrink: 0;
  transition: var(--transition);
}

.spotlight-reel-card:hover .reel-prod-img {
  transform: scale(1.05);
}

.reel-prod-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0; /* allows text truncation */
}

.reel-prod-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reel-price-stack {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.reel-price-act {
  color: var(--primary-hover);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.reel-price-mrp {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: line-through;
  font-family: 'Outfit', sans-serif;
}

.reel-add-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.reel-add-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .spotlight-reels-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 15px 5px 25px;
    justify-content: flex-start;
  }
  
  .spotlight-reels-container::-webkit-scrollbar {
    display: none;
  }
  
  .spotlight-reel-card {
    flex: 0 0 290px;
    scroll-snap-align: center;
  }
  
  .reel-video-wrapper {
    height: 400px;
  }
}

/* ==========================================================================
   TRUST TICKER STRIP DESIGN
   ========================================================================== */
.hero-ticker-bar {
  background: #111;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 0 24px 24px;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-top: -1px;
  z-index: 10;
  position: relative;
  line-height: 1.4;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-item i {
  color: #E87965;
  font-size: 0.85rem;
}

.ticker-separator {
  opacity: 0.25;
}

@media (max-width: 767px) {
  .hero-ticker-bar {
    padding: 12px 6px;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    border-radius: 0 0 16px 16px;
    line-height: 1.35;
  }
  
  .ticker-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
  }
  
  .ticker-item i {
    font-size: 0.95rem;
  }
  
  .ticker-separator {
    display: none;
  }
}

