html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: clip !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   SM GARLANDS — Premium Bridal Floral Jewellery & Wedding Garlands
   Design System & Styling (Unified Deep Maroon & Metallic Gold Theme)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-maroon-dark: #2B0505;
  --bg-maroon: #4A0B0B;
  --bg-maroon-light: #681010;
  --bg-maroon-trans: rgba(74, 11, 11, 0.96);
  
  --gold-primary: #D4AF37;
  --gold-light: #F7E5A9;
  --gold-dark: #9A7B1C;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-gradient-hover: linear-gradient(135deg, #AA771C 0%, #FBF5B7 25%, #B38728 50%, #FCF6BA 75%, #BF953F 100%);
  --gold-subtle: rgba(212, 175, 55, 0.3);

  --bg-ivory: #FFFBF3;
  --text-light: #FFFBF3;
  --text-muted: rgba(255, 251, 243, 0.82);

  /* Typography */
  --font-serif-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif-heading: 'Cormorant Garamond', Georgia, serif;
  --font-serif-caps: 'Cormorant SC', serif;
  --font-body: 'Lora', 'Inter', -apple-system, sans-serif;

  /* Layout & Spacing */
  --header-height: 85px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 15px 40px rgba(212, 175, 55, 0.25);
  --shadow-gold: 0 6px 20px rgba(212, 175, 55, 0.35);
  
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Global Standards */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-maroon-dark);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif-heading);
  font-weight: 700;
  line-height: 1.25;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-eyebrow {
  font-family: var(--font-serif-caps);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: block;
}

.section-title {
  font-family: var(--font-serif-display);
  font-size: 2.4rem;
  color: var(--bg-ivory);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Decorative Gold Filigree Divider */
.filigree-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 1.2rem 0 2rem;
}

.filigree-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.filigree-icon {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-padding {
  padding: 4.5rem 0;
}

/* Buttons — Pure Metallic Gold Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-serif-caps);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--transition-smooth);
  border: 1px solid transparent;
}

/* Metallic Gold Premium CTA Button */
.btn-gold-card {
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark) !important;
  font-size: 0.85rem;
  padding: 0.85rem 1.2rem;
  width: 100%;
  border-radius: 4px;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--gold-primary);
}

.btn-gold-card:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.55);
  color: var(--bg-maroon-dark) !important;
}

.btn-gold-header {
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  font-size: 0.82rem;
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  box-shadow: var(--shadow-gold);
}

.btn-gold-header:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.btn-gold-lg {
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  font-size: 0.95rem;
  padding: 0.95rem 2.2rem;
  border-radius: 40px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold-lg:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.55);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.9rem;
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s var(--transition-smooth);
  background: var(--bg-maroon);
  border-bottom: 2px solid var(--gold-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.site-header.scrolled {
  background: var(--bg-maroon-trans);
  backdrop-filter: blur(12px);
  height: 75px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-maroon-dark);
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-serif-caps);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--bg-ivory);
  opacity: 0.9;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-serif-caps);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--bg-ivory);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(74, 11, 11, 0.4) 0%, rgba(43, 5, 5, 0.95) 100%),
              url('assets/hero.jpg') center/cover no-repeat;
  padding-top: var(--header-height);
  color: var(--bg-ivory);
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
              rgba(43, 5, 5, 0.7) 0%, 
              rgba(74, 11, 11, 0.5) 50%, 
              rgba(43, 5, 5, 0.98) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 2rem 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  border-radius: 30px;
  font-family: var(--font-serif-caps);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  backdrop-filter: blur(5px);
}

.hero-headline {
  font-family: var(--font-serif-display);
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 251, 243, 0.92);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.8rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 40px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* ==========================================================================
   E-COMMERCE SHOP LAYOUT (Unified Deep Maroon Background)
   ========================================================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Sidebar Category Widget (Nested Accordion) */

/* Sticky Context Protections */
#shop-catalog,
#shop-catalog .container,
.shop-layout,
.shop-main {
  overflow: visible !important;
}

/* Laptop / Desktop Sticky Sidebar (Leftmost Side) */
.shop-sidebar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 100px !important;
  align-self: flex-start !important;
  max-height: calc(100vh - 120px) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin !important;
  scrollbar-color: var(--gold-primary) rgba(0, 0, 0, 0.2) !important;
  padding-right: 4px;
}

.shop-sidebar::-webkit-scrollbar {
  width: 5px;
}

.shop-sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.shop-sidebar::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

.shop-sidebar {
  position: sticky;
  top: 95px;
}

.sidebar-widget {
  background: var(--bg-maroon);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.widget-title {
  font-family: var(--font-serif-caps);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold-primary);
  margin-bottom: 1rem;
}

