@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TT_Firs_Neue_Trial_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TT_Firs_Neue_Trial_DemiBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6f0e8;
  --surface: #ffffff;
  --surface-alt: #eee6dd;
  --ink: #29292e;
  --muted: #64636b;
  --line: rgba(34, 34, 39, 0.08);
  --line-strong: rgba(34, 34, 39, 0.14);
  --brand: #ff7719;
  --brand-deep: #d65e08;
  --brand-soft: rgba(255, 119, 25, 0.12);
  --accent: #58575f;
  --charcoal: #5e5e64;
  --success: #1d7f52;
  --success-dark: #146641;
  --shadow: 0 24px 80px rgba(29, 23, 18, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1460px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "TT Firs Neue", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 119, 25, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(94, 94, 100, 0.08), transparent 20%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 100%);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.page {
  width: min(calc(100% - 18px), var(--container));
  margin: 12px auto 34px;
}

.site-header {
  position: sticky;
  top: 8px;
  z-index: 100;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 248, 243, 0.34));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-logo {
  width: 182px;
  height: auto;
}

.brand-icon-wrap {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 119, 25, 0.12), rgba(94, 94, 100, 0.08));
  border: 1px solid rgba(255, 119, 25, 0.12);
}

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

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-title {
  font-size: 2.05rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--charcoal);
}

.brand-subtitle {
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-compact .brand-icon-wrap {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.brand-compact .brand-title {
  font-size: 1.58rem;
}

.brand-compact .brand-subtitle {
  font-size: 0.84rem;
  letter-spacing: 0.22em;
}

.brand-compact .brand-logo {
  width: 160px;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 2px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn {
  min-height: 42px;
  padding: 10px 18px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-open .menu-toggle span {
  background: transparent;
}

.menu-open .menu-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn,
.chip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 28px rgba(255, 116, 23, 0.22);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.68);
}

.btn-dark {
  color: #fff;
  background: linear-gradient(135deg, #393940, #202025);
  box-shadow: 0 14px 28px rgba(33, 33, 38, 0.2);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, var(--success), var(--success-dark));
  box-shadow: 0 14px 28px rgba(29, 127, 82, 0.22);
}

.btn-light {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "TT Firs Neue", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3.1rem, 6.5vw, 5.8rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(1.95rem, 3.6vw, 3.3rem);
  line-height: 0.95;
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section {
  margin-top: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 245, 239, 0.9));
  box-shadow: 0 22px 64px rgba(29, 23, 18, 0.055);
  backdrop-filter: blur(16px);
}

.section-grid {
  display: grid;
  gap: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 660px;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 240, 232, 0.86) 0%, rgba(247, 240, 232, 0.7) 34%, rgba(247, 240, 232, 0.34) 72%, rgba(247, 240, 232, 0.22) 100%),
    linear-gradient(180deg, rgba(34, 34, 39, 0.06), rgba(34, 34, 39, 0.16));
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 660px;
  display: grid;
  grid-template-columns: 0.95fr 0.55fr;
  gap: 24px;
  align-items: end;
  padding: 32px;
}

.hero-copy {
  padding: 10px 0;
}

.hero-copy-panel {
  max-width: 760px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.hero-copy h1 {
  max-width: 9.5ch;
}

.hero-copy p {
  margin-top: 18px;
  max-width: 58ch;
  font-size: 1rem;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-points span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 600;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-side-panel {
  display: grid;
  gap: 14px;
  align-self: stretch;
  align-content: end;
  justify-items: end;
}

.floating-card,
.glass-card,
.metric-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 38px rgba(26, 26, 31, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.floating-card strong,
.glass-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.18rem;
  color: var(--ink);
}

.floating-card.top,
.floating-card.bottom {
  width: min(280px, 100%);
}

.metric-card {
  width: 154px;
  background: rgba(255, 255, 255, 0.52);
}

.metric-card strong {
  display: block;
  font-size: 1.74rem;
  color: var(--brand-deep);
}

.hero-slider-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-slider-button {
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.56);
  transition: width 180ms ease, background-color 180ms ease;
}

.hero-slider-button.is-active {
  width: 36px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head h2 {
  max-width: 15ch;
}

.section-head p {
  max-width: 54ch;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 14px;
}

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

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

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

.trust-card,
.product-card,
.story-card,
.benefit-card,
.stats-card,
.contact-card,
.shoe-card,
.network-card,
.process-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(41, 41, 46, 0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.66), rgba(250,246,240,0.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.48);
}

.glass-white,
.glass-orange {
  border: 1px solid rgba(255,255,255,0.38);
  box-shadow: 0 18px 38px rgba(21, 19, 17, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass-white {
  background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.28));
}

.glass-orange {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,150,83,0.16)),
    linear-gradient(135deg, rgba(255,119,25,0.12), rgba(255,255,255,0.16));
  border-color: rgba(255, 150, 83, 0.3);
}

