/* ============================================================
   Cicek Codesta — Custom Theme CSS
   Design tokens, components, animations
   ============================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  --primary: #e8566f;
  --primary-dark: #c93d57;
  --primary-light: #fdf0f3;
  --primary-50: #fff5f7;
  --primary-100: #fde8ed;
  --primary-200: #fbbfd0;
  --primary-500: #e8566f;
  --primary-600: #c93d57;
  --primary-700: #a82e44;

  --accent: #27ae60;
  --accent-dark: #1e8449;
  --accent-light: #eafaf1;

  --gold: #d4af37;
  --gold-light: #fdf8e4;

  --text-dark: #1a1a2e;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;

  --border: #f0e0e5;
  --border-gray: #e5e7eb;
  --bg-light: #fdf8f9;
  --bg-gray: #f9fafb;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(232,86,111,.08), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(232,86,111,.12), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(232,86,111,.15), 0 4px 20px rgba(0,0,0,.08);
  --shadow-xl: 0 32px 80px rgba(232,86,111,.2), 0 8px 32px rgba(0,0,0,.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.4s cubic-bezier(.4,0,.2,1);
  --transition-spring: 0.5s cubic-bezier(.34,1.56,.64,1);
}

/* ── 2. Base Reset & Typography ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── 3. Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary-200); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── 4. Selection ─────────────────────────────────────────── */
::selection { background: var(--primary-100); color: var(--primary-700); }

/* ── 5. Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) { .container { padding: 0 28px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ── 6. Topbar ────────────────────────────────────────────── */
.topbar {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar a:hover { color: var(--primary); }
.topbar-badge {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: .4px;
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(39,174,96,.4); }
  50% { box-shadow: 0 0 0 6px rgba(39,174,96,0); }
}

/* ── 7. Header ────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(232,86,111,.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; object-fit: contain; }
.site-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

/* Search */
.header-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.header-search-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0 50px 0 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.header-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232,86,111,.1);
  background: var(--white);
}
.header-search-input::placeholder { color: var(--text-light); }
.header-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition), transform var(--transition-spring);
}
.header-search-btn:hover { background: var(--primary-dark); transform: translateY(-50%) scale(1.06); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  color: var(--text-gray);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
  text-decoration: none;
}
.header-action-btn:hover { background: var(--primary-light); color: var(--primary); }
.header-action-btn i { font-size: 22px; }
.header-action-btn .label { line-height: 1; }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid var(--white);
  animation: badge-pop 0.3s var(--transition-spring);
}
@keyframes badge-pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ── 8. Navigation ────────────────────────────────────────── */
.nav-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 73px;
  z-index: 800;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-gray);
  border-bottom: 2.5px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }
.nav-link i { font-size: 16px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-gray);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
.dropdown-item i { font-size: 16px; }

/* ── 9. Mobile Menu ───────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,.5);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 995;
  transform: translateX(-100%);
  transition: transform var(--transition-slow) cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
}
.mobile-drawer::-webkit-scrollbar { display: none; }
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background: var(--primary-light);
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--bg-light);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-item:hover { background: var(--primary-light); color: var(--primary); }
.mobile-nav-item i { font-size: 20px; color: var(--primary); width: 24px; }

/* ── 10. Page Hero ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-50) 50%, #fff 100%);
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,86,111,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  flex-wrap: wrap;
}
.breadcrumb-nav a { color: var(--primary); font-weight: 600; }
.breadcrumb-nav a:hover { text-decoration: underline; }
.breadcrumb-nav .sep { color: var(--border-gray); font-size: 11px; }

/* ── 11. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--bg-light);
  color: var(--text-gray);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.btn-sm { padding: 7px 14px; font-size: 12.5px; border-radius: var(--radius-sm); }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-icon { padding: 10px; }
.btn-icon i { font-size: 18px; }
.btn-icon-sm { padding: 7px; }
.btn-icon-sm i { font-size: 15px; }

/* ── 12. Product Card ─────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow), border-color var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary-200);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-light);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
}
.badge-primary { background: var(--primary); color: var(--white); }
.badge-accent { background: var(--accent); color: var(--white); }
.badge-gold { background: var(--gold); color: var(--white); }
.badge-light { background: var(--white); color: var(--primary); border: 1px solid var(--primary-200); }

.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 2;
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition-spring);
  cursor: pointer;
  text-decoration: none;
}
.action-btn:hover { background: var(--primary); color: var(--white); transform: scale(1.1); }

.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--primary); }

.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}
.product-price-old {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 6px;
}

.product-card-footer {
  padding: 0 16px 16px;
  display: flex;
  gap: 8px;
}
.add-to-cart-btn {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background var(--transition), transform var(--transition-spring);
}
.add-to-cart-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.add-to-cart-btn:active { transform: scale(.97); }
.add-to-cart-btn.loading { pointer-events: none; opacity: .7; }
.add-to-cart-btn.loading i { animation: spin 0.6s linear infinite; }

/* ── 13. Section Styles ───────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--primary); }
.section-desc {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── 14. Hero Slider ──────────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; background: var(--text-dark); }
.hero-slide {
  position: relative;
  height: clamp(420px, 62vw, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,26,46,.75) 0%, rgba(26,26,46,.3) 55%, transparent 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 580px;
  padding: 0 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: .4px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(232,86,111,.4);
}
.hero-btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,86,111,.5); color: var(--white); }
.hero-btn-outline {
  background: rgba(255,255,255,.15);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.hero-btn-outline:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); color: var(--white); }

/* Slider Nav */
.hero-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition-spring);
  backdrop-filter: blur(8px);
}
.hero-nav-btn:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.08); }