.category-list {
  list-style: none;
}

.cat-item {
  margin-bottom: 0.4rem;
}

.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-weight: 500;
  border-left: 3px solid transparent;
  background: rgba(255, 255, 255, 0.02);
}

.cat-link:hover {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border-left-color: var(--gold-primary);
  transform: translateX(3px);
}

.cat-link.active {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0.08) 100%);
  color: var(--gold-light);
  font-weight: 700;
  border-left: 4px solid var(--gold-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cat-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-icon {
  color: var(--gold-primary);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

.cat-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-count {
  color: var(--gold-light);
  font-size: 0.85rem;
  opacity: 0.85;
}

.accordion-arrow {
  font-size: 0.75rem;
  color: var(--gold-primary);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cat-item.expanded .accordion-arrow {
  transform: rotate(180deg);
}

/* Nested Sub-Category List */
.sub-category-list {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: none !important;
}

.cat-item.expanded .sub-category-list {
  display: block !important;
  margin-top: 6px !important;
  margin-bottom: 8px !important;
  padding-left: 12px !important;
  border-left: 2px solid rgba(212, 175, 55, 0.4) !important;
  animation: fadeInSub 0.3s ease forwards;
}

.sub-category-list li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@keyframes fadeInSub {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.sub-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  color: rgba(255, 251, 243, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  margin-bottom: 2px;
}

.sub-cat-link:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  padding-left: 1rem;
}

.sub-cat-link.active {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.22);
  font-weight: 700;
  border-left: 3px solid var(--gold-light);
}

.sub-count {
  font-size: 0.8rem;
  color: var(--gold-light);
  opacity: 0.8;
}

.sidebar-help-box {
  background: var(--bg-maroon-dark);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  color: var(--bg-ivory);
  box-shadow: var(--shadow-card);
}

.sidebar-help-box h4 {
  font-family: var(--font-serif-heading);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.sidebar-help-box p {
  font-size: 0.85rem;
  color: rgba(255, 251, 243, 0.85);
}

/* Mobile Sticky Filter Wrapper */
.mobile-sticky-filter-wrapper {
  display: none;
  position: sticky;
  top: 70px;
  z-index: 150;
  background: rgba(43, 5, 5, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 0;
  margin: -1rem -1rem 1.5rem -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}

.mobile-category-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0;
}

.mobile-category-pills::-webkit-scrollbar {
  display: none;
}

.primary-pills {
  margin-bottom: 0;
}

.secondary-pills {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.25);
  animation: slideDownSubPills 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideDownSubPills {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(74, 11, 11, 0.85);
  border: 1px solid var(--gold-primary);
  border-radius: 25px;
  font-size: 0.85rem;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 500;
  user-select: none;
  min-height: 44px;
}

.pill-btn:active {
  transform: scale(0.95);
}

.pill-btn.active {
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  border-color: var(--gold-light);
}

.pill-btn.has-arrow .pill-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.pill-btn.has-arrow.active .pill-arrow {
  transform: rotate(180deg);
}

.sub-pill-btn {
  background: rgba(43, 5, 5, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.6);
  font-size: 0.8rem;
  padding: 6px 14px;
  min-height: 38px;
}

.sub-pill-btn.active {
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  font-weight: 700;
  border-color: var(--gold-light);
}

/* Active Filter Status Header */
.active-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(74, 11, 11, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
}

.filter-status-text {
  font-size: 0.92rem;
  color: rgba(255, 251, 243, 0.9);
}

.current-filter-label {
  color: var(--gold-light);
  font-weight: 700;
}

.filter-count-badge {
  font-family: var(--font-serif-caps);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--bg-maroon-dark);
  background: var(--gold-gradient);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 800;
}

/* Products Grid */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

/* Product Card Design (Deep Maroon & Metallic Gold) */
.shop-product-card {
  background: var(--bg-maroon);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--transition-smooth), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  animation: filterCardFade 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  will-change: transform, opacity;
}

@keyframes filterCardFade {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.shop-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
}

.card-img-wrapper {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #1A0303;
  cursor: pointer;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-product-card:hover .card-img-wrapper img {
  transform: scale(1.06);
}

.card-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--gold-light);
  font-family: var(--font-serif-caps);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(4px);
}

.card-content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-serif-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  line-height: 1.35;
  flex-grow: 1;
}

