/* ==========================================================================
   HM EXCLUSIVE BD - Luxury Fashion E-Commerce Design System
   Bangladeshi Premium Boutique: Shari, Three-Piece & Festive Wear
   ========================================================================== */

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

:root {
  --primary-maroon: #7A0C2E;
  --primary-dark: #450619;
  --primary-light: #9B1A40;
  --gold-accent: #D4AF37;
  --gold-light: #F7EFD2;
  --gold-dark: #A68015;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E8BA 50%, #B8860B 100%);
  --maroon-gradient: linear-gradient(135deg, #7A0C2E 0%, #450619 100%);
  --dark-bg: #121214;
  --surface-light: #FAF8F5;
  --card-bg: #FFFFFF;
  --text-main: #1C1917;
  --text-muted: #6B7280;
  --border-light: #E5E0D8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(122, 12, 46, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--surface-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-dark);
}

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

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

/* Luxury Utilities */
.text-gold {
  color: var(--gold-accent) !important;
}

.bg-gold {
  background-color: var(--gold-accent) !important;
}

.text-maroon {
  color: var(--primary-maroon) !important;
}

.bg-maroon {
  background-color: var(--primary-maroon) !important;
}

.bg-maroon-gradient {
  background: var(--maroon-gradient) !important;
}

.gold-badge {
  background: var(--gold-gradient);
  color: #2D1E00;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

/* Announcement Bar */
.top-bar {
  background: #111113;
  color: #FAF8F5;
  font-size: 0.82rem;
  padding: 8px 0;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar-marquee {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Main Navbar */
.main-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1020;
}

.main-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

.brand-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-maroon);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo .brand-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 3px;
}

.nav-link-custom {
  font-weight: 600;
  font-size: 0.92rem;
  color: #333;
  padding: 8px 14px;
  letter-spacing: 0.2px;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary-maroon);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: var(--transition);
}

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

/* Luxury Mega Menu for Categories */
.dropdown-mega {
  position: static !important;
}

@media (min-width: 992px) {
  .dropdown-mega {
    position: relative !important;
  }

  .dropdown-menu-mega {
    width: 760px;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px);
    border-top: 3px solid var(--gold-accent) !important;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(122, 12, 46, 0.15) !important;
    padding: 1.5rem !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block !important;
    pointer-events: none;
  }

  .dropdown-mega:hover .dropdown-menu-mega,
  .dropdown-mega .dropdown-menu-mega.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

.mega-menu-title {
  font-size: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 12px;
}

.mega-menu-list li {
  margin-bottom: 8px;
}

.mega-menu-list a {
  font-size: 0.88rem;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 4px 0;
}

.mega-menu-list a:hover {
  color: var(--primary-maroon);
  transform: translateX(4px);
  font-weight: 600;
}

.mega-menu-featured {
  background: var(--maroon-gradient);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.mega-menu-featured:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.nav-action-btn {
  background: transparent;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary-maroon);
  position: relative;
  transition: var(--transition);
}

.nav-action-btn:hover {
  background: var(--gold-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.nav-badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--primary-maroon);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Search Dropdown / Bar */
.search-input-group {
  position: relative;
  width: 260px;
}

.search-input-group input {
  background: #F4F1EA;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 8px 16px 8px 38px;
  font-size: 0.88rem;
  width: 100%;
  transition: var(--transition);
}

.search-input-group input:focus {
  background: #fff;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  outline: none;
}

.search-input-group .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Floating Real-Time Live Search Suggestions Dropdown */
.search-wrapper-relative {
  position: relative;
}

.search-live-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 320px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
  z-index: 1050;
  overflow: hidden;
  animation: dropdownFade 0.2s ease forwards;
}

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

.search-suggest-item {
  transition: var(--transition);
}

.search-suggest-item:hover {
  background: #FDF9EE;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hero Carousel */
.hero-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
}

.hero-slide-item {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 20, 0.85) 0%, rgba(18, 18, 20, 0.45) 60%, rgba(18, 18, 20, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 620px;
  padding: 3rem 1.5rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
}

.btn-luxury-primary {
  background: var(--gold-gradient);
  color: #241A04;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
  transition: var(--transition);
}

.btn-luxury-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.5);
  color: #000;
}

.btn-luxury-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-luxury-outline:hover {
  background: #fff;
  color: var(--primary-maroon);
  border-color: #fff;
}

/* Feature Badges Bar */
.features-bar {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-light);
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper {
  background: var(--primary-maroon);
  color: #fff;
  transform: rotate(6deg) scale(1.05);
}

.feature-box h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--primary-dark);
}

.feature-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--primary-dark);
  font-weight: 700;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.section-divider .line {
  width: 40px;
  height: 1.5px;
  background: var(--gold-accent);
}

.section-divider i {
  color: var(--gold-accent);
  font-size: 0.85rem;
}

/* Category Cards */
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  height: 280px;
}

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

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 18, 20, 0.88) 0%, rgba(18, 18, 20, 0.3) 60%, rgba(18, 18, 20, 0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}

.category-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.category-card-count {
  font-size: 0.85rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Flash Sale Card */
.flash-sale-banner {
  background: var(--maroon-gradient);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 4rem;
}

.flash-sale-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
}

.countdown-box {
  display: flex;
  gap: 12px;
  margin: 1.5rem 0;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 68px;
  text-align: center;
}

.countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E2E8F0;
  margin-top: 4px;
}

/* Filter Nav Tabs */
.filter-tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.filter-tab-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  color: #4A4A4A;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab-btn:hover,
.filter-tab-btn.active {
  background: var(--primary-maroon);
  color: #fff;
  border-color: var(--primary-maroon);
  box-shadow: 0 4px 14px rgba(122, 12, 46, 0.25);
}