/* Swiper pagination override */
.swiper-pagination-bullet { background: rgba(255,255,255,.5); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--white); width: 24px; border-radius: 4px; }

/* ── 15. Features Strip ───────────────────────────────────── */
.features-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition-spring);
}
.feature-item:hover .feature-icon { background: var(--primary); color: var(--white); transform: scale(1.08) rotate(-3deg); }
.feature-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.feature-desc { font-size: 12.5px; color: var(--text-gray); line-height: 1.4; }

/* ── 16. Category Cards ───────────────────────────────────── */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.category-card:hover img { transform: scale(1.07); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.8) 0%, rgba(26,26,46,.1) 55%, transparent 100%);
  transition: background var(--transition);
}
.category-card:hover .category-card-overlay { background: linear-gradient(to top, rgba(232,86,111,.8) 0%, rgba(232,86,111,.1) 55%, transparent 100%); }
.category-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 18px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}
.category-card-label .count { font-size: 11.5px; font-weight: 500; opacity: .8; margin-top: 3px; }

/* ── 17. Testimonial Card ─────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote-icon {
  font-size: 36px;
  color: var(--primary-200);
  margin-bottom: 12px;
  line-height: 1;
}
.testimonial-text {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars i { font-size: 14px; color: #f59e0b; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testimonial-date { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ── 18. Blog Card ────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.blog-meta i { color: var(--primary); font-size: 11px; }
.blog-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 10px; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 13.5px; color: var(--text-gray); line-height: 1.65; margin-bottom: auto; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 700; margin-top: 16px; transition: gap var(--transition); }
.blog-read-more:hover { gap: 10px; }

/* ── 19. Toast Notification ───────────────────────────────── */
#toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 280px;
  max-width: 360px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  pointer-events: auto;
  animation: toast-in 0.36s var(--transition-spring);
  transition: opacity 0.22s, transform 0.22s;
}
.toast.hiding { opacity: 0; transform: translateX(20px); }
.toast.success { border-color: var(--accent); }
.toast.error { border-color: #ef4444; }
.toast.info { border-color: #3b82f6; }
.toast-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; color: var(--primary); }
.toast.success .toast-icon { color: var(--accent); }
.toast.error .toast-icon { color: #ef4444; }
.toast.info .toast-icon { color: #3b82f6; }
.toast-body { flex: 1; }
.toast-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.toast-msg { font-size: 13px; color: var(--text-gray); line-height: 1.4; }
.toast-close { font-size: 18px; color: var(--text-light); background: none; border: none; padding: 0; flex-shrink: 0; transition: color var(--transition); }
.toast-close:hover { color: var(--text-gray); }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(30px) scale(.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ── 20. Cart Page ────────────────────────────────────────── */
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-light);
}
.cart-item-name { font-size: 14.5px; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.cart-item-name a:hover { color: var(--primary); }
.cart-item-price { font-size: 13px; color: var(--text-gray); margin-top: 4px; }
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-light);
  color: var(--text-gray);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-weight: 700;
}
.qty-btn:hover { background: var(--primary); color: var(--white); }
.qty-val {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  border: none;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0;
  height: 32px;
  line-height: 32px;
  outline: none;
}
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 20px;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition-spring);
  padding: 4px;
}
.cart-remove-btn:hover { color: #ef4444; transform: scale(1.15); }

/* Order Summary Box */
.order-summary {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 160px;
}
.order-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.order-summary-row:last-child { border-bottom: none; }
.order-summary-total { font-size: 18px; font-weight: 800; color: var(--primary); }

/* ── 21. Form Styles ──────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-label .req { color: var(--primary); margin-left: 2px; }
.form-control {
  width: 100%;
  border: 1.5px solid var(--border-gray);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232,86,111,.1);
  background: var(--white);
}
.form-control::placeholder { color: var(--text-light); }
.form-control.error { border-color: #ef4444; }
.form-icon-wrap { position: relative; }
.form-icon-wrap .form-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 15px; pointer-events: none; z-index: 1; }
.form-icon-wrap .form-control { padding-left: 42px; }
textarea.form-control { resize: vertical; min-height: 120px; padding-top: 12px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 8l3 3 3-3' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; cursor: pointer; }
.eye-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-light); font-size: 18px; cursor: pointer; transition: color var(--transition); }
.eye-toggle:hover { color: var(--primary); }

/* Alert banners */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.alert i { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.alert-error { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
.alert-success { background: #f0fdf4; border-color: #86efac; color: #16a34a; }
.alert-info { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }

/* ── 22. Footer ───────────────────────────────────────────── */
.footer-main {
  background: var(--text-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 48px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition), transform var(--transition-spring);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-heading { font-size: 14px; font-weight: 800; color: var(--white); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-link { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: 13.5px; padding: 5px 0; transition: color var(--transition), gap var(--transition); text-decoration: none; }
.footer-link:hover { color: var(--primary); gap: 12px; }
.footer-link i { font-size: 12px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-icon { width: 32px; height: 32px; border-radius: var(--radius-sm); background: rgba(232,86,111,.15); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--primary); flex-shrink: 0; }
.footer-contact-text { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.5; }

.footer-trust { background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.trust-badge { display: flex; align-items: center; gap: 10px; }
.trust-badge i { font-size: 22px; color: var(--primary); }
.trust-badge-text { font-size: 12.5px; line-height: 1.4; }
.trust-badge-label { font-weight: 700; color: var(--white); display: block; font-size: 13px; }
.trust-badge-sub { color: rgba(255,255,255,.5); display: block; font-size: 11.5px; }

.footer-bottom { background: rgba(0,0,0,.2); border-top: 1px solid rgba(255,255,255,.06); padding: 16px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom a { color: var(--primary); font-weight: 600; }

/* ── 23. Auth Pages ───────────────────────────────────────── */
.auth-wrapper {
  min-height: calc(100vh - 280px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff5f7 50%, var(--bg-light) 100%);
  padding: 60px 0;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.auth-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 36px 40px 28px;
  text-align: center;
  color: var(--white);
}
.auth-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white);
  margin: 0 auto 18px;
  border: 2px solid rgba(255,255,255,.4);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.auth-card-header h1 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.auth-card-header p { font-size: 13px; color: rgba(255,255,255,.8); margin: 0; line-height: 1.5; }
.auth-card-body { padding: 36px 40px; }

/* ── 24. Account Page (Hesabim) ───────────────────────────── */
.account-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 160px;
}
.account-avatar-area {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-50));
  padding: 28px 20px;
  text-align: center;
}
.account-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}
.account-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.account-email { font-size: 12.5px; color: var(--text-gray); margin-top: 4px; }
.account-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  border-bottom: 1px solid var(--bg-light);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid var(--bg-light);
}
.account-nav-item:hover, .account-nav-item.active { background: var(--primary-light); color: var(--primary); }
.account-nav-item i { font-size: 18px; width: 22px; }

/* ── 25. Utility Classes ──────────────────────────────────── */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--text-gray); }
.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }
.bg-primary-light { background: var(--primary-light); }
.bg-accent-light { background: var(--accent-light); }
.bg-light { background: var(--bg-light); }

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

