/* 
  Vape Shop Mumbai - Premium Luxury eCommerce CSS System
  Replicated from reference site: https://vapeshopmumbai.net.in
  
  Color System:
    - Primary Gold Accent: #B68F56 / rgb(182, 143, 86)
    - Primary Gold Hover: #9E7944
    - Onyx Black: #000000 / #111111
    - Dark Charcoal: #222222
    - Light Background: #FFFFFF
    - Soft Off-White: #FAF7F2
    - Neutral Gray Background: #F5F5F5
    - Soft Border: #E5E5E5
    - Gold Border: #B68F56
    - Text Primary: #000000
    - Text Secondary: #555555
    - Text Muted: #777777
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@500;600;700;800&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  /* Theme Palette */
  --color-gold: #B68F56;
  --color-gold-rgb: 182, 143, 86;
  --color-gold-hover: #9E7944;
  --color-gold-light: rgba(182, 143, 86, 0.1);
  --color-gold-glow: rgba(182, 143, 86, 0.25);
  
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAF7F2;
  --bg-tertiary: #F5F5F5;
  --bg-dark: #111111;
  --bg-black: #000000;
  
  --text-primary: #000000;
  --text-secondary: #333333;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  
  --border-color: #E5E5E5;
  --border-gold: #B68F56;
  --border-focus: #B68F56;
  
  --color-success: #3ED660;
  --color-warning: #EE9441;
  --color-error: #8B0000;
  
  /* Fonts */
  --font-heading: "Cinzel", "Bodoni Moda", serif;
  --font-display: "Outfit", sans-serif;
  --font-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-accent: "Cinzel", serif;
  
  /* Layout & Sizing */
  --container-width: 1280px;
  --header-height: 84px;
  --announcement-height: 38px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(182, 143, 86, 0.15);
  --shadow-drawer: -4px 0 24px rgba(0, 0, 0, 0.15);
  
  --transition-fast: all 0.15s ease-in-out;
  --transition-normal: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* GPU Acceleration & Layout Rendering Optimization */
.hero-section,
.categories-section,
.products-section,
.trust-section,
.locality-hubs-section,
.seo-content-section,
.category-intro-section,
.category-main-section,
.product-specs-section,
.faq-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.site-header,
.btn-whatsapp-floating,
.product-card,
.mobile-nav-drawer,
.search-modal-card {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Top Announcement Bar */
.announcement-bar {
  background-color: var(--bg-black);
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(182, 143, 86, 0.3);
  position: relative;
  z-index: 100;
}

.announcement-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* Header & Main Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 56px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.brand-title {
  display: none; /* Custom graphic logo contains full brand artwork */
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-title span {
  color: var(--color-gold);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 0;
  position: relative;
  text-transform: capitalize;
}

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

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.icon-btn:hover {
  background-color: var(--bg-tertiary);
  color: var(--color-gold);
  border-color: var(--border-color);
}

.cart-btn .cart-count-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-gold);
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

.mobile-menu-toggle {
  display: none;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 1000;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.open {
  left: 0;
}

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

.drawer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
}

.drawer-close-btn {
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-muted);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
  padding: 8px 0;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

/* Hero Section Component */
.hero-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.badge-gold {
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 18px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title span {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subhead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  letter-spacing: 0.02em;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--text-light);
  border: 1px solid var(--color-gold);
  box-shadow: 0 4px 14px rgba(182, 143, 86, 0.3);
}

.btn-primary:hover {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-light);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-hover);
  color: var(--color-gold-hover);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border: 1px solid #25D366;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1DA851;
  border-color: #1DA851;
  color: #FFFFFF;
}

/* Hero Trust Metrics */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.metric-icon {
  color: var(--color-gold);
  font-size: 1.1rem;
}

/* Hero Visual Showcase */
.hero-visual-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
}

.hero-visual-img {
  max-height: 320px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
  transition: var(--transition-normal);
}

.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.04);
}

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

.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 10px auto 0;
}

.section-p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Top Collections Circle/Card Grid */
.categories-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.categories-scroll-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.category-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.category-img-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 12px;
  transition: var(--transition-fast);
}

.category-card:hover .category-img-wrap {
  border-color: var(--color-gold);
  box-shadow: 0 0 16px var(--color-gold-glow);
}

.category-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

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

/* Products Catalog Grid */
.products-section {
  padding: 70px 0;
  background-color: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.filter-header-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.filter-search-wrap {
  flex: 1;
  min-width: 260px;
}

.filter-search-wrap input {
  width: 100%;
  padding: 12px 18px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.filter-search-wrap input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-light);
}