/* Product Card */
.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.5);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #F6F3EE;
}

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

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

.product-badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

.product-badge-tag.bestseller {
  background: var(--gold-gradient);
  color: #2D1E00;
}

.product-badge-tag.new {
  background: #047857;
  color: #fff;
}

.product-badge-tag.exclusive {
  background: var(--maroon-gradient);
  color: #fff;
  border: 1px solid var(--gold-accent);
}

.product-badge-tag.discount {
  background: #BE123C;
  color: #fff;
}

.product-badge-tag.trending {
  background: #D97706;
  color: #fff;
}

/* Quick Action Overlay */
.product-actions-bar {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  transition: var(--transition);
  z-index: 3;
}

.product-card:hover .product-actions-bar {
  bottom: 0;
}

.btn-action-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-action-icon:hover {
  background: var(--primary-maroon);
  color: #fff;
  border-color: var(--primary-maroon);
  transform: scale(1.1);
}

.btn-action-icon.active {
  background: #BE123C;
  color: #fff;
  border-color: #BE123C;
}

/* Product Info */
.product-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #F59E0B;
  margin-bottom: 10px;
}

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

.product-price-box {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-current-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-maroon);
}

.product-old-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.btn-card-add {
  margin-top: 12px;
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-card-add:hover {
  background: var(--primary-maroon);
  color: #fff;
  border-color: var(--primary-maroon);
}

/* Quick View Modal Details */
.modal-luxury .modal-content {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-luxury .modal-header {
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 1.75rem;
  background: #FAF8F5;
}

.quickview-gallery-main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #F3EEE7;
  cursor: crosshair;
}

.quickview-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s ease-out;
  pointer-events: none;
  transform-origin: center center;
}

.zoom-hint-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(30, 41, 59, 0.75);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  pointer-events: none;
  backdrop-filter: blur(6px);
  z-index: 2;
  transition: opacity 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.quickview-gallery-main:hover .zoom-hint-badge {
  opacity: 0.15;
}

.quickview-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.quickview-thumb-item {
  width: 65px;
  height: 75px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.quickview-thumb-item.active {
  border-color: var(--primary-maroon);
  box-shadow: 0 0 0 2px rgba(128, 0, 32, 0.3);
}

.quickview-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.size-selector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.size-chip {
  padding: 6px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
}

.size-chip:hover,
.size-chip.active {
  border-color: var(--primary-maroon);
  background: var(--primary-maroon);
  color: #fff;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 36px;
  height: 38px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-maroon);
  cursor: pointer;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--surface-light);
}

.qty-input {
  width: 44px;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  outline: none;
}

/* Offcanvas Cart & Wishlist */
.offcanvas-luxury {
  width: 420px !important;
  max-width: 90vw;
  background: #FFFFFF;
}

.offcanvas-luxury .offcanvas-header {
  border-bottom: 1px solid var(--border-light);
  background: #FAF8F5;
  padding: 1.25rem 1.5rem;
}

.shipping-progress-container {
  background: #FDF9EE;
  border: 1px solid #F3E5AB;
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 1rem;
}

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

.shipping-progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  transition: width 0.4s ease;
}

.cart-item-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.cart-item-img {
  width: 75px;
  height: 95px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #F6F3EE;
}

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

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary-maroon);
  font-size: 0.95rem;
}

.cart-item-del-btn {
  background: transparent;
  border: none;
  color: #9CA3AF;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-item-del-btn:hover {
  color: #DC2626;
}

/* WhatsApp Floating CTA */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 85px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRipple 2s infinite;
}

@keyframes pulseRipple {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
  padding: 8px 16px;
  z-index: 1015;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #555;
  font-size: 0.72rem;
  font-weight: 600;
  position: relative;
}

.mobile-nav-item i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--primary-maroon);
}

/* Footer Styling */
.main-footer {
  background: #121214;
  color: #E2E8F0;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 2px solid var(--gold-dark);
  margin-top: 5rem;
}

.footer-brand-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: #A0AEC0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #FFF;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-accent);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #CBD5E1;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.payment-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.payment-badge {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #1F2937;
  border: 1px solid #CBD5E1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.payment-badge.bkash { color: #DF146E; }
.payment-badge.nagad { color: #E41B23; }
.payment-badge.rocket { color: #8A2BE2; }

/* Testimonials Carousel Cards */
.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-accent);
}

/* Toast Notifications */
.luxury-toast {
  background: #FFFFFF;
  border-left: 4px solid var(--primary-maroon);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  padding: 12px 18px;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
  .hero-slide-item {
    min-height: 440px;
  }
  .features-bar {
    margin-top: 1.5rem;
  }
  .search-input-group {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 65px;
  }
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
  }
  .hero-slide-item {
    min-height: 380px;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .offcanvas-luxury {
    width: 100% !important;
  }
  .floating-whatsapp-btn {
    bottom: 75px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  /* Filter Tabs Horizontal Scroll on Mobile */
  .filter-tabs-wrapper {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 8px;
    justify-content: flex-start;
  }
  .filter-tab-btn {
    white-space: nowrap;
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  /* 2-Column Product Cards on Mobile */
  .product-card {
    border-radius: var(--radius-sm);
  }
  .product-body {
    padding: 10px;
  }
  .product-title {
    font-size: 0.85rem;
    height: 38px;
  }
  .product-current-price {
    font-size: 1rem;
  }
  .btn-card-add {
    padding: 6px 8px;
    font-size: 0.8rem;
  }

  /* Mobile Search Dropdown */
  .search-live-dropdown {
    width: 100% !important;
  }

  /* Countdown box */
  .countdown-box {
    gap: 8px;
  }
  .countdown-item {
    min-width: 55px;
    padding: 6px;
  }
  .countdown-number {
    font-size: 1.25rem;
  }
}
