:root {
  --dark: #10191c;
  --dark-2: #172326;
  --red: #e50914;
  --red-hover: #c90010;
  --white: #ffffff;
  --light: #f4f4f4;
  --muted: #b8c0c2;
  --ink: #172326;
  --soft-shadow: 0 18px 45px rgba(16, 25, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 58% 50%, #263438 0%, #172326 36%, #10191c 70%, #0a1012 100%),
    linear-gradient(135deg, #172326 0%, #10191c 58%, #090e10 100%);
  isolation: isolate;
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.site-header::before {
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.15));
}

.site-header::after {
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(244, 244, 244, 0.06));
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 8px max(20px, calc((100% - 1160px) / 2));
  background: rgba(16, 25, 28, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
  transition: background-color 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.navbar.is-scrolled {
  background: rgba(16, 25, 28, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(126px, 12vw, 170px);
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-link {
  position: relative;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.88);
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-mark {
  display: inline-grid;
  place-items: center;
  width: 21px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: #23c65e;
  font-size: 0.66rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  width: min(1160px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 122px 0 72px;
  z-index: 1;
}

.hero-content {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.75rem, 6.45vw, 6.35rem);
  line-height: 0.92;
  font-weight: 900;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  max-width: 520px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  line-height: 1.72;
}

.hero .btn-primary {
  min-height: 58px;
  padding: 17px 30px;
  box-shadow: 0 20px 34px rgba(229, 9, 20, 0.32);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: normal;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-card {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 28px rgba(229, 9, 20, 0.22);
}

.btn-primary:hover,
.btn-card:hover {
  background: var(--red-hover);
}

.btn-outline {
  color: var(--red);
  background: transparent;
  border: 1px solid rgba(229, 9, 20, 0.42);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 100%;
  min-height: 560px;
}

.hero-shoe {
  width: min(52vw, 610px);
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 38px 36px rgba(0, 0, 0, 0.38));
  animation: floatShoe 5.1s ease-in-out infinite;
  z-index: 2;
}

.shoe-shadow {
  position: absolute;
  bottom: 68px;
  width: min(72%, 430px);
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.44);
  filter: blur(17px);
  transform: rotate(-7deg);
  z-index: 1;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: grid;
  gap: 0;
  width: 34px;
  height: 38px;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.74);
  border-bottom: 2px solid rgba(255, 255, 255, 0.74);
  transform: rotate(45deg);
  animation: cuePulse 1.5s ease-in-out infinite;
}

.scroll-cue span:nth-child(2) {
  margin-top: -10px;
  animation-delay: 160ms;
}

.section {
  position: relative;
  z-index: 0;
  padding: clamp(72px, 9vw, 112px) 0;
  scroll-margin-top: 76px;
}

.trends-section {
  padding: clamp(82px, 9vw, 118px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--light) 100%);
}

.section-heading {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 54px;
  text-align: center;
}

.trends-section .section-heading {
  width: min(1120px, calc(100% - 40px));
  margin-bottom: clamp(38px, 5vw, 62px);
}

.section h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 30px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.product-card {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-rows: 245px 1fr;
  min-height: 438px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 25, 28, 0.06);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 25, 28, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(16, 25, 28, 0.14);
}

.product-image {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 34px 28px 18px;
  background:
    radial-gradient(circle at center, rgba(229, 9, 20, 0.07) 0%, rgba(229, 9, 20, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.product-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 28px 30px;
  text-align: center;
}

.product-info h3 {
  margin: 0 0 9px;
  color: var(--dark);
  font-size: clamp(1.18rem, 2vw, 1.44rem);
  line-height: 1.2;
  font-weight: 800;
}

.product-info p {
  margin: 0 0 24px;
  color: #637073;
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-card {
  width: 100%;
  margin-top: auto;
  min-height: 48px;
  padding-inline: 18px;
  box-shadow: 0 15px 24px rgba(229, 9, 20, 0.2);
}

.stores-section {
  padding: clamp(82px, 9vw, 118px) 0;
  background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}

.stores-layout {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 5vw, 66px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.stores-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-copy,
.contact-copy p {
  max-width: 640px;
  color: #637073;
  font-size: 1.03rem;
  line-height: 1.8;
}

.stores-heading .section-copy {
  max-width: 720px;
  margin: 18px auto 0;
}

.store-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 30px);
  margin-top: 0;
}

.store-card {
  position: relative;
  z-index: 0;
  min-width: 0;
  border: 1px solid rgba(16, 25, 28, 0.07);
  border-radius: 20px;
  padding: 32px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 25, 28, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 25, 28, 0.14);
}

.location-pin {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  box-shadow: 0 12px 22px rgba(229, 9, 20, 0.26);
  transform: rotate(-45deg);
}

.location-pin::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--white);
}

.store-card h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 800;
}

.store-card p {
  margin: 0;
  color: #637073;
  line-height: 1.65;
}

.store-address {
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 700;
}

.store-city {
  margin-top: 4px;
  font-size: 0.94rem;
}

.btn-map {
  margin-top: 26px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 15px 24px rgba(229, 9, 20, 0.2);
}

.btn-map:hover {
  background: var(--red-hover);
}

.map-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(16, 25, 28, 0.08);
  border-radius: 22px;
  color: var(--dark);
  background:
    linear-gradient(rgba(16, 25, 28, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 25, 28, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 55% 45%, rgba(229, 9, 20, 0.1) 0%, rgba(229, 9, 20, 0) 28%),
    #eef0f0;
  background-size: 44px 44px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 18px 44px rgba(16, 25, 28, 0.08);
}

