/* ============================================================
   REFURNISHED-LAPTOP.COM — Main Stylesheet
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --secondary: #16a34a;
  --secondary-light: #f0fdf4;
  --accent: #f59e0b;
  --danger: #dc2626;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font: 'Inter', 'Poppins', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--neutral-50);
  color: var(--neutral-800);
  line-height: 1.6;
  font-size: 15px;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

/* ---------- Container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }

/* ---------- Utility ---------- */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--neutral-400); }
.text-center { text-align: center; }
.fw-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.grid { display: grid; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.bg-white { background: var(--white); }
.w-100 { width: 100%; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,.35); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: #15803d; color: #fff; }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #128c7e; color: #fff; }
.btn-call { background: var(--secondary); color: #fff; }
.btn-call:hover { background: #15803d; color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: var(--radius); }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn i { font-size: 1rem; }

/* ================================================================
   BADGES
================================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.badge-featured { background: #fef3c7; color: #92400e; }
.badge-new { background: #d1fae5; color: #065f46; }
.badge-like-new { background: #dbeafe; color: #1e40af; }
.badge-good { background: #e0e7ff; color: #3730a3; }
.badge-fair { background: #fce7f3; color: #9d174d; }
.badge-verified { background: #d1fae5; color: #065f46; }
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-secondary { background: var(--secondary-light); color: var(--secondary); }
.badge-tag { background: var(--neutral-100); color: var(--neutral-600); }

/* ================================================================
   HEADER / NAV
================================================================ */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 0.8rem;
  padding: 6px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: #fff; }

header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-img span { color: #fff; font-size: 1.3rem; font-weight: 900; }
.logo-text { font-size: 1.1rem; font-weight: 800; line-height: 1.1; }
.logo-text span { color: var(--primary); }
.logo-text small { display: block; font-size: 0.6rem; color: var(--neutral-400); font-weight: 400; letter-spacing: .5px; }

.header-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 2px solid var(--neutral-200);
  border-radius: 30px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color .2s;
}
.header-search input:focus { border-color: var(--primary); }
.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
}

nav ul { display: flex; gap: 6px; align-items: center; }
nav ul li a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--neutral-700);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
nav ul li a:hover,
nav ul li a.active { background: var(--primary-light); color: var(--primary); }
nav ul li a i { font-size: 0.95rem; }

.hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--neutral-700); }

