/* ==========================================================================
   NAHANNOTE BOUTIQUE - MASTER STYLESHEET (MVP V1)
   Brand: Nahannote Boutique (নহন্যতে বুটিক)
   Color System: Deep Violet (#380641) | Premium Gold (#D4A017) | Cream (#FFF8E8) | Pink (#D81B60)
   Typography: Playfair Display | Noto Serif Bengali | Poppins
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
  --primary: #380641;
  --primary-light: #520f5f;
  --primary-dark: #24022a;
  --primary-rgb: 56, 6, 65;

  --secondary: #F4C430;
  --secondary-light: #FFF0A5;
  --secondary-dark: #C69206;
  --secondary-rgb: 244, 196, 48;

  --bg-cream: #FFF8E8;
  --bg-cream-card: #FFFCF2;
  --bg-cream-alt: #F7ECD2;

  --accent-pink: #D81B60;
  --accent-pink-hover: #B7134F;
  --whatsapp-green: #128C7E;
  --whatsapp-green-dark: #075E54;

  --text-dark: #2B1B2D;
  --text-muted: #6C5670;
  --text-light: #FFF8E8;

  --border-gold: rgba(244, 196, 48, 0.35);
  --border-gold-strong: #F4C430;

  --shadow-sm: 0 2px 8px rgba(56, 6, 65, 0.06);
  --shadow-md: 0 6px 20px rgba(56, 6, 65, 0.09);
  --shadow-lg: 0 12px 35px rgba(56, 6, 65, 0.14);
  --shadow-gold: 0 4px 20px rgba(244, 196, 48, 0.35);

  --font-heading: 'Lato', Arial, sans-serif;
  --font-bengali: 'Hind Siliguri', 'Nirmala UI', sans-serif;
  --font-body: 'Lato', Arial, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --container-max: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 0.95rem;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Smooth Page Fade-In Transition */
@keyframes pageFadeIn {
  0% {
    opacity: 0.15;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  flex: 1 0 auto;
  animation: pageFadeIn 0.35s ease-out;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw + 0.8rem, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2vw + 0.5rem, 1.8rem); }
h4 { font-size: 1.25rem; }

.font-bengali, [lang="bn"], .text-bn {
  font-family: var(--font-bengali) !important;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

a:hover {
  color: var(--secondary-dark);
}

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

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-cream-alt);
}

.section-dark {
  background-color: var(--primary);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--bg-cream);
}

.section-dark p {
  color: #E8D8EE;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-subtitle {
  display: inline-block;
  font-size: clamp(0.72rem, 2.2vw, 0.84rem);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--secondary-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: rgba(244, 196, 48, 0.14);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  max-width: 95%;
  line-height: 1.35;
  text-align: center;
}

.section-dark .section-subtitle {
  color: var(--secondary);
  background: rgba(244, 196, 48, 0.15);
}

.section-title {
  margin-bottom: 0.75rem;
  position: relative;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0.75rem auto 1.25rem auto;
}

.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  width: 50px;
  background: var(--secondary);
}

.section-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  transform: rotate(45deg);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-cream);
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  color: #FFFFFF;
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary-dark);
  font-weight: 700;
}

.btn-secondary:hover {
  background-color: #E5B620;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-cream);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--secondary-dark);
  border-color: var(--secondary);
}

.btn-outline-gold:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-whatsapp {
  background-color: #128C7E;
  color: #FFFFFF;
  border-color: #0E6B5F;
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.28);
}

.btn-whatsapp:hover {
  background-color: #075E54;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 94, 84, 0.45);
}

.btn-accent {
  background-color: var(--accent-pink);
  color: #FFFFFF;
}

