:root {
  --primary: #E41E31;
  --primary-dark: #C41527;
  --primary-light: #FFF0F1;
  --ios-blue: #E41E31;
  --ios-blue-dark: #C41527;
  --ios-green: #34C759;
  --ios-red: #FF3B30;
  --ios-orange: #FF9500;
  --ios-yellow: #FFCC00;
  --ios-purple: #AF52DE;
  --ios-pink: #FF2D55;
  --ios-teal: #5AC8FA;
  --ios-gray: #8E8E93;
  --ios-gray2: #AEAEB2;
  --ios-gray3: #C7C7CC;
  --ios-gray4: #D1D1D6;
  --ios-gray5: #E5E5EA;
  --ios-gray6: #F7F7F7;
  --ios-bg: #F5F5F5;
  --ios-card: #FFFFFF;
  --ios-text: #1A1A1A;
  --ios-text2: #333333;
  --ios-text3: #666666;
  --ios-separator: rgba(0,0,0,0.08);
  --ios-blur: rgba(255,255,255,0.85);
  --ios-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.06);
  --ios-shadow-lg: 0 4px 12px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.12);
  --ios-radius: 10px;
  --ios-radius-lg: 14px;
  --ios-radius-xl: 20px;
  --ios-transition: all 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--ios-bg); color: var(--ios-text); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { font-family: var(--font); cursor: pointer; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.main-content { min-height: 100vh; }

/* ============ LULU TOP BAR (RED) ============ */
.lulu-topbar {
  background: var(--primary);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.lulu-topbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lulu-hamburger {
  display: none;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.lulu-logo {
  flex-shrink: 0;
  overflow: hidden;
}

.lulu-logo-text {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.lulu-logo-text em {
  font-style: normal;
  background: #FFD700;
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  margin-left: 4px;
}

/* Toggle Buttons */
.lulu-toggle {
  display: flex;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.lulu-toggle-btn {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.lulu-toggle-btn.active {
  background: #fff;
  color: var(--primary);
}

/* Search Bar */
.lulu-search {
  flex: 1;
  max-width: 560px;
  min-width: 0;
}

.lulu-search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 0 4px 0 14px;
  height: 44px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  overflow: hidden;
}

.lulu-search-form:focus-within {
  border-color: rgba(255,255,255,0.6);
}

.lulu-search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 0 10px;
  background: transparent;
  font-family: var(--font);
  color: var(--ios-text);
}

.lulu-search-form input::placeholder { color: #999; }

.lulu-search-btn {
  padding: 8px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.lulu-search-btn:hover { background: var(--primary-dark); }

/* Right Actions */
.lulu-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lulu-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.lulu-delivery:hover { background: rgba(255,255,255,0.1); }

.lulu-delivery-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.lulu-delivery-loc {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

.lulu-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.lulu-lang:hover { background: rgba(255,255,255,0.1); }

.lulu-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s;
  position: relative;
}

.lulu-icon-btn:hover { background: rgba(255,255,255,0.25); }

.lulu-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #FFD700;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ============ CATEGORY NAV BAR ============ */
.lulu-catbar {
  background: #fff;
  border-bottom: 1px solid var(--ios-separator);
  position: sticky;
  top: 62px;
  z-index: 90;
}

.lulu-catbar-inner {
  display: flex;
  align-items: center;
  height: 48px;
  gap: 8px;
}

/* All Categories Button + Dropdown */
.lulu-allcats-wrap {
  position: relative;
  flex-shrink: 0;
}

.lulu-allcats-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary-light);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.lulu-allcats-btn:hover { background: #ffe0e3; }

/* Mega Dropdown */
.lulu-mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 580px;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 200;
  overflow: hidden;
}

.lulu-mega-dropdown.open { display: flex; }

.lulu-mega-left {
  width: 240px;
  background: var(--ios-gray6);
  border-right: 1px solid var(--ios-separator);
  max-height: 400px;
  overflow-y: auto;
}

.lulu-mega-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}

.lulu-mega-cat:hover,
.lulu-mega-cat.active {
  background: #fff;
  border-left-color: var(--primary);
  color: var(--primary);
}

.lulu-mega-cat-icon { font-size: 18px; flex-shrink: 0; }
.lulu-mega-cat-name { flex: 1; }

.lulu-mega-right {
  flex: 1;
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.lulu-mega-sub-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #999;
}

.lulu-mega-sub-default h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ios-text);
  margin-bottom: 4px;
}

.lulu-mega-sub-default p { font-size: 13px; }

.lulu-mega-sub-list h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.lulu-mega-sub-list a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ios-text2);
  border-bottom: 1px solid var(--ios-separator);
  transition: color 0.15s;
}

