/**
 * Wholesale landing — page-specific styles
 * Font: Outfit (https://fonts.google.com/specimen/Outfit)
 */

/* Reveal on load (hero) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
.reveal--delay-5 { transition-delay: 0.4s; }
.reveal--delay-6 { transition-delay: 0.48s; }

/* Reveal on scroll */
.reveal-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scroll--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scroll--delay-1 { transition-delay: 0.06s; }
.reveal-scroll--delay-2 { transition-delay: 0.12s; }
.reveal-scroll--delay-3 { transition-delay: 0.18s; }
.reveal-scroll--delay-4 { transition-delay: 0.24s; }
.reveal-scroll--delay-5 { transition-delay: 0.3s; }

/* Page-wide max width for content (header + main + footer) */
.container {
  max-width: 1200px;
}

body {
  font-family: 'Outfit', sans-serif;
}

/* Header — seamless with hero, sticky with white bg on scroll */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.site-header--hero {
  border-bottom: none;
  padding: 20px 20px;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fffbf7;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header--hero.site-header--scrolled {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.site-header__left {
  display: flex;
  align-items: center;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__catalog {
  color: var(--color-text, #201b16);
  font-weight: 500;
  font-size: 14px;
}

.site-header__catalog:hover {
  opacity: 0.8;
}

.btn-primary-nav {
  background: #F07E13;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* Hero — subtle orange tint, header inside */
.hero--realm {
  background: #fffbf7;
  padding: 0 20px 100px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.hero--realm .hero-realm__inner {
  flex: 1;
  padding-top: 48px;
}

.hero-realm__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 900px) {
  .hero-realm__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-realm__content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.hero-realm__content {
  max-width: 540px;
}

/* Section tags — unified style (value-stack__tag) */
.hero-realm__tag,
.value-stack__tag,
.who-for__tag,
.workflow-runway__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c2410c;
  background: transparent;
  border: 1px solid #fdba74;
  border-radius: 9999px;
  padding: 8px 18px;
  margin-bottom: 24px;
}

.hero-realm__title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #000;
}

.hero-realm__sub {
  font-size: 17px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 28px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.btn-hero--primary {
  background: #F07E13;
  color: #ffffff;
  border: 1px solid #F07E13;
}

.btn-hero--primary:hover {
  background: #d96b0f;
  border-color: #d96b0f;
}

/* Right: square image placeholder — scales with grid column */
.hero-realm__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0; /* allow flex/grid to shrink */
}

.hero-realm__visual-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.hero-realm__visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  vertical-align: middle;
}

/* Partners / Trusted-by — single-line slow marquee */
.partners {
  position: relative;
  background: #fff;
  padding: 80px 0;
  border-top: 0;
  border-top-color: rgba(0, 0, 0, 0);
  border-top-style: none;
  border-image: none;
}

/* Side fades so marquee edges soften */
.partners::before,
.partners::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  max-width: 15%;
  pointer-events: none;
  z-index: 1;
}
.partners::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.partners::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #64748b;
  text-align: center;
  margin: 0 0 28px;
}

.partners__track {
  overflow: hidden;
  width: 100%;
}

.partners__logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 80px;
  padding: 0 24px;
  will-change: transform;
  animation: partners-slide 60s linear infinite;
  -webkit-animation: partners-slide 60s linear infinite;
}

@keyframes partners-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@-webkit-keyframes partners-slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.partners__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 140px;
}

.partners__logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(0.6);
}

.partners__logo--text {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}

@media (max-width: 640px) {
  .partners__logos {
    gap: 56px;
    animation-duration: 50s;
    -webkit-animation-duration: 50s;
  }
  .partners__logo {
    min-width: 110px;
  }
  .partners__logo img {
    height: 36px;
    max-width: 130px;
  }
}

/* Section title */
.section-title {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 40px;
  color: #000;
}

/* Value stack */
.value-stack--winden {
  background: #ffffff;
  padding: 80px 20px 100px;
}

.value-stack__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.value-stack__header {
  text-align: center;
  margin-bottom: 56px;
}

