/* ============================================
   BabyLady eCommerce - Main Stylesheet
   Premium, Clean, Mobile-First Design
   ============================================ */

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #f9a8d4;
  --accent: #fb923c;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --bg-light: #f8f9fe;
  --text-dark: #1e1b4b;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(99,102,241,0.08);
  --shadow-hover: 0 8px 32px rgba(99,102,241,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
img { max-width: 100%; height: auto; }
a { color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  font-size: 0.8rem;
}
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.top-bar a:hover { color: white; }

/* ===== NAVIGATION ===== */
.navbar {
  padding: 12px 0;
  background: white !important;
  z-index: 1000;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav-link {
  color: var(--text-dark) !important;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--primary) !important; background: var(--bg-light); }
.nav-icon-btn {
  color: var(--text-dark);
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-icon-btn:hover { color: var(--primary); background: var(--bg-light); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.search-input { border-right: none !important; font-size: 0.85rem; }
.search-form { width: 260px; }

/* Mega Menu */
.mega-dropdown .mega-menu {
  width: 600px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-radius: var(--radius);
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform:none; } }
.dropdown-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 0 0 6px;
}
.dropdown-item { font-size: 0.85rem; padding: 4px 8px; border-radius: 6px; }
.dropdown-item:hover { background: var(--bg-light); color: var(--primary); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,27,75,0.75) 0%, rgba(30,27,75,0.2) 100%);
}
.hero-content { position: relative; z-index: 1; color: white; }
.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 16px;
}
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.hero-btn {
  background: white;
  color: var(--primary);
  border: none;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
}
.hero-btn:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.swiper-button-prev, .swiper-button-next {
  color: white !important;
  background: rgba(255,255,255,0.2);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 18px !important; }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.section-sub { color: var(--text-muted); font-size: 0.95rem; }