.filter-select-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-select-wrap select {
  padding: 12px 16px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-select-wrap select:focus {
  border-color: var(--color-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

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

.product-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-gold);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  z-index: 2;
  text-transform: uppercase;
}

.product-card-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect ratio */
  background-color: #FAF9F6;
  overflow: hidden;
}

.product-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: var(--transition-normal);
}

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

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

.product-title {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

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

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: auto;
}

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

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

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-card-actions .btn {
  padding: 10px 12px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

/* Benefits / Why Choose Us Section */
.why-choose-us-section {
  padding: 70px 0;
  background-color: var(--bg-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.benefit-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(182, 143, 86, 0.12);
  color: var(--color-gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.benefit-h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Delivery Hubs Grid Section */
.mumbai-delivery-section {
  padding: 70px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.delivery-hubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.hub-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition-fast);
}

.hub-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hub-title {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-primary);
}

.hub-time {
  font-size: 0.84rem;
  color: var(--color-gold);
  font-weight: 600;
}

.hub-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Local SEO Content Section */
.seo-longform-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.seo-content-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
}

.seo-h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.seo-h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 24px 0 12px;
}

.seo-p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.seo-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 24px 0;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 70px 0;
  background-color: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
}

.faq-accordion-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-card:hover {
  border-color: var(--border-gold);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-gold);
  transition: var(--transition-fast);
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  display: none;
}

.faq-card.active .faq-panel {
  display: block;
}

/* Footer Section */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 70px 0 30px;
  border-top: 2px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-desc {
  font-size: 0.9rem;
  color: #AAAAAA;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: #BBBBBB;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #222222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: #888888;
}

.payment-badge-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-badge {
  background-color: #222222;
  color: #DDDDDD;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid #333333;
}

/* Floating WhatsApp Quick Contact */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 995;
  transition: var(--transition-bounce);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Cart Slide-out Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1001;
  box-shadow: var(--shadow-drawer);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

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

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty-msg {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

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

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xs);
}

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

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 700;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Search Modal Overlay */
.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1002;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.search-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 650px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.search-modal-input-wrap {
  position: relative;
}

.search-modal-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 1.05rem;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-sm);
  outline: none;
}

.search-results-list {
  max-height: 340px;
  overflow-y: auto;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
}

.search-result-item:hover {
  background-color: var(--bg-secondary);
}

.search-result-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* ==========================================================================
   Category Collection Pages System
   ========================================================================== */

/* Breadcrumbs */
.breadcrumbs {
  padding: 24px 0 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-secondary);
  font-weight: 500;
}

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

.breadcrumbs .sep {
  color: var(--border-color);
}

.breadcrumbs .current {
  color: var(--color-gold);
  font-weight: 600;
}

/* Category Intro Section */
.category-intro-section {
  padding: 10px 0 25px;
}

.category-header-wrap {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #FFFFFF 100%);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}

.category-h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.25;
}

.category-seo-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.category-seo-description p {
  margin-bottom: 10px;
}

.category-seo-description strong {
  color: var(--text-primary);
}

/* Filter & Grid Main Section */
.category-main-section {
  padding: 25px 0 70px;
}

.category-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar Filters Box */
.filter-sidebar {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.mobile-filter-toggle-btn {
  display: none;
  width: 100%;
  padding: 12px 18px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--color-gold);
  cursor: pointer;
  margin-bottom: 16px;
  text-align: center;
}

.sidebar-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-header h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.clear-filters-btn {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
}

.clear-filters-btn:hover {
  text-decoration: underline;
}

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

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

.filter-group-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.filter-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.custom-checkbox:hover {
  color: var(--color-gold);
}

/* Price Slider */
.price-slider-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--color-gold);
  cursor: pointer;
  margin-bottom: 8px;
}

.price-val-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Main Grid Content Area */
.grid-content-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.grid-sort-bar {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.results-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.results-count span {
  font-weight: 700;
  color: var(--text-primary);
}

.grid-sort-select {
  padding: 8px 16px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  color: var(--text-primary);
  cursor: pointer;
}

.grid-sort-select:focus {
  border-color: var(--color-gold);
}

/* Category FAQ Section */
.category-faq-section {
  padding: 50px 0 70px;
  border-top: 1px solid var(--border-color);
}

.specs-section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

/* ==========================================================================
   Single Product Detail Page System
   ========================================================================== */

.product-page-wrapper {
  padding-bottom: 80px;
}

.product-breadcrumb-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.product-core-section {
  margin-bottom: 50px;
}

.product-detail-card-wrap {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

/* Visual Column */
.product-visual-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-image-box {
  background-color: #FAF9F6;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.product-detail-img {
  max-height: 420px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.1));
  transition: var(--transition-normal);
}

