/* ==========================================================================
   SWADESH BOSTRALOY — Luxury Bangladeshi Boutique E-Commerce
   9 No, Tulapotti Road, Boro Bazar, Khulna, Bangladesh
   Hotline: 01716212597 | WhatsApp: 01716212597
   ========================================================================== */

/* ==========================================================================
   1. OPULENT DESIGN SYSTEM & TOKENS
   ========================================================================== */
:root {
  /* Rich Royal Color Palette */
  --royal-maroon: #680E1E;
  --maroon-deep: #480612;
  --maroon-vibrant: #88162B;
  --maroon-soft: #FBF2F4;
  --maroon-glow: rgba(104, 14, 30, 0.28);

  --gold-antique: #C59B4B;
  --gold-metallic: #D8AD5E;
  --gold-bright: #F0C97F;
  --gold-deep: #966E26;
  --gold-champagne: #FAF5EB;
  --gold-border: rgba(197, 155, 75, 0.35);
  --gold-glow: rgba(197, 155, 75, 0.3);

  --rose-velvet: #C45A6D;
  --rose-soft: #F9ECEE;

  --charcoal-black: #181415;
  --charcoal-dark: #262022;
  --charcoal-mid: #423B3E;
  --text-muted-color: #6C6265;

  --ivory-warm: #FAF7F2;
  --ivory-pearl: #F6F1EA;
  --bg-white: #FFFFFF;

  --border-light: #ECE4DA;
  --border-delicate: #F2ECE4;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-bengali: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;

  /* Luxurious Multi-layered Shadows */
  --shadow-subtle: 0 2px 10px rgba(72, 6, 18, 0.04);
  --shadow-card: 0 4px 18px rgba(72, 6, 18, 0.06);
  --shadow-hover: 0 14px 35px rgba(72, 6, 18, 0.12);
  --shadow-gold-hover: 0 8px 26px rgba(197, 155, 75, 0.28);

  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --trans-smooth: 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
  --trans-slow: 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. GLOBAL RESETS & LUXURY BASE STYLING
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal-black);
  background-color: var(--ivory-warm);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0;
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 64px;
  }
}

h1, h2, h3, h4, h5, .font-serif {
  font-family: var(--font-serif);
  color: var(--charcoal-black);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bengali-text {
  font-family: var(--font-bengali);
}

a {
  color: var(--royal-maroon);
  text-decoration: none;
  transition: all var(--trans-fast);
}

a:hover {
  color: var(--gold-antique);
}

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

.text-gold {
  color: var(--gold-antique) !important;
}

.bg-maroon {
  background-color: var(--royal-maroon) !important;
  color: #fff !important;
}

.bg-cream {
  background-color: var(--ivory-warm) !important;
}

.extra-small {
  font-size: 0.76rem !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: var(--ivory-warm);
}
::-webkit-scrollbar-thumb {
  background: #D8CBC0;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-antique);
}

/* ==========================================================================
   3. PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background-color: #FFFFFF;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  max-width: 320px;
}

.preloader-logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.preloader-spinner-bar {
  width: 140px;
  height: 3px;
  background: var(--border-light);
  border-radius: 4px;
  margin: 12px auto;
  overflow: hidden;
  position: relative;
}

.preloader-spinner-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--gold-antique), var(--royal-maroon));
  animation: preloaderMove 1.2s infinite ease-in-out;
  border-radius: 4px;
}

@keyframes preloaderMove {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ==========================================================================
   4. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background: var(--charcoal-black);
  color: #F8F3ED;
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(197, 155, 75, 0.25);
}

.announcement-item i {
  color: var(--gold-bright);
}

.announcement-link {
  color: #F8F3ED;
  text-decoration: none;
  transition: color var(--trans-fast);
}

.announcement-link:hover {
  color: var(--gold-bright);
}

.top-bar-divider {
  opacity: 0.35;
  margin: 0 10px;
}

/* ==========================================================================
   5. MAIN HEADER (Clean, Luminous, Premium)
   ========================================================================== */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 3px 16px rgba(72, 6, 18, 0.03);
  transition: all var(--trans-smooth);
}

.site-header.scrolled {
  box-shadow: 0 6px 25px rgba(72, 6, 18, 0.08);
}