.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, var(--bg-light) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* ── 26. Keyframe Animations ──────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in-up { animation: fade-in-up 0.6s ease both; }
.animate-fade-in { animation: fade-in 0.5s ease both; }
.animate-float { animation: float 3s ease-in-out infinite; }
.delay-100 { animation-delay: .1s; }
.delay-200 { animation-delay: .2s; }
.delay-300 { animation-delay: .3s; }
.delay-400 { animation-delay: .4s; }
.delay-500 { animation-delay: .5s; }

/* AOS overrides */
[data-aos] { transition-timing-function: cubic-bezier(.4,0,.2,1) !important; }

/* ── 27. Responsive Helpers ───────────────────────────────── */
.hide-mobile { display: block; }
.show-mobile { display: none; }
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }
  .auth-card-body { padding: 28px 24px; }
  .auth-card-header { padding: 28px 24px 22px; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-img { width: 64px; height: 64px; }
}
@media (max-width: 575px) {
  .section { padding: 36px 0; }
  .section-header { margin-bottom: 36px; }
}

/* ── 28. Print ────────────────────────────────────────────── */
@media print {
  .topbar, .site-header, .nav-bar, .footer-main, .footer-trust, .footer-bottom, #toast-container { display: none !important; }
}

/* ============================================================
   Mobile App-Like Styles — Sticky Bottom Nav & Mobile Header
   ============================================================ */

