:root {
  --rp-glow: radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.25), transparent 40%), radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.28), transparent 35%);
  --base-font: "Space Grotesk", "Inter", "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--base-font);
  background: var(--dbg-bg);
  font-size-adjust: none;
  color: var(--dbg-text);
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

h1, h2, p, input, button, select {
  font-family: var(--base-font);
  line-height: 1.2;
}

.dbg-shell {
  max-width: 1050px;
  margin: 24px auto;
  padding: 0 28px;
  min-height: 3500px;
}

.dbg-results {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  min-height: 3000px;
  overflow: visible;
  content-visibility: visible;
  contain: none;
}

.home-section-deals {
  margin-top: 20px;
}

.dbg-hero {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dbg-hero h1 {
  margin: 0 0 0 0;
  font-size: 32px;
  line-height: 1.2;
  min-height: 1.5em;
}

.dbg-hero h2 {
  margin: 0 0 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  min-height: 1.2em;
}

.dbg-hero-intro {
  font-size: 15px;
  font-weight: 100;
  color: var(--dbg-subtext);
  min-height: 5em;
  margin: 0;
  padding-top: 12px;
}

.dbg-card {
  display: block;
  position: relative;
  background: var(--dbg-card);
  border: 1px solid var(--dbg-border);
  border-radius: 18px;
  box-shadow: var(--dbg-shadow);
  padding: 18px 18px 10px 18px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
  overflow: visible;
  z-index: 0;
  cursor: pointer;
  min-height: 290px;
}

.dbg-skeleton-card {
  min-height: 290px;
}

.dbg-card-body {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  grid-template-areas: "media details rating";
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 260px;
}

.dbg-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 196px;
  max-width: 196px;
  align-self: start;
  grid-area: media;
}

.dbg-main-img img {
  width: 100%;
  max-width: 196px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.dbg-main-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 14px 10px;
  line-height: 1.3;
  color: inherit;
  text-decoration: none;
}

.dbg-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 15px;
}

.dbg-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  max-width: 100%;
}

.dbg-thumb {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 2px;
  background: #fff;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.dbg-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.dbg-details {
  height: 100%;
  grid-area: details;
  min-height: 210px;
}

.dbg-details .dbg-title {
  min-height: 60px;
  margin: 0 0 6px 0;
  font-size: 16px;
  line-height: 1.4;
  color: #4b5665;
}

.dbg-brand {
  color: var(--dbg-subtext);
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  min-height: 20px;
}

.dbg-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  min-height: 28px;
}

.dbg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
}

.dbg-badge.discount {
  color: #7f1d1d;
  background: #fee2e2;
  border-color: #fecaca;
}

.dbg-badge.shipping {
  color: #065f46;
  background: #d1fae5;
  border-color: #a7f3d0;
}

.dbg-title-link {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  padding: 8px 0px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.dbg-love {
  margin-top: 6px;
}

.dbg-love-title {
  font-weight: 700;
  margin-bottom: 6px;
  min-height: 20px;
}

.dbg-love ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
  min-height: 70px;
}

.dbg-love li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dbg-subtext);
  font-size: 16px;
  line-height: 1.35;
  min-height: 20px;
}

.dbg-love li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e1ecff;
  border: 1px solid #95b6f5;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231b4bd8'><path d='M12.7 4.3a1 1 0 0 1 0 1.4l-5.5 5.5a1 1 0 0 1-1.4 0L3.3 8.7a1 1 0 0 1 1.4-1.4L6.5 9.2l4.8-4.8a1 1 0 0 1 1.4 0Z'/></svg>");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 15px 15px;
  flex-shrink: 0;
}

.dbg-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  grid-area: rating;
  min-height: 200px;
}

.dbg-score-box {
  border: 1px solid var(--dbg-border);
  background: #f8fafc;
  border-radius: 12px;
  width: 150px;
  padding: 12px 8px;
  text-align: center;
  min-height: 120px;
}

.dbg-score {
  font-size: 28px;
  font-weight: 800;
  color: #2563eb;
  line-height: 1.3;
}

.dbg-score-text {
  font-size: 13px;
  padding-top: 5px;
  font-weight: 600;
  color: var(--dbg-subtext);
}