.trust-card h3,
.benefit-card h3,
.network-card h3 {
  margin-bottom: 10px;
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 116, 23, 0.18), rgba(68, 68, 74, 0.08));
  color: var(--brand-deep);
  font-weight: 800;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
}

.text-stack > * + * {
  margin-top: 16px;
}

.about-feature-list,
.spec-list,
.bullet-list,
.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-feature-list li,
.spec-list li,
.bullet-list li,
.contact-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
}

.about-feature-list li::before,
.spec-list li::before,
.bullet-list li::before,
.contact-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.image-panel {
  position: relative;
  min-height: 400px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0)),
    linear-gradient(135deg, #f1ede7 0%, #e6ddd3 100%);
}

.image-panel img {
  position: absolute;
  inset: auto 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(31,31,38,0.08);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card figure {
  margin: 0 0 18px;
  aspect-ratio: 1 / 0.82;
  border-radius: 16px;
  overflow: hidden;
  background: #f7f0e8;
}

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

.product-card p {
  margin-top: 12px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.product-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-deep);
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 20%),
    linear-gradient(135deg, #5d5d63 0%, #232329 70%);
}

.cta-band p,
.cta-band h2,
.cta-band .eyebrow {
  color: #fff;
}

.cta-band .eyebrow {
  opacity: 0.78;
}

.cta-side {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-side .btn {
  width: 100%;
  margin-top: 10px;
}

.page-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 22px;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
}

.page-hero-copy p {
  margin-top: 18px;
  max-width: 60ch;
}

.page-hero-visual {
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 116, 23, 0.16), transparent 22%),
    linear-gradient(135deg, #fbf8f4 0%, #ebe1d4 100%);
  position: relative;
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-note {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 22px;
  max-width: 300px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-chip {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.filter-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  border-color: transparent;
}

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

.catalog-card {
  display: flex;
  flex-direction: column;
}

.catalog-card[data-hidden="true"] {
  display: none;
}

.catalog-card .product-actions .btn,
.catalog-card .product-actions .link-button {
  flex: 1 1 auto;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(20, 20, 24, 0.6);
}

.detail-modal.is-open {
  display: grid;
}

.detail-panel {
  width: min(960px, 100%);
  max-height: min(92vh, 940px);
  overflow: auto;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.detail-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 0;
}

.detail-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--surface-alt);
}

.detail-body {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 22px;
  padding: 12px 24px 24px;
}

.detail-body figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-alt);
}

.detail-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.detail-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.detail-copy .grid-2 {
  gap: 14px;
}

.mini-panel {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(247,242,236,0.95));
}

.inquiry-panel {
  width: min(1040px, 100%);
}

.inquiry-body {
  grid-template-columns: 0.78fr 1.22fr;
}

.inquiry-form {
  align-content: start;
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-subcopy {
  margin-top: 10px;
  max-width: 56ch;
}

.mini-panel h4 {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.service-grid,
.shoe-grid,
.network-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.network-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.shoe-card .shoe-visual {
  aspect-ratio: 1 / 0.8;
  border-radius: 18px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.28), transparent 22%),
    linear-gradient(135deg, rgba(255, 116, 23, 0.94), rgba(68, 68, 74, 0.96));
  position: relative;
  overflow: hidden;
}

.shoe-card .shoe-visual::before,
.shoe-card .shoe-visual::after {
  content: "";
  position: absolute;
  border-radius: 30px 30px 12px 12px;
  background: rgba(255,255,255,0.2);
}

.shoe-card .shoe-visual::before {
  inset: auto 18% 18% 18%;
  height: 38%;
  transform: skewX(-20deg);
}

