@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0c0a09;
  --bg-card: #1c1917;
  --bg-card-hover: #292524;
  --bg-subtle: #1c1917;
  --surface: #1c1917;
  --text: #fafaf9;
  --text-muted: #a8a29e;
  --text-faint: #57534e;
  --border: #292524;
  --border-hover: #44403c;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-light: #fed7aa;
  --accent-glow: rgba(249,115,22,0.3);
  --violet: #8b5cf6;
  --violet-glow: rgba(139,92,246,0.3);
  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --shadow: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.6);
  --glow: 0 0 40px var(--accent-glow);
}

::selection { background: var(--accent); color: white; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(249,115,22,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(139,92,246,0.04) 0%, transparent 60%);
}

main { flex: 1; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============== NAVBAR ============== */
.navbar {
  background: rgba(12,10,9,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(41,37,36,0.6);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.04em;
}

.logo-icon { font-size: 1.6rem; }

.navbar-menu { display: flex; gap: 2px; flex: 1; }

.navbar-menu a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.navbar-menu a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.navbar-actions { display: flex; gap: 8px; }

/* ============== BUTTONS ============== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.01em;
}

/* ===== PRIMARY BUTTON - Animated gradient glow ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f43f5e, var(--violet));
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 4px 24px var(--accent-glow);
  animation: btnGradient 4s ease-in-out infinite;
}

@keyframes btnGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px var(--accent-glow), 0 0 80px var(--accent-glow);
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

/* ===== OUTLINE BUTTON - Animated border glow ===== */
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 0;
  box-shadow: inset 0 0 0 1.5px var(--border);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--accent),
    var(--violet),
    var(--accent),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
  animation: borderSpin 3s linear infinite;
}

@keyframes borderSpin {
  to { transform: rotate(360deg); }
}

.btn-outline:hover {
  color: white;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px) scale(1.02);
  background: rgba(249,115,22,0.08);
}

.btn-outline:hover::before {
  opacity: 1;
}

/* ===== SIZES ===== */
.btn-sm { padding: 8px 18px; font-size: 0.82rem; border-radius: 10px; }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 16px; }

.btn-sm:hover { transform: translateY(-2px) scale(1.04); }
.btn-lg:hover { transform: translateY(-4px) scale(1.03); }

/* ============== HERO ============== */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(249,115,22,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 70% 30%, rgba(139,92,246,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 80%, rgba(249,115,22,0.06) 0%, transparent 40%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-content { position: relative; max-width: 720px; margin: 0 auto; }

.hero .dog-float {
  font-size: 5rem;
  display: block;
  margin-bottom: 24px;
  animation: dogBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px var(--accent-glow));
}

@keyframes dogBounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fafaf9 30%, var(--accent-light) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.search-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  max-width: 640px;
  margin: 0 auto;
  backdrop-filter: blur(4px);
}

.search-categories { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
  border: 1px solid transparent;
}

.category-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(249,115,22,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* ============== SECTIONS ============== */
.quick-compare, .featured-offers, .estimate-section {
  padding: 72px 0;
}

h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

h2 small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

/* ============== CARDS ============== */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.compare-card, .offer-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  perspective: 1000px;
}

.compare-card:hover, .offer-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    var(--shadow-lg),
    0 0 40px rgba(249,115,22,0.08);
}

.compare-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px var(--accent-glow);
}

.price {
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  -webkit-text-fill-color: var(--text-muted);
}

.compare-card h3, .offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.compare-card > p, .offer-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.compare-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.04);
}

.detail-item { display: flex; flex-direction: column; gap: 3px; }

