﻿:root {
  --pink: #f00655;
  --orange: #ff7a00;
  --blue: #0096b4;
  --gold: #f0b547;
  --ink: #0c0c0c;
  --muted: #505057;
  --line: #111;
  --paper: #fff;
  --nav-bg: #f0f0f0;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: "Montserrat", Arial, sans-serif;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-pop {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: 100%;
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 36px clamp(28px, 5vw, 72px) 22px;
  animation: fade-up 520ms ease both;
}

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

.brand img {
  display: block;
  width: clamp(150px, 16vw, 224px);
  height: auto;
  transition: transform 220ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: scale(1.03);
}

.brand--small {
  line-height: 0;
}

.brand--small img {
  width: clamp(96px, 9vw, 126px);
}

.top-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 6, 85, 0.08), transparent 22%),
    linear-gradient(90deg, #eeeeee 0%, #fafafa 50%, #eeeeee 100%);
}

.top-nav__link {
  padding: 12px 8px;
  color: #090909;
  font-size: clamp(0.78rem, 1.05vw, 1rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.top-nav__link:hover,
.top-nav__link:focus-visible {
  color: var(--pink);
  transform: translateY(-1px);
}

.top-nav__link:first-child {
  text-decoration: underline;
}

.top-nav__link--active {
  color: var(--pink);
}

.hero-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px 0 92px;
}

.hero-shell::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.48)),
    url("assets/kleber-background.webp") center top / cover no-repeat;
}

.price-panel {
  width: min(930px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(44px, 4.7vw, 72px) clamp(22px, 4.4vw, 56px) 34px;
  border-radius: 58px;
  background: var(--paper);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.06);
  animation: fade-up 700ms ease both;
}

.intro {
  margin-bottom: clamp(36px, 5vw, 58px);
  text-align: center;
}

h1,
h2,
p {
  margin: 0;
}