.dbg-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 2px;
  color: #f59e0b;
  font-size: 22px;
}

.dbg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-width: 48px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #1a85f2 0%, #0d7ae0 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 20px rgba(26,133,242,0.25);
}

.dbg-card-body a {
  display: block;
}

.dbg-card-body a + a {
  margin-top: 16px;
}

.dbg-card-body .dbg-cta {
  display: flex;
  justify-content: center;
  text-align: center;
}

.cat-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cat-section-title-text {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.cat-section h1 {
  font-size: 32px;
  line-height: 1.2;
}

.cat-shell {
  background: var(--dbg-bg);
  color: var(--rp-ink);
}

.cat-hero {
  background: #0b1226;
  color: #e8edff;
  padding: 52px 16px 44px;
  box-shadow: none;
  overflow: hidden;
}

.cat-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.cat-hero h1 {
  margin: 10px 0 10px;
  font-size: 36px;
  letter-spacing: -0.4px;
  max-width: 820px;
  min-height: 2.4em;
}

.cat-hero-lede {
  margin: 0;
  max-width: 760px;
  color: #c6d6ff;
  font-size: 17px;
  min-height: 1.4em;
}

.rp-footer {
  background: #0b1226;
  color: #dbe7ff;
  padding: 46px 16px 28px;
  margin-top: 40px;
}

.rp-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
}

.rp-footer h2,
.rp-footer h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #f8fbff;
}

.rp-footer p {
  margin: 0 0 10px;
  color: #a9bbdf;
}

.rp-footer-col a {
  color: #a9bbdf;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
  padding: 10px 0;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.rp-footer-col a:focus-visible {
  text-decoration: none;
}

.rp-footer-col a:hover {
  opacity: 0.7;
}

.rp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.rp-footer-brand img {
  width: 200px;
  height: 59px;
}

.rp-footer-bottom {
  max-width: 1180px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #93addd;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  font-size: 14px;
}

.site-header, .rp-header {
  position: relative;
  z-index: 1000;
  background: linear-gradient(120deg, #0a2a57 0%, #0c3a7a 50%, #0b5bd3 100%);
  color: #f8fafc;
  font-size-adjust: none;
}

.rp-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rp-nav-wrap {
  width: 100%;
  background: linear-gradient(90deg, #0b2f68 0%, #0c4b9e 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  padding: 0;
}

.rp-nav-wrap .rp-nav-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  height: 56px;
  display: flex;
  align-items: center;
}

.rp-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0;
}

.rp-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  font-weight: 700;
  color: #e2edff;
  text-decoration: none;
  border-radius: 0;
  border: 0;
  border-bottom: 3px solid transparent;
  line-height: 1.2;
}

.rp-mainbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 90px;
  height: 90px;
  font-size-adjust: none;
}

.rp-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.rp-brand-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.rp-brand {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.site-logo img {
  display: block;
  height: 82px;
  width: 200px;
  max-width: 100%;
  object-fit: contain;
}

.rp-search {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 3000;
}

.rp-search form {
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d7deeb;
  border-radius: 12px;
  padding: 2px 3px;
  gap: 8px;
  position: relative;
  contain: layout;
  min-height: 44px;
  height: 44px;
}

.rp-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 10px 4px;
  background: transparent;
  color: #0f172a;
  line-height: 1.2;
  min-height: 40px;
  height: 40px;
}

.rp-search button {
  background: linear-gradient(135deg, #0c63f6 0%, #0a5ed6 100%);
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  min-height: 36px;
  height: 36px;
}

.rp-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0c63f6;
  width: 22px;
  height: 22px;
  margin-left: 5px;
}


.rp-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.rp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e6edff;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  gap: 6px;
}

.rp-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.rp-action-label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.rp-menu-toggle, .rp-account-btn, .rp-deals-btn, .rp-best-btn {
  display: none;
}

.rp-menu-toggle, .rp-account-btn {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #e6edff;
}

.rp-deals-btn, .rp-best-btn {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.rp-menu-toggle svg {
  display: block;
}

.rp-icon-emoji {
  font-size: 20px;
  line-height: 1;
}

.rp-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.rp-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rp-mobile-menu.is-open .rp-mobile-menu-overlay {
  opacity: 1;
}

.rp-mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rp-mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #ffffff;
  transform: translateX(-100%);
}

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