.brand-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: transform var(--trans-smooth);
}

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

.brand-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--royal-maroon);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted-color);
  letter-spacing: 0.05em;
}

/* Search Bar */
.header-search-form {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.search-input-group {
  background: var(--ivory-warm);
  border: 1.5px solid var(--border-light);
  border-radius: 30px;
  padding: 4px 6px 4px 18px;
  display: flex;
  align-items: center;
  transition: all var(--trans-fast);
}

.search-input-group:focus-within {
  border-color: var(--royal-maroon);
  background: #FFFFFF;
  box-shadow: 0 0 0 3.5px rgba(104, 14, 30, 0.1);
}

.search-input-group input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  width: 100%;
  color: var(--charcoal-black);
}

.search-input-group input::placeholder {
  color: #9E9497;
}

.btn-search-submit {
  background: var(--royal-maroon);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.btn-search-submit:hover {
  background: var(--maroon-deep);
  transform: scale(1.05);
}

/* Live Search Dropdown */
.search-live-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-light);
  z-index: 1050;
  display: none;
  max-height: 420px;
  overflow-y: auto;
}

.search-live-dropdown.active {
  display: block;
}

.search-result-item {
  cursor: pointer;
  transition: background-color var(--trans-fast);
}

.search-result-item:hover {
  background-color: var(--ivory-warm);
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-action-btn {
  background: transparent;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--charcoal-black);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--trans-fast);
  text-decoration: none;
}

.header-action-btn:hover {
  color: var(--royal-maroon);
  background: var(--ivory-warm);
}

.header-action-btn i {
  font-size: 1.35rem;
}

.action-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--royal-maroon);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.action-badge.wishlist-badge {
  background: var(--rose-velvet);
}

.cart-action-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.cart-label {
  font-size: 0.7rem;
  color: var(--text-muted-color);
}

.cart-amount {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--royal-maroon);
}

.header-hotline-btn {
  background: var(--gold-champagne);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 6px 15px;
  color: var(--maroon-deep);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--trans-fast);
}

.header-hotline-btn:hover {
  background: var(--royal-maroon);
  color: #fff;
  border-color: var(--royal-maroon);
}

/* ==========================================================================
   6. NAVIGATION BAR
   ========================================================================== */
.site-navigation-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}

.main-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-item {
  position: relative;
}

.main-nav-link {
  display: inline-block;
  padding: 13px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-black);
  text-decoration: none;
  transition: all var(--trans-fast);
  position: relative;
}

.main-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--royal-maroon);
  transition: all var(--trans-smooth);
  transform: translateX(-50%);
}

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

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

.nav-badge-pill {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
  vertical-align: middle;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-sale {
  background: var(--royal-maroon);
  color: #fff;
}

.badge-new-pill {
  background: var(--gold-antique);
  color: #fff;
}

.main-nav-item .dropdown-menu {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  padding: 10px;
  margin-top: 2px;
  min-width: 220px;
  animation: fadeInDown 0.22s ease forwards;
}

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

.dropdown-item {
  font-size: 0.86rem;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--charcoal-black);
  transition: all var(--trans-fast);
}

.dropdown-item:hover {
  background-color: var(--ivory-warm);
  color: var(--royal-maroon);
  transform: translateX(4px);
}

/* ==========================================================================
   7. WORLD-CLASS LUXURY HERO SECTION (Swadesh Bostraloy Redesign)
   Strict 3-Color Palette: Royal Maroon (#680E1E), Off-White (#FAF7F2), Antique Gold (#C59B4B)
   ========================================================================== */