.product-image-box:hover .product-detail-img {
  transform: scale(1.05);
}

.trust-micro-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.micro-badge {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}

.micro-badge .badge-icon {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* Info Column */
.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-brand-label {
  display: inline-block;
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}

.info-product-name {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.info-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.info-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
}

.info-compare-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.info-stock-badge {
  background-color: rgba(62, 214, 96, 0.12);
  color: #1DA851;
  border: 1px solid rgba(62, 214, 96, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
}

.info-short-description {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Flavor Selector Chips */
.info-selectors-wrap {
  margin-top: 8px;
}

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

.flavor-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flavor-chip {
  padding: 10px 18px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.flavor-chip:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.flavor-chip.active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(182, 143, 86, 0.3);
}

/* Checkout Box */
.info-checkout-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 10px;
}

.checkout-hint {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-large {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.05rem;
}

/* Specifications Card */
.product-specs-section {
  margin-bottom: 60px;
}

.specs-card-wrap {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.specs-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
}

.specs-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
}

.specs-box-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

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

.features-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 12px 14px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.specs-table td:first-child {
  font-weight: 700;
  color: var(--text-primary);
  width: 40%;
}

.specs-table td:last-child {
  color: var(--text-secondary);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   Blog & SEO Articles System
   ========================================================================== */

.blog-list-wrapper,
.blog-post-wrapper {
  padding-bottom: 80px;
}

.blog-list-header {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 45px 0;
  margin-bottom: 40px;
  text-align: center;
}

.blog-grid-section {
  padding-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.blog-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.82rem;
}

.blog-badge {
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-date {
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 14px;
}

.blog-card-title a:hover {
  color: var(--color-gold);
}

.blog-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.blog-author {
  color: var(--text-muted);
  font-weight: 600;
}

.blog-card-link {
  color: var(--color-gold);
  font-weight: 700;
}

.blog-card-link:hover {
  text-decoration: underline;
}

/* Single Blog Article Header */
.blog-post-header {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0 50px;
  text-align: center;
}

.blog-cat-badge {
  display: inline-block;
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.blog-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  max-width: 920px;
  margin: 0 auto 20px;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Article Grid & Sticky TOC Sidebar */
.blog-main-grid {
  padding: 50px 0 60px;
}

.blog-layout-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.blog-toc-sidebar {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.toc-sticky-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.toc-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc-list a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: block;
}

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

/* Article Body Typography */
.blog-article-content {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
}

.article-text-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.article-text-body h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 18px;
  border-left: 4px solid var(--color-gold);
  padding-left: 16px;
  line-height: 1.3;
}

.article-text-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 14px;
}

.article-text-body p {
  margin-bottom: 20px;
}

.article-text-body strong {
  color: var(--text-primary);
  font-weight: 700;
}

.article-text-body ul,
.article-text-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-text-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.seo-divider {
  border: none;
  border-top: 1px dashed var(--border-gold);
  margin: 40px 0;
}

/* Responsive Media Queries for Mobile & Tablet */
@media (max-width: 992px) {
  .category-layout-grid {
    grid-template-columns: 1fr;
  }

  .mobile-filter-toggle-btn {
    display: block;
  }

  .filter-sidebar .sidebar-box {
    display: none;
  }

  .filter-sidebar.open .sidebar-box {
    display: block;
  }
  :root {
    --header-height: 68px;
  }

  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  
  .header-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .brand-logo-img {
    height: 44px;
    max-width: 165px;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subhead {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions,
  .hero-trust-metrics {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --header-height: 64px;
  }

  .announcement-bar {
    font-size: 0.74rem;
    padding: 6px 10px;
  }

  .brand-logo-img {
    height: 38px;
    max-width: 145px;
  }

  .hero-full-banner-wrap {
    border-radius: var(--radius-md);
  }

  .hero-full-banner-img {
    max-height: 280px;
    object-fit: cover;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
  }
  
  .product-card-body {
    padding: 12px;
  }
  
  .product-card-actions {
    grid-template-columns: 1fr;
  }
}
