:root {
  color-scheme: light;
  --ivory: #fbf7f1;
  --ivory-2: #fffdf8;
  --ink: #b28580;
  --ink-soft: #c9adaa;
  --muted: #4a423c;
  --line: rgba(178, 133, 128, 0.1);
  --beige: #decec1;
  --beige-2: #d8c5ad;
  --gold: #b28580;
  --gold-2: #decec1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--beige);
  overflow-x: hidden;
}

body.cart-locked {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(178, 133, 128, 0.08);
  background: rgba(222, 206, 193, 0.78);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(21, 17, 15, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 180ms ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.cart-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(178, 133, 128, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cart-button:hover {
  transform: translateY(-2px);
  border-color: rgba(178, 133, 128, 0.55);
  background: var(--white);
}

.cart-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(185, 151, 87, 0.35);
}

.hero-bg-video-mobile, .hero-overlay-mobile { display: none; }

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(54px, 7vw, 92px) 0 clamp(70px, 9vw, 110px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
}

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

.hero h1,
.section-heading h2,
.about-copy h2,
.cta-card h2,
.cart-header h2,
.cart-empty h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.25rem, 8.4vw, 7.35rem);
  line-height: 0.9;
}

.hero-subtitle {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-dark {
  color: var(--ivory);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(178, 133, 128, 0.16);
}

.btn-dark:hover {
  box-shadow: 0 22px 42px rgba(178, 133, 128, 0.2);
}

.btn-light {
  color: var(--ink);
  border-color: rgba(21, 17, 15, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.btn-light:hover {
  border-color: rgba(185, 151, 87, 0.5);
  background: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 44px;
}

.hero-metrics div {
  padding: 18px 16px;
  border: 1px solid rgba(21, 17, 15, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-art {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(178, 133, 128, 0.08);
  border-radius: var(--radius-lg);
  background: var(--beige);
  box-shadow: var(--shadow);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 46% 54% 42% 58%;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(135deg, rgba(178, 133, 128, 0.48), rgba(255, 255, 255, 0.1));
  filter: blur(0.2px);
}

.hero-art::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -110px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(178, 133, 128, 0.12);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 42%),
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(178, 133, 128, 0.06) 100%);
}

.hero-shoe {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(82%, 460px);
  transform: translate(-50%, -48%) rotate(-8deg);
  color: var(--ink);
  filter: drop-shadow(0 34px 34px rgba(178, 133, 128, 0.22));
  animation: floatShoe 6s ease-in-out infinite;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-card {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 28px;
  width: min(280px, calc(100% - 56px));
  padding: 20px;
  border: 1px solid rgba(178, 133, 128, 0.3);
  border-radius: 24px;
  background: var(--beige);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(178, 133, 128, 0.12);
}

.hero-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

@keyframes floatShoe {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2,
.about-copy h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.section-heading p:not(.eyebrow) {
  max-width: 600px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(178, 133, 128, 0.08);
  border-radius: 28px;
  background: rgba(222, 206, 193, 0.68);
  box-shadow: 0 12px 34px rgba(178, 133, 128, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(178, 133, 128, 0.32);
  box-shadow: var(--shadow-soft);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.75), transparent 44%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--ink);
  background: var(--beige);
}

.product-visual::before {
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  filter: blur(2px);
}

.product-image {
  position: relative;
  z-index: 1;
  width: 68%;
  height: auto;
  object-fit: contain;
}

.visual-1 { background: linear-gradient(145deg, #f8efe3, #b28580); }
.visual-2 { background: linear-gradient(145deg, #f5eee7, #c9adaa); }
.visual-3 { background: linear-gradient(145deg, #fbf6ed, #a87571); }
.visual-4 { background: linear-gradient(145deg, #f2e6d5, #956460); }
.visual-5 { background: linear-gradient(145deg, #fff7ec, #b58a86); }
.visual-6 { background: linear-gradient(145deg, #f7efe3, #ab7f7b); }
.visual-7 { background: linear-gradient(145deg, #f9f1e7, #b08480); }
.visual-8 { background: linear-gradient(145deg, #fffaf3, #a07571); }

.product-tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ivory);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info {
  padding: 22px;
}

.product-info h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.product-price {
  color: var(--ink);
  font-weight: 900;
}

.product-category {
  color: var(--muted);
  font-size: 0.78rem;
}

.product-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.add-button {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ivory);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.add-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(178, 133, 128, 0.2);
}

.about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 86px);
}

.about-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--beige);
  box-shadow: var(--shadow);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 38px;
}

.about-shoe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78%, 360px);
  transform: translate(-50%, -48%) rotate(7deg);
  color: var(--ink);
  filter: drop-shadow(0 30px 30px rgba(21, 17, 15, 0.18));
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.about-copy .btn {
  margin-top: 28px;
}

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

.benefit-card {
  padding: 30px;
  border: 1px solid rgba(21, 17, 15, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 38px rgba(34, 25, 18, 0.055);
}

.benefit-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.benefit-card h3 {
  margin: 24px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.testimonial-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(21, 17, 15, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    radial-gradient(circle at 88% 12%, rgba(185, 151, 87, 0.14), transparent 28%);
  box-shadow: 0 14px 38px rgba(34, 25, 18, 0.055);
}

.testimonial-card p {
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.testimonial-card span {
  display: inline-flex;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.reel-video {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 20px;
  object-fit: cover;
}

.reels-cta {
  text-align: center;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
  color: var(--ivory);
  background:
    radial-gradient(circle at 80% 20%, rgba(213, 183, 120, 0.24), transparent 30%),
    linear-gradient(135deg, #15110f, #2d251f);
  box-shadow: var(--shadow);
}

.cta-card .eyebrow {
  color: var(--gold-2);
}

.cta-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.7;
}

.cart-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  width: min(450px, 100%);
  height: 100vh;
  height: 100dvh;
  padding: 24px;
  border-left: 1px solid rgba(178, 133, 128, 0.08);
  background: var(--beige);
  box-shadow: -28px 0 70px rgba(178, 133, 128, 0.2);
  transform: translateX(105%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-sidebar.is-open,
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(178, 133, 128, 0.08);
}

.cart-header h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(178, 133, 128, 0.1);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.icon-button:hover {
  transform: rotate(90deg);
  background: var(--ivory);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 20px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.cart-items.hidden {
  display: none;
}

.cart-items::-webkit-scrollbar {
  width: 8px;
}

.cart-items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(178, 133, 128, 0.45);
}

.cart-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(178, 133, 128, 0.08);
}

.cart-item-main {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-main h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.cart-item-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.cart-price {
  font-weight: 900;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.qty-control button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(178, 133, 128, 0.1);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.qty-control button:hover {
  color: var(--ivory);
  background: var(--ink);
}

.qty-control span {
  min-width: 22px;
  text-align: center;
  font-weight: 800;
}

.remove-button {
  margin-top: 12px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.remove-button:hover {
  color: var(--ink);
}

.cart-empty {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px 16px;
}

.cart-empty.hidden {
  display: none;
}

.empty-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--beige);
}

.empty-icon svg {
  width: 38px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-empty h3 {
  margin: 0;
  font-size: 1.7rem;
}

.cart-empty p {
  max-width: 300px;
  margin: 12px auto 22px;
  color: var(--muted);
  line-height: 1.6;
}

.cart-footer {
  flex: 0 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(178, 133, 128, 0.08);
  background: transparent;
  position: sticky;
  bottom: 0;
  z-index: 20;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.cart-total strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.checkout-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  color: var(--ivory);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.checkout-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(178, 133, 128, 0.2);
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.footer {
  padding: 54px 0 28px;
  border-top: 1px solid rgba(178, 133, 128, 0.08);
  background: rgba(222, 206, 193, 0.36);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer a:not(.footer-logo) {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a:not(.footer-logo):hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(21, 17, 15, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .about-media {
    min-height: 480px;
  }

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

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }

  .hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }

  .hero-bg-video-mobile {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .hero-overlay-mobile {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
    z-index: 2;
  }

  .hero-grid {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .hero-copy h1 {
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  }

  .hero-subtitle {
    color: #f5f5f5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  }

  .site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease;
  }

  .header-oculto {
    transform: translateY(-100%);
  }
}

@media (max-width: 768px) {
   .cta-card {
     flex-direction: column;
     text-align: center;
     gap: 15px;
   }

   .cta-card > div {
     width: 100%;
   }

   .cta-card .btn {
     margin: 0 auto;
   }
 }

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-links {
    display: none;
  }

  .logo {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .about-media {
    min-height: 390px;
    border-radius: 26px;
  }

  .hero-shoe {
    width: min(92%, 360px);
  }

  .hero-card {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .product-grid,
  .benefit-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reels-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .reel-video {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: start;
  }

  .product-visual {
    min-height: 230px;
  }

  .section {
    padding: 70px 0;
  }

  .cart-sidebar {
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .cart-footer {
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
  }

  .checkout-button {
    min-height: 60px;
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .cart-item {
    padding: 12px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