/* Wedding Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  background: rgba(255, 251, 243, 0.04);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.package-card.featured {
  background: rgba(255, 251, 243, 0.08);
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
  transform: scale(1.03);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.package-badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  font-family: var(--font-serif-caps);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 4px 18px;
  border-radius: 20px;
  text-transform: uppercase;
}

.package-header {
  text-align: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1.2rem;
}

.package-img-preview {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--gold-subtle);
}

.package-title {
  font-family: var(--font-serif-display);
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.package-subtitle {
  font-family: var(--font-serif-caps);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255, 251, 243, 0.8);
}

.package-features {
  list-style: none;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.package-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: rgba(255, 251, 243, 0.9);
}

.package-feature-item i {
  color: var(--gold-primary);
  margin-top: 4px;
}

/* How to Order Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.process-step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-maroon);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
}

.step-number {
  width: 55px;
  height: 55px;
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  font-family: var(--font-serif-display);
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.step-title {
  font-family: var(--font-serif-heading);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Location & Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  margin-top: 3rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-maroon);
  padding: 1.4rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold-primary);
  border-top: 1px solid var(--gold-subtle);
  border-right: 1px solid var(--gold-subtle);
  border-bottom: 1px solid var(--gold-subtle);
  box-shadow: var(--shadow-card);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: var(--font-serif-heading);
  font-size: 1.2rem;
  color: var(--gold-light);
}

.contact-details p, .contact-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-card);
  height: 220px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-panel {
  background: var(--bg-maroon);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gold-primary);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-family: var(--font-serif-caps);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255, 251, 243, 0.08);
  color: var(--bg-ivory);
  transition: border-color 0.3s ease;
}

.form-control option {
  background-color: var(--bg-maroon-dark);
  color: var(--bg-ivory);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.site-footer {
  background: var(--bg-maroon-dark);
  color: var(--bg-ivory);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 251, 243, 0.8);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-serif-caps);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 251, 243, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 251, 243, 0.7);
}

/* ==========================================================================
   3-TAP VISUAL ORDER INQUIRY FORM (Mobile First & High Converting)
   ========================================================================== */
.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  font-family: var(--font-serif-caps);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  margin-right: 6px;
}

.form-chips-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.3rem;
}

.form-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 25px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  user-select: none;
  min-height: 42px;
}