.lulu-mega-sub-list a:last-child { border-bottom: none; }
.lulu-mega-sub-list a:hover { color: var(--primary); }

/* Horizontal Category Links */
.lulu-cat-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  padding: 0 8px;
}

.lulu-cat-links::-webkit-scrollbar { display: none; }

.lulu-cat-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ios-text2);
  white-space: nowrap;
  border-radius: 8px;
  transition: all 0.2s;
}

.lulu-cat-link:hover { color: var(--primary); background: var(--primary-light); }

.lulu-cat-deals {
  color: var(--primary);
}

.lulu-fire { margin-right: 2px; }

/* Cat Bar Promo */
.lulu-catbar-promo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff3cd;
  border-radius: 8px;
  flex-shrink: 0;
}

.lulu-promo-badge {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.lulu-promo-text {
  font-size: 13px;
  color: var(--ios-text);
  white-space: nowrap;
}

/* Promo Strip */
.lulu-promo-strip {
  background: var(--ios-card);
  border-bottom: 1px solid var(--ios-separator);
}

.lulu-promo-strip-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--ios-text2);
}

.lulu-promo-strip-tag {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ============ DROPDOWN MENU ============ */
.nav-dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  padding: 8px;
  z-index: 300;
  margin-top: 8px;
}

.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s;
}

.dropdown-item:hover { background: var(--ios-gray6); }
.dropdown-divider { height: 1px; background: var(--ios-separator); margin: 4px 0; }
.text-red { color: var(--ios-red) !important; }

/* ============ HERO DUAL PANEL ============ */
.hero-dual { padding: 16px 0 0; }

.hero-dual-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
  align-items: stretch;
}

.hero-dual-inner .hero-slider {
  margin: 0;
  max-width: none;
  height: 100%;
  min-height: 400px;
}

.hero-side-promos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-promo-card {
  flex: 1;
  border-radius: var(--ios-radius-lg);
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.side-promo-card:hover { transform: translateY(-3px); }

.side-promo-gold {
  background: linear-gradient(135deg, #B8860B, #FFD700);
}

.side-promo-blue {
  background: linear-gradient(135deg, #1E40AF, #60A5FA);
}

.side-promo-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.25);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.side-promo-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.side-promo-card p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.side-promo-cta {
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  padding: 7px 14px;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.2s;
}

.side-promo-card:hover .side-promo-cta { background: rgba(255,255,255,0.3); }

/* ============ HERO SLIDER ============ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
  margin: 16px auto;
  max-width: 1320px;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slider .slide.active { opacity: 1; }

.slide-bg {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.slide-text {
  max-width: 500px;
  color: #fff;
}

.slide-text h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slide-text p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active { width: 40px; background: #fff; }

/* ============ HORIZONTAL SCROLL SECTIONS ============ */
.section { padding: 24px 0; }

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header-row h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ios-text);
}

.view-all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: opacity 0.2s;
}

.view-all-link:hover { opacity: 0.7; }

/* Category Scroll */
.section-cat-scroll { padding: 20px 0; }

.cat-scroll-wrap {
  overflow-x: hidden;
  padding: 0 16px;
}

.cat-scroll-wrap::-webkit-scrollbar { display: none; }

.cat-scroll {
  display: flex;
  gap: 24px;
  padding: 8px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-scroll-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 120px;
  transition: transform 0.2s;
}

.cat-scroll-card:hover { transform: translateY(-4px); }

.cat-scroll-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  transition: border-color 0.2s;
}

.cat-scroll-card:hover .cat-scroll-img { border-color: var(--primary); }

.cat-scroll-img img { width: 100%; height: 100%; object-fit: cover; }

.cat-scroll-icon { font-size: 32px; }

.cat-scroll-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ios-text);
  text-align: center;
}

.cat-scroll-count {
  font-size: 11px;
  color: var(--ios-text3);
}

/* Products Scroll */
.products-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 16px;
  scroll-snap-type: x mandatory;
}

.products-scroll::-webkit-scrollbar { display: none; }