.intro h1 {
  color: var(--pink);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.intro p {
  margin-top: 10px;
  color: #44444a;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
}

.product-card {
  position: relative;
  padding: 28px 28px 22px;
  border: 2px dashed var(--line);
  border-radius: 30px;
  animation: fade-up 650ms ease both;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.product-card h2 {
  min-height: 68px;
  color: var(--pink);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 900;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
}

.product-card--personalizados h2 {
  color: var(--orange);
}

.size-pill,
.section-title span {
  display: block;
  width: max-content;
  margin: 0 auto;
  color: #fff;
  background: var(--pink);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.size-pill {
  position: relative;
  z-index: 1;
  min-width: 140px;
  margin-top: 2px;
  padding: 8px 18px;
  border-radius: 9px;
  font-size: 1.05rem;
}

.product-card--personalizados .size-pill {
  background: var(--orange);
}

.price-box {
  margin-top: -14px;
  padding: 30px 38px 10px;
  border: 1.7px solid var(--line);
  border-radius: 20px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 28px;
  border-bottom: 2px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.quantity strong {
  display: block;
  color: #4b4b4f;
  font-size: clamp(3.4rem, 6vw, 4.3rem);
  font-weight: 900;
  line-height: 0.78;
}

.quantity span {
  display: block;
  margin-top: 7px;
  color: #4b4b4f;
  font-size: clamp(1rem, 1.75vw, 1.35rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.amount {
  min-width: 116px;
  color: #3f3f45;
  text-align: right;
}

.amount strong {
  display: block;
  color: var(--pink);
  font-size: clamp(0.85rem, 1.35vw, 1.05rem);
  font-weight: 900;
}

.amount span {
  display: block;
  margin-top: 3px;
  font-size: clamp(0.75rem, 1.2vw, 0.94rem);
  font-weight: 500;
}

.profit-callout {
  width: min(100%, 840px);
  margin: clamp(22px, 3vw, 32px) auto 0;
  padding: 10px 18px;
  color: #4b4b4f;
  font-size: clamp(0.86rem, 1.18vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.profit-callout strong {
  color: var(--pink);
  font-weight: 900;
}

.keychain {
  margin-top: clamp(58px, 7vw, 82px);
}

.section-title {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-title h2 {
  color: var(--pink);
  font-size: clamp(1.7rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section-title span {
  min-width: 216px;
  margin-top: 9px;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 1rem;
}

.keychain__box {
  margin-top: -16px;
  padding: 54px 40px 20px;
  border: 1.7px solid var(--line);
  border-radius: 20px;
}

.keychain__lead {
  color: #44444a;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 500;
  text-align: center;
}

.keychain__list {
  display: grid;
  gap: 20px;
  margin: 40px 0 32px;
}

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

.keychain__row > strong {
  color: #4b4b4f;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.keychain__row span {
  min-width: 190px;
  text-align: left;
}

.keychain__row b {
  display: block;
  color: var(--pink);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 900;
}

.keychain__row small {
  display: block;
  margin-top: 6px;
  color: #4b4b4f;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
}

.keychain__note {
  color: #4b4b4f;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 500;
  text-align: center;
}

.keychain__note + .keychain__note {
  margin-top: 12px;
}

.cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 18px 22px;
  border: 1.7px solid var(--pink);
  border-radius: 22px;
}

.cta__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ff58a1;
}

.cta__icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.cta__copy strong {
  display: block;
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.cta__copy span {
  color: var(--pink);
}

.cta__copy p {
  margin-top: 4px;
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
  font-weight: 500;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1.7px solid var(--pink);
  border-radius: 999px;
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.cta__button:hover,
.cta__button:focus-visible {
  color: #fff;
  background: var(--pink);
  transform: translateY(-1px);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 52px clamp(28px, 5vw, 72px) 34px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 3.2vw, 38px);
}

.footer-nav a {
  color: var(--pink);
  font-size: clamp(0.9rem, 1.2vw, 1.06rem);
  font-weight: 600;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-links a {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #777;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--pink);
  transform: translateY(-1px);
}

.social-links svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (min-width: 1180px) {
  .price-panel {
    margin-left: calc(50% - 384px);
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
    padding: 42px 34px 22px;
  }

  .top-nav {
    width: 100%;
  }

  .hero-shell {
    padding-top: 34px;
  }

  .price-panel {
    width: min(752px, calc(100% - 54px));
    border-radius: 58px;
  }

  .product-card {
    padding: 24px 26px 22px;
  }

  .price-box {
    padding-inline: 32px;
  }

  .keychain__box {
    padding-inline: 34px;
  }

  .cta {
    grid-template-columns: 1fr auto;
  }

  .cta__icon {
    display: none;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    padding-inline: 36px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 20px;
    padding: 30px 14px 24px;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    width: 210px;
  }

  .top-nav {
    min-height: 44px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 8px;
    border-radius: 18px;
  }

  .top-nav__link {
    padding: 10px 4px;
    font-size: 0.66rem;
    line-height: 1.04;
  }

  .hero-shell {
    padding: 36px 0 78px;
  }

  .hero-shell::before {
    bottom: 0;
  }

  .price-panel {
    width: min(384px, calc(100% - 34px));
    padding: 38px 22px 28px;
    border-radius: 34px;
  }

  .intro {
    margin-bottom: 28px;
  }

  .intro h1 {
    font-size: clamp(2.55rem, 12vw, 3.2rem);
    line-height: 1.02;
  }

  .intro p {
    font-size: 0.97rem;
  }

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

  .product-card {
    padding: 20px 16px 16px;
    border-radius: 30px;
  }

  .product-card h2 {
    min-height: auto;
    font-size: 1.7rem;
  }

  .size-pill {
    min-width: 96px;
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  .price-box {
    padding: 28px 24px 8px;
    border-radius: 18px;
  }

  .price-row {
    gap: 12px;
    padding: 20px 0 24px;
  }

  .quantity strong {
    font-size: 2.65rem;
  }

  .quantity span {
    font-size: 0.86rem;
  }

  .amount {
    min-width: 98px;
  }

  .amount strong {
    font-size: 0.78rem;
  }

  .amount span {
    font-size: 0.68rem;
  }

  .keychain {
    margin-top: 38px;
  }

  .profit-callout {
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .section-title h2 {
    font-size: 1.65rem;
  }

  .section-title span {
    min-width: 148px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .keychain__box {
    padding: 46px 18px 18px;
  }

  .keychain__lead {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .keychain__list {
    gap: 26px;
    margin: 32px 0 32px;
  }

  .keychain__row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .keychain__row > strong {
    font-size: 2rem;
  }

  .keychain__row span {
    min-width: 104px;
  }

  .keychain__row b {
    font-size: 0.82rem;
  }

  .keychain__row small {
    font-size: 0.72rem;
  }

  .keychain__note {
    font-size: 0.56rem;
    line-height: 1.45;
  }

  .cta {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 24px 22px;
    text-align: center;
  }

  .cta__button {
    width: 100%;
    min-height: 48px;
    font-size: 0.88rem;
  }

  .cta__copy strong {
    white-space: normal;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 20px;
    padding: 36px 21px 34px;
  }

  .brand--small {
    justify-content: flex-start;
  }

  .brand--small img {
    width: 122px;
  }

  .footer-nav {
    display: grid;
    gap: 16px;
  }

  .social-links {
    display: none;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 2.7rem;
  }

  .price-panel {
    width: calc(100% - 24px);
    padding-inline: 16px;
  }

  .price-box {
    padding-inline: 18px;
  }
}

@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;
  }
}

/* Tu logo por mayor */
.wholesale-page {
  background: #fff;
}

.wholesale-main {
  overflow: hidden;
}

.wholesale-hero,
.wholesale-section,
.why-section,
.works-section,
.faq-section {
  width: min(1120px, calc(100% - 72px));
  margin: 0 auto;
}

.wholesale-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  padding: 62px 0 78px;
  animation: fade-up 700ms ease both;
}

.wholesale-hero__copy h1,
.works-section h2,
.faq-section h2,
.why-section > h2 {
  color: var(--pink);
  font-weight: 900;
  line-height: 0.98;
}

.wholesale-hero__copy h1 {
  max-width: 470px;
  font-size: clamp(3.4rem, 6.5vw, 5.4rem);
  text-transform: uppercase;
}

.wholesale-hero__copy p,
.section-copy p,
.why-section p,
.faq-list p {
  color: #595961;
  font-weight: 500;
  line-height: 1.5;
}

.wholesale-hero__copy p {
  max-width: 460px;
  margin-top: 26px;
  font-size: 1.05rem;
}

.wholesale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  filter: saturate(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(240, 6, 85, 0.18);
}

.button--pink {
  background: var(--pink);
}

.button--gold {
  background: var(--gold);
}

.wholesale-hero__image,
.section-image,
.work-grid img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 260ms ease, filter 260ms ease;
}

.section-image:hover,
.work-grid img:hover,
.wholesale-info-strip img:hover {
  filter: saturate(1.04);
  transform: translateY(-4px);
}

.wholesale-hero__image {
  max-width: 570px;
  justify-self: end;
}

.promo-strip {
  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 44px;
  margin-left: -50vw;
  margin-right: 0;
  overflow: hidden;
  color: #fff;
  background: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-strip__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  gap: 26px;
  padding: 14px 0;
  animation: promo-marquee 24s linear infinite;
}

.promo-strip span {
  position: relative;
  flex: 0 0 auto;
}

.promo-strip span::after {
  margin-left: 26px;
  color: #ffd257;
  content: "+";
}

@keyframes promo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.wholesale-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 112px);
  padding: 96px 0 42px;
  animation: fade-up 720ms ease both;
}

.wholesale-section--reverse {
  grid-template-columns: 1.05fr 0.95fr;
  padding-top: 72px;
}

.wholesale-info-strip {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  width: min(1120px, calc(100% - 72px));
  margin: clamp(24px, 4vw, 48px) auto 0;
}

.wholesale-info-strip img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 260ms ease, filter 260ms ease;
}

.section-copy h2 {
  max-width: 440px;
  color: var(--pink);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 900;
  line-height: 1;
}

.section-copy--gold h2 {
  color: var(--gold);
}

.section-copy p {
  max-width: 480px;
  margin: 22px 0 28px;
  font-size: 1rem;
}

.section-image {
  max-width: 560px;
  justify-self: center;
}

.section-image--contain {
  max-height: 430px;
  object-fit: contain;
}

.why-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 42px;
  padding: 118px 0 92px;
}

.why-section > h2 {
  font-size: clamp(2.4rem, 4.1vw, 3.45rem);
}

.why-section article {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  transition: transform 220ms ease;
}

.why-section article:hover {
  transform: translateY(-3px);
}

.why-section h3 {
  margin: 0 0 12px;
  color: #171717;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.1;
}

.why-section p {
  margin: 0;
  font-size: 0.92rem;
}

.works-section {
  padding: 34px 0 116px;
}

.works-section h2 {
  margin-bottom: 52px;
  font-size: clamp(2.6rem, 4vw, 3.45rem);
  line-height: 1.08;
  padding-bottom: 4px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 24px;
}

.work-grid img {
  height: 295px;
  object-fit: cover;
  border-radius: 10px;
}

.work-grid__tall {
  grid-row: span 2;
  height: 618px !important;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  padding: 26px 0 118px;
}

.faq-section h2 {
  color: var(--pink);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-list details {
  padding: 24px 28px;
  border-radius: 10px;
  background: #f3f3f3;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--pink);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  display: inline-block;
  color: var(--pink);
  content: "+";
  transition: transform 180ms ease;
}

.faq-list details[open] summary::before {
  transform: rotate(45deg);
}

.faq-list p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 220ms ease,
    margin-top 220ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.faq-list details[open] p {
  max-height: 240px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}

.wholesale-page .site-footer {
  border-top: 1px solid #efefef;
}

.about-page .wholesale-hero {
  padding-top: 70px;
}

.about-page .wholesale-hero__copy h1 {
  max-width: 520px;
}

.about-page .wholesale-hero__copy p strong {
  color: #33343a;
  font-weight: 900;
}

.about-hero__image {
  max-width: 640px;
  object-fit: contain;
}

.about-list {
  max-width: 510px;
  margin: 18px 0 28px;
  padding-left: 18px;
  color: #595961;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.48;
}

.about-list li + li {
  margin-top: 7px;
}

.about-list strong {
  color: #3e3e44;
  font-weight: 900;
}

.about-stamp {
  max-width: 330px;
}

.about-ruta {
  max-width: 410px;
  max-height: 520px;
  object-fit: contain;
}

.about-page .promo-strip__track {
  padding-left: 0;
}

.about-page .faq-list summary::before {
  content: "+";
}

/* Kit Inicial Kleber */
.kit-hero,
.kit-content,
.kit-selling {
  width: min(1120px, calc(100% - 72px));
  margin: 0 auto;
}

.kit-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  padding: 72px 0 80px;
  animation: fade-up 700ms ease both;
}

.kit-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--pink);
  background: #fff2f6;
  font-size: 0.9rem;
  font-weight: 900;
}

.kit-hero__copy h1 {
  max-width: 560px;
}

.kit-price-card {
  display: grid;
  justify-self: end;
  width: min(480px, 100%);
  padding: clamp(32px, 4vw, 54px);
  border: 2px solid var(--pink);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(240, 181, 71, 0.2), transparent 36%),
    #fff;
  box-shadow: 0 28px 70px rgba(240, 6, 85, 0.12);
  animation: soft-pop 700ms ease both;
}

.kit-price-card span {
  color: var(--pink);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-price-card strong {
  margin-top: 10px;
  color: #3e3f45;
  font-size: clamp(3rem, 6vw, 5.1rem);
  font-weight: 900;
  line-height: 0.95;
}

.kit-price-card small {
  margin-top: 6px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 900;
}

.kit-price-card p {
  margin: 24px 0;
  color: #595961;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.kit-price-card em {
  margin-top: 16px;
  color: #595961;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.kit-content {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(38px, 6vw, 84px);
  padding: 94px 0 72px;
}

.kit-intro h2,
.kit-selling h2 {
  margin: 0;
  color: var(--pink);
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
}

.kit-intro p,
.kit-selling p {
  margin: 24px 0 0;
  color: #595961;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}

.kit-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.kit-includes article {
  min-height: 196px;
  padding: 24px;
  border-radius: 14px;
  background: #f3f3f3;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.kit-includes article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.kit-includes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-weight: 900;
}

.kit-includes h3 {
  margin: 0;
  color: #191a1f;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.15;
}

.kit-includes p {
  margin: 12px 0 0;
  color: #595961;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.kit-selling {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  margin-bottom: 96px;
  padding: 34px 42px;
  border: 2px solid var(--pink);
  border-radius: 28px;
}

.kit-selling p {
  max-width: 760px;
}

@media (max-width: 880px) {
  .wholesale-hero,
  .wholesale-section,
  .why-section,
  .works-section,
  .faq-section {
    width: min(704px, calc(100% - 68px));
  }

  .wholesale-info-strip {
    width: min(704px, calc(100% - 68px));
  }

  .kit-hero,
  .kit-content,
  .kit-selling {
    width: min(704px, calc(100% - 68px));
  }

  .kit-hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 38px;
    padding: 58px 0 66px;
  }

  .kit-content {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .kit-selling {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .wholesale-hero {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    padding: 58px 0 66px;
  }

  .about-hero__image {
    max-width: 450px;
  }

  .about-stamp {
    max-width: 250px;
  }

  .about-ruta {
    max-width: 300px;
    max-height: 380px;
  }

  .wholesale-hero__copy h1 {
    font-size: clamp(3.2rem, 8vw, 4.6rem);
  }

  .wholesale-section,
  .wholesale-section--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    padding-top: 84px;
  }

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

  .works-section {
    padding-bottom: 88px;
  }

  .work-grid {
    gap: 18px;
  }

  .work-grid img {
    height: 260px;
  }

  .work-grid__tall {
    height: 540px !important;
  }

  .faq-section {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
  }
}

@media (max-width: 680px) {
  .wholesale-hero,
  .wholesale-section,
  .why-section,
  .works-section,
  .faq-section {
    width: min(360px, calc(100% - 34px));
  }

  .wholesale-info-strip {
    grid-template-columns: 1fr;
    width: min(360px, calc(100% - 34px));
    margin-top: 30px;
  }

  .wholesale-info-strip img {
    border-radius: 8px;
  }

  .kit-hero,
  .kit-content,
  .kit-selling {
    width: min(360px, calc(100% - 34px));
  }

  .kit-hero {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 34px 0 48px;
  }

  .kit-kicker {
    font-size: 0.75rem;
  }

  .kit-price-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .kit-price-card p {
    font-size: 0.9rem;
  }

  .kit-content {
    gap: 26px;
    padding: 52px 0 48px;
  }

  .kit-includes {
    grid-template-columns: 1fr;
  }

  .kit-includes article {
    min-height: auto;
    padding: 20px;
  }

  .kit-selling {
    gap: 22px;
    margin-bottom: 64px;
    padding: 24px 22px;
    border-radius: 22px;
  }

  .wholesale-hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 22px;
    padding: 28px 0 46px;
  }

  .about-page .wholesale-hero {
    padding-top: 22px;
  }

  .about-hero__image {
    max-width: 248px;
  }

  .about-page .wholesale-hero__copy h1 {
    font-size: clamp(2.25rem, 12vw, 2.95rem);
  }

  .about-list {
    margin-top: 14px;
    font-size: 0.78rem;
  }

  .about-stamp {
    max-width: 184px;
  }

  .about-ruta {
    max-width: 220px;
    max-height: none;
  }

  .wholesale-hero__image {
    max-width: 310px;
    align-self: center;
  }

  .wholesale-hero__copy h1 {
    font-size: clamp(2.72rem, 14vw, 3.45rem);
  }

  .wholesale-hero__copy p {
    margin-top: 18px;
    font-size: 0.88rem;
  }

  .wholesale-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 40px;
    font-size: 0.82rem;
  }

  .promo-strip {
    width: 100vw;
    min-height: 38px;
    font-size: 0.64rem;
  }

  .promo-strip__track {
    gap: 18px;
    padding: 11px 0;
    animation-duration: 18s;
  }

  .promo-strip span::after {
    margin-left: 18px;
  }

  .wholesale-section,
  .wholesale-section--reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 52px 0 18px;
  }

  .wholesale-section {
    flex-direction: column-reverse;
  }

  .section-copy h2 {
    font-size: 1.9rem;
  }

  .section-copy p {
    margin: 16px 0 22px;
    font-size: 0.82rem;
  }

  .section-image {
    max-width: 100%;
  }

  .why-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 58px 0 56px;
  }

  .why-section > h2 {
    font-size: 2.1rem;
  }

  .why-section article {
    padding-top: 18px;
  }

  .why-section h3 {
    font-size: 1rem;
  }

  .why-section p {
    font-size: 0.78rem;
  }

  .works-section {
    padding: 20px 0 60px;
  }

  .works-section h2 {
    margin-bottom: 28px;
    font-size: 2.15rem;
  }

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

  .work-grid img,
  .work-grid__tall {
    height: auto !important;
    border-radius: 8px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 0 64px;
  }

  .faq-section h2 {
    color: #171717;
    font-size: 1.65rem;
  }

  .faq-list details {
    padding: 18px;
  }

  .faq-list summary {
    font-size: 0.82rem;
  }

  .faq-list p {
    font-size: 0.73rem;
  }

  .wholesale-page .social-links {
    display: flex;
  }
}