/* ================================================================
   HERO
================================================================ */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.25);
}
.hero h1 { color: #fff; margin-bottom: 14px; }
.hero h1 span { color: #fde68a; }
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 40px; }

.hero-search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 10px;
  display: flex;
  gap: 8px;
  max-width: 780px;
  margin: 0 auto 30px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  flex-wrap: wrap;
}
.hero-search-box input,
.hero-search-box select {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  background: var(--neutral-50);
  transition: border-color .2s;
}
.hero-search-box input:focus,
.hero-search-box select:focus { border-color: var(--primary); background: #fff; }
.hero-search-box .btn { padding: 12px 28px; border-radius: 10px; flex-shrink: 0; }

.hero-stats { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.hero-stat { color: rgba(255,255,255,.9); text-align: center; }
.hero-stat strong { display: block; font-size: 1.5rem; color: #fff; font-weight: 800; }
.hero-stat span { font-size: 0.78rem; opacity: .8; }

/* ================================================================
   SECTION HEADERS
================================================================ */
.section-header { margin-bottom: 36px; }
.section-header.flex { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-label::before { content: ''; display: inline-block; width: 20px; height: 3px; background: var(--primary); border-radius: 2px; }
.section-title { color: var(--neutral-900); }
.section-desc { color: var(--neutral-400); margin-top: 8px; font-size: 0.92rem; }
.view-all { font-size: 0.85rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.view-all:hover { color: var(--primary-dark); }

/* ================================================================
   PRODUCT CARDS
================================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.products-grid.cols-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--neutral-100);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-card-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.product-card-wish:hover { color: #ef4444; background: #fff; }

.product-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-card-title { font-size: 0.92rem; font-weight: 600; color: var(--neutral-800); line-height: 1.4; margin-bottom: 8px; }
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--primary); }

.product-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.spec-chip {
  background: var(--neutral-100);
  color: var(--neutral-600);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 500;
}

.product-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--neutral-100); }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.product-price small { font-size: 0.7rem; font-weight: 400; color: var(--neutral-400); }

.product-card-meta { display: flex; gap: 10px; font-size: 0.75rem; color: var(--neutral-400); margin-bottom: 8px; flex-wrap: wrap; }
.product-card-meta span { display: flex; align-items: center; gap: 3px; }

/* Stars */
.stars { display: flex; align-items: center; gap: 2px; color: #f59e0b; font-size: 0.8rem; }
.stars-count { color: var(--neutral-400); font-size: 0.72rem; margin-left: 4px; }

/* ================================================================
   BRAND GRID
================================================================ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.brand-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: block;
}
.brand-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.brand-icon { font-size: 2rem; margin-bottom: 8px; }
.brand-card span { display: block; font-size: 0.82rem; font-weight: 600; color: var(--neutral-700); }
.brand-card small { font-size: 0.7rem; color: var(--neutral-400); }

/* ================================================================
   CITY GRID
================================================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.city-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.city-card:nth-child(2n) { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); }
.city-card:nth-child(3n) { background: linear-gradient(135deg, var(--secondary) 0%, #15803d 100%); }
.city-card:nth-child(4n) { background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%); }
.city-card::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.1) radial-gradient(circle at 70% 70%, rgba(255,255,255,.12), transparent 60%); }
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.city-card .city-icon { font-size: 1.8rem; margin-bottom: 8px; position: relative; }
.city-card .city-name { font-weight: 700; color: #fff; font-size: 0.92rem; position: relative; }
.city-card .city-count { font-size: 0.72rem; color: rgba(255,255,255,.8); position: relative; }

/* ================================================================
   SHOP CARDS
================================================================ */
.shops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.shop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shop-card-img { height: 160px; overflow: hidden; background: var(--neutral-100); position: relative; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.shop-card:hover .shop-card-img img { transform: scale(1.06); }
.shop-card-body { padding: 16px; flex: 1; }
.shop-card-name { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.shop-card-name a { color: var(--neutral-800); }
.shop-card-name a:hover { color: var(--primary); }
.shop-card-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--neutral-400); margin-bottom: 10px; flex-wrap: wrap; }
.shop-card-meta span { display: flex; align-items: center; gap: 4px; }
.shop-card-desc { font-size: 0.83rem; color: var(--neutral-600); line-height: 1.5; margin-bottom: 12px; }
.shop-card-footer { padding: 12px 16px; border-top: 1px solid var(--neutral-100); display: flex; justify-content: space-between; align-items: center; }

/* ================================================================
   SERVICE CARDS
================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 160px; overflow: hidden; background: var(--neutral-100); position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 16px; flex: 1; }
.service-card-name { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.service-card-name a { color: var(--neutral-800); }
.service-card-name a:hover { color: var(--primary); }
.service-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.service-card-meta { font-size: 0.78rem; color: var(--neutral-400); margin-bottom: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
.service-card-meta span { display: flex; align-items: center; gap: 4px; }
.service-card-footer { padding: 12px 16px; border-top: 1px solid var(--neutral-100); display: flex; justify-content: space-between; align-items: center; }

/* ================================================================
   FILTER SIDEBAR
================================================================ */
.page-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.filter-header {
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-header h3 { font-size: 0.95rem; font-weight: 700; }
.filter-clear { font-size: 0.78rem; color: rgba(255,255,255,.8); cursor: pointer; background: none; border: none; color: rgba(255,255,255,.8); }
.filter-clear:hover { color: #fff; }
.filter-group { padding: 16px 20px; border-bottom: 1px solid var(--neutral-100); }
.filter-group:last-child { border-bottom: none; }
.filter-group-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--neutral-600); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.85rem; color: var(--neutral-700); }
.filter-option input[type="checkbox"] { accent-color: var(--primary); width: 15px; height: 15px; }
.filter-option:hover { color: var(--primary); }
.filter-count { margin-left: auto; background: var(--neutral-100); color: var(--neutral-400); font-size: 0.7rem; padding: 1px 6px; border-radius: 10px; }

/* Price Range */
.price-range-inputs { display: flex; gap: 8px; }
.price-range-inputs input { flex: 1; padding: 8px 10px; border: 1px solid var(--neutral-200); border-radius: var(--radius-sm); font-size: 0.82rem; outline: none; }
.price-range-inputs input:focus { border-color: var(--primary); }
.range-slider { width: 100%; accent-color: var(--primary); margin: 10px 0 5px; }

/* ================================================================
   BREADCRUMB
================================================================ */
.breadcrumb {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral-100);
}
.breadcrumb-list { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; color: var(--neutral-400); }
.breadcrumb-list li a { color: var(--neutral-600); }
.breadcrumb-list li a:hover { color: var(--primary); }
.breadcrumb-list li:last-child { color: var(--neutral-700); font-weight: 500; }
.breadcrumb-list .sep { color: var(--neutral-300); }

/* ================================================================
   PRODUCT DETAIL
================================================================ */
.product-gallery { display: flex; flex-direction: column; gap: 10px; }
.gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--neutral-100); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb {
  width: 70px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--primary); }

.product-detail-layout { display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start; }

.product-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}
.product-price-big { font-size: 2rem; font-weight: 900; color: var(--primary); }
.product-price-big small { font-size: 1rem; color: var(--neutral-400); font-weight: 400; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--neutral-100); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 10px 0; font-size: 0.88rem; vertical-align: top; }
.specs-table td:first-child { color: var(--neutral-500); width: 130px; font-weight: 500; }
.specs-table td:last-child { color: var(--neutral-800); font-weight: 600; }

.seller-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
}
.seller-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.4rem; font-weight: 800; flex-shrink: 0; }