.worldclass-hero {
  position: relative;
  background: radial-gradient(ellipse at 80% 20%, rgba(197, 155, 75, 0.07) 0%, transparent 60%),
              linear-gradient(180deg, #FAF7F2 0%, #FFFDFB 60%, #F5EFEB 100%);
  padding: 56px 0 48px;
  border-bottom: 1px solid #ECE3D7;
  overflow: hidden;
}

/* 1. Single-Line Numerical Trust Badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(197, 155, 75, 0.4);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #680E1E;
  box-shadow: 0 2px 10px rgba(104, 14, 30, 0.04);
  margin-bottom: 1.25rem;
}

.hero-trust-badge .badge-star {
  color: #C59B4B;
  font-size: 0.9rem;
}

/* 2. Specific Powerful Headline (Decorative/Serif font) */
.hero-main-heading {
  font-family: 'Noto Serif Bengali', 'Playfair Display', serif;
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1E1B18;
  margin-bottom: 1.2rem;
  letter-spacing: -0.015em;
}

.hero-heading-highlight {
  color: #680E1E;
  position: relative;
  display: inline-block;
}

/* 3. Emotional Single-Sentence Supporting Line (Clean sans-serif) */
.hero-supporting-copy {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #585049;
  max-width: 540px;
  margin-bottom: 2rem;
}

/* 4. Dual Call To Action Buttons (Brand Colors Strictly) */
.hero-cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero-btn-primary {
  background: #680E1E;
  color: #FFFFFF !important;
  border: 1.5px solid #680E1E;
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(104, 14, 30, 0.24);
  transition: all 0.28s ease;
  text-decoration: none;
}

.hero-btn-primary:hover {
  background: #4A0813;
  border-color: #C59B4B;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(104, 14, 30, 0.32);
}

.hero-btn-whatsapp {
  background: #FFFFFF;
  color: #680E1E !important;
  border: 1.5px solid #680E1E;
  border-radius: 50px;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.28s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-btn-whatsapp i {
  font-size: 1.15rem;
  color: #680E1E;
  transition: color 0.2s ease;
}

.hero-btn-whatsapp:hover {
  background: #FAF7F2;
  border-color: #C59B4B;
  color: #680E1E !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(104, 14, 30, 0.12);
}

/* 5. Single Trust Strip (Only Once, 3 Clean Icons) */
.hero-trust-strip {
  border-top: 1px solid #EADBCC;
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-strip-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FAF2E6;
  color: #C59B4B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-strip-text {
  font-size: 0.78rem;
  line-height: 1.25;
  color: #665E57;
}

.trust-strip-text strong {
  display: block;
  font-size: 0.86rem;
  color: #1E1B18;
  font-weight: 700;
  margin-bottom: 1px;
}

/* 6. Right Visual Showcase: Authentic Model Portrait */
.hero-visual-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-portrait-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #FFFFFF;
  border: 4px solid #FFFFFF;
  box-shadow: 0 20px 48px rgba(104, 14, 30, 0.12);
}

.portrait-img-box {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.portrait-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.hero-portrait-card:hover .portrait-main-img {
  transform: scale(1.03);
}

.portrait-floating-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid rgba(197, 155, 75, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
  color: #680E1E;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.tag-gold-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C59B4B;
  display: inline-block;
}

/* Fast Hero Product Showcase Slider */
#heroFastSlider {
  position: relative;
  width: 100%;
}

#heroFastSlider .carousel-item {
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
}

.hero-slider-dots {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: auto;
  left: auto;
  margin: 0;
  display: flex;
  gap: 5px;
  z-index: 10;
}

.hero-slider-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(104, 14, 30, 0.2);
  margin: 0;
  transition: all 0.25s ease;
  padding: 0;
}

.hero-slider-dots button.active {
  width: 20px;
  border-radius: 4px;
  background-color: var(--royal-maroon);
  border-color: var(--royal-maroon);
}

.hero-slider-nav {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.25s ease;
  border: 1px solid rgba(197, 155, 75, 0.35);
  z-index: 8;
}

.hero-portrait-card:hover .hero-slider-nav {
  opacity: 0.9;
}

.hero-slider-nav:hover {
  background: #FFFFFF;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 12px rgba(104, 14, 30, 0.18);
}

.hero-slider-nav .carousel-control-prev-icon,
.hero-slider-nav .carousel-control-next-icon {
  width: 14px;
  height: 14px;
  filter: invert(14%) sepia(85%) saturate(3015%) hue-rotate(334deg) brightness(85%) contrast(98%);
}

.hero-slider-nav.carousel-control-prev {
  left: 10px;
}

.hero-slider-nav.carousel-control-next {
  right: 10px;
}