.btn-accent:hover {
  background-color: var(--accent-pink-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
/* Announcement Topbar */
.header-topbar {
  background: var(--primary-dark);
  color: var(--bg-cream);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
}

.header-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-light);
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-link {
  color: var(--bg-cream);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-link:hover {
  color: var(--secondary);
}

/* Main Header Navbar */
.site-header {
  background-color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--secondary);
  box-shadow: 0 4px 20px rgba(36, 2, 42, 0.18);
  transition: all var(--transition-normal);
}

.site-header.is-scrolled {
  padding: 0.2rem 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
}

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

.nav-link {
  color: var(--bg-cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--primary);
  border-left: 2px solid var(--secondary);
  z-index: 1060;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transition: right var(--transition-normal);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
}

.mobile-drawer.is-active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mobile-nav-links .nav-link {
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.mobile-drawer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #2D0335 0%, #380641 55%, #4C0959 100%);
  color: var(--bg-cream);
  padding: 4rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.12) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(216, 27, 96, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

/* Gravity Float Keyframes */
@keyframes heroGravityFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.6deg);
  }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-intro-text {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.hero-title {
  color: var(--bg-cream);
  margin-bottom: 0.5rem;
  font-size: clamp(2.2rem, 5vw + 0.5rem, 3.5rem);
}

.hero-title span {
  color: var(--secondary);
}

.hero-subtitle-bn {
  font-size: clamp(1.2rem, 2.5vw + 0.2rem, 1.8rem);
  color: var(--secondary-light);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.hero-desc {
  font-size: 1.05rem;
  color: #EBDCEF;
  max-width: 540px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #F0E3F4;
}

.hero-feature-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero-visual-frame {
  position: relative;
  max-width: 490px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D Glowing Shape Passing Perfectly Through Center of Image */
.hero-visual-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84%;
  height: 78%;
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.28) 0%, rgba(216, 27, 96, 0.32) 100%);
  border: 2px solid rgba(244, 196, 48, 0.5);
  border-radius: 30px;
  box-shadow: 0 0 50px rgba(244, 196, 48, 0.4), 0 0 80px rgba(216, 27, 96, 0.3);
  z-index: 1;
  pointer-events: none;
}

/* 3D Popping Model Image with drop-shadow */
.hero-visual-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 25px rgba(244, 196, 48, 0.3));
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
  display: block;
}

/* Hover Interactive Gravity Floating Animation */
.hero-visual-frame:hover {
  animation: heroGravityFloat 3.5s ease-in-out infinite;
}

.hero-visual-frame:hover img {
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 35px rgba(244, 196, 48, 0.45));
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   7. BRAND INTRO & STORY
   -------------------------------------------------------------------------- */
.brand-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.brand-intro-image {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.brand-intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px dashed var(--secondary);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(244, 196, 48, 0.2);
  display: block;
}