.value-stack__heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: #000;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.value-cards--winden {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .value-cards--winden {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-stack--winden {
    padding: 48px 20px 56px;
  }

  .value-stack__header {
    margin-bottom: 32px;
  }

  .value-card--winden {
    min-height: 0;
    padding: 0 20px 24px;
    border-radius: 12px;
  }

  .value-card__icon--winden {
    flex: 0 0 auto;
    padding-top: 20px;
    margin-bottom: 0;
  }

  .value-card__icon--winden svg {
    width: 44px;
    height: 44px;
  }

  .value-card__title--winden {
    font-size: 18px;
    padding-top: 16px;
    margin-bottom: 8px;
  }

  .value-card__body--winden {
    font-size: 14px;
    line-height: 1.5;
    max-width: none;
  }
}

.value-card--winden {
  background: #ffffff;
  border-radius: 16px;
  padding: 0 32px 40px;
  min-height: 420px;
  border: 1px solid #e5e7eb;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
}

.value-card__icon--winden {
  color: #F07E13;
  flex: 0 0 50%;
  min-height: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon--winden svg {
  width: 56px;
  height: 56px;
}

.value-card__title--winden {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 12px;
  padding-top: 24px;
  color: #000;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.value-card__body--winden {
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
  max-width: 280px;
}

@media (max-width: 900px) {
  .value-card--winden {
    min-height: 0;
  }
}

/* Who is this for — orange section bg, white blocks, no Explore more */
.who-for--outchat {
  background: #fffbf7;
  padding: 80px 20px 80px;
}

.who-for__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.who-for__header {
  margin-bottom: 56px;
}

.who-for__heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #000;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.who-for__lead {
  font-size: 17px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.who-cards--outchat {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .who-for--outchat {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden; /* contain card strip (width: calc(100% + 40px)) so page doesn’t scroll horizontally */
  }

  .who-for--outchat .who-for__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: none;
  }

  .who-for--outchat .who-for__header {
    padding-left: 0;
    padding-right: 0;
  }

  .who-for--outchat .who-cards--outchat {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .who-cards--outchat {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 0;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
    align-items: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .who-cards--outchat::-webkit-scrollbar {
    display: none;
  }

  .who-cards--outchat .who-card--outchat {
    flex: 0 0 auto;
    min-width: calc(100vw - 40px);
    max-width: 320px;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .who-cards--outchat .who-card--outchat:first-child {
    margin-left: 0;
  }

  /* Stepper: current card of 3 (mobile only) */
  .who-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: none;
  }

  .who-stepper__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .who-stepper__dot--active {
    background: #F07E13;
    transform: scale(1.25);
  }
}

@media (min-width: 901px) {
  .who-stepper {
    display: none;
  }
}

.who-card--outchat {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 36px;
  text-align: left;
}

.who-card--accent {
  background: #F07E13;
  color: #ffffff;
}

.who-card--accent .who-card__icon-wrap--outchat {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.who-card--accent .who-card__title--outchat,
.who-card--accent .who-card__body--outchat {
  color: #ffffff;
}

.who-card__icon-wrap--outchat {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #111827;
}

.who-card__icon-wrap--outchat svg {
  width: 24px;
  height: 24px;
}

.who-card__title--outchat {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
  color: #000;
  line-height: 1.3;
  hyphens: none;
}

.who-card__body--outchat {
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Workflow — Runway-style: warm bg, two-column header, white card, horizontal timeline */
.workflow--runway {
  background: rgba(255, 255, 255, 1);
  padding: 80px 20px 80px;
}

.workflow-runway__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.workflow-runway__header {
  margin-bottom: 40px;
}

.workflow-runway__heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #000;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.workflow-runway__lead {
  font-size: 17px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.workflow-runway__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 40px 48px 48px;
}

.workflow-runway__card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.workflow-runway__card-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

.workflow-runway__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #F07E13;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(240, 126, 19, 0.4);
  transition: background 0.2s, box-shadow 0.2s;
}

.workflow-runway__cta:hover {
  background: #d96b0f;
  box-shadow: 0 2px 10px rgba(240, 126, 19, 0.45);
}

.workflow-runway__timeline {
  position: relative;
}

.workflow-runway__line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  position: relative;
  margin-bottom: 16px;
}

.workflow-runway__line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, #e8b078 0%, #e0943a 50%, #e8b078 100%);
  transform: translateY(-50%);
  z-index: 0;
}

.workflow-runway__marker {
  box-sizing: content-box;
  width: 8px;
  height: 8px;
  background: #d96b0f;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 1;
  justify-self: start;
}

