/* ═══════════════════════════════════════════════════════════
   Rainbowgate.lk — Main Stylesheet
   Pure CSS, no build tools required
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --rb-purple: #6C2BD9;
  --rb-blue:   #4361EE;
  --rb-teal:   #00B4D8;
  --rb-green:  #06D6A0;
  --rb-yellow: #FFD166;
  --rb-orange: #EF8C2A;
  --rb-red:    #EF233C;
  --rb-pink:   #F72585;

  --gradient-primary: linear-gradient(135deg, #6C2BD9 0%, #4361EE 50%, #00B4D8 100%);
  --gradient-warm:    linear-gradient(135deg, #F72585 0%, #EF8C2A 50%, #FFD166 100%);
  --gradient-rainbow: linear-gradient(90deg, #6C2BD9, #4361EE, #00B4D8, #06D6A0, #FFD166, #EF8C2A, #EF233C);
  --gradient-card:    linear-gradient(145deg, #ffffff 0%, #f8f5ff 100%);

  --text-primary:   #1a1a2e;
  --text-secondary: #4b5563;
  --text-muted:     #9ca3af;
  --bg-light:       #f8f5ff;
  --bg-white:       #ffffff;
  --border-color:   #e5e7eb;
  --shadow-sm:  0 2px 8px rgba(108, 43, 217, .08);
  --shadow-md:  0 8px 24px rgba(108, 43, 217, .12);
  --shadow-lg:  0 16px 48px rgba(108, 43, 217, .18);
  --shadow-xl:  0 24px 64px rgba(108, 43, 217, .24);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --font-main: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bs-theme="dark"] {
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;
  --bg-light:       #0f172a;
  --bg-white:       #1e293b;
  --border-color:   #334155;
  --gradient-card:  linear-gradient(145deg, #1e293b 0%, #162032 100%);
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--bg-light);
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }

/* ── Typography ────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

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

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utility ───────────────────────────────────────────── */
.rainbow-border {
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
              var(--gradient-rainbow) border-box;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

/* ── Animated Rainbow Bar ──────────────────────────────── */
.rainbow-bar {
  height: 4px;
  background: var(--gradient-rainbow);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════════════════════ */
#mainNav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 1030;
}

[data-bs-theme="dark"] #mainNav {
  background: rgba(15, 23, 42, 0.96);
}

#mainNav.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.navbar-brand .brand-tagline {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-text-fill-color: var(--text-muted);
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary) !important;
  padding: 0.4rem 0.75rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.5rem);
}

.nav-link:hover {
  color: var(--rb-purple) !important;
  background: var(--bg-light);
}

/* Cart Badge */
.cart-btn {
  position: relative;
  background: var(--gradient-primary);
  color: white !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.4rem 0.9rem !important;
  font-weight: 700 !important;
  transition: var(--transition);
}

.cart-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: var(--gradient-primary) !important;
}

.cart-btn .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--rb-red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-white);
}

/* Search bar */
.search-wrapper {
  position: relative;
  max-width: 340px;
  width: 100%;
}

.search-input {
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  padding: 0.45rem 2.8rem 0.45rem 1rem;
  font-size: 0.85rem;
  background: var(--bg-light);
  color: var(--text-primary);
  width: 100%;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--rb-purple);
  box-shadow: 0 0 0 3px rgba(108,43,217,0.12);
  background: var(--bg-white);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}

/* Autocomplete dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  max-height: 320px;
  overflow-y: auto;
  display: none;
}

.search-dropdown.show { display: block; }

.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.search-dropdown-item:hover { background: var(--bg-light); }

.search-dropdown-item .item-emoji { font-size: 1.2rem; }
.search-dropdown-item .item-name { font-weight: 600; }
.search-dropdown-item .item-price { color: var(--rb-purple); font-weight: 700; margin-left: auto; }

/* Top announcement bar */
.announcement-bar {
  background: var(--gradient-primary);
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 7px 0;
  position: relative;
}

