/* Premium Mobile Home Page Styles */

/* ═══════════════════════════════════════
   Same Day Shipping Timer Banner
═══════════════════════════════════════ */
.shipping-banner {
  position: fixed;
  top: 124px;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 10px 48px 10px 16px; */
  padding: 10px 0px;
  gap: 28px;
  transition: opacity 0.3s;
  box-shadow: 0 2px 12px rgba(30, 58, 138, 0.4);
}

.shipping-banner__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 50%;
  line-height: 1.3;
}

/* ── Left: badge + subtitle ── */
.sbn-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.sbn-badge {
  display: inline-block;
  background: #f59e0b;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

.sbn-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.sbn-text strong {
  color: #fff;
  font-weight: 700;
}

/* ── Timer blocks ── */
.sbn-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sbn-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.sbn-digit-wrap {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 5px 8px;
  min-width: 40px;
  text-align: center;
}

/* Seconds block pulses to show it's live */
.sbn-digit-wrap--live {
  border-color: rgba(245, 158, 11, 0.5);
  animation: sbn-pulse 1s ease-in-out infinite;
}

@keyframes sbn-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  }
}

.sbn-digit {
  font-size: 22px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: #fff;
  letter-spacing: 1px;
  display: block;
  line-height: 1;
}

.sbn-label {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sbn-colon {
  font-size: 20px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
  animation: sbn-blink 1s step-end infinite;
}

@keyframes sbn-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
}