.map-placeholder::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(229, 9, 20, 0.1);
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.035);
}

.map-road {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0 0 1px rgba(16, 25, 28, 0.04);
}

.map-road-main {
  width: 130%;
  height: 32px;
  transform: rotate(-13deg);
}

.map-road-secondary {
  width: 34px;
  height: 125%;
  transform: translateX(-220px) rotate(18deg);
}

.map-road-third {
  width: 32px;
  height: 118%;
  transform: translateX(250px) rotate(18deg);
}

.map-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100% - 36px, 560px);
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 52px rgba(16, 25, 28, 0.12);
  backdrop-filter: blur(8px);
}

.map-pin {
  width: 42px;
  height: 42px;
  margin: 0 0 20px;
}

.map-content p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-content strong {
  color: var(--dark);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.15;
  font-weight: 800;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.btn-map-small {
  min-height: 42px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 20px rgba(229, 9, 20, 0.2);
}

.btn-map-small:hover {
  background: var(--red-hover);
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(229, 9, 20, 0.16) 0%, rgba(229, 9, 20, 0) 34%),
    linear-gradient(135deg, rgba(16, 25, 28, 0.99), rgba(23, 35, 38, 0.97)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 13px);
}

.contact-section h2 {
  margin-bottom: 18px;
  color: var(--white);
}

.contact-copy {
  max-width: 560px;
}

.contact-copy h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  font-weight: 850;
}

.contact-copy p {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--muted);
}

.contact-copy .btn-primary {
  min-height: 54px;
  padding-inline: 28px;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.contact-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border: 1px solid rgba(229, 9, 20, 0.25);
  border-radius: 50%;
  color: var(--white);
  background: rgba(229, 9, 20, 0.14);
  font-size: 0.66rem;
  font-weight: 900;
}

.contact-icon-pin::before,
.contact-icon-place::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
}

.contact-icon-place::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.contact-form {
  display: grid;
  gap: 13px;
  border: 1px solid rgba(16, 25, 28, 0.08);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.contact-form h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.15;
  font-weight: 850;
}

.form-status {
  min-height: 1.2em;
  margin: -2px 0 2px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form label {
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 25, 28, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--dark);
  background: #f7f8f8;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(229, 9, 20, 0.78);
  background: var(--white);
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 6px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: #23c65e;
  box-shadow: 0 16px 28px rgba(35, 198, 94, 0.34);
  transition: transform 180ms ease, filter 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  filter: brightness(0.98);
}

.floating-whatsapp span {
  font-size: 0.9rem;
  font-weight: 900;
}

.site-footer {
  padding: 42px 20px;
  color: var(--muted);
  background: #080d0f;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(190px, 0.6fr);
  gap: 32px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-brand img {
  width: min(190px, 62vw);
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-brand p + p {
  margin-top: 6px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-action {
  justify-self: end;
}

.btn-footer-whatsapp {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 24px rgba(229, 9, 20, 0.2);
}

.btn-footer-whatsapp:hover {
  background: var(--red-hover);
}

@keyframes floatShoe {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-18px) rotate(-1deg);
  }
}

@keyframes cuePulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(5px) rotate(45deg);
  }
}

@media (max-width: 980px) {
  .navbar {
    min-height: 64px;
    padding: 7px 14px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 4px);
    right: 14px;
    display: grid;
    width: min(360px, calc(100vw - 32px));
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(16, 25, 28, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 14px 12px;
  }

  .nav-link.active::after {
    left: 12px;
    right: auto;
    width: 34px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    gap: 16px;
    padding-top: 104px;
    text-align: center;
  }

  .hero-content {
    max-width: none;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero .btn-primary {
    margin-inline: auto;
  }

  .hero-product {
    justify-self: center;
    min-height: 350px;
  }

  .hero-shoe {
    width: min(78vw, 450px);
  }

  .shoe-shadow {
    bottom: 36px;
  }

  .stores-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    grid-template-rows: 235px 1fr;
    min-height: 420px;
  }

  .product-image {
    min-height: 0;
    padding: 30px 26px 16px;
  }

  .product-info {
    padding: 12px 26px 28px;
  }
}

@media (max-width: 700px) {
  .hero,
  .section-heading,
  .product-grid,
  .stores-layout,
  .contact-layout {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    width: 136px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13.5vw, 4.15rem);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-product {
    min-height: 290px;
  }

  .hero-shoe {
    width: min(86vw, 380px);
  }

  .shoe-shadow {
    bottom: 30px;
    width: min(72%, 300px);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card {
    grid-template-rows: 210px auto;
    min-height: auto;
    border-radius: 18px;
  }

  .product-image {
    min-height: 0;
    padding: 28px 24px 14px;
  }

  .product-image img {
    height: 165px;
  }

  .product-info {
    align-items: stretch;
    padding: 10px 24px 26px;
    text-align: center;
  }

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

  .map-placeholder {
    min-height: 330px;
  }

  .map-content {
    width: min(100% - 24px, 560px);
  }

  .map-actions {
    width: 100%;
  }

  .btn-map-small {
    flex: 1 1 180px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-action {
    justify-self: center;
  }
}

@media (max-width: 430px) {
  .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }

  .nav-whatsapp {
    justify-content: flex-start;
  }

  .hero {
    width: min(100% - 24px, 1160px);
  }
}