.announcement-bar .close-bar {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-swiper {
  height: 580px;
}

@media (max-width: 767px) {
  .hero-swiper { height: 420px; }
}

.hero-slide {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slide-1 { background: linear-gradient(135deg, #0f0e17 0%, #1a1a3e 50%, #0f3460 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #1a0533 0%, #2d1b69 50%, #0f3460 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #0d1f2d 0%, #1a3a4a 50%, #0f3460 100%); }

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--rb-yellow);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

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

.hero-desc {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

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

.hero-stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat .label {
  font-size: 11px;
  opacity: 0.75;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-warm);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(247,37,133,0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(247,37,133,0.5);
  color: white;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  color: white;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
}

.hero-float-emoji {
  font-size: clamp(6rem, 15vw, 11rem);
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  user-select: none;
  text-align: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-20px) rotate(3deg); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-orb-1 { width: 300px; height: 300px; background: var(--rb-purple); top: -50px; right: -50px; }
.hero-orb-2 { width: 200px; height: 200px; background: var(--rb-blue); bottom: 0; left: 10%; }
.hero-orb-3 { width: 150px; height: 150px; background: var(--rb-pink); top: 40%; right: 20%; }

.hero-floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-card:nth-child(2) { animation-delay: -1.5s; animation-duration: 5s; }
.hero-card:nth-child(3) { animation-delay: -3s; animation-duration: 4.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Swiper nav */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.3); }

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.5) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  transition: var(--transition) !important;
}

.swiper-pagination-bullet-active {
  background: white !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ══════════════════════════════════════════════════════════
   FEATURE STRIP
══════════════════════════════════════════════════════════ */
.feature-strip {
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

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

.feature-item .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item .text .title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.feature-item .text .sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════════════════════ */
.category-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rb-purple);
}

.category-card .cat-emoji {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.category-card:hover .cat-emoji {
  transform: scale(1.15);
}

.category-card .cat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.category-card .cat-count {
  font-size: 12px;
  color: var(--text-muted);
}

.category-card.active {
  border-color: var(--rb-purple);
  background: linear-gradient(135deg, rgba(108,43,217,0.06), rgba(67,97,238,0.06));
}

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════════════ */
.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(108,43,217,0.3);
}

.product-img-wrap {
  position: relative;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  overflow: hidden;
}

.product-emoji {
  font-size: 5rem;
  transition: transform 0.4s ease;
  user-select: none;
}

.product-card:hover .product-emoji {
  transform: scale(1.12) rotate(3deg);
}

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

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.product-wishlist-btn:hover,
.product-wishlist-btn.active {
  background: var(--rb-red);
  border-color: var(--rb-red);
  color: white;
  transform: scale(1.1);
}

.product-quick-view {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: rgba(108,43,217,0.9);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: bottom 0.3s ease;
  backdrop-filter: blur(4px);
}

.product-card:hover .product-quick-view {
  bottom: 0;
}

.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--rb-purple);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.product-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.star-filled { color: var(--rb-yellow); font-size: 12px; }
.star-empty  { color: var(--border-color); font-size: 12px; }
.rating-count { font-size: 11px; color: var(--text-muted); }

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rb-purple);
}

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

.product-discount {
  font-size: 11px;
  font-weight: 700;
  background: rgba(239,35,60,0.1);
  color: var(--rb-red);
  padding: 2px 6px;
  border-radius: 4px;
}