/* ── Floating mini-timer chip ── */
.ship-mini-timer {
  position: fixed;
  bottom: 88px;
  right: 74px;
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 10px 14px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.4);
  z-index: 900;
  opacity: 0;
  transform: scale(0.85) translateX(10px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.ship-mini-timer--visible {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}

.ship-mini-timer span {
  color: #f59e0b;
  letter-spacing: 1px;
}

/* Hide timers when mobile menu is open */
body.menu-is-open .shipping-banner,
body.menu-is-open .ship-mini-timer {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

:root {
  --primary: #233872;
  --accent: #f57f17;
  --bg-light: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

body {
  background-color: var(--bg-light);
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  margin: 0;
  padding-top: 192px; /* Header + premium timer banner */
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.category-card-title,
.trust-title {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 640px; /* Taller, more immersive */
  overflow: hidden;
  background: #0f172a;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-position: top center;
  object-fit: cover;
  opacity: 1; /* Full brightness */
  animation: slowZoom 12s ease-out forwards;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Very smooth, premium cinematic gradient from bottom up */
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.7) 30%,
    rgba(15, 23, 42, 0.1) 60%,
    rgba(15, 23, 42, 0) 100%
  );
  /* Top gradient for indicators */
  background-image:
    linear-gradient(
      to top,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(15, 23, 42, 0.7) 30%,
      rgba(15, 23, 42, 0) 70%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 25%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px;
  color: #fff;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  align-self: flex-start;
  background: transparent;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  max-width: 90%;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-hero-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #ffffff;
  color: #000;
  padding: 16px;
  border-radius: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 16px;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    background 0.2s;
  text-decoration: none;
}

.btn-hero-solid:active {
  transform: scale(0.97);
  background: #f1f5f9;
}

.btn-hero-solid svg {
  transition: transform 0.2s;
}

.btn-hero-solid:active svg {
  transform: translateX(4px);
}

.btn-hero-outline {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    transform 0.2s,
    background 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-hero-outline:active {
  transform: scale(0.97);
  background: rgba(255, 255, 255, 0.2);
}

/* Indicators */
.hero-indicators {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 20;
}

.indicator {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.indicator-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  width: 0%;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

/* Transitions */
.slide-enter {
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.slide-enter-start {
  opacity: 0;
  transform: scale(1.04);
}
.slide-enter-end {
  opacity: 1;
  transform: scale(1);
}
.slide-leave {
  transition: opacity 0.6s ease-in;
}
.slide-leave-start {
  opacity: 1;
}
.slide-leave-end {
  opacity: 0;
}

/* ═══════════════════════════════════════
   TDL Service & Guarantees
═══════════════════════════════════════ */
.guarantees-section {
  padding: 28px 20px 20px;
}

.guarantees-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.guarantees-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.guarantee-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  position: relative;
}
.guarantee-row:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.guarantee-row__arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
  color: #cbd5e1;
}

.guarantee-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-row__text {
  flex: 1;
}

.guarantee-row__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.guarantee-row__desc {
  font-size: 11.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

/* ═══════════════════════════════════════
   Best Sellers / Product Cards
═══════════════════════════════════════ */
.best-sellers-section {
  padding: 40px 0 40px; /* full bleed for carousel */
}
.section-header.px-5 {
  padding-right: 20px;
  margin-bottom: 20px;
}

.product-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 20px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-card-large {
  flex: 0 0 80vw;
  max-width: 320px;
  scroll-snap-align: center;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.product-card-large__image-container {
  position: relative;
  width: 100%;
  height: 230px;
  flex-shrink: 0;
}

.product-card-large__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  z-index: 2;
  letter-spacing: 0.5px;
}
.product-badge--sale {
  background: #e11d48;
}

.product-card-large__like {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s,
    background 0.2s;
}
.product-card-large__like:active {
  transform: scale(0.9);
  background: #fff;
}

.product-card-large__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 230px;
  flex-shrink: 0;
}

.product-card-large__stars {
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars-icon {
  color: #f59e0b;
  letter-spacing: 2px;
}
.product-card-large__reviews {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
}

.product-card-large__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.product-card-large__desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.4;
  margin: 0 0 24px 0;
}

.product-card-large__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.product-card-large__price-wrap {
  display: flex;
  flex-direction: column;
}

.product-card-large__price {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}
.product-card-large__price-old {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
}

.product-card-large__add-btn {
  background: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.product-card-large__add-btn:active {
  transform: scale(0.96);
  background: #1e3a8a;
}

/* ═══════════════════════════════════════
   Reviews Section
═══════════════════════════════════════ */
.reviews-section {
  padding: 40px 0 30px;
  background: #f8fafc;
}

.reviews-header {
  margin-bottom: 24px;
}

.reviews-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}

.reviews-nav {
  display: flex;
  gap: 8px;
  justify-content: end;
}

.reviews-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.reviews-nav-btn:hover {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.reviews-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 20px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 82vw;
  max-width: 320px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 400px) {
  .review-card {
    flex: 0 0 calc(100vw - 100px);
  }
}

.review-quote-mark {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: #f1f5f9;
  line-height: 1;
}

.review-card__stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.review-card__text {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.review-card__name {
  font-weight: 700;
  color: #0f172a;
  font-size: 14.5px;
}

.review-card__verified {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #10b981;
  font-size: 12px;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   Quiz CTA Section
═══════════════════════════════════════ */
.quiz-cta-section {
  padding: 0 20px 40px;
}

.quiz-cta-card {
  background: linear-gradient(
    145deg,
    #f0f9ff 0%,
    #e0f2fe 100%
  ); /* Premium sky blue wash */
  border-radius: 32px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.08); /* tinted shadow */
  position: relative;
  overflow: hidden;
}

/* Subtle background decoration */
.quiz-cta-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.quiz-icon-wrapper {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(14, 165, 233, 0.15);
  color: #0ea5e9; /* Vibrant Sky Blue */
}

.quiz-icon {
  width: 28px;
  height: 28px;
}

.quiz-cta-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.quiz-cta-desc {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 280px;
}

.btn-quiz {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 15.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.2s,
    background 0.2s;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.btn-quiz:active {
  transform: scale(0.97);
  background: #000000;
}

/* ═══════════════════════════════════════
   Guides / SEO Content
═══════════════════════════════════════ */
.guides-section {
  padding: 40px 0 60px;
}

.guides-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
  cursor: pointer;
}
.guide-card:active {
  transform: scale(0.98);
}

.guide-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.guide-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 2;
  letter-spacing: 0.5px;
}

.guide-card__info {
  padding: 24px 20px;
}

.guide-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 8px 0;
}

.guide-card__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.guide-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14.5px;
  color: #1e3a8a; /* Brand Primary */
  text-decoration: none;
}
.guide-card__link span {
  transition: transform 0.2s;
}
.guide-card:active .guide-card__link span {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════
   Problem Cards Section
═══════════════════════════════════════ */
.problem-section {
  padding: 40px 20px 20px;
}

.problem-header {
  margin-bottom: 28px;
}

.problem-main-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin: 0 0 10px 0;
}

.problem-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Base card */
.problem-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  color: var(--text-main);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1.5px solid transparent;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 20px 0 0 20px;
}

.problem-card:active {
  transform: scale(0.985);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Card Icon Wrap */
.problem-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-card__icon {
  width: 24px;
  height: 24px;
}

/* Card Body */
.problem-card__body {
  flex: 1;
}

.problem-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--text-main);
  line-height: 1.3;
}