/* 3 Mini Category Preview Cards Underneath */
.hero-mini-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-preview-card {
  background: #FFFFFF;
  border: 1px solid #ECE4D8;
  border-radius: 14px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.mini-preview-card:hover {
  border-color: #C59B4B;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(104, 14, 30, 0.08);
}

.mini-card-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #FAF7F2;
}

.mini-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card-info {
  min-width: 0;
  flex: 1;
}

.mini-card-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1E1B18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card-sub {
  display: block;
  font-size: 0.7rem;
  color: #7A726A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card-arrow {
  font-size: 0.72rem;
  color: #C59B4B;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.mini-preview-card:hover .mini-card-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   Responsive & Mobile-First (Above The Fold Guarantee)
   ========================================================================== */
@media (max-width: 1199px) {
  .hero-main-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .hero-main-heading {
    font-size: 2.3rem;
  }
  .portrait-img-box {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .hero-trust-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .worldclass-hero {
    padding: 22px 0 28px;
  }
  .hero-trust-badge {
    font-size: 0.74rem;
    padding: 4px 12px;
    margin-bottom: 0.75rem;
  }
  .hero-main-heading {
    font-size: 1.78rem;
    line-height: 1.25;
    margin-bottom: 0.65rem;
  }
  .hero-supporting-copy {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.15rem;
  }
  .hero-cta-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 1.35rem;
  }
  .hero-btn-primary,
  .hero-btn-whatsapp {
    flex: 1;
    padding: 11px 8px;
    font-size: 0.84rem;
    justify-content: center;
    gap: 6px;
  }
  .hero-portrait-card {
    margin-top: 6px;
  }
  .portrait-img-box {
    height: 280px;
  }
  .hero-mini-previews {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-trust-strip {
    margin-top: 1.25rem;
    padding-top: 1.2rem;
  }
}

/* ==========================================================================
   9. CATEGORIES SECTION (Capsule Cards with Luxury Gold Accents)
   ========================================================================== */
.categories-section {
  padding: 55px 0 35px;
}

.category-card {
  text-align: center;
  display: block;
  text-decoration: none;
  padding: 8px;
}

.category-img-box {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 2.5px solid var(--border-light);
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: all var(--trans-smooth);
}

@media (max-width: 576px) {
  .category-img-box {
    width: 84px;
    height: 84px;
  }
}

.category-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-smooth);
}

.category-card:hover .category-img-box {
  border-color: var(--royal-maroon);
  box-shadow: 0 8px 24px rgba(104, 14, 30, 0.22);
  transform: translateY(-5px);
}

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

.category-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal-black);
  margin-bottom: 2px;
  transition: color var(--trans-fast);
}

.category-card:hover .category-name {
  color: var(--royal-maroon);
}

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

.category-scroll-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.category-scroll-row::-webkit-scrollbar {
  display: none;
}

/* ==========================================================================
   10. SECTION HEADERS (Ornamental Luxury Flourish)
   ========================================================================== */
.section-header-wrap {
  margin-bottom: 38px;
  position: relative;
}

.section-subtitle-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--royal-maroon);
  font-weight: 800;
  display: inline-block;
  margin-bottom: 6px;
}

.section-main-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--charcoal-black);
  position: relative;
  display: inline-block;
}

@media (max-width: 576px) {
  .section-main-title {
    font-size: 1.7rem;
  }
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted-color);
  max-width: 620px;
  margin: 6px auto 0;
}

.section-gold-divider {
  width: 54px;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--gold-antique), transparent);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ==========================================================================
   11. PRODUCT CARDS (High-Fashion Boutique UI — Pixel-Perfect & Uncropped)
   ========================================================================== */
.product-grid-item {
  display: flex;
  margin-bottom: 24px;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid #ECE4DA;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: all var(--trans-smooth);
  box-shadow: 0 2px 10px rgba(72, 6, 18, 0.04);
  position: relative;
}

.product-card:hover {
  border-color: var(--gold-antique);
  box-shadow: 0 12px 30px rgba(104, 14, 30, 0.12);
  transform: translateY(-4px);
}

/* Image Container: Supports both .product-image-container and .product-image-wrapper */
.product-image-container,
.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 270px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

@media (max-width: 576px) {
  .product-image-container,
  .product-image-wrapper {
    height: 190px;
    padding: 6px;
  }
}