/* ============ PRODUCT CARD ============ */
.product-card {
  background: var(--ios-card);
  border-radius: var(--ios-radius-lg);
  overflow: hidden;
  transition: var(--ios-transition);
  cursor: pointer;
  flex: 0 0 240px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

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

.product-card-image {
  height: 200px;
  background: var(--ios-gray6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  background: var(--ios-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2;
}

.product-badge-new_arrival { background: var(--primary); }
.product-badge-best_seller { background: #FF9500; }
.product-badge-limited { background: var(--ios-purple); }
.product-badge-hot { background: #FF2D55; }
.product-badge-sale { background: var(--ios-red); }

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #999;
  transition: all 0.2s;
}

.wishlist-btn:hover { color: var(--ios-red); background: #fff; }

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

.product-card-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ios-text);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.stars { color: #FFB800; font-size: 13px; }
.rating-count { font-size: 12px; color: var(--ios-text3); }

.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--ios-text);
}

.price-compare {
  font-size: 13px;
  color: var(--ios-text3);
  text-decoration: line-through;
}

.product-stock-out {
  font-size: 13px;
  font-weight: 600;
  color: var(--ios-red);
  margin-top: 6px;
}

.product-stock-low {
  font-size: 13px;
  font-weight: 500;
  color: var(--ios-orange);
  margin-top: 6px;
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s;
}

.add-to-cart-btn:hover { background: var(--primary-dark); }

/* ============ PROMO BANNERS ============ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.promo-card {
  border-radius: var(--ios-radius-lg);
  padding: 28px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  transition: transform 0.2s;
  text-decoration: none;
}

.promo-card:hover { transform: translateY(-4px); }

.promo-green { background: linear-gradient(135deg, #0D6B3F, #10B981); }
.promo-blue { background: linear-gradient(135deg, #2563EB, #60A5FA); }
.promo-orange { background: linear-gradient(135deg, #EA580C, #FB923C); }

.promo-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.promo-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.promo-card p { font-size: 14px; opacity: 0.85; margin-bottom: 12px; }

.promo-btn {
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.2s;
}

.promo-card:hover .promo-btn { background: rgba(255,255,255,0.3); }

/* ============ FEATURES STRIP ============ */
.features-strip {
  background: var(--ios-card);
  border-top: 1px solid var(--ios-separator);
  border-bottom: 1px solid var(--ios-separator);
  padding: 20px 0;
}

.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.feature-strip-item svg { color: var(--primary); flex-shrink: 0; }
.feature-strip-item strong { display: block; font-size: 13px; font-weight: 700; }
.feature-strip-item span { font-size: 12px; color: var(--ios-text3); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--ios-radius);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--ios-transition);
  text-decoration: none;
  font-family: var(--font);
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: scale(1.02); opacity: 1; }
.btn-secondary { background: var(--ios-gray6); color: var(--ios-text); }
.btn-secondary:hover { background: var(--ios-gray5); opacity: 1; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--ios-radius);
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--ios-shadow-lg);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s ease;
}

.toast.error { background: var(--ios-red); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ============ CATEGORIES ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--ios-card);
  border-radius: var(--ios-radius-lg);
  overflow: hidden;
  transition: var(--ios-transition);
  text-decoration: none;
}

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

.category-card-image {
  height: 140px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.category-card-image img { width: 100%; height: 100%; object-fit: cover; }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.category-card-overlay h3 { color: #fff; font-size: 15px; font-weight: 700; }

.category-card-body { padding: 14px; }
.category-card-body h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.category-card-body p { font-size: 12px; color: var(--ios-text3); }

/* ============ CART PAGE ============ */
.cart-page { padding: 30px 0; }
.cart-page h1 { font-size: 26px; font-weight: 800; margin-bottom: 24px; }

.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty-icon { font-size: 4rem; margin-bottom: 16px; }
.cart-empty h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.cart-empty p { color: var(--ios-text3); margin-bottom: 24px; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}

.cart-items { display: flex; flex-direction: column; gap: 12px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--ios-card);
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow);
}

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ios-gray6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }
.cart-item-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.cart-item-sku { font-size: 12px; color: var(--ios-text3); margin-bottom: 4px; }
.cart-item-price { font-size: 17px; font-weight: 700; }

.cart-item-actions { display: flex; align-items: center; gap: 12px; margin-top: 8px; }