.brand-intro-badge .badge-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.brand-intro-badge .badge-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.brand-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  border-left: 3px solid var(--secondary);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.proprietor-signature {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proprietor-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.proprietor-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   8. CATEGORIES & FEATURED COLLECTIONS
   -------------------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background: rgba(56, 6, 65, 0.05);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.category-card:hover .category-icon {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.category-card .category-title-bn {
  font-family: var(--font-bengali);
  font-size: 0.95rem;
  color: var(--secondary-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.category-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   9. PRODUCT CARDS & SHOWCASE
   ------------------------------------------------------/* --------------------------------------------------------------------------
   9. PRODUCT CARDS & 2026 E-COMMERCE SHOWCASE
   -------------------------------------------------------------------------- */
.collection-hero-section {
  background: linear-gradient(135deg, #2D0335 0%, #380641 100%);
  color: var(--bg-cream);
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 2px solid var(--secondary);
}

.collection-hero-section h1 {
  color: var(--bg-cream) !important;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.collection-hero-section .section-subtitle {
  color: var(--secondary);
  background: rgba(244, 196, 48, 0.15);
  border-color: rgba(244, 196, 48, 0.3);
}

.collection-hero-bengali {
  color: var(--secondary-light);
  font-size: 1.25rem;
  font-weight: 600;
}

.collection-hero-desc {
  color: #E6D2EC;
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0.75rem auto 0 auto;
}

/* Catalog Toolbar (Desktop Tabs & Sort) */
.catalog-toolbar {
  margin-bottom: 2.5rem;
}

.filter-tabs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 0.6rem;
  padding: 0.5rem 0.5rem 0.85rem 0.5rem;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: flex-start;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: var(--bg-cream-card);
  color: var(--primary);
  border: 1px solid var(--border-gold);
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .filter-tabs {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--bg-cream);
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(56, 6, 65, 0.15);
}

/* Meta Bar: Results Counter & Sort Dropdown */
.catalog-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-cream-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.catalog-count-badge {
  font-size: 0.9rem;
  color: var(--primary);
}

.catalog-count-badge strong {
  color: var(--secondary-dark);
  font-size: 1rem;
}

.catalog-sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.catalog-sort-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.catalog-sort-select {
  background: #FFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast);
}

.catalog-sort-select:focus {
  border-color: var(--secondary-dark);
  box-shadow: 0 0 0 2px rgba(244, 196, 48, 0.3);
}

/* Product Grid Flexbox: Centering for odd & even items */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.product-card {
  flex: 0 1 360px;
  max-width: 380px;
  width: 100%;
  background: var(--bg-cream-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

/* 2026 Modern Elevation Hover Effect */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(56, 6, 65, 0.16), 0 0 20px rgba(244, 196, 48, 0.25);
  border-color: var(--secondary);
}

/* Strict 1:1 Aspect Ratio Square Image */
.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #2D0335;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--secondary);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-sku {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  z-index: 2;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1.18rem;
  margin-bottom: 0.25rem;
  line-height: 1.35;
  color: var(--primary);
}

.product-title-bn {
  font-size: 0.95rem;
  color: var(--secondary-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 160, 23, 0.25);
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.product-stock {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1B5E20;
  background: #E8F5E9;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.custom-saree-card {
  margin-top: 4rem;
  background: var(--bg-cream-card);
  border: 2px dashed var(--border-gold-strong);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
}

.custom-saree-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.custom-saree-card p {
  max-width: 580px;
  margin: 0 auto 1.5rem auto;
  color: var(--text-muted);
}

/* Mobile Floating Action Button (FAB) for Filter */
.mobile-filter-fab {
  display: none;
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1500;
  background: linear-gradient(135deg, var(--primary) 0%, #200226 100%);
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45), 0 0 15px rgba(244, 196, 48, 0.35);
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.mobile-filter-fab:active {
  transform: translateX(-50%) scale(0.96);
}

/* Mobile Filter Sheet Overlay */
.mobile-filter-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 2, 21, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  display: flex;
  align-items: flex-end;
}

.mobile-filter-sheet-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-filter-sheet {
  background: var(--bg-cream-card);
  border-top: 2px solid var(--secondary);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  display: flex;
  flex-direction: column;
}

.mobile-filter-sheet-overlay.is-active .mobile-filter-sheet {
  transform: translateY(0);
}

.mobile-filter-handle {
  width: 45px;
  height: 5px;
  background: rgba(56, 6, 65, 0.25);
  border-radius: 4px;
  margin: 10px auto 0 auto;
}

.mobile-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-gold);
}

.mobile-filter-header h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0;
}

.mobile-filter-close {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.4rem;
}

.mobile-filter-body {
  padding: 1.25rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sheet-section-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sheet-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sheet-pill-card {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sheet-pill-card input[type="radio"] {
  accent-color: var(--primary);
}

.sheet-pill-card:has(input:checked) {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE NAHANNOTE
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

/* --------------------------------------------------------------------------
   11. VIDEO CALL SHOPPING BANNER
   -------------------------------------------------------------------------- */
.videocall-banner {
  background: linear-gradient(135deg, #380641 0%, #200226 100%);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: var(--bg-cream);
  box-shadow: var(--shadow-lg);
}

.videocall-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.videocall-banner h2 {
  color: var(--bg-cream);
  margin-bottom: 0.5rem;
}

.videocall-banner .bn-subtitle {
  font-family: var(--font-bengali);
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.videocall-banner p {
  color: #EADCEE;
  margin-bottom: 1.5rem;
}

.videocall-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.videocall-step {
  background: rgba(255, 248, 232, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.videocall-step .step-num {
  display: block;
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 700;
}

.videocall-step .step-text {
  font-size: 0.8rem;
  color: #F7EFFB;
}

/* Video Call Mobile Mockup Smartphone Frame */
.videocall-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mobile-mockup-frame {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 9 / 16;
  background: #1B0220;
  border: 8px solid #222222;
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(244, 196, 48, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Smartphone Top Notch */
.mockup-notch {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 4.5px;
  background: #111111;
  border-radius: 4px;
  z-index: 10;
}

/* Top Status Overlay */
.mockup-top-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.65rem 0.35rem 0.65rem;
}

.mockup-live-tag {
  background: rgba(0, 0, 0, 0.65);
  color: #FFFFFF;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mockup-live-dot {
  width: 6px;
  height: 6px;
  background: #EA4335;
  border-radius: 50%;
  animation: mockupPulse 1.5s infinite;
}

@keyframes mockupPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.mockup-boutique-tag {
  background: rgba(56, 6, 65, 0.8);
  color: var(--secondary);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid var(--border-gold);
}

/* Main Screen Body: Boutique Presenter View */
.mockup-screen-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 35%, #520F5F 0%, #290331 60%, #150119 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.mockup-saree-art {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.2) 0%, rgba(216, 27, 96, 0.3) 100%);
  border: 2px dashed var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.mockup-saree-art svg {
  color: var(--secondary);
}

.mockup-drape-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFF8E8;
  margin-bottom: 0.15rem;
}

.mockup-drape-sub {
  font-family: var(--font-bengali);
  font-size: 0.68rem;
  color: var(--secondary-light);
}

/* Picture in Picture (PiP) Floating Customer Box */
.mockup-pip {
  position: absolute;
  bottom: 46px;
  right: 8px;
  width: 52px;
  height: 68px;
  background: linear-gradient(135deg, #2D0335 0%, #150119 100%);
  border: 1.5px solid var(--secondary);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.mockup-pip-avatar {
  font-size: 1rem;
  line-height: 1;
}

.mockup-pip-label {
  font-size: 0.55rem;
  color: #E2D3E6;
  font-weight: 600;
}

/* Bottom Call Controls Bar */
.mockup-call-bar {
  position: relative;
  z-index: 6;
  background: rgba(18, 1, 22, 0.88);
  backdrop-filter: blur(4px);
  padding: 0.45rem 0.6rem 0.6rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(244, 196, 48, 0.2);
}

.mockup-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.mockup-btn-end {
  background: #EA4335 !important;
  box-shadow: 0 2px 8px rgba(234, 67, 53, 0.45);
}

/* --------------------------------------------------------------------------
   12. ORDER ENQUIRY BUILDER (VANILLA JS)
   -------------------------------------------------------------------------- */
.enquiry-card {
  background: var(--bg-cream-card);
  border: 2px solid var(--border-gold-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.form-label span.req {
  color: var(--accent-pink);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: #FFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56, 6, 65, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   13. GALLERY & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.gallery-thumb-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-thumb-wrap img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(56, 6, 65, 0.9) 0%, rgba(56, 6, 65, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: var(--bg-cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gallery-item-caption {
  color: var(--secondary-light);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 2, 21, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 850px;
  width: 100%;
  background: var(--primary);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent-pink);
  color: #FFF;
  border-color: #FFF;
}

.lightbox-image-wrap {
  background: #000;
  text-align: center;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrap img {
  max-height: 60vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-footer {
  padding: 1.25rem 1.5rem;
  background: var(--primary-dark);
  border-top: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lightbox-title {
  font-size: 1.2rem;
  color: var(--bg-cream);
}

.lightbox-caption {
  font-size: 0.88rem;
  color: var(--secondary-light);
}

/* --------------------------------------------------------------------------
   14. PAYMENT PAGE STYLES
   -------------------------------------------------------------------------- */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.payment-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.payment-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-gold);
}

.bank-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(212, 160, 23, 0.25);
  font-size: 0.95rem;
}

.bank-detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
  font-weight: 500;
}

.detail-value {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copy-btn {
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid var(--secondary);
  color: var(--primary);
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}

.qr-display-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--primary);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-md);
  color: var(--bg-cream);
}

.qr-display-box img {
  max-width: 280px;
  margin: 0 auto 1.25rem auto;
  border-radius: var(--radius-sm);
}

.payment-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.step-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}

.step-badge {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   15. CONTACT & SHOWROOM LOCATION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(56, 6, 65, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-gold-strong);
  box-shadow: var(--shadow-md);
  min-height: 320px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Pre-filled WhatsApp Option Cards (Centered Flexbox) */
.whatsapp-topics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.wa-topic-card {
  flex: 1 1 270px;
  max-width: 380px;
  background: var(--bg-cream-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.wa-topic-card:hover {
  background: var(--primary);
  color: var(--bg-cream);
  border-color: var(--secondary);
  transform: translateX(4px);
}

.wa-topic-card:hover h4 {
  color: var(--secondary);
}

.wa-topic-card:hover p {
  color: #E7D8EB;
}

.wa-topic-card .topic-arrow {
  color: var(--whatsapp-green);
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--primary-dark);
  color: var(--bg-cream);
  border-top: 3px solid var(--secondary);
  padding-top: 4.5rem;
}

.footer-top {
  padding-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand img {
  height: 54px;
  margin-bottom: 1.25rem;
}

.footer-tagline-bn {
  font-family: var(--font-bengali);
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.footer-heading {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

.footer-link {
  color: #E4D5E8;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: #E4D5E8;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  background: #18011C;
  border-top: 1px solid rgba(244, 196, 48, 0.25);
  padding: 1.1rem 0;
  font-size: 0.82rem;
  color: #BFABC4;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.footer-legal-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.25rem;
}

.footer-legal-link {
  color: #E2D3E6;
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.footer-legal-sep {
  color: var(--secondary);
  opacity: 0.5;
  font-size: 0.75rem;
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  width: 100%;
}

.footer-copyright {
  line-height: 1.4;
  color: #D8C3DD;
  font-size: 0.82rem;
}

.footer-copyright strong {
  color: var(--bg-cream);
}

.jesastic-credit {
  color: #BFABC4;
  font-size: 0.82rem;
}

.jesastic-credit a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.jesastic-credit a:hover {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   17. ADVANCED FLOATING WHATSAPP FUNNEL MODAL
   -------------------------------------------------------------------------- */
.wa-floating-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1200;
}

.wa-floating-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  padding: 0;
}

.wa-floating-btn:hover {
  background-color: #1EBE5D;
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
}

.wa-floating-btn .wa-icon-svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.wa-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite ease-out;
  pointer-events: none;
}

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

.wa-status-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent-pink);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFF;
}

.wa-tooltip-text {
  position: absolute;
  right: 72px;
  background: var(--primary);
  color: var(--bg-cream);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--secondary);
  white-space: nowrap;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.wa-floating-btn:hover .wa-tooltip-text {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Funnel Modal Overlay */
.wa-funnel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 2, 21, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2500;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.wa-funnel-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.wa-funnel-card {
  background: var(--bg-cream-card);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-md);
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.wa-funnel-overlay.is-active .wa-funnel-card {
  transform: translateY(0) scale(1);
}

.wa-funnel-header {
  background: var(--primary);
  color: var(--bg-cream);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--secondary);
}

.wa-funnel-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-title {
  font-size: 1rem;
  color: var(--bg-cream);
  margin: 0;
  line-height: 1.2;
}

.wa-status {
  font-size: 0.75rem;
  color: var(--secondary-light);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.wa-online-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
}

.wa-close-btn {
  background: transparent;
  border: none;
  color: var(--secondary-light);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  transition: color var(--transition-fast);
}

.wa-close-btn:hover {
  color: var(--accent-pink);
}

.wa-funnel-body {
  padding: 1.25rem;
  overflow-y: auto;
}

.wa-intro-msg {
  font-size: 0.85rem;
  color: var(--text-dark);
  background: rgba(56, 6, 65, 0.05);
  border-left: 3px solid var(--secondary);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.wa-form-group {
  margin-bottom: 1rem;
}

.wa-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.wa-req {
  color: var(--accent-pink);
}

.wa-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #FFF;
  transition: all var(--transition-fast);
}

.wa-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(56, 6, 65, 0.12);
}

.wa-radio-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wa-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: #FFF;
  border: 1px solid var(--border-gold);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.wa-radio-card:hover {
  border-color: var(--secondary);
  background: #FFFDF5;
}

.wa-radio-card input[type="radio"] {
  margin-top: 0.25rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.wa-radio-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  line-height: 1.35;
}

.wa-radio-text strong {
  color: var(--primary);
  font-size: 0.82rem;
}

.wa-radio-text span {
  color: var(--text-muted);
  font-family: var(--font-bengali);
}

.wa-submit-btn {
  width: 100%;
  background-color: #128C7E;
  color: #FFFFFF;
  border: 1px solid #0E6B5F;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.35);
  transition: all var(--transition-normal);
  margin-top: 0.5rem;
}

.wa-submit-btn:hover {
  background-color: #075E54;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 94, 84, 0.5);
}

/* Hide Floating WhatsApp when Mobile Menu Drawer is open to prevent collision */
body.drawer-open .wa-floating-wrapper {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* --------------------------------------------------------------------------
   18. TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.toast-notice {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notice.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   19. COLLECTION ENQUIRY MODAL (NAME, ADDRESS, REMARKS)
   -------------------------------------------------------------------------- */
.col-enquiry-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 2, 21, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.col-enquiry-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.col-enquiry-card {
  background: var(--bg-cream-card);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-md);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.col-enquiry-overlay.is-active .col-enquiry-card {
  transform: translateY(0) scale(1);
}

.col-enquiry-header {
  background: var(--primary);
  color: var(--bg-cream);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--secondary);
}

.col-enquiry-header h3 {
  color: var(--bg-cream);
  font-size: 1.05rem;
  margin: 0;
}

.col-enquiry-close {
  background: transparent;
  border: none;
  color: var(--secondary-light);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  transition: color var(--transition-fast);
}

.col-enquiry-close:hover {
  color: var(--accent-pink);
}

.col-enquiry-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.col-item-preview {
  background: rgba(56, 6, 65, 0.05);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  margin-bottom: 1.25rem;
}

.col-item-preview h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.col-item-preview p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
/* Mobile Only Fixes (<768px) */
@media (max-width: 768px) {
  .header-topbar {
    display: none !important;
  }
  .navbar {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .brand-logo img {
    height: 44px;
  }
  .wa-funnel-overlay {
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  .wa-funnel-card {
    max-height: 92vh;
  }
  .wa-floating-wrapper {
    bottom: 20px;
    right: 20px;
  }
  .mobile-drawer {
    padding-bottom: 6rem;
  }
  .videocall-mockup-wrap {
    margin-top: 2rem;
  }
  .desktop-filter-tabs {
    display: none !important;
  }
  .catalog-sort-wrap {
    display: none !important;
  }
  .catalog-meta-bar {
    justify-content: center;
    text-align: center;
  }
  .mobile-filter-fab {
    display: inline-flex;
  }
  .product-card {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .collection-main-section {
    padding-bottom: 5.5rem;
  }
  /* Mobile Hero Section Hierarchy Reordering */
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }
  .hero-intro-text {
    order: 1 !important;
    text-align: center !important;
  }
  .hero-visual {
    order: 2 !important;
    margin: 1.25rem auto 1.5rem auto !important;
    width: 100% !important;
  }
  .hero-visual-frame {
    max-width: 360px !important;
  }
  .hero-ctas {
    order: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-bottom: 1.75rem !important;
    width: 100% !important;
  }
  .hero-features {
    order: 4 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
    margin-top: 0.5rem !important;
  }
  .hero-feature-item {
    font-size: 0.78rem !important;
    justify-content: center !important;
  }
}

/* Mobile 2x2 Grid for Footer Legal Pages */
@media (max-width: 640px) {
  .footer-legal-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 0.75rem auto !important;
  }
  .footer-legal-sep {
    display: none !important;
  }
  .footer-legal-link {
    text-align: center;
    background: rgba(255, 248, 232, 0.06);
    padding: 0.45rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(244, 196, 48, 0.25);
    font-size: 0.8rem;
  }
}

@media (min-width: 768px) {
  /* Desktop Hero Badges Single Line Fix */
  .hero-features {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.65rem !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
  }
  .hero-feature-item {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    gap: 0.35rem !important;
    flex: 1 1 auto !important;
    justify-content: center !important;
  }
  .brand-intro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .videocall-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .payment-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
  .footer-bottom {
    padding: 0.9rem 0;
  }
  .footer-bottom-inner {
    gap: 0.65rem;
  }
  .footer-legal-bar {
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(244, 196, 48, 0.12);
    width: 100%;
    justify-content: center;
    gap: 0.35rem 1.4rem;
  }
  .footer-bottom-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
  }
  .footer-copyright {
    white-space: nowrap;
    font-size: 0.82rem;
  }
  .jesastic-credit {
    text-align: right;
    white-space: nowrap;
    font-size: 0.82rem;
  }
  .lightbox-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
  .mobile-nav-toggle {
    display: none;
  }
  .hero {
    padding: 6rem 0 7rem 0;
  }
  .hero-grid {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important;
    grid-template-areas:
      "text visual"
      "ctas visual"
      "features visual" !important;
    align-items: center !important;
    gap: 1.25rem 3.5rem !important;
    text-align: left !important;
  }
  .hero-intro-text {
    grid-area: text !important;
    text-align: left !important;
  }
  .hero-desc {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero-visual {
    grid-area: visual !important;
    order: unset !important;
    margin: 0 !important;
  }
  .hero-visual-frame {
    max-width: 490px !important;
  }
  .hero-ctas {
    grid-area: ctas !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    margin-bottom: 0 !important;
    order: unset !important;
  }
  .hero-features {
    grid-area: features !important;
    order: unset !important;
  }
  .hero-feature-item {
    font-size: 0.84rem !important;
    justify-content: flex-start !important;
    gap: 0.45rem !important;
  }
}

/* --------------------------------------------------------------------------
   21. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .wa-floating-wrapper,
  .btn-whatsapp {
    display: none !important;
  }
  body {
    background: #FFF !important;
    color: #000 !important;
  }
}