.workflow-runway__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.workflow-runway__step {
  display: flex;
  flex-direction: column;
}

.workflow-runway__step-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 12px;
}

.workflow-runway__num {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: #b85a0d;
  background: rgba(232, 144, 58, 0.12);
  border: 1px solid #e0943a;
  border-radius: 4px;
  padding: 4px 8px;
}

.workflow-runway__step-title {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #000;
  line-height: 1.3;
}

.workflow-runway__step-desc {
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 12px;
}

.workflow-runway__duration {
  font-size: 14px;
  font-weight: 400;
  color: #F07E13;
}

@media (max-width: 900px) {
  .workflow-runway__card {
    padding: 28px 24px 36px;
  }

  .workflow-runway__card-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .workflow-runway__timeline {
    display: grid;
    grid-template-columns: 24px 1fr;
    grid-template-rows: auto auto auto;
    gap: 28px 20px;
  }

  .workflow-runway__line {
    grid-column: 1;
    grid-row: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: subgrid;
    align-items: start;
    justify-items: center;
    position: relative;
    margin-bottom: 0;
    margin-right: 0;
    min-height: 0;
  }

  @supports not (grid-template-rows: subgrid) {
    .workflow-runway__line {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }

    .workflow-runway__line .workflow-runway__marker:nth-child(1),
    .workflow-runway__line .workflow-runway__marker:nth-child(2),
    .workflow-runway__line .workflow-runway__marker:nth-child(3) {
      margin-top: 0;
    }
  }

  .workflow-runway__line::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #e8b078 0%, #e0943a 50%, #e8b078 100%);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .workflow-runway__line .workflow-runway__marker:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: center;
    margin-top: 0.35em;
  }

  .workflow-runway__line .workflow-runway__marker:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: center;
    margin-top: 0.35em;
  }

  .workflow-runway__line .workflow-runway__marker:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    justify-self: center;
    margin-top: 0.35em;
  }

  .workflow-runway__steps {
    display: contents;
  }

  .workflow-runway__step:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
  }

  .workflow-runway__step:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .workflow-runway__step:nth-child(3) {
    grid-column: 2;
    grid-row: 3;
  }
}

/* Quote / Form */
.quote-section {
  background: #ffffff;
}

.container--narrow {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.quote-lead {
  text-align: center;
  color: #64748b;
  margin: 0 0 32px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #000;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  background-color: #fff;
}

.form-row select {
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
  min-height: 44px;
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  background: #F07E13;
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #d96b0f;
}

.form-note {
  margin-top: 24px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

.form-note a {
  color: #F07E13;
}

/* Trust — subtle orange */
.trust-section {
  background: #fffbf7;
  text-align: center;
}

.trust-badge {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0 0 8px;
}

.trust-logos-caption {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Your Move — CTA before footer (Primer-style) */
.your-move {
  position: relative;
  background: rgba(255, 255, 255, 1);
  text-align: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}

.your-move::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(249, 115, 22, 0) 0%,
    rgba(249, 115, 22, 0.2) 100%
  );
  mask-image: url("/bulk/assets/27312107_geometric_circular_dot_shape_background.svg");
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("/bulk/assets/27312107_geometric_circular_dot_shape_background.svg");
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  pointer-events: none;
}

.your-move__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.your-move__heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0 0 16px;
}

.your-move__badge {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0 0 32px;
}

.your-move__cta {
  display: inline-flex;
}

/* Footer — BSV style (matches buysellvouchers.com) */
.site-footer {
  padding: 48px 20px 32px;
  background: #ffffff;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px 64px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__brand {
  min-width: 0;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer__logo img {
  display: block;
  height: 32px;
  width: auto;
}

.footer__company {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  max-width: 360px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
  align-items: start;
}

.footer__heading {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0 0 16px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
}

.footer__links a:hover {
  color: #F07E13;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.footer__legal-block {
  min-width: 0;
}

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

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 12px;
}

.footer__legal a {
  color: #64748b;
  text-decoration: none;
  font-size: 13px;
}

.footer__legal a:hover {
  color: #F07E13;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer__social-icon {
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: color 0.2s;
}

.footer__social-icon:hover {
  color: #F07E13;
}

.footer__social-icon svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__social {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }
  .site-header__catalog {
    display: none;
  }
  .wholesale-hero__actions {
    flex-direction: column;
  }
}
