* {
  box-sizing: border-box;
}

:root {
  --navy: #10294a;
  --teal: #129c9d;
  --teal-dark: #0a7778;
  --green: #5ca83d;
  --ink: #162334;
  --muted: #607084;
  --line: #dce6ee;
  --soft: #f3f8fa;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 41, 74, 0.12);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 185px;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 42px;
  align-items: center;
  padding: 70px 0 52px;
}

.eyebrow {
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 14px;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.15rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  max-width: 760px;
  margin: 22px 0 0;
}

.disclosure-banner {
  margin: 24px 0 0;
  padding: 16px 18px;
  background: #ecf8f4;
  border: 1px solid #cdeee4;
  border-radius: 18px;
  color: #315550;
}

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  border: 1px solid transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 28px rgba(18, 156, 157, 0.24);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--navy);
  background: white;
  border-color: var(--line);
}

.button.full {
  width: 100%;
  margin-top: 16px;
}

.hero-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(18, 156, 157, 0.12), transparent 38%),
    white;
  text-align: center;
}

.hero-card img {
  width: min(280px, 100%);
  margin: 0 auto 18px;
  display: block;
  border-radius: 24px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  padding: 72px 0;
}

.section.soft {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 14px 0 0;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.store-card, .pick-card, .guide-card, .content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 36px rgba(16, 41, 74, 0.07);
}

.store-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.store-card.featured {
  border-color: rgba(18, 156, 157, 0.38);
  box-shadow: 0 18px 48px rgba(18, 156, 157, 0.16);
}

.store-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pill {
  background: #e9f7f7;
  color: var(--teal-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.rating {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.store-card p, .store-card li, .pick-card p, .guide-card p, .content-card p, .faq p, .site-footer p {
  color: var(--muted);
}

.store-card ul {
  padding-left: 20px;
  margin: 14px 0 0;
}

.store-card li {
  margin: 6px 0;
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pick-card {
  padding: 24px;
}

.icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 10px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  padding: 24px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.guide-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 156, 157, 0.42);
  box-shadow: 0 16px 44px rgba(18, 156, 157, 0.13);
}

.cta-section {
  padding-top: 30px;
}

.cta-card {
  background:
    linear-gradient(135deg, rgba(16, 41, 74, 0.97), rgba(12, 104, 107, 0.96)),
    var(--navy);
  color: white;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-card h2, .cta-card .eyebrow {
  color: white;
}

.cta-card p {
  color: rgba(255,255,255,0.78);
  max-width: 680px;
}

.cta-card .button.secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.22);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  margin: 12px 0;
  background: white;
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.content-page {
  padding: 52px 0 84px;
}

.content-card {
  padding: clamp(24px, 5vw, 44px);
  max-width: 860px;
}

.content-card h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.content-card h2 {
  font-size: 1.7rem;
  margin-top: 34px;
}

.content-card a {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  background: #07182c;
  color: white;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.82;
}

.footer-links a:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .hero, .cta-card, .footer-grid {
    grid-template-columns: 1fr;
  }

  .store-grid, .guide-grid {
    grid-template-columns: 1fr;
  }

  .pick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand img {
    width: 150px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .hero {
    padding-top: 34px;
  }

  .pick-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}


.carousel-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  max-width: none;
}

.carousel-heading-row > div:first-child {
  max-width: 780px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.carousel-button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(16, 41, 74, 0.08);
}

.carousel-button:hover {
  border-color: rgba(18, 156, 157, 0.45);
  color: var(--teal-dark);
}

.product-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
  box-shadow: 0 12px 36px rgba(16, 41, 74, 0.07);
  display: flex;
  flex-direction: column;
}

.product-art {
  height: 160px;
  border-radius: 22px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.86);
  font-weight: 950;
  font-size: 2.8rem;
  letter-spacing: -0.08em;
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,0.26), transparent 22%),
    linear-gradient(135deg, var(--navy), var(--teal));
  position: relative;
  overflow: hidden;
}

.product-art::before {
  content: "";
  position: absolute;
  inset: 28px auto auto 50%;
  width: 82px;
  height: 100px;
  transform: translateX(-50%);
  border-radius: 18px 18px 26px 26px;
  background: rgba(255,255,255,0.18);
  clip-path: polygon(18% 0, 42% 0, 50% 18%, 58% 0, 82% 0, 100% 28%, 82% 40%, 78% 100%, 22% 100%, 18% 40%, 0 28%);
}

.product-art::after {
  content: "🐾";
  position: absolute;
  right: 18px;
  bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.product-art.joggers {
  background: linear-gradient(135deg, #15345e, #0f8c97);
}

.product-art.shoes {
  background: linear-gradient(135deg, #0e3042, #5ca83d);
}

.product-art.jacket {
  background: linear-gradient(135deg, #10294a, #475e83);
}

.product-art.socks {
  background: linear-gradient(135deg, #0b6570, #65a844);
}

.product-art.accessories {
  background: linear-gradient(135deg, #10294a, #129c9d 58%, #5ca83d);
}

.product-card h3 {
  margin-top: 14px;
}

.product-card p {
  color: var(--muted);
  margin-bottom: 0;
  flex: 1;
}

@media (max-width: 900px) {
  .carousel-heading-row {
    align-items: start;
    flex-direction: column;
  }
}