@font-face{

  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;

}

.home-hero-title {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  max-width: none;
  width: 100%;
  padding-top: 5px;
  min-height: 1.2lh;
  font-size-adjust: none;
}

.home-hero-area {
  min-height: 620px;
  background: #0a1025;
  color: #e8edff;
  position: relative;
}

.home-hero {
  padding: 24px 16px;
  position: relative;
  z-index: 50;
}

.home-hero-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  align-items: center;
}

.home-hero-secondary {
  margin-top: 0;
  padding: 16px 16px 64px;
  background: transparent;
  color: inherit;
  position: relative;
  z-index: 10;
}

.home-purpose {
  margin: 0 0 10px;
  font-size: 18px;
  color: #dbe7ff;
  font-weight: 600;
}

.home-hero-bullets {
  margin: 0 0 12px;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #c7d7ff;
  font-size: 15px;
}

.home-hero-bullets li {
  margin: 0;
}

.home-method-link {
  margin-bottom: 12px;
}

.home-method-link a {
  color: #9bd1ff;
  font-weight: 700;
  text-decoration: underline;
}

.home-hero-cta-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-hero-cta-row .home-btn {
  padding: 10px 14px;
  font-size: 14px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.home-btn.primary {
  background: #fff;
  color: #0a1025;
}

.home-btn.ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #e8edff;
  background: transparent;
}

.home-search {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  background: #0f1833;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0px 8px 0px 12px;
  gap: 10px;
  min-height: 56px;
  position: relative;
  z-index: 60;
}

.home-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #f5f8ff;
  font-size: 1rem;
  padding: 10px 4px;
  height: 56px;
  box-sizing: border-box;
}

.home-search button {
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
}

.home-search .rp-autocomplete {
  z-index: 1200;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  min-height: 120px;
}

.home-stat-card {
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  min-height: 96px;
}

.home-stat-label {
  display: block;
  font-size: 13px;
  color: #b8c7ef;
}

.home-stat-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  margin: 6px 0;
}

.home-stat-card p {
  margin: 0;
  color: #c0cff5;
  font-size: 14px;
  line-height: 1.3;
  min-height: 36px;
}

.home-trust-strip {
  background: linear-gradient(90deg, #f8fafc, #eef2ff);
  border-bottom: 1px solid #dbe4ff;
}

.home-trust-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 56px;
}

.home-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.3;
}

.home-trust-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.home-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 16px;
}

.home-section:not(.home-section-pillars) {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.home-section-pillars {
  content-visibility: visible;
  contain-intrinsic-size: auto;
  min-height: 220px;
  contain: layout paint;
  display: grid;
  grid-template-rows: auto 1fr;
}

.home-section-pillars .home-section-heading h2 {
  line-height: 1.2;
}

.home-section-pillars .home-section-heading p {
  line-height: 1.4;
  min-height: 1.4em;
}

.home-pillars {
  grid-auto-rows: 1fr;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.home-section-pillars img,
.home-section-pillars svg {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
}

.home-pillar-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 18px;
}

.home-pillar-icon {
  width: 48px;
  height: 48px;
  display: block;
}

.home-section + .home-section {
  margin-top: 0;
}

.home-section-heading h2 {
  margin: 8px 0 6px;
  font-size: 32px;
  letter-spacing: -0.4px;
  line-height: 1.2;
  min-height: 1.2em;
}

.home-section-heading p {
  margin: 0;
}

.cat-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 16px 40px;
}

.cat-section-heading h2 {
  margin: 8px 0 6px;
  font-size: 30px;
  letter-spacing: -0.4px;
}

.cat-section-heading p {
  margin: 0;
  color: #4b5563;
}

.cat-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.cat-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  min-height: 58px;
  border-radius: 14px;
  background: linear-gradient(120deg, #ffffff, #f5f7ff);
  border: 1px solid #d9e3ff;
  color: #0b1f35;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 24px rgba(10,31,51,0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.cat-link-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-link-title {
  font-weight: 800;
}

.cat-check-status {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}

.cat-check-total {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
}

.cat-check-total + .cat-check-total {
  margin-top: 6px;
}