/* ── Mobile Body Padding (bottom nav clearance) ──────────── */
@media (max-width: 1023px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}

/* ── Mobile Bottom Navigation ────────────────────────────── */
.mob-bottom-nav {
  display: none;
}

@media (max-width: 1023px) {
  .mob-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 980;
    background: rgba(255,255,255,.98);
    border-top: 1.5px solid var(--border);
    box-shadow: 0 -4px 28px rgba(0,0,0,.10), 0 -1px 0 rgba(232,86,111,.06);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    align-items: stretch;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.mob-nav-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  padding: 10px 4px 12px;
  color: var(--text-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition);
  position: relative;
  min-width: 0;
}

.mob-nav-tab i {
  font-size: 23px;
  line-height: 1;
  transition: transform var(--transition-spring);
  display: block;
}

.mob-nav-tab span.mob-nav-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
  display: block;
}

.mob-nav-tab.mob-nav-active {
  color: var(--primary);
}

.mob-nav-tab.mob-nav-active i {
  transform: translateY(-2px);
}

.mob-nav-tab:not(.mob-nav-cart):hover { color: var(--primary); }

/* Active indicator dot */
.mob-nav-tab.mob-nav-active:not(.mob-nav-cart)::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--primary);
  top: 0;
  border-radius: 0 0 4px 4px;
}

/* Cart tab — raised bubble */
.mob-nav-cart {
  position: relative;
  overflow: visible;
}

.mob-cart-bubble {
  position: relative;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-top: -22px;
  box-shadow: 0 4px 18px rgba(232,86,111,.5), 0 2px 8px rgba(0,0,0,.12);
  border: 3px solid #fff;
  transition: transform var(--transition-spring), box-shadow var(--transition);
  flex-shrink: 0;
}

.mob-nav-cart:hover .mob-cart-bubble,
.mob-nav-cart.mob-nav-active .mob-cart-bubble {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,86,111,.55), 0 4px 12px rgba(0,0,0,.12);
}

.mob-nav-cart .cart-count-badge {
  top: -5px !important;
  right: -5px !important;
  font-size: 9px !important;
  min-width: 16px !important;
  height: 16px !important;
  border-width: 1.5px !important;
}

.mob-nav-cart .mob-nav-label {
  margin-top: 4px;
}

.mob-nav-cart.mob-nav-active { color: var(--primary); }

/* ── Mobile Header: Compact Logo-Center Layout ───────────── */
.mob-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 10px;
}

.mob-header-row .mob-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  flex-shrink: 0;
  text-decoration: none;
}

.mob-header-row .mob-icon-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-200);
}

.mob-header-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mob-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Mobile Search Overlay ───────────────────────────────── */
.mob-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1020;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mob-search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mob-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mob-search-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px;
  padding-top: calc(16px + env(safe-area-inset-top, 0px));
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.mob-search-overlay.open .mob-search-panel {
  transform: translateY(0);
}

/* ── Mobile Category Chips Strip ─────────────────────────── */
.mob-cat-strip {
  display: none;
}

@media (max-width: 1023px) {
  .mob-cat-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px 16px 14px;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  .mob-cat-strip::-webkit-scrollbar { display: none; }
}

.mob-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-gray);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.mob-cat-chip:hover,
.mob-cat-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── Mobile-specific product card tweaks ─────────────────── */
@media (max-width: 575px) {
  .product-card-body { padding: 12px; }
  .product-card-footer { padding: 0 12px 12px; }
  .product-name { font-size: 13px; }
  .product-price { font-size: 17px; }
}

/* ── Mobile page hero compact ────────────────────────────── */
@media (max-width: 767px) {
  .page-hero { padding: 28px 0 24px; }
  .page-hero h1 { font-size: 22px; margin-bottom: 8px; }
}

/* ── Swipe hint (mobile horizontal scrolls) ──────────────── */
@media (max-width: 767px) {
  .mob-swipe-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 12px;
    justify-content: flex-end;
  }
}