.form-chip:hover {
  border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.form-chip:active {
  transform: scale(0.96);
}

.form-chip.active {
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  font-weight: 800;
  border-color: var(--gold-light);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.form-chip.active .chip-check {
  color: var(--bg-maroon-dark);
}

.form-chip .chip-check {
  font-size: 0.85rem;
  color: var(--gold-primary);
  transition: transform 0.2s ease;
}

.photo-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}

.photo-tip-box i {
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-top: 2px;
}

.photo-tip-box strong {
  display: block;
  font-size: 0.92rem;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.photo-tip-box p {
  font-size: 0.82rem;
  color: rgba(255, 251, 243, 0.85);
  margin: 0;
  line-height: 1.4;
}

.form-submit-btn {
  padding: 1.1rem;
  font-size: 1rem;
  border-radius: 35px;
  letter-spacing: 0.1em;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35), var(--shadow-gold);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (Bottom-Right Stack: WhatsApp + Call)
   ========================================================================== */
.floating-action-bar {
  position: fixed;
  bottom: 25px;
  right: 18px;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.floating-btn:active {
  transform: scale(0.92);
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
}

.floating-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-size: 1.6rem;
}

.floating-btn-call {
  background: var(--bg-maroon);
  border: 2px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 1.25rem;
}

.floating-tooltip {
  position: absolute;
  right: 64px;
  background: var(--bg-maroon-dark);
  color: var(--gold-light);
  font-family: var(--font-serif-caps);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 15px;
  border: 1px solid var(--gold-primary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
}

/* Floating Back to Top Button */
.floating-back-to-top {
  position: fixed;
  bottom: 145px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-maroon);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 1200;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-back-to-top:hover {
  background: var(--gold-gradient);
  color: var(--bg-maroon-dark);
  transform: translateY(-2px);
}

.floating-back-to-top:active {
  transform: scale(0.92);
}

/* Lightbox Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 2rem;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  max-width: 850px;
  width: 100%;
  background: var(--bg-maroon);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  color: var(--bg-ivory);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
  background: #000000;
}

.lightbox-caption {
  padding: 1.5rem 2rem;
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Screen-Fit 2x2 Filters & 2-Column Mobile Grid)
   ========================================================================== */
@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  
/* Sticky Context Protections */
#shop-catalog,
#shop-catalog .container,
.shop-layout,
.shop-main {
  overflow: visible !important;
}

/* Laptop / Desktop Sticky Sidebar (Leftmost Side) */
.shop-sidebar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 100px !important;
  align-self: flex-start !important;
  max-height: calc(100vh - 120px) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin !important;
  scrollbar-color: var(--gold-primary) rgba(0, 0, 0, 0.2) !important;
  padding-right: 4px;
}

.shop-sidebar::-webkit-scrollbar {
  width: 5px;
}

.shop-sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.shop-sidebar::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

.shop-sidebar {
    display: none;
  }
  .mobile-sticky-filter-wrapper {
    display: block;
  }
  .hero-headline {
    font-size: 2.4rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: clip !important;
    padding-bottom: 0 !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    margin: 0 auto !important;
  }

  .section-padding {
    padding: 2.2rem 0;
  }

    /* Smart Fixed Mobile Header (Slides up in Catalog, returns in other sections) */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 58px !important;
    padding: 0.45rem 0 !important;
    background: rgba(35, 4, 4, 0.98) !important;
    backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35) !important;
    z-index: 1200 !important;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
  }

  .site-header.header-hidden-in-catalog {
    transform: translateY(-100%) !important;
    pointer-events: none !important;
  }

  .hero-section {
    padding-top: 85px !important;
  }

  .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .logo-lockup {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
  }

  .logo-icon {
    width: 35px !important;
    height: 35px !important;
    font-size: 1.15rem !important;
    flex-shrink: 0 !important;
  }

  .logo-title {
    font-size: 1.22rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    letter-spacing: 0.08em !important;
    display: block !important;
  }

  .logo-subtitle {
    font-size: 0.58rem !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
    margin-top: 1px !important;
    display: block !important;
    color: rgba(255, 251, 243, 0.82) !important;
  }

  .header-cta {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .btn-gold-header {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.72rem !important;
    height: 32px !important;
    white-space: nowrap !important;
    border-radius: 18px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35) !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 1.05rem !important;
    padding: 0 !important;
    margin-left: 2px !important;
  }

  .nav-menu {
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    background: var(--bg-maroon-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s var(--transition-smooth);
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  .nav-menu.active {
    transform: translateY(0);
  }

  .hero-headline {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-subheadline {
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
  }

  .trust-strip {
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  
  /* Mobile Pure Sticky Filter at top: 0 */
  .mobile-sticky-filter-wrapper {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1100 !important;
    padding: 0.5rem 0 !important;
    margin: 0 0 1rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(35, 4, 4, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 2px solid var(--gold-primary) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7) !important;
  }

  .mobile-category-pills.primary-pills {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  .mobile-category-pills.secondary-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
    border-top: 1px dashed rgba(212, 175, 55, 0.25) !important;
  }

  .pill-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
    min-height: 42px !important;
    border-radius: 20px !important;
  }

  .pill-btn-gajra {
    grid-column: span 2 !important;
  }

  .sub-pill-btn {
    flex: 1 1 calc(50% - 6px) !important;
    padding: 6px 8px !important;
    font-size: 0.72rem !important;
    min-height: 34px !important;
  }

  /* 2-COLUMN PRODUCTS GRID */
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .shop-product-card {
    border-radius: 8px !important;
  }

  .card-img-wrapper {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    background: #150202 !important;
    border-radius: 8px 8px 0 0 !important;
  }

  .card-category-badge {
    top: 5px !important;
    left: 5px !important;
    font-size: 0.54rem !important;
    padding: 2px 5px !important;
    letter-spacing: 0.05em !important;
  }

  .card-content {
    padding: 8px 6px 10px 6px !important;
  }

  .card-title {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    min-height: 2.4em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .btn-gold-card {
    padding: 0.5rem 0.4rem !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.04em !important;
    border-radius: 4px !important;
    gap: 4px !important;
  }

  .btn-gold-card i {
    font-size: 0.75rem !important;
  }

  /* Compact Active Filter Status Header */
  .active-filter-header {
    padding: 0.5rem 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  .filter-status-text {
    font-size: 0.78rem !important;
  }

  .filter-count-badge {
    font-size: 0.7rem !important;
    padding: 2px 6px !important;
  }

  /* Floating Action Buttons on Mobile */
  .floating-action-bar {
    bottom: 20px !important;
    right: 15px !important;
    gap: 10px !important;
  }

  .floating-btn {
    width: 48px !important;
    height: 48px !important;
  }

  .floating-btn-whatsapp {
    font-size: 1.5rem !important;
  }

  .floating-btn-call {
    font-size: 1.2rem !important;
  }

  .floating-back-to-top {
    bottom: 135px !important;
    right: 18px !important;
    width: 38px !important;
    height: 38px !important;
  }

  .contact-form-panel {
    padding: 1.4rem 1rem !important;
  }
}