/* ===== CATEGORY CARDS ===== */
.category-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
}
.baby-card { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.ladies-card { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.category-card-inner {
  padding: 48px 40px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.category-card:hover .category-card-inner { transform: translateY(-4px); }
.category-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.baby-card .category-icon { color: var(--primary); }
.ladies-card .category-icon { color: #db2777; }
.category-card h3 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 8px; }
.category-card p { color: var(--text-muted); margin-bottom: 16px; }
.shop-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge-discount { background: var(--danger); color: white; padding: 3px 8px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.badge-new { background: var(--success); color: white; padding: 3px 8px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.badge-hot { background: var(--accent); color: white; padding: 3px 8px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: white;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.wishlist-btn:hover { color: var(--danger); transform: scale(1.1); }
.product-img-link { display: block; overflow: hidden; height: 200px; }
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-category { font-size: 0.72rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.product-name { font-size: 0.9rem; font-family: var(--font-body); font-weight: 600; margin: 4px 0; line-height: 1.3; }
.product-price { display: flex; align-items: center; gap: 8px; margin: 6px 0; }
.price-current { font-size: 1rem; font-weight: 700; color: var(--primary); }
.price-original { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.out-of-stock-badge { font-size: 0.72rem; color: var(--danger); font-weight: 600; }
.btn-add-cart {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-add-cart:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); }
.btn-add-cart:disabled { background: var(--border); color: var(--text-muted); cursor: not-allowed; transform: none; }

/* ===== PROMO BANNER ===== */
.promo-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
}
.promo-title { font-size: 1.5rem; color: white; margin-bottom: 8px; }
.promo-text { color: rgba(255,255,255,0.85); }

/* ===== FEATURE BOXES ===== */
.feature-box { padding: 24px; }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
}
.feature-box h6 { font-weight: 700; margin-bottom: 6px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.testimonial-card .stars { color: var(--warning); font-size: 1.1rem; }
.reviewer { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-light); }
.footer-top { }
.footer-brand { font-family: var(--font-heading); font-size: 1.4rem; color: var(--primary); font-weight: 700; }
.footer-heading { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-dark); margin-bottom: 12px; }
.footer-links { padding: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--primary); }
.social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary-dark); transform: translateY(-2px); }
.footer-features { background: white; }
.footer-bottom { background: var(--text-dark); }
.footer-bottom p { color: rgba(255,255,255,0.6) !important; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { background: #128c7e; color: white; transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 998;
  background: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== PRODUCT DETAIL ===== */
.main-product-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}
.main-image-wrapper { position: relative; }
.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--danger);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.thumbnail-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: var(--transition);
}
.thumbnail-img:hover, .thumbnail-img.active { border-color: var(--primary); }
.product-detail-category { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary); }
.product-detail-title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.2; }
.detail-price-current { font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.detail-price-original { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.product-short-desc { color: var(--text-muted); line-height: 1.6; }
.option-label { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.size-options, .color-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  min-width: 44px;
  padding: 6px 12px;
  border: 2px solid var(--border);
  background: white;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.size-btn:hover, .size-btn.active { border-color: var(--primary); color: var(--primary); }
.color-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  background: #ddd;
  transition: var(--transition);
  padding: 0;
}
.color-btn.active, .color-btn:hover { border-color: var(--primary); transform: scale(1.1); }
.quantity-control { display: flex; align-items: center; border: 2px solid var(--border); border-radius: 8px; overflow: hidden; width: fit-content; }
.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-light);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--primary); color: white; }
.qty-input {
  width: 60px;
  border: none;
  text-align: center;
  font-weight: 600;
  background: white;
}
.qty-input:focus { outline: none; }
.btn-add-cart-detail {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-add-cart-detail:hover { background: var(--primary-dark); color: white; transform: translateY(-2px); }
.btn-buy-now {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-buy-now:hover { background: #ea580c; color: white; border-color: #ea580c; transform: translateY(-2px); }
.cod-note { background: var(--bg-light); border-radius: var(--radius); padding: 14px; font-size: 0.85rem; }
.product-tabs .nav-link { color: var(--text-muted); font-weight: 500; }
.product-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.star-rating-input { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-rating-input input { display: none; }
.star-rating-input label { font-size: 1.5rem; color: var(--border); cursor: pointer; }
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label { color: var(--warning); }

/* ===== CART ===== */
.cart-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 80px; height: 80px; object-fit: cover; }
.cart-item-name { font-weight: 600; }
.order-summary {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; }
.total-row { font-size: 1.1rem; font-weight: 700; margin-top: 8px; }
.coupon-applied { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 10px 14px; }

/* ===== CHECKOUT ===== */
.checkout-progress { display: flex; align-items: center; justify-content: center; gap: 0; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: white;
}
.progress-step.active .step-circle { border-color: var(--primary); background: var(--primary); color: white; }
.progress-step span { font-size: 0.75rem; color: var(--text-muted); }
.progress-step.active span { color: var(--primary); font-weight: 600; }
.progress-line { flex: 1; height: 2px; background: var(--border); max-width: 80px; }
.progress-line.active { background: var(--primary); }
.checkout-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.saved-address-card { border: 2px solid var(--border); border-radius: 10px; padding: 14px; cursor: pointer; transition: var(--transition); }
.saved-address-card:hover { border-color: var(--primary); }
.payment-option { border: 2px solid var(--primary); border-radius: var(--radius); padding: 16px; }
.order-item-img { width: 56px; height: 56px; object-fit: cover; }

/* ===== ORDER CONFIRMATION ===== */
.confirmation-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.confirm-icon { font-size: 4rem; animation: bounceIn 0.6s ease; }
@keyframes bounceIn { 0% { transform: scale(0); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }
.order-id-box { background: var(--bg-light); border-radius: var(--radius); padding: 20px; }
.confirm-details { background: var(--bg-light); border-radius: var(--radius); padding: 24px; margin-top: 20px; text-align: left; }
.detail-group label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.detail-group p { font-weight: 600; margin-bottom: 0; }

/* ===== ORDER TRACKING ===== */
.tracking-form-card { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.tracking-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.order-progress { position: relative; padding: 20px 0; }
.progress-track { position: absolute; top: 28px; left: 5%; right: 5%; height: 2px; background: var(--border); z-index: 0; }
.track-step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; flex: 1; }
.track-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.track-step.active .track-circle { border-color: var(--success); background: var(--success); color: white; }
.track-label { font-size: 0.72rem; text-align: center; color: var(--text-muted); }
.tracking-info-box { background: var(--bg-light); border-radius: 8px; padding: 12px; }
.tracking-info-box label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.tracking-info-box p { font-weight: 600; margin-bottom: 0; }

/* ===== AUTH CARDS ===== */
.auth-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); }

/* ===== PROFILE ===== */
.profile-sidebar { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.profile-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-nav .nav-link { color: var(--text-dark); border-radius: 8px; padding: 8px 12px; }
.profile-nav .nav-link:hover, .profile-nav .nav-link.active { background: var(--bg-light); color: var(--primary); }
.profile-stat-card { text-align: center; padding: 20px; background: var(--bg-light); border-radius: var(--radius); }
.profile-stat-card .stat-value { font-size: 1.5rem; font-weight: 700; }
.profile-stat-card .stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== ADDRESS CARD ===== */
.address-card { background: white; border-radius: var(--radius); padding: 20px; border: 2px solid var(--border); transition: var(--transition); }
.address-card:hover { border-color: var(--primary); }

/* ===== FILTER SIDEBAR ===== */
.filter-sidebar { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.filter-title { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.filter-group { }

/* ===== BLOG ===== */
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-img { height: 200px; object-fit: cover; }
.blog-cat { font-size: 0.72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; }
.blog-content { line-height: 1.8; }
.sidebar-card { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }

/* ===== WISHLIST ===== */
/* Product cards handle wishlist display */

/* ===== TOAST ===== */
.toast-custom {
  background: white;
  border-left: 4px solid var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 8px;
  animation: slideIn 0.3s ease;
  max-width: 320px;
}
.toast-custom.success { border-left-color: var(--success); }
.toast-custom.error { border-left-color: var(--danger); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: none; opacity: 1; } }

/* ===== PAGINATION ===== */
.pagination .page-link { color: var(--primary); border-radius: 8px; margin: 0 2px; border: none; }
.pagination .page-item.active .page-link { background: var(--primary); }
.pagination .page-link:hover { background: var(--bg-light); }

/* ===== PRODUCT DETAIL IMAGE PLACEHOLDER ===== */
.product-img-placeholder-lg {
  width: 100%;
  height: 480px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-slide { height: 320px; }
  .hero-title { font-size: 1.6rem; }
  .mega-menu { width: 100% !important; }
  .search-form { display: none !important; }
  .main-product-img { height: 300px; }
  .promo-card { padding: 24px; }
  .hero-btn { padding: 10px 20px; font-size: 0.9rem; }
  .product-img-link { height: 160px; }
  .product-img-placeholder { height: 160px; }
}

@media (max-width: 576px) {
  .confirmation-card { padding: 24px; }
  .checkout-card { padding: 20px; }
  .auth-card { padding: 24px; }
  .order-summary { padding: 20px; }
}

/* ===== UTILITIES ===== */
.x-small { font-size: 0.72rem; }
.cursor-pointer { cursor: pointer; }
.text-primary { color: var(--primary) !important; }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.badge { font-weight: 600; }