.detail-label {
  font-size: 0.7rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.detail-value {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.offer-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.partner-name { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.offer-card-footer { display: flex; gap: 8px; margin-top: 20px; }

/* ============== PAGE HEADER ============== */
.page-header {
  padding: 56px 0 44px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 30% 20%, rgba(249,115,22,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 80%, rgba(139,92,246,0.05) 0%, transparent 50%);
}

.page-header .container { position: relative; }

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--text), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header > .container > p {
  color: var(--text-muted);
  font-size: 1rem;
  -webkit-text-fill-color: var(--text-muted);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.breadcrumbs a { color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent); }

/* ============== FILTERS ============== */
.filters-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 68px;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.filters-inner { display: flex; gap: 20px; align-items: end; }

.filter-group { display: flex; flex-direction: column; gap: 5px; }

.filter-group label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.filter-group select {
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg);
  font-size: 0.9rem;
  min-width: 150px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ============== OFFERS TABLE ============== */
.offers-list { padding: 36px 0; }

.table-header, .offer-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr 1.5fr;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
}

.table-header {
  padding: 0 24px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-row {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.offer-row:hover {
  border-color: rgba(249,115,22,0.25);
  box-shadow: 0 0 30px rgba(249,115,22,0.05);
  transform: translateY(-2px);
}

.offer-row .price {
  font-size: 1.2rem;
  -webkit-text-fill-color: unset;
  color: var(--accent);
  background: none;
}

.partner-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.06);
}

.col-action { display: flex; gap: 8px; }

/* ============== DETAIL PAGE ============== */
.offer-detail { padding: 48px 0; }

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.detail-header-left h1 {
  font-size: 1.75rem;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.detail-header-left .partner { color: var(--text-muted); font-size: 1rem; }

.detail-header-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.price-big {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-big small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  -webkit-text-fill-color: var(--text-muted);
}

.detail-specs {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 36px;
}

.detail-specs h2 { font-size: 1.2rem; margin-bottom: 24px; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.04);
}

.spec-label {
  font-size: 0.7rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.spec-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.related-offers { margin-top: 48px; }

/* ============== FORMS ============== */
.estimate-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.estimate-card h2 { margin-bottom: 8px; }
.estimate-card > p { color: var(--text-muted); margin-bottom: 28px; }
.estimate-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 0.9rem; }

.form-input {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 1rem;
  transition: all 0.2s;
  background: var(--bg);
  color: var(--text);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

#estimates-results { margin-top: 28px; }

.estimates-results-inner {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

.estimates-results-inner h3 { margin-bottom: 18px; }
.estimates-list { display: flex; flex-direction: column; gap: 10px; }

.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.estimate-row:hover { background: rgba(249,115,22,0.06); }

.estimate-info strong { display: block; font-size: 1rem; }
.estimate-info .partner { font-size: 0.85rem; color: var(--text-muted); }
.estimate-price { text-align: right; }
.estimate-price .price {
  font-size: 1.25rem;
  -webkit-text-fill-color: unset;
  color: var(--accent);
  background: none;
}
.estimate-price .per { font-size: 0.85rem; color: var(--text-muted); }

/* ============== CATEGORIES ============== */
.categories-grid-section, .partners-section { padding: 72px 0; }

.categories-grid, .partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 44px 28px;
  border: 1px solid var(--border);
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
}

.category-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(249,115,22,0.06);
}

.category-card .category-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.category-card h3 { font-size: 1.2rem; margin-bottom: 8px; font-weight: 700; }

.category-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ============== ALERTS CTA ============== */
.alert-cta { padding: 72px 0; }

.alert-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(139,92,246,0.1));
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(249,115,22,0.15);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(249,115,22,0.05);
  position: relative;
  overflow: hidden;
}

.alert-box::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.alert-box h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.alert-box > p { opacity: 0.6; margin-bottom: 28px; font-size: 1rem; }

.alert-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.alert-form input[type="email"] {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: rgba(255,255,255,0.05);
  color: white;
}

.alert-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ============== FOOTER ============== */
.footer {
  background: #090807;
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  margin-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 { color: var(--text); margin-bottom: 18px; font-size: 1rem; font-weight: 700; }
.footer-col p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-faint); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; font-size: 0.85rem; color: var(--text-faint); }

/* ============== MISC ============== */
.partner-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border);
  font-weight: 600;
}

.empty-state { text-align: center; padding: 80px 20px; color: var(--text-muted); }

.flash {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  font-weight: 500;
  font-size: 0.9rem;
}
.flash-notice { background: rgba(34,197,94,0.1); color: #86efac; border: 1px solid rgba(34,197,94,0.2); }
.flash-alert { background: rgba(239,68,68,0.1); color: #fca5a5; border: 1px solid rgba(239,68,68,0.2); }
.badge-success { background: rgba(34,197,94,0.1); color: #86efac; }
.badge-error { background: rgba(239,68,68,0.1); color: #fca5a5; }

.pagination { display: flex; gap: 6px; justify-content: center; padding: 28px 0; }
.pagination a, .pagination span {
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.pagination .current { background: var(--accent); color: white; border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .hero .dog-float { font-size: 3.5rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero { padding: 60px 0 48px; }

  .table-header { display: none; }

  .offer-row {
    grid-template-columns: 1.5fr 1fr;
    gap: 8px;
    padding: 14px 16px;
  }
  .offer-row .col-offer { grid-column: 1 / -1; }
  .offer-row .col-action { grid-column: 1 / -1; flex-direction: row; justify-content: flex-end; }

  .detail-header { flex-direction: column; align-items: stretch; gap: 20px; padding: 28px; }
  .detail-header-right { align-items: flex-start; text-align: left; }
  .price-big { font-size: 2.25rem; }

  .alert-form { flex-direction: column; }
  .comparison-grid { grid-template-columns: 1fr; }
  .search-card { padding: 18px; }
  .category-chip { padding: 10px 18px; font-size: 0.85rem; }
  .estimate-card { padding: 24px; }
  .filters-inner { flex-wrap: wrap; gap: 12px; }
  .filters-bar { position: static; }
  h2 { font-size: 1.5rem; }
}