/* ================================================================
   REVIEWS
================================================================ */
.review-summary { display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center; padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.review-score { text-align: center; }
.review-score .score { font-size: 3.5rem; font-weight: 900; color: var(--neutral-900); line-height: 1; }
.review-bars { flex: 1; }
.review-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; margin-bottom: 5px; color: var(--neutral-600); }
.review-bar-track { flex: 1; height: 6px; background: var(--neutral-100); border-radius: 3px; overflow: hidden; }
.review-bar-fill { height: 100%; background: #f59e0b; border-radius: 3px; }

.review-card { background: var(--white); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.review-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.reviewer-info { display: flex; gap: 12px; align-items: center; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.reviewer-name { font-size: 0.88rem; font-weight: 600; }
.reviewer-date { font-size: 0.72rem; color: var(--neutral-400); }
.review-text { font-size: 0.85rem; color: var(--neutral-600); line-height: 1.6; }

/* ================================================================
   HOW IT WORKS
================================================================ */
.how-it-works { background: var(--neutral-50); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.step-card h3 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: 0.83rem; color: var(--neutral-400); line-height: 1.6; }
.step-connector { display: none; }

/* ================================================================
   FAQ
================================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--neutral-800);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.faq-question .faq-icon { transition: transform .3s; font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 20px 18px; font-size: 0.85rem; color: var(--neutral-600); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ================================================================
   CATEGORIES
================================================================ */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: block;
  border: 2px solid transparent;
}
.category-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.cat-icon { font-size: 2.2rem; margin-bottom: 10px; }
.category-card h3 { font-size: 0.88rem; color: var(--neutral-800); margin-bottom: 3px; }
.category-card small { font-size: 0.72rem; color: var(--neutral-400); }

/* ================================================================
   BANNER ADS
================================================================ */
.banner-ad {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.banner-ad::after { content: '💻'; position: absolute; right: 200px; top: 50%; transform: translateY(-50%); font-size: 7rem; opacity: .07; }
.banner-ad-text h2 { color: #fff; margin-bottom: 8px; font-size: 1.4rem; }
.banner-ad-text p { color: rgba(255,255,255,.7); font-size: 0.88rem; }

/* ================================================================
   MAP PLACEHOLDER
================================================================ */
.map-placeholder {
  background: var(--neutral-100);
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--neutral-400);
  border: 2px dashed var(--neutral-200);
  flex-direction: column;
  gap: 10px;
}
.map-placeholder i { font-size: 3rem; }
.map-placeholder .map-link { color: var(--primary); font-size: 0.82rem; }

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius);
}

/* ================================================================
   PAGINATION
================================================================ */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; flex-wrap: wrap; }
.page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  color: var(--neutral-700);
  transition: all .2s;
  text-decoration: none;
}
.page-btn:hover,
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ================================================================
   TOOLBAR (sort + results count)
