/* ===== GLOBAL RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.announcement-bar:hover { background: #111; }
.announcement-arrow { font-size: 16px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 54px; width: auto; border-radius: 8px; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .hamburger { display: none; }
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  color: #1a1a1a;
  white-space: nowrap;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-link:hover { background: #f5f5f5; }
.nav-chevron { font-size: 10px; margin-left: 3px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #1a1a1a;
  transition: background 0.15s;
}
.dropdown-menu a:hover { background: #f5f5f5; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  color: #1a1a1a;
  transition: background 0.2s;
  position: relative;
}
.icon-btn:hover { background: #f5f5f5; }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-container {
  background: #fff;
  padding: 40px 20px;
  max-height: 80vh;
  overflow-y: auto;
}
.search-inner { max-width: 600px; margin: 0 auto; }
.search-inner h2 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.search-input-wrap i { font-size: 18px; color: #666; }
.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  color: #1a1a1a;
}
.search-close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 20px;
  color: #666;
  padding: 8px;
}
.search-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }

/* ===== SIDEBAR ===== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 299;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 320px;
  background: #fff;
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar.open { transform: translateX(0); }
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-logo { height: 48px; border-radius: 8px; }
.sidebar-close { font-size: 22px; color: #1a1a1a; padding: 4px; }

.sidebar-body { flex: 1; overflow: hidden; position: relative; }
.sidebar-main, .sidebar-panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-panel {
  transform: translateX(100%);
  background: #fff;
}
.sidebar-panel.active { transform: translateX(0); }
.sidebar-main.hidden { transform: translateX(-100%); }

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 0.15s;
}
.sidebar-item:hover { background: #f9f9f9; }
.sidebar-item-home { justify-content: flex-start; font-size: 14px; }

.sidebar-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #666;
  background: #f5f5f5;
  cursor: pointer;
  text-transform: uppercase;
}
.sidebar-panel-header:hover { background: #eeeeee; }

.sidebar-sub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  color: #1a1a1a;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background 0.15s;
}
.sidebar-sub-item:hover { background: #f9f9f9; }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
  background: #f9f9f9;
}
.sidebar-login {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.sidebar-socials { display: flex; gap: 16px; font-size: 18px; color: #1a1a1a; }
.sidebar-socials a:hover { color: #555; }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 380px;
  background: #1a1a1a;
}
@media (min-width: 768px) { .hero-section { height: 460px; } }
.hero-slider { position: relative; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 40px;
  opacity: 0;
  transition: opacity 0.6s;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-content { max-width: 560px; }
.hero-warning { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.hero-brand { font-size: 12px; font-weight: 800; letter-spacing: 4px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.hero-title { font-size: 32px; font-weight: 900; line-height: 1.1; margin-bottom: 12px; }
@media (min-width: 768px) { .hero-title { font-size: 48px; } }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.hero-cta {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.hero-cta:hover { background: #fff; color: #000; }
.hero-swipe { position: absolute; bottom: 20px; right: 20px; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.hero-dot.active { background: #fff; width: 20px; border-radius: 4px; }
.hero-pause { color: rgba(255,255,255,0.5); font-size: 12px; padding: 4px; }
.hero-prev, .hero-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  padding: 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  transition: all 0.2s;
}
.hero-prev { left: 8px; }
.hero-next { right: 8px; }
.hero-prev:hover, .hero-next:hover { background: rgba(0,0,0,0.6); color: #fff; }

/* ===== TRUST SECTION ===== */
.trust-section { padding: 40px 20px; background: #fff; border-bottom: 1px solid #f0f0f0; }
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .trust-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-inner { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: flex-start; gap: 16px; }
.trust-icon {
  font-size: 36px;
  color: #1a1a1a;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-text { display: flex; flex-direction: column; gap: 4px; }
.trust-text strong { font-size: 14px; font-weight: 700; }
.trust-text span { font-size: 13px; color: #666; }

/* ===== PRODUCT SECTIONS ===== */
.product-section { padding: 40px 0; border-bottom: 1px solid #f5f5f5; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; }

/* Product Carousel */
.product-carousel-wrap { position: relative; }
.product-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}
.product-carousel::-webkit-scrollbar { display: none; }

/* Product Card */
.product-card {
  flex: 0 0 calc(50% - 8px);
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.2s, transform 0.2s;
}
@media (min-width: 640px) { .product-card { flex: 0 0 calc(33.333% - 12px); } }
@media (min-width: 1024px) { .product-card { flex: 0 0 calc(25% - 12px); } }
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.product-link { display: block; }
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: #f8f8f8;
  overflow: hidden;
}
.badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}
.badge-sale { background: #22c55e; color: #fff; }
.badge-sold { background: #1a1a1a; color: #fff; }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f8f8 0%, #eeeeee 100%);
}
.product-svg-icon { width: 70%; height: 70%; }
.product-svg-icon svg { width: 100%; height: 100%; }
.product-info { padding: 12px; }
.product-name {
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.stars-sm { color: #f5a623; font-size: 12px; }
.review-num { font-size: 11px; color: #888; }
.product-price { display: flex; flex-direction: column; gap: 2px; }
.old-price { font-size: 12px; color: #999; text-decoration: line-through; }
.price { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.add-to-cart-btn {
  width: 100%;
  padding: 10px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
  border-top: 1px solid #f0f0f0;
}
.add-to-cart-btn:hover { background: #333; }

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.car-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: #1a1a1a;
  transition: all 0.2s;
  background: #fff;
}
.car-btn:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.car-indicator { font-size: 13px; color: #666; min-width: 40px; text-align: center; }
.view-all-btn {
  display: block;
  margin: 20px auto 0;
  padding: 14px 40px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.2s;
}
.view-all-btn:hover { background: #333; }

/* ===== DELIVERY BANNER ===== */
.delivery-banner {
  margin: 20px 0;
  background: linear-gradient(135deg, #f5a623, #ff6b00);
  border-radius: 8px;
  overflow: hidden;
}
.delivery-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  color: #fff;
}
.delivery-banner-inner i { font-size: 32px; flex-shrink: 0; }
.delivery-banner-inner strong { display: block; font-size: 16px; font-weight: 800; letter-spacing: 0.5px; }
.delivery-banner-inner span { font-size: 13px; opacity: 0.9; }

/* ===== BRANDS SECTION ===== */
.brands-section { padding: 40px 0; }
.brands-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.brands-carousel::-webkit-scrollbar { display: none; }
.brand-item { flex: 0 0 120px; text-align: center; }
.brand-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  background: #f5f5f5;
  transition: all 0.2s;
  cursor: pointer;
}
.brand-circle:hover { border-color: #1a1a1a; background: #1a1a1a; color: #fff; }
.brand-circle span { font-size: 11px; font-weight: 800; text-align: center; line-height: 1.2; padding: 4px; }
.brand-item p { font-size: 12px; font-weight: 500; color: #666; }

/* ===== CATEGORY BANNERS ===== */
.cat-banner-section { padding: 40px 0; }
.cat-banner-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-banner-grid::-webkit-scrollbar { display: none; }
.cat-banner-item {
  flex: 0 0 280px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .cat-banner-grid { overflow: visible; }
  .cat-banner-item { flex: 1; }
}
.cat-eliquids { background: linear-gradient(135deg, #0d4f8b, #1a8cff); }
.cat-podkits { background: linear-gradient(135deg, #6b1a8c, #c44dff); }
.cat-disposables { background: linear-gradient(135deg, #1a4a0d, #2ecc71); }
.cat-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.cat-banner-overlay span {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

/* ===== STORE BANNER ===== */
.store-banner { margin: 20px 0; border-radius: 8px; overflow: hidden; }
.store-interior-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #2c1810, #8b4513);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.store-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
}
.store-logo { height: 48px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }

/* ===== WHATSAPP SECTION ===== */
.whatsapp-section { padding: 40px 0; background: #f9f9f9; }
.whatsapp-promo-banner {
  background: #000;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.wa-promo-icon { font-size: 48px; color: #25D366; flex-shrink: 0; }
.wa-promo-text { color: #fff; }
.wa-promo-text strong { display: block; font-size: 20px; font-weight: 900; color: #ff6b00; margin-bottom: 4px; }
.wa-promo-text span { display: block; font-size: 14px; font-weight: 600; color: #f5a623; margin-bottom: 4px; }
.wa-promo-text em { display: block; font-size: 12px; font-style: italic; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.wa-promo-text code { font-family: monospace; font-size: 12px; color: #25D366; }
.whatsapp-cta-block { padding: 24px; background: #fff; border-radius: 12px; border: 1px solid #f0f0f0; }
.whatsapp-cta-block h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.whatsapp-cta-block p { font-size: 14px; line-height: 1.8; color: #444; margin-bottom: 20px; }
.wa-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.2s;
}
.wa-follow-btn:hover { background: #25D366; }
.wa-follow-btn i { font-size: 18px; }

/* ===== COLLECTION PAGE ===== */
.collection-page { max-width: 1400px; margin: 0 auto; padding: 32px 20px; }
.collection-header { margin-bottom: 24px; }
.collection-header h1 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}
.product-count { font-size: 13px; color: #666; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-grid .product-card { flex: none; width: auto; }

/* ===== PRODUCT DETAIL ===== */
.product-detail { max-width: 1200px; margin: 0 auto; padding: 24px 20px; }
.breadcrumb { font-size: 13px; color: #888; margin-bottom: 24px; }
.breadcrumb a { color: #888; }
.breadcrumb a:hover { text-decoration: underline; }
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .product-detail-inner { grid-template-columns: 1fr 1fr; } }
.product-detail-img { border-radius: 12px; overflow: hidden; }
.product-detail-placeholder {
  aspect-ratio: 1;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-svg-lg { width: 60%; height: 60%; }
.product-detail-info h1 { font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: #f5a623; font-size: 18px; }
.detail-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.price-lg { font-size: 24px; font-weight: 800; }
.product-detail-desc { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 24px; }
.add-to-cart-group { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.qty-selector { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.qty-btn {
  width: 40px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: #f5f5f5;
  transition: background 0.2s;
}
.qty-btn:hover { background: #e0e0e0; }
.qty-input {
  width: 56px; height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}
.add-to-cart-full {
  flex: 1;
  min-width: 160px;
  padding: 14px 28px;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s;
}
.add-to-cart-full:hover { background: #333; }
.add-to-cart-full.disabled { background: #999; cursor: not-allowed; }
.product-meta { display: flex; flex-direction: column; gap: 10px; }
.meta-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #555; }
.meta-item i { width: 16px; color: #1a1a1a; }
.related-products h2 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

/* ===== POLICY PAGES ===== */
.policy-page { max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.policy-page h1 { font-size: 28px; font-weight: 900; text-transform: uppercase; margin-bottom: 24px; line-height: 1.2; }
.policy-page h2 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; }
.policy-page p { font-size: 14px; font-style: italic; line-height: 1.8; color: #444; margin-bottom: 16px; }
.policy-page p:not(:first-of-type) { font-style: normal; }
.policy-page ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-page li { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.policy-page .breadcrumb { margin-bottom: 16px; }

/* Locations */
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
@media (min-width: 640px) { .locations-grid { grid-template-columns: repeat(4, 1fr); } }
.location-card {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s;
  display: block;
}
.location-card:hover { border-color: #1a1a1a; background: #1a1a1a; color: #fff; }
.location-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.location-card p { font-size: 12px; color: #888; margin-bottom: 8px; }
.location-card:hover p { color: rgba(255,255,255,0.7); }
.location-card span { font-size: 12px; font-weight: 600; }

/* ===== CONTACT PAGE ===== */
.contact-page { max-width: 1000px; margin: 0 auto; padding: 40px 20px; }
.contact-page h1 { font-size: 32px; font-weight: 800; margin-bottom: 32px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.contact-info i { width: 20px; color: #1a1a1a; }
.contact-socials { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.contact-socials a { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: #1a1a1a; }
.contact-form-wrap h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #1a1a1a; }
.contact-form button {
  padding: 14px;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s;
}
.contact-form button:hover { background: #333; }

/* ===== CART PAGE ===== */
.cart-page { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.cart-page h1 { font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty i { font-size: 64px; color: #ddd; margin-bottom: 16px; display: block; }
.cart-empty p { font-size: 16px; color: #888; margin-bottom: 24px; }
.continue-shopping-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item-img {
  width: 80px; height: 80px;
  background: #f5f5f5;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-img svg { width: 60%; height: 60%; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.cart-item-remove { font-size: 18px; color: #999; transition: color 0.2s; }
.cart-item-remove:hover { color: #e74c3c; }
.cart-summary { margin-top: 24px; padding: 20px; background: #f9f9f9; border-radius: 8px; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.cart-shipping-note { font-size: 13px; color: #888; margin-bottom: 16px; }
.checkout-btn {
  width: 100%;
  padding: 16px;
  background: #1a1a1a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.checkout-btn:hover { background: #333; }
.continue-link { display: block; text-align: center; font-size: 14px; color: #666; text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: #1a1a1a; color: #fff; margin-top: 0; }
.footer-top { padding: 48px 20px 32px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.7); transition: color 0.2s; letter-spacing: 0.5px; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.footer-phone { font-size: 14px; font-weight: 700; color: #fff; display: block; margin-bottom: 16px; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; }
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}
.cod { background: #f5a623; color: #fff; }
.tcs { background: #c00; color: #fff; font-size: 15px; font-weight: 900; }
.bank { background: #0d3b8c; color: #fff; }
.footer-logo { height: 60px; margin-bottom: 16px; }
.footer-rating { margin-bottom: 16px; }
.footer-rating p { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.stars-row { display: flex; align-items: center; gap: 8px; }
.stars-row .stars { color: #22c55e; font-size: 18px; }
.stars-row strong { font-size: 18px; }
.stars-row .review-count { font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-socials { display: flex; gap: 16px; font-size: 20px; }
.footer-socials a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-socials a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== ERROR PAGE ===== */
.error-page { text-align: center; padding: 80px 20px; }
.error-page h1 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.error-page a { display: inline-block; margin-top: 16px; padding: 12px 28px; background: #1a1a1a; color: #fff; border-radius: 4px; font-weight: 600; }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: translateX(120%);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast i { font-size: 16px; color: #22c55e; }