.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--ios-gray4);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 34px;
  height: 34px;
  background: var(--ios-gray6);
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.qty-btn:hover { background: var(--ios-gray5); }

.qty-value {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.qty-value::-webkit-inner-spin-button { -webkit-appearance: none; }

.cart-item-remove {
  background: none;
  border: none;
  color: var(--ios-red);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.cart-item-remove:hover { text-decoration: underline; }

.cart-summary {
  background: var(--ios-card);
  border-radius: var(--ios-radius-lg);
  padding: 24px;
  box-shadow: var(--ios-shadow);
  height: fit-content;
  position: sticky;
  top: 130px;
}

.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }

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

.summary-row.total {
  font-size: 17px;
  font-weight: 700;
  color: var(--ios-text);
  border-bottom: none;
}

/* ============ AUTH PAGES ============ */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 40px 20px;
}

.auth-card {
  background: var(--ios-card);
  border-radius: var(--ios-radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--ios-shadow-lg);
}

.auth-card h1 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.auth-card .subtitle { font-size: 14px; color: var(--ios-text3); margin-bottom: 24px; }

.auth-divider {
  text-align: center;
  font-size: 13px;
  color: var(--ios-text3);
  margin: 20px 0;
  position: relative;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--ios-separator);
}

.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ios-text3);
}

/* ============ FORM ELEMENTS ============ */
.ios-input-group {
  margin-bottom: 16px;
}

.ios-input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ios-text2);
  margin-bottom: 6px;
}

.ios-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--ios-gray4);
  border-radius: var(--ios-radius);
  font-size: 15px;
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
  background: #fff;
}

.ios-input:focus { border-color: var(--primary); }

.ios-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ios-text2);
  cursor: pointer;
}

.ios-alert {
  padding: 12px 16px;
  border-radius: var(--ios-radius);
  font-size: 14px;
  margin-bottom: 16px;
}

.ios-alert.error { background: #FFF0F0; color: var(--ios-red); border: 1px solid #FFD4D4; }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ios-bg);
  z-index: 2000;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-close-btn {
  background: var(--ios-gray6);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ios-text);
}

.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; }

.mobile-menu-links a {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--ios-radius);
  transition: background 0.15s;
}

.mobile-menu-links a:hover { background: var(--ios-gray6); }
.mobile-divider { height: 1px; background: var(--ios-separator); margin: 8px 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: #1A1A1A;
  color: #fff;
  margin-top: 40px;
}

.site-footer .container { padding-top: 40px; padding-bottom: 30px; }

.app-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--primary), #FF4D5A);
  border-radius: var(--ios-radius-lg);
  padding: 24px 32px;
  margin-bottom: 40px;
}

.app-banner-text h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.app-banner-text p { font-size: 14px; color: rgba(255,255,255,0.8); }

.app-banner-buttons { display: flex; gap: 12px; }

.app-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  color: #1A1A1A;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--ios-transition);
}

.app-btn:hover { background: #f0f0f0; opacity: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: #fff; }

.footer-contact { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }

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

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
}

.social-icon:hover { background: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }

.footer-payments { display: flex; gap: 10px; }

.pay-icon {
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ============ ADMIN ============ */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: #1A1A1A;
  color: #fff;
  padding: 24px 0;
}

.admin-sidebar-header {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.admin-sidebar-header h3 { font-size: 16px; font-weight: 700; }

.admin-sidebar-links { display: flex; flex-direction: column; gap: 2px; padding: 0 12px; }

.admin-sidebar-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  transition: all 0.15s;
}

.admin-sidebar-links a:hover,
.admin-sidebar-links a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.admin-main { padding: 24px; }

/* ============ ADMIN LOGIN ============ */
.admin-login-body {
  background: linear-gradient(135deg, #0D6B3F 0%, #10B981 50%, #059669 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-wrap { width: 100%; max-width: 400px; padding: 20px; }

.admin-login-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.admin-login-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.admin-login-card p {
  font-size: 14px;
  color: var(--ios-text3);
  margin-bottom: 24px;
}

/* ============ ADMIN DASHBOARD ============ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--ios-card);
  border-radius: var(--ios-radius-lg);
  padding: 20px;
  box-shadow: var(--ios-shadow);
}

.stat-card h4 { font-size: 13px; font-weight: 600; color: var(--ios-text3); margin-bottom: 8px; }
.stat-card .stat-value { font-size: 28px; font-weight: 800; color: var(--ios-text); }

/* ============ ADMIN TABLE ============ */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ios-card);
  border-radius: var(--ios-radius-lg);
  overflow: hidden;
  box-shadow: var(--ios-shadow);
}