.cat-mod-group {
  margin-top: 18px;
  min-height: 140px;
}

.cat-mod-group:first-of-type {
  margin-top: 10px;
}

.cat-mod-group-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  line-height: 1.3;
}

.cat-mod-group-desc {
  margin: 0 0 10px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.4;
  min-height: 1.5em;
}

@media (max-width: 700px) {
  .dbg-results {
    min-height: 800px;
  }
  
  .dbg-hero h1 {
    min-height: 2.5em;
  }
  
  .dbg-hero-intro {
    min-height: 7.2em;
  }
  
  .dbg-card {
    min-height: 925px;
  }
  
  .dbg-skeleton-card {
    min-height: 925px;
  }
  
  .dbg-card-body {
    grid-template-columns: 1fr;
    grid-template-areas: "media"
          "details"
          "rating";
  }
  
  .dbg-rating {
    align-items: center;
  }
  
  .dbg-score-box,
    .dbg-cta {
    width: 100%;
    max-width: 320px;
  }
  
  .dbg-media,
      .dbg-thumbs,
      .dbg-main-img,
      .dbg-main-img img {
    max-width: none;
    width: 100%;
  }
  
  .dbg-media {
    width: 100%;
    max-width: none;
  }
  
  .dbg-main-img {
    width: 100%;
  }
  
  .dbg-card-compact .dbg-card-body {
    grid-template-columns: 1fr;
    grid-template-areas: "media"
          "details"
          "rating";
  }
  
  .dbg-card-compact .dbg-score-box,
      .dbg-card-compact .dbg-cta {
    width: 100%;
  }
  
  .cat-hero h1 {
    min-height: 3.2em;
  }
  
  .cat-hero-lede {
    min-height: 2.8em;
  }
  
  .rp-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .rp-mainbar {
    height: 150px;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
  }
  
  .rp-actions {
    display: none;
  }
  
  .rp-menu-toggle, .rp-deals-btn, .rp-best-btn {
    display: inline-flex;
  }
  
  .rp-brand-row {
    width: 100%;
  }
  
  .rp-search {
    max-width: 100%;
    margin-top: -10px;
    margin-bottom: 8px;
  }
  
  .rp-search form {
    width: 100%;
    margin-top: 4px;
  }
  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) and (min-width: 721px) {
  .rp-footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rp-footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .rp-footer-brand p {
    margin-top: 0;
    max-width: 520px;
  }
}

@media (max-width: 900px) {
  .rp-header-inner {
    gap: 12px;
  }
  
  .rp-mainbar {
    height: 150px;
    grid-template-columns: 1fr;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }
  
  .rp-brand-row {
    width: 100%;
    justify-content: flex-start;
  }
  
  .rp-brand {
    width: auto;
    justify-content: flex-start;
  }
  
  .rp-account-btn {
    display: inline-flex;
  }
  
  .rp-search {
    width: 100%;
    max-width: none;
  }
  
  .rp-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .rp-nav {
    justify-content: flex-start;
    gap: 10px;
  }
  
  .rp-nav-bar {
    overflow-x: auto;
  }
  
  .rp-nav-wrap {
    padding: 4px 0;
  }
  
  .rp-nav-wrap .rp-nav-bar {
    padding: 0 12px;
    height: 48px;
  }
}

@media (min-width: 901px) {
  .rp-account-btn {
    display: none !important;
  }

  .rp-actions {
    min-height: 48px;
    height: 48px;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }
}

@media (max-width: 600px) {
  .rp-header {
    height: 160px;
  }
  
  .rp-mainbar {
    height: 150px;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  
  .rp-search {
    grid-area: auto;
  }
  
  .rp-brand {
    flex-direction: row;
    align-items: center;
  }
  
  .rp-brand img {
    width: 170px;
    height: 70px;
  }
  
  .rp-nav a {
    font-size: 13px;
    padding: 8px 10px;
  }
  
  .rp-search form {
    padding: 6px 3px;
  }
  
  .rp-search input {
    font-size: 15px;
  }
  
  .rp-search button {
    padding: 9px 12px;
    font-size: 13px;
  }
  
  .home-hero-area {
    height: 860px;
  }
}

@media (min-width: 768px) {
  .home-section-pillars {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