.problem-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Card CTA row */
.problem-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 700;
}

/* ── Card accent colours ── */

/* Fence — Indigo/Blue */
.problem-card--fence::before {
  background: #4f46e5;
}
.problem-card--fence .problem-card__icon-wrap {
  background: #eef2ff;
}
.problem-card--fence .problem-card__icon {
  stroke: #4f46e5;
}
.problem-card--fence .problem-card__cta {
  color: #4f46e5;
}

/* Bark — Amber/Orange */
.problem-card--bark::before {
  background: #f59e0b;
}
.problem-card--bark .problem-card__icon-wrap {
  background: #fffbeb;
}
.problem-card--bark .problem-card__icon {
  stroke: #f59e0b;
}
.problem-card--bark .problem-card__cta {
  color: #d97706;
}

/* Training — Emerald/Green */
.problem-card--training::before {
  background: #10b981;
}
.problem-card--training .problem-card__icon-wrap {
  background: #ecfdf5;
}
.problem-card--training .problem-card__icon {
  stroke: #10b981;
}
.problem-card--training .problem-card__cta {
  color: #059669;
}

/* GPS — Rose/Pink */
.problem-card--gps::before {
  background: #f43f5e;
}
.problem-card--gps .problem-card__icon-wrap {
  background: #fff1f2;
}
.problem-card--gps .problem-card__icon {
  stroke: #f43f5e;
}
.problem-card--gps .problem-card__cta {
  color: #e11d48;
}

/* Sections */
.home-section {
  padding: 32px 20px 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.section-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.category-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.2s;
}

.category-card:active {
  transform: translateY(2px);
}

.cat-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.cat-icon-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.category-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.category-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -6px;
}

/* Product Carousel */
.product-carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 24px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.5px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-brand {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 4px;
}

.product-price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 6px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.product-rating svg {
  width: 12px;
  height: 12px;
  fill: #facc15;
}

.rating-text {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Value Props Banner */
.trust-banner {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10px 20px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon.blue {
  background: rgba(35, 56, 114, 0.08);
  color: var(--primary);
}
.trust-icon.green {
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
}
.trust-icon.orange {
  background: rgba(245, 127, 23, 0.08);
  color: var(--accent);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.trust-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   Site Footer
═══════════════════════════════════════ */
.site-footer {
  background: #0f172a; /* Deep Slate / Navy */
  color: #f8fafc;
  padding: 56px 24px 32px;
  margin-top: 24px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.site-footer__brand {
  margin-bottom: 40px;
}

.site-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.site-footer__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.site-footer__logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

.site-footer__tagline {
  font-size: 14.5px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

.site-footer__heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer__contact {
  margin-bottom: 40px;
}

.site-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__contact-list a {
  color: #f8fafc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.site-footer__accordions {
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__accordion.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__accordion-btn {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.site-footer__accordion-btn .mb-0 {
  margin-bottom: 0;
}

.site-footer__accordion-btn svg {
  transition: transform 0.3s;
}

.site-footer__accordion-btn svg.is-open {
  transform: rotate(180deg);
}

.site-footer__accordion-content {
  overflow: hidden;
}

.site-footer__list {
  list-style: none;
  padding: 0 0 24px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__list li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-block;
}

.site-footer__list li a:active {
  color: #ffffff;
}

.site-footer__payments {
  margin-bottom: 20px;
}

.site-footer__payments-label {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer__payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.site-footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.site-footer__social {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}
.social-icon-btn:active {
  transform: scale(0.92);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.site-footer__copyright {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ═══════════════════════════════════════
   Scroll To Top Button
═══════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 88px; /* above the mobile bottom nav bar */
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.scroll-top-btn--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-btn:active {
  transform: scale(0.92);
  background: #1e3a8a;
}