.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ios-text3);
  background: var(--ios-gray6);
  border-bottom: 1px solid var(--ios-separator);
}

.admin-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--ios-separator);
}

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

/* ============ ADMIN CARDS GRID ============ */
.admin-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.admin-card {
  background: var(--ios-card);
  border-radius: var(--ios-radius-lg);
  overflow: hidden;
  box-shadow: var(--ios-shadow);
}

.admin-card-image {
  height: 160px;
  background: var(--ios-gray6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.admin-card-image img { width: 100%; height: 100%; object-fit: cover; }

.admin-card-body { padding: 16px; }
.admin-card-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.admin-card-body p { font-size: 13px; color: var(--ios-text3); }

.admin-card-actions {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--ios-separator);
}

/* ============ ADMIN MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open { display: flex; }

.modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ============ BADGE ============ */
.badge { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-active { background: #E8F5EE; color: #0D6B3F; }
.badge-inactive { background: #FFF0F0; color: #FF3B30; }
.badge-pending { background: #FFF8E1; color: #F59E0B; }
.badge-completed { background: #E8F5EE; color: #0D6B3F; }

/* ============ LISTING PAGE ============ */
.lp-section { padding: 20px 0 60px; }

.lp-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ios-text3); margin-bottom: 16px; flex-wrap: wrap;
}
.lp-breadcrumb a { color: var(--ios-text3); transition: color 0.2s; }
.lp-breadcrumb a:hover { color: var(--primary); }
.lp-breadcrumb .current { color: var(--ios-text); font-weight: 600; }
.lp-breadcrumb span { color: var(--ios-gray3); }

.lp-subcat-tabs-wrap {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.lp-subcat-tabs {
  display: flex; gap: 8px; overflow-x: auto; flex: 1;
  scrollbar-width: none; padding: 4px 0;
}
.lp-subcat-tabs::-webkit-scrollbar { display: none; }
.lp-subcat-tab {
  display: flex; align-items: center; white-space: nowrap;
  padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 500;
  background: var(--ios-card); color: var(--ios-text2);
  border: 1px solid var(--ios-gray5); transition: all 0.2s; flex-shrink: 0;
}
.lp-subcat-tab:hover { border-color: var(--primary); color: var(--primary); }
.lp-subcat-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.lp-subcat-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--ios-gray5);
  background: var(--ios-card); cursor: pointer; font-size: 18px;
  color: var(--ios-text3); flex-shrink: 0; transition: all 0.2s;
}
.lp-subcat-arrow:hover { border-color: var(--primary); color: var(--primary); }

.lp-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: flex-start;
}

/* Sidebar */
.lp-sidebar {
  background: var(--ios-card); border-radius: var(--ios-radius-lg); padding: 20px;
  box-shadow: var(--ios-shadow); position: sticky; top: 120px;
  max-height: calc(100vh - 140px); overflow-y: auto;
}
.lp-sidebar-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--ios-separator);
}
.lp-sidebar-header h3 { font-size: 17px; font-weight: 700; }
.lp-clear-filters { font-size: 13px; color: var(--primary); font-weight: 500; }
.lp-clear-filters:hover { text-decoration: underline; }

.lp-filter-group {
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--ios-separator);
}
.lp-filter-group:last-of-type { border-bottom: none; }
.lp-filter-title {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 700; color: var(--ios-text); cursor: pointer;
  margin-bottom: 12px; user-select: none;
}
.lp-filter-toggle { font-size: 18px; color: var(--ios-text3); font-weight: 400; }
.lp-filter-options { display: flex; flex-direction: column; gap: 8px; }
.lp-filter-check {
  display: flex; align-items: center; gap: 8px; font-size: 13px;
  color: var(--ios-text2); cursor: pointer;
}
.lp-filter-check input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer;
}