.product-price-hidden {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-add-cart:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-add-cart.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-out-of-stock {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: not-allowed;
  width: 100%;
}

/* ══════════════════════════════════════════════════════════
   PROMO BANNERS
══════════════════════════════════════════════════════════ */
.promo-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  padding: 32px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.promo-banner:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.promo-banner-1 { background: linear-gradient(135deg, #6C2BD9 0%, #4361EE 100%); }
.promo-banner-2 { background: linear-gradient(135deg, #F72585 0%, #EF8C2A 100%); }
.promo-banner-3 { background: linear-gradient(135deg, #06D6A0 0%, #0096C7 100%); }

.promo-banner .promo-emoji {
  font-size: 4rem;
  position: absolute;
  right: 24px;
  bottom: 16px;
  opacity: 0.3;
  animation: float 5s ease-in-out infinite;
}

.promo-banner .badge-tag {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  display: inline-block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-banner .promo-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 6px;
}

.promo-banner .promo-sub {
  opacity: 0.85;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.promo-banner .btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}

.promo-banner .btn-promo:hover {
  background: rgba(255,255,255,0.35);
  color: white;
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP CTA SECTION
══════════════════════════════════════════════════════════ */
.whatsapp-section {
  background: linear-gradient(135deg, #0d1117 0%, #1a1a3e 100%);
  position: relative;
  overflow: hidden;
}

.whatsapp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(108,43,217,0.25) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(37,211,102,0.15) 0%, transparent 60%);
}

.whatsapp-section .content { position: relative; z-index: 1; }

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.btn-whatsapp-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}

.btn-whatsapp-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  color: white;
}

.btn-whatsapp-big .wa-icon {
  font-size: 1.5rem;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author .name { font-weight: 700; font-size: 0.9rem; }
.testimonial-author .location { font-size: 11px; color: var(--text-muted); }

.testimonial-stars { color: var(--rb-yellow); font-size: 13px; margin-bottom: 12px; }

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════ */
.why-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }

.why-card .title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-card .desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-input-wrap {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 14px 24px;
  color: white;
  font-size: 0.9rem;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-input:focus { outline: none; border-color: white; background: rgba(255,255,255,0.25); }

.btn-newsletter {
  background: white;
  color: var(--rb-purple);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-newsletter:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.main-footer {
  background: #0f0e17;
  color: rgba(255,255,255,0.75);
}

.footer-brand .brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover { transform: translateY(-3px); }

.footer-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--rb-purple); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.footer-contact .icon { color: var(--rb-purple); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

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

.payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

/* ══════════════════════════════════════════════════════════
   BUTTONS (Generic)
══════════════════════════════════════════════════════════ */
.btn-primary-rb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary-rb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline-rb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--rb-purple);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 50px;
  border: 2px solid var(--rb-purple);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-rb:hover {
  background: var(--rb-purple);
  color: white;
  transform: translateY(-2px);
}

/* View All button */
.view-all-wrap { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════════════════════════════
   SHOP PAGE — FILTERS
══════════════════════════════════════════════════════════ */
.shop-header {
  background: var(--gradient-primary);
  padding: 60px 0 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.shop-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.filter-sidebar {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.filter-title {
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.filter-category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 6px;
  text-align: left;
}

.filter-category-btn:hover,
.filter-category-btn.active {
  border-color: var(--rb-purple);
  background: rgba(108,43,217,0.07);
  color: var(--rb-purple);
}

.filter-category-btn .cat-emoji { font-size: 1.1rem; }
.filter-category-btn .cat-count {
  margin-left: auto;
  background: var(--bg-light);
  font-size: 11px;
  padding: 1px 7px;
  border-radius: 50px;
  color: var(--text-muted);
}

.price-range-wrap { margin: 16px 0; }
.price-range { width: 100%; accent-color: var(--rb-purple); }

.sort-select {
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.sort-select:focus { outline: none; border-color: var(--rb-purple); }

.products-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.grid-toggle-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.grid-toggle-btn.active {
  background: var(--rb-purple);
  border-color: var(--rb-purple);
  color: white;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.empty-state .empty-emoji { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }

/* ══════════════════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════════════════ */
.cart-item-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: var(--transition);
}

.cart-item-card:hover { box-shadow: var(--shadow-md); }

.cart-item-img {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-category { font-size: 11px; color: var(--rb-purple); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.cart-item-price { font-weight: 800; font-size: 1.05rem; color: var(--rb-purple); }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover { background: var(--rb-purple); color: white; }

.qty-display {
  width: 36px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.btn-remove-item {
  background: none;
  border: none;
  color: var(--rb-red);
  cursor: pointer;
  padding: 4px;
  font-size: 1.1rem;
  transition: var(--transition);
  border-radius: 4px;
}

.btn-remove-item:hover { background: rgba(239,35,60,0.1); }

.cart-summary-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: sticky;
  top: 90px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child { border-bottom: none; }
.summary-row.total { font-weight: 800; font-size: 1.05rem; color: var(--rb-purple); }

.summary-row.free-shipping { color: var(--rb-green); font-weight: 600; }

.btn-checkout-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 20px;
}

.btn-checkout-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group { margin-bottom: 20px; }

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

.form-control-rb {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-main);
  transition: var(--transition);
}

.form-control-rb:focus {
  outline: none;
  border-color: var(--rb-purple);
  box-shadow: 0 0 0 3px rgba(108,43,217,0.1);
  background: var(--bg-white);
}

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

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-hero {
  background: linear-gradient(135deg, #0f0e17, #1a1a3e, #0f3460);
  color: white;
  padding: 80px 0;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 16px;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 3px rgba(108,43,217,0.2);
}

.stat-box {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  color: white;
  text-align: center;
}

.stat-box .num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-box .lbl {
  font-size: 0.82rem;
  opacity: 0.85;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT MODAL
══════════════════════════════════════════════════════════ */
.product-modal .modal-content {
  border-radius: var(--radius-xl);
  border: none;
  box-shadow: var(--shadow-xl);
  background: var(--bg-white);
}

.product-modal .modal-img {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  font-size: 8rem;
}

.product-modal .modal-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--rb-purple);
}

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

/* ══════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════ */
#backToTop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

#backToTop.visible {
  opacity: 1;
  pointer-events: all;
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  z-index: 998;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  color: white;
}

.wa-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   DARK MODE TOGGLE
══════════════════════════════════════════════════════════ */
.dark-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-primary);
}

.dark-toggle:hover { background: var(--rb-purple); color: white; border-color: var(--rb-purple); }

/* ══════════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════════ */
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover, .page-btn.active {
  background: var(--rb-purple);
  border-color: var(--rb-purple);
  color: white;
}

/* ══════════════════════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════════════════════ */
.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-body { padding: 20px; }

.blog-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rb-purple);
  margin-bottom: 8px;
}

.blog-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   LOADERS & ANIMATIONS
══════════════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--border-color) 25%, var(--bg-light) 50%, var(--border-color) 75%);
  background-size: 200% auto;
  animation: skeleton-loading 1.5s linear infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.fade-in { animation: fadeIn 0.5s ease forwards; }

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

/* ══════════════════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-header-left { }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108,43,217,0.08);
  color: var(--rb-purple);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .filter-sidebar { position: static; margin-bottom: 24px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .hero-stats { gap: 16px; }
  .hero-content { padding: 40px 0; }
  .newsletter-input-wrap { flex-direction: column; }
  .cart-item-card { flex-wrap: wrap; }
  .promo-banner { min-height: 160px; padding: 24px; }
}

@media (max-width: 575px) {
  .hero-title { font-size: 1.8rem; }
  .product-modal .modal-img { height: 200px; font-size: 5rem; }
}

/* ══════════════════════════════════════════════════════════
   GOOGLE MAP
══════════════════════════════════════════════════════════ */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

/* ══════════════════════════════════════════════════════════
   MISC UI
══════════════════════════════════════════════════════════ */
.divider-rainbow {
  height: 3px;
  background: var(--gradient-rainbow);
  border: none;
  border-radius: 3px;
  background-size: 200%;
  animation: shimmer 3s linear infinite;
  margin: 0;
}

.tag-pill {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.in-stock { color: #06D6A0; font-weight: 700; font-size: 12px; }
.out-of-stock { color: var(--rb-red); font-weight: 700; font-size: 12px; }