.shoe-card .shoe-visual::after {
  inset: auto 12% 10% 12%;
  height: 12%;
  border-radius: 999px;
}

.service-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(247,242,236,0.95));
}

.form-panel {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,242,236,0.95));
  border: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(31,31,38,0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(255,116,23,0.18);
  outline-offset: 2px;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer {
  margin-top: 16px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.9fr 1.1fr;
  gap: 18px;
}

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

.process-card {
  position: relative;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--brand-soft);
}

.process-step {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-weight: 700;
}

.shoe-form-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.section-lead {
  max-width: 64ch;
}

.footer h3,
.footer h4 {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}

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

.footer-copy-list span,
.footer-links a {
  color: var(--muted);
}

.copyright {
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.chatbot-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 18px 35px rgba(255,116,23,0.28);
}

.chatbot-panel {
  position: fixed;
  right: 18px;
  bottom: 94px;
  z-index: 145;
  width: min(380px, calc(100vw - 24px));
  border-radius: 28px;
  border: 1px solid rgba(31,31,38,0.1);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
  backdrop-filter: blur(16px);
  overflow: hidden;
  display: none;
}

.chatbot-panel.is-open {
  display: block;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  background: linear-gradient(135deg, rgba(255,116,23,0.12), rgba(255,255,255,0.12));
}

.chatbot-title strong {
  display: block;
}

.chatbot-title span {
  color: var(--muted);
  font-size: 0.92rem;
}

.chatbot-controls {
  display: flex;
  gap: 8px;
}

.icon-control {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(31,31,38,0.06);
  color: var(--ink);
}

.chatbot-body {
  padding: 16px 18px 18px;
}

.chatbot-messages {
  display: grid;
  gap: 12px;
  max-height: 360px;
  overflow: auto;
  padding-right: 2px;
}

.chat-row {
  display: flex;
}

.chat-row.bot {
  justify-content: flex-start;
}

.chat-row.user {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.55;
}

.chat-row.bot .chat-bubble {
  border: 1px solid var(--line);
  background: var(--surface-alt);
}

.chat-row.user .chat-bubble {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.chatbot-choices {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-button {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
}

.chatbot-form {
  display: grid;
  gap: 12px;
}

.chatbot-form input,
.chatbot-form select {
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31,31,38,0.12);
  background: rgba(255,255,255,0.92);
}

.chatbot-notice {
  position: fixed;
  right: 90px;
  bottom: 92px;
  z-index: 144;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(31,31,38,0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
  display: none;
}

.chatbot-notice.is-visible {
  display: block;
}

.notice-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero,
  .hero-layout,
  .page-hero,
  .split-panel,
  .cta-band,
  .contact-grid,
  .detail-body {
    grid-template-columns: 1fr;
  }

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

  .grid-3,
  .service-grid,
  .network-grid,
  .catalog-grid,
  .footer-grid,
  .shoe-form-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1,
  .section-head h2,
  .page-hero h1 {
    max-width: none;
  }

  .hero-side-panel {
    justify-items: start;
  }
}

@media (max-width: 880px) {
  .site-header {
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-shell {
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 24px 80px rgba(0,0,0,0.16);
  }

  .menu-open .nav-shell {
    display: flex;
  }

  .site-nav,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a,
  .header-actions .btn {
    width: 100%;
  }

  .section,
  .footer {
    padding: 24px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .delivery-grid,
  .service-grid,
  .network-grid,
  .shoe-grid,
  .catalog-grid,
  .footer-grid,
  .form-grid,
  .shoe-form-shell {
    grid-template-columns: 1fr;
  }

  .detail-header {
    padding: 18px 18px 0;
  }

  .detail-body {
    padding: 12px 18px 18px;
  }

  .detail-body img {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  .page {
    width: min(calc(100% - 14px), var(--container));
    margin-top: 10px;
  }

  .header-inner {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 140px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-layout {
    min-height: 620px;
    padding: 22px;
  }

  .hero-copy-panel {
    padding: 22px;
  }

  .header-actions .btn {
    min-height: 44px;
  }

  .chatbot-panel {
    right: 7px;
    bottom: 84px;
    width: calc(100vw - 14px);
  }

  .chatbot-notice {
    left: 12px;
    right: 12px;
    bottom: 90px;
    max-width: none;
  }

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