.lp-price-form { display: flex; flex-direction: column; gap: 10px; }
.lp-price-range { display: flex; align-items: center; gap: 8px; }
.lp-price-input {
  flex: 1; padding: 8px 10px; border: 1px solid var(--ios-gray4);
  border-radius: 8px; font-size: 13px; font-family: var(--font);
}
.lp-price-input:focus { border-color: var(--primary); outline: none; }
.lp-price-apply {
  padding: 8px; background: var(--primary); color: #fff; border: none;
  border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: var(--font);
}
.lp-price-apply:hover { background: var(--primary-dark); }
.lp-price-labels {
  display: flex; justify-content: space-between; font-size: 11px; color: var(--ios-text3);
}

/* Mobile sidebar close */
.lp-sidebar-close {
  display: none; width: 100%; padding: 12px; background: var(--primary); color: #fff;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 600;
  cursor: pointer; margin-top: 16px; font-family: var(--font);
}

/* Main Content */
.lp-main { min-width: 0; }

.lp-topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.lp-filter-mobile-btn {
  display: none; align-items: center; gap: 6px; padding: 8px 14px;
  background: var(--ios-card); border: 1px solid var(--ios-gray4);
  border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font);
}
.lp-result-count { font-size: 13px; color: var(--ios-text3); }
.lp-sort-wrap {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ios-text3);
}
.lp-sort-select {
  padding: 8px 32px 8px 12px; border: 1px solid var(--ios-gray4);
  border-radius: 8px; font-size: 13px; font-family: var(--font);
  background: var(--ios-card); cursor: pointer; appearance: auto;
}

/* Product Grid */
.lp-product-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.lp-product-card {
  background: var(--ios-card); border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow); padding: 14px; position: relative;
  display: flex; flex-direction: column; transition: box-shadow 0.2s;
}
.lp-product-card:hover { box-shadow: var(--ios-shadow-lg); }