/* Primary and Secondary Product Images (Uncropped, Fully Visible) */
.product-image-container img,
.product-image-wrapper img,
.product-thumb-primary,
.product-thumb-secondary {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain !important; /* Preserves entire saree, pallu, model & packaging without cutoffs */
  object-position: center center;
  transition: transform 0.4s ease, opacity 0.3s ease;
  display: block;
}

.product-thumb-secondary,
.product-image-wrapper .secondary-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  padding: 8px;
}

.product-card:hover .product-thumb-primary,
.product-card:hover .product-image-wrapper .primary-img {
  transform: scale(1.05);
}

.product-card:hover .product-thumb-secondary,
.product-card:hover .product-image-wrapper .secondary-img {
  opacity: 1;
  transform: scale(1.05);
}

/* Badges: Supports both .product-badges-wrap and .badges-wrapper */
.product-badges-wrap,
.badges-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.product-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: inline-block;
  width: fit-content;
}

.badge-sale,
.badge-discount {
  background: var(--royal-maroon);
  color: #fff;
}

.badge-hot {
  background: var(--gold-antique);
  color: #fff;
}

.badge-new {
  background: #212529;
  color: #fff;
}

/* Wishlist Heart Button */
.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.06);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all var(--trans-fast);
}

.btn-wishlist:hover {
  background: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(104, 14, 30, 0.15);
}

.btn-wishlist i {
  font-size: 0.95rem;
  color: #6C6265;
  transition: color var(--trans-fast);
}

.btn-wishlist.active i,
.btn-wishlist i.text-danger {
  color: var(--royal-maroon) !important;
}

/* Quick Action Hover Bar */
.product-hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 8px 10px;
  display: flex;
  gap: 6px;
  transform: translateY(100%);
  transition: transform var(--trans-smooth);
  z-index: 6;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover .product-hover-actions {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .product-hover-actions {
    display: none;
  }
}

.btn-quick-view {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--charcoal-black);
  border-radius: 6px;
  padding: 5px 8px;
  transition: all var(--trans-fast);
}

.btn-quick-view:hover {
  background: var(--ivory-warm);
  color: var(--royal-maroon);
}

.btn-quick-cart {
  flex: 1;
  background: var(--royal-maroon);
  color: #fff;
  border: 1px solid var(--royal-maroon);
  font-size: 0.74rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 5px 8px;
  transition: all var(--trans-fast);
}

.btn-quick-cart:hover {
  background: var(--maroon-deep);
  color: #fff;
}

/* Product Info Container */
.product-info-wrapper {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #FFFFFF;
}

@media (max-width: 576px) {
  .product-info-wrapper {
    padding: 8px 10px 10px;
  }
}

.product-category {
  font-size: 0.72rem;
  color: #8C827A;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

@media (max-width: 576px) {
  .product-title {
    font-size: 0.8rem;
    height: 2.7em;
  }
}

.product-title a {
  color: var(--charcoal-black);
  text-decoration: none;
}

.product-title a:hover {
  color: var(--royal-maroon);
}

.product-rating {
  font-size: 0.78rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.product-rating .stars {
  letter-spacing: 1px;
  color: #E5A93C;
}

.product-price-row {
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px dashed #F0E8DF;
}

.current-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--royal-maroon);
}

@media (max-width: 576px) {
  .current-price {
    font-size: 0.92rem;
  }
}

.old-price {
  font-size: 0.78rem;
  color: #9C948D;
}