================================================================ */
.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.results-count { font-size: 0.85rem; color: var(--neutral-600); }
.results-count strong { color: var(--neutral-800); }
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  background: var(--white);
  color: var(--neutral-700);
}
.sort-select:focus { border-color: var(--primary); }

/* ================================================================
   WORKING HOURS TABLE
================================================================ */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--neutral-100); }
.hours-table td { padding: 9px 0; font-size: 0.85rem; }
.hours-table td:first-child { color: var(--neutral-600); font-weight: 500; }
.hours-table td:last-child { color: var(--neutral-800); font-weight: 600; text-align: right; }
.hours-open { color: var(--secondary) !important; }
.hours-closed { color: var(--danger) !important; }

/* ================================================================
   SHOP GALLERY
================================================================ */
.shop-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.shop-gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: var(--neutral-100); }
.shop-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================================
   FLOATING WHATSAPP
================================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  z-index: 9999;
  text-decoration: none;
  transition: all .2s;
  animation: float-pulse 3s infinite;
}
.float-whatsapp:hover { background: #128c7e; transform: scale(1.1); }
.float-whatsapp i { font-size: 1.6rem; color: #fff; }

@keyframes float-pulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.8); }
}

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
  margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.83rem; margin: 12px 0 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 0.95rem; transition: all .2s; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 0.82rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: #fff; }

/* ================================================================
   SKELETON LOADERS
================================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--neutral-100) 25%, var(--neutral-200) 50%, var(--neutral-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.skeleton-img { height: 180px; }
.skeleton-line { height: 12px; margin: 10px 16px 6px; }
.skeleton-line.short { width: 60%; }

/* ================================================================
   INFO BOXES
================================================================ */
.info-box { background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.info-box-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 12px; }
.info-box-icon.blue { background: var(--primary-light); }
.info-box-icon.green { background: var(--secondary-light); }
.info-box h4 { font-size: 0.9rem; margin-bottom: 4px; }
.info-box p { font-size: 0.78rem; color: var(--neutral-400); }

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: 40px 0;
  color: #fff;
}
.page-hero h1 { font-size: 1.8rem; color: #fff; margin-bottom: 6px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 0.9rem; }

/* ================================================================
   EMPTY STATE
================================================================ */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--neutral-700); }
.empty-state p { font-size: 0.85rem; color: var(--neutral-400); margin-bottom: 20px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-info-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 768px) {
  .page-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; display: none; }
  .filter-sidebar.open { display: block; }
  nav { display: none; }
  nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 10px 20px; box-shadow: var(--shadow-lg); }
  nav.open ul { flex-direction: column; }
  .hamburger { display: block; }
  .header-search { order: 3; flex: 0 0 100%; max-width: 100%; }
  .hero-search-box { flex-direction: column; }
  .hero-search-box input,
  .hero-search-box select { min-width: auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .review-summary { grid-template-columns: 1fr; }
  .banner-ad { padding: 24px 20px; }
  .banner-ad::after { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .shops-grid,
  .services-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