.lp-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 8px; border-radius: 6px; font-size: 11px; font-weight: 700;
  z-index: 2;
}
.lp-wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ios-gray6); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ios-text3); z-index: 2; transition: all 0.2s;
}
.lp-wishlist-btn:hover { background: #ffe0e3; color: var(--primary); }

.lp-product-img-link { display: block; }
.lp-product-img {
  width: 100%; aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  background: var(--ios-gray6); margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
}
.lp-product-img img {
  width: 100%; height: 100%; object-fit: contain; padding: 8px;
}
.lp-product-img-placeholder { font-size: 40px; }

.lp-product-brand {
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: var(--primary-light); padding: 2px 8px;
  border-radius: 4px; display: inline-block; margin-bottom: 6px;
  align-self: flex-start;
}
.lp-product-name {
  font-size: 13px; font-weight: 500; color: var(--ios-text);
  line-height: 1.4; margin-bottom: 8px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-product-name:hover { color: var(--primary); }

.lp-product-price {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.lp-price-old {
  font-size: 12px; color: var(--ios-text3);
  text-decoration: line-through;
}
.lp-price-current {
  font-size: 15px; font-weight: 800; color: var(--ios-text);
}

.lp-add-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  cursor: pointer; align-self: flex-end; transition: background 0.2s;
}
.lp-add-btn:hover { background: var(--primary-dark); }

/* Pagination */
.lp-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 32px;
}
.lp-page-btn {
  padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 500;
  background: var(--ios-card); border: 1px solid var(--ios-gray4);
  color: var(--ios-text2); transition: all 0.2s;
}
.lp-page-btn:hover { border-color: var(--primary); color: var(--primary); }
.lp-page-num {
  width: 36px; height: 36px; border-radius: 8px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  background: var(--ios-card); border: 1px solid var(--ios-gray4);
  color: var(--ios-text2); transition: all 0.2s;
}
.lp-page-num:hover { border-color: var(--primary); color: var(--primary); }
.lp-page-num.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.lp-empty {
  text-align: center; padding: 60px 20px;
}
.lp-empty-icon { font-size: 48px; margin-bottom: 16px; }
.lp-empty h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.lp-empty p { color: var(--ios-text3); margin-bottom: 20px; }

/* Sidebar overlay */
.lp-sidebar-overlay { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .lulu-delivery { display: none; }
  .lulu-lang { display: none; }
  .lulu-catbar-promo { display: none; }
  .hero-dual-inner { grid-template-columns: 1fr; }
  .hero-side-promos { flex-direction: row; }
  .side-promo-card { min-height: 140px; }
  .cart-layout { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .lp-product-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .lulu-hamburger { display: flex; }
  .lulu-toggle { display: none; }
  .lulu-search { flex: 1; min-width: 0; max-width: none; }
  .lulu-search-form { height: 38px; }
  .lulu-search-btn { display: none; }
  .lulu-delivery { display: none; }
  .lulu-lang { display: none; }
  .lulu-topbar-inner { gap: 8px; }
  .lulu-topbar { padding: 8px 0; }
  .lulu-actions { gap: 8px; flex-shrink: 0; }
  .lulu-icon-btn { width: 36px; height: 36px; }
  .lulu-catbar { display: none; }
  .lulu-promo-strip { display: none; }
  .hero-dual-inner { grid-template-columns: 1fr; }
  .hero-side-promos { flex-direction: row; }
  .side-promo-card { padding: 16px; min-height: 120px; }
  .side-promo-card h3 { font-size: 18px; }
  .hero-slider { height: 300px; border-radius: 12px; }
  .slide-text h1 { font-size: 24px; }
  .slide-text p { font-size: 13px; }
  .slider-btn { width: 36px; height: 36px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card { padding: 20px; min-height: 130px; }
  .promo-card h3 { font-size: 20px; }
  .features-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .app-banner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .products-scroll .product-card { flex: 0 0 180px; }
  .cat-scroll-card { min-width: 100px; }
  .cat-scroll-img { width: 64px; height: 64px; }
  .section-header-row h2 { font-size: 17px; }
  .admin-cards-grid { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lp-layout { grid-template-columns: 1fr; }
  .lp-sidebar {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100vh;
    max-height: 100vh; z-index: 2000; border-radius: 0;
    transition: left 0.3s ease; overflow-y: auto;
    box-shadow: none;
  }
  .lp-sidebar.open { left: 0; box-shadow: 4px 0 20px rgba(0,0,0,0.2); }
  .lp-sidebar-close { display: block; }
  .lp-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1999; }
  .lp-sidebar.open ~ .lp-sidebar-overlay { display: block; }
  .lp-filter-mobile-btn { display: flex; }
  .lp-product-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .lp-product-card { padding: 10px; }
  .lp-product-img { aspect-ratio: 1; }
  .lp-product-name { font-size: 12px; }
  .lp-price-current { font-size: 13px; }
  .lp-subcat-arrow { display: none; }
}

@media (max-width: 480px) {
  .lulu-logo-text { font-size: 18px; }
  .lulu-logo-text em { font-size: 11px; padding: 2px 5px; margin-left: 2px; }
  .lulu-actions { gap: 4px; }
  .lulu-icon-btn { width: 32px; height: 32px; border-radius: 50%; }
  .lulu-icon-btn svg { width: 16px; height: 16px; }
  .lulu-topbar-inner { gap: 6px; }
  .lulu-topbar { padding: 8px 0; }
  .lulu-search { min-width: 0; flex: 1; }
  .lulu-search-form { height: 34px; padding: 0 4px 0 10px; border-radius: 8px; }
  .lulu-search-form svg { display: none; }
  .lulu-search-form input { font-size: 13px; padding: 0 4px; min-width: 0; }
  .lulu-search-form input::placeholder { font-size: 11px; }
  .hero-dual-inner { grid-template-columns: 1fr; }
  .hero-side-promos { flex-direction: column; }
  .hero-slider { height: 200px; }
  .slide-text h1 { font-size: 18px; }
  .slide-text p { font-size: 12px; }
  .slide-text { padding: 12px 16px; }
  .slider-btn { display: none; }
  .slider-dots { bottom: 8px; }
  .side-promo-card { min-height: 100px; padding: 12px; }
  .side-promo-card h3 { font-size: 15px; }
  .side-promo-card p { font-size: 11px; }
  .features-strip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-scroll .product-card { flex: 0 0 150px; }
  .product-card-image { height: 140px; }
  .product-card-body { padding: 10px; }
  .product-card-title { font-size: 13px; }
  .product-card-price { font-size: 14px; }
  .cart-item { flex-direction: column; }
  .cart-item-image { width: 100%; height: 160px; }
  .container { padding: 0 12px; }
  .section-header-row h2 { font-size: 15px; }
  .cat-scroll { gap: 12px; justify-content: center; }
  .cat-scroll-card { min-width: 80px; }
  .cat-scroll-img { width: 56px; height: 56px; }
  .cat-scroll-card span { font-size: 11px; }
}