.btn-add-cart-icon {
  background: var(--ivory-warm);
  border: 1px solid var(--border-light);
  color: var(--royal-maroon);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.btn-add-cart-icon:hover {
  background: var(--royal-maroon);
  color: #fff;
  border-color: var(--royal-maroon);
  transform: scale(1.08);
}

/* ==========================================================================
   12. FLASH SALE SECTION (Wine Velvet with Gold Metallic Styling & Countdown)
   ========================================================================== */
.flash-sale-section {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, #2D040A 100%);
  color: #FFFFFF;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.flash-sale-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 155, 75, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.flash-sale-section h2 {
  color: #FFFFFF !important;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.flash-sale-section p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem;
}

/* Countdown Live Timer Box */
.countdown-box {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.timer-unit {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(216, 173, 94, 0.5);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 68px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.timer-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  font-family: var(--font-sans);
}

.timer-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #F0E8EB;
  margin-top: 4px;
  font-family: var(--font-bengali);
}

.timer-separator {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

@media (max-width: 576px) {
  .flash-sale-section {
    padding: 38px 0;
  }
  .flash-sale-section h2 {
    font-size: 1.8rem;
  }
  .timer-unit {
    min-width: 56px;
    padding: 6px 10px;
  }
  .timer-number {
    font-size: 1.35rem;
  }
  .timer-label {
    font-size: 0.65rem;
  }
}

.flash-sale-col {
  display: flex;
  margin-bottom: 16px;
}

.flash-product-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  color: var(--charcoal-black);
  transition: transform var(--trans-fast);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.flash-product-card:hover {
  transform: translateY(-4px);
}

.flash-img-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.flash-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;
  transition: transform var(--trans-fast);
}

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

.flash-discount-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--royal-maroon);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 4;
}

/* ==========================================================================
   13. DEDICATED EDITORIAL BANNERS
   ========================================================================== */
.editorial-hero-banner {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 44px;
  box-shadow: var(--shadow-card);
  margin-bottom: 35px;
}

.editorial-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 8, 12, 0.88) 0%, rgba(24, 8, 12, 0.45) 60%, transparent 100%);
}

.editorial-banner-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  color: #FFFFFF;
}

.editorial-tag {
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 10px 0 16px;
  line-height: 1.2;
}

.full-promo-banner {
  background: linear-gradient(rgba(24, 8, 12, 0.82), rgba(24, 8, 12, 0.82)), url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1600&auto=format&fit=crop&q=80') center center / cover no-repeat;
  color: #FFFFFF;
  padding: 95px 0;
  text-align: center;
  position: relative;
}

.full-promo-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

@media (max-width: 576px) {
  .full-promo-title {
    font-size: 2.1rem;
  }
}

/* ==========================================================================
   14. CATALOG EXPLORER & FILTERS
   ========================================================================== */
.catalog-filters-bar {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-subtle);
}

.catalog-cat-pill {
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--charcoal-black);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  cursor: pointer;
  transition: all var(--trans-fast);
  white-space: nowrap;
}

.catalog-cat-pill:hover, .catalog-cat-pill.active {
  background: var(--royal-maroon);
  color: #fff;
  border-color: var(--royal-maroon);
}

.form-select-custom {
  font-size: 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 14px;
}

/* ==========================================================================
   15. FEATURE CARDS (Why Shop With Us)
   ========================================================================== */
.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: all var(--trans-smooth);
}

.feature-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.feature-icon-box {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gold-champagne);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin: 0 auto 16px;
  transition: all var(--trans-fast);
}

.feature-card:hover .feature-icon-box {
  background: var(--royal-maroon);
  color: #fff;
}

/* ==========================================================================
   16. CUSTOMER REVIEWS
   ========================================================================== */
.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold-antique);
}

.review-stars {
  color: #F4A261;
  font-size: 1.15rem;
}

.review-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal-dark);
  line-height: 1.7;
}

/* ==========================================================================
   17. INSTAGRAM & SOCIAL GALLERY
   ========================================================================== */
.insta-grid-col {
  padding: 4px;
}

.insta-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  padding-top: 100%;
}

.insta-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-smooth);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(104, 14, 30, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.insta-card:hover img {
  transform: scale(1.1);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

/* ==========================================================================
   18. NEWSLETTER SECTION
   ========================================================================== */
.newsletter-section {
  background: #F4EFEA;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 65px 0;
}

.newsletter-form-group {
  display: flex;
  max-width: 520px;
  margin: 20px auto 0;
  box-shadow: var(--shadow-subtle);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
}

.newsletter-form-group input {
  border: none;
  padding: 13px 22px;
  width: 100%;
  outline: none;
  font-size: 0.9rem;
}

.newsletter-form-group button {
  background: var(--royal-maroon);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--trans-fast);
}

.newsletter-form-group button:hover {
  background: var(--maroon-deep);
}

/* ==========================================================================
   19. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--charcoal-black);
  color: #D3CAC5;
  padding-top: 75px;
  font-size: 0.88rem;
}

.footer-brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  background: #fff;
  padding: 4px 8px;
  border-radius: 8px;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

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

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

.footer-links-list a {
  color: #B5ABA6;
  text-decoration: none;
  transition: all var(--trans-fast);
  display: inline-block;
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--gold-antique);
  font-size: 1.15rem;
  margin-top: 2px;
}

.social-links-wrap {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--trans-fast);
}

.social-icon-btn:hover {
  background: var(--royal-maroon);
  color: #fff;
  transform: translateY(-2px);
}

.footer-payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #E2D9D5;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  margin-top: 55px;
  font-size: 0.8rem;
  color: #9E9490;
}

/* ==========================================================================
   20. BUTTONS & UI CONTROLS
   ========================================================================== */
.btn-gold {
  background: var(--gold-antique);
  color: #FFFFFF !important;
  border: 1.5px solid var(--gold-antique);
  border-radius: 30px;
  font-weight: 700;
  padding: 10px 24px;
  transition: all var(--trans-smooth);
  box-shadow: var(--shadow-gold-hover);
}

.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-bright) !important;
  border: 1.5px solid var(--gold-antique);
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 24px;
  transition: all var(--trans-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold-antique);
  color: #FFFFFF !important;
}

.btn-maroon {
  background-color: var(--royal-maroon);
  color: #FFFFFF !important;
  border: 1.5px solid var(--royal-maroon);
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 24px;
  transition: all var(--trans-smooth);
  box-shadow: 0 4px 14px rgba(104, 14, 30, 0.22);
}

.btn-maroon:hover {
  background-color: var(--maroon-deep);
  border-color: var(--maroon-deep);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(104, 14, 30, 0.32);
}

/* ==========================================================================
   21. TOAST NOTIFICATIONS & FLOATING BUTTONS
   ========================================================================== */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}

.custom-toast {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
  border-left: 5px solid var(--royal-maroon);
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-toast.toast-info {
  border-left-color: #0D6EFD;
}

.custom-toast.toast-error {
  border-left-color: #DC3545;
}

.custom-toast.fade-out {
  opacity: 0;
  transform: translateX(50px);
}

.animate-slide-in {
  animation: slideInToast 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.floating-actions-container {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (max-width: 767.98px) {
  .floating-actions-container {
    bottom: 76px;
    right: 14px;
  }
}

.btn-float {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: all var(--trans-smooth);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.btn-float:hover {
  transform: scale(1.1);
  color: #fff;
}

.btn-float-whatsapp {
  background-color: #25D366;
  animation: pulseWhatsApp 2.5s infinite;
}

@keyframes pulseWhatsApp {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7); }
}

.btn-float-phone {
  background-color: var(--royal-maroon);
}

.btn-back-to-top {
  background-color: var(--charcoal-black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--trans-fast);
}

.btn-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Sticky Bottom Nav */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  z-index: 1025;
}

@media (max-width: 767.98px) {
  .mobile-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-mid);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  position: relative;
  padding: 4px 8px;
  transition: color var(--trans-fast);
  background: none;
  border: none;
}

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

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

/* Modals & Invoice */
.modal-content {
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.modal-header, .offcanvas-header {
  border-bottom: 1px solid var(--border-light);
  background: var(--ivory-warm);
  padding: 16px 24px;
}

.quick-view-main-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #F8F5F1;
  position: relative;
  padding-top: 125%;
}

.quick-view-main-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-thumbs-wrap {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.quick-thumb {
  width: 62px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans-fast);
}

.quick-thumb.active, .quick-thumb:hover {
  border-color: var(--royal-maroon);
}

.size-pill {
  border-radius: 20px;
  font-size: 0.82rem;
  padding: 4px 14px;
}

.size-pill.active {
  background: var(--royal-maroon);
  color: #fff;
  border-color: var(--royal-maroon);
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 2px solid #fff;
  outline: 1px solid var(--border-light);
  transition: transform var(--trans-fast);
}

.color-dot.active {
  outline: 2px solid var(--royal-maroon);
  transform: scale(1.15);
}

.invoice-box {
  background: var(--ivory-warm);
  border: 1px dashed var(--border-light);
  border-radius: 12px;
  padding: 20px;
}
