/* Wholesale-specific styles — built on top of v3/styles.css */

/* ============= HERO ============= */
.ws-hero {
  position: relative;
  background: #ffffff url('../images/redesign/wholesale-hero.png') no-repeat right center;
  background-size: cover;
  overflow: hidden;
  min-height: 720px;
}
.ws-hero-inner {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  min-height: 720px;
  position: relative;
}
.ws-hero-copy {
  padding: 80px 0 100px;
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.ws-hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ws-hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--accent);
}
.ws-hero h1 {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink-warm);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.ws-hero h1 .t-italic {
  color: var(--accent);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.ws-hero h1 .t-box {
  background: var(--accent);
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.035em;
  padding: 2px 24px 12px;
  transform: rotate(-1.2deg);
  transform-origin: left center;
  box-shadow: 0 10px 26px rgba(110, 138, 78, 0.24);
  display: inline-block;
  margin: 0;
}
.ws-hero-sub {
  font-family: var(--serif);
  font-style: normal;
  font-size: 20px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 40px;
  line-height: 1.5;
}
.ws-hero-ctas {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.ws-hero-ctas .btn {
  padding: 22px 44px;
  font-size: 13px;
  letter-spacing: 0.22em;
}
.ws-hero-ctas .btn-primary {
  box-shadow: 0 10px 24px rgba(63, 53, 45, 0.22);
}
.ws-hero-ctas .btn-primary:hover {
  box-shadow: 0 14px 32px rgba(63, 53, 45, 0.30);
  transform: translateY(-2px);
}
.ws-hero-ctas .link-text {
  color: var(--ink-warm-deep);
  font-size: 13px;
  letter-spacing: 0.22em;
}
.ws-hero-ctas .link-text:hover { color: var(--ink); border-bottom-color: var(--ink-warm-deep); }

.ws-hero-visual {
  display: none;
}
.ws-hero-photo {
  display: none;
}
.ws-hero-circle {
  display: none;
}

/* ============= MARQUEE VALUE PROPS ============= */
.ws-marquee {
  background: var(--accent-pastel);
  color: var(--ink-warm-deep);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.ws-marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
}
.ws-marquee:hover .ws-marquee-track { animation-play-state: paused; }
.ws-marquee-item {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-warm-deep);
}
.ws-marquee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #ffffff;
  flex-shrink: 0;
}
.ws-marquee-icon svg { width: 16px; height: 16px; }
.ws-marquee-item::after {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-dark);
  margin-left: 44px;
}

/* ============= CATEGORIES B2B ============= */
.ws-cats {
  background: #ffffff;
  padding: 120px 0;
}
.ws-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.ws-cat {
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 320ms var(--ease);
  text-decoration: none;
  color: inherit;
}
.ws-cat:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--hairline-strong);
}
.ws-cat-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.ws-cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}
.ws-cat:hover .ws-cat-img img { transform: scale(1.04); }
.ws-cat-foot {
  padding: 28px 28px 32px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--hairline);
}
.ws-cat-name {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-warm-deep);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  line-height: 1.1;
}
.ws-cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-warm-deep);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 220ms var(--ease);
}
.ws-cat-cta svg { transition: transform 220ms var(--ease); }
.ws-cat:hover .ws-cat-cta {
  background: var(--accent);
}
.ws-cat:hover .ws-cat-cta svg { transform: translateX(4px); }

/* ============= BENEFITS (DARK SECTION) ============= */
.ws-benefits {
  background: var(--lilac);
  color: var(--ink-warm-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ws-benefits::before {
  display: none;
}
.ws-benefits .section-head { padding: 0 32px; max-width: 1100px; }
.ws-benefits .eyebrow { color: var(--lilac-dark); }
.ws-benefits .eyebrow::before, .ws-benefits .eyebrow::after { color: var(--lilac-dark); }
.ws-benefits h2 {
  color: var(--ink-warm-deep);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}
.ws-benefits h2 .t-italic {
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 400;
}
.ws-benefits h2 .t-box {
  background: #ffffff;
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 700;
  padding: 2px 22px 10px;
  display: inline-block;
  transform: rotate(-1.2deg);
  margin-top: 6px;
  box-shadow: 0 8px 22px rgba(71, 67, 100, 0.18);
}
.ws-benefits .section-sub { color: var(--ink-soft); }
.ws-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.ws-benefit {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 6px;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  transition: all 240ms var(--ease);
}
.ws-benefit:hover {
  border-color: var(--accent-dark);
  background: rgba(255,255,255,0.8);
  transform: translateY(-3px);
}
.ws-benefit-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
}
.ws-benefit-icon svg { width: 22px; height: 22px; }
.ws-benefit-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-warm-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}
.ws-benefits-checks {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(71, 67, 100, 0.2);
  max-width: 1320px;
  margin-left: auto; margin-right: auto;
  padding-left: 32px; padding-right: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 36px;
}
.ws-benefits-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-warm-deep);
}
.ws-benefits-check svg { color: var(--accent-dark); }

/* ============= ELEVATE SPLIT BLOCK ============= */
.ws-elevate {
  background: #ffffff url('../images/redesign/elevate-model.png') no-repeat right center;
  background-size: contain;
  overflow: hidden;
}
.ws-elevate-inner {
  display: block;
  align-items: center;
  min-height: 620px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.ws-elevate-copy {
  padding: 90px 64px 90px 96px;
  max-width: 760px;
}
.ws-elevate-visual { display: none; }
.ws-elevate .eyebrow { margin-bottom: 18px; }
.ws-elevate h2 {
  color: var(--ink-warm-deep);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 24px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ws-elevate h2 .t-italic {
  color: var(--accent);
  font-style: normal;
  font-weight: 400;
}
.ws-elevate h2 .t-box {
  background: var(--accent);
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  padding: 2px 22px 10px;
  transform: rotate(-1deg);
  display: inline-block;
  box-shadow: 0 8px 22px rgba(110, 138, 78, 0.22);
  letter-spacing: -0.03em;
}
.ws-elevate p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.5;
  margin: 0 0 36px;
}
.ws-elevate-features {
  list-style: none; padding: 0; margin: 0 0 40px;
  display: flex; flex-direction: column;
  gap: 14px;
  max-width: 520px;
}
.ws-elevate-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15.5px;
  color: var(--ink-warm-deep);
  font-weight: 500;
}
.ws-elevate-features svg { color: var(--accent); flex-shrink: 0; }
.ws-elevate-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.ws-elevate-visual-removed {
  display: none;
}

/* ============= FINAL CTA (DARK) ============= */
.ws-final {
  background: var(--accent-pastel);
  color: var(--ink-warm-deep);
  padding: 130px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ws-final::before {
  display: none;
}
.ws-final .eyebrow { color: var(--accent-dark); margin-bottom: 22px; position: relative; }
.ws-final .eyebrow::before, .ws-final .eyebrow::after { color: var(--accent-dark); }
.ws-final h2 {
  color: var(--ink-warm-deep);
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 auto 32px;
  text-transform: uppercase;
  max-width: 900px;
  position: relative;
}
.ws-final h2 .t-italic {
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 400;
}
.ws-final h2 .t-box {
  background: #ffffff;
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 700;
  padding: 2px 26px 12px;
  display: inline-block;
  transform: rotate(-1deg);
  box-shadow: 0 10px 26px rgba(71, 67, 100, 0.18);
  letter-spacing: -0.03em;
}
.ws-final p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.5;
  position: relative;
}
.ws-final-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.ws-final-cta .btn {
  padding: 22px 48px;
  font-size: 13px;
  letter-spacing: 0.22em;
}
.ws-final-cta .btn-outline {
  background: transparent;
  color: var(--ink-warm-deep);
  border: 1.5px solid var(--ink-warm-deep);
}
.ws-final-cta .btn-outline:hover {
  background: var(--ink-warm-deep);
  color: #ffffff;
}
.ws-final-cta .btn-accent {
  box-shadow: 0 10px 26px rgba(110, 138, 78, 0.32);
}

/* ============= WHOLESALE APPLICATION FORM ============= */
.ws-form {
  max-width: 620px; margin: 36px auto 0; text-align: left;
  background: #ffffff; border: 1px solid var(--hairline);
  border-radius: 18px; padding: 32px; position: relative;
  box-shadow: 0 20px 50px rgba(28,28,28,0.10);
}
.ws-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ws-form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.ws-form-field label { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--ink-warm-deep); }
.ws-form-field input, .ws-form-field select, .ws-form-field textarea {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: #fafaf8; border: 1.5px solid var(--hairline-strong);
  padding: 13px 15px; border-radius: 10px; outline: none; transition: all 200ms var(--ease);
}
.ws-form-field input::placeholder, .ws-form-field textarea::placeholder { color: var(--ink-mute); }
.ws-form-field input:focus, .ws-form-field select:focus, .ws-form-field textarea:focus {
  border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-soft);
}
.ws-form-field textarea { min-height: 90px; resize: vertical; }
.ws-form .btn { width: 100%; margin-top: 4px; }
.ws-final-talk { display: block; text-align: center; margin-top: 16px; font-size: 12.5px; color: var(--ink-soft); transition: color 200ms var(--ease); }
.ws-final-talk:hover { color: var(--accent-dark); }
.ws-form-sent { max-width: 520px; margin: 36px auto 0; text-align: center; background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 36px 32px; box-shadow: 0 20px 50px rgba(28,28,28,0.10); }
.ws-form-sent-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-dark); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.ws-form-sent h3 { font-family: var(--sans); font-size: 24px; font-weight: 800; color: var(--ink-warm-deep); text-transform: none; margin: 0 0 10px; }
.ws-form-sent p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.ws-form-sent strong { color: var(--ink-warm-deep); }
@media (max-width: 600px) { .ws-form-row { grid-template-columns: 1fr; gap: 0; } .ws-form { padding: 22px; } }

/* ============= PRODUCT SHOWCASE ============= */
.ws-showcase {
  background: #ffffff;
  padding: 80px 0;
}
.ws-showcase-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 32px;
}
.ws-showcase-head .eyebrow {
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.1em;
  font-size: 11px;
}
.ws-showcase-head .eyebrow::before,
.ws-showcase-head .eyebrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 44px;
  height: 1px;
  background: var(--accent);
  margin: 0 14px 4px;
  opacity: 0.7;
}
.ws-showcase-head h2 {
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-transform: uppercase;
  color: #1C1C1C;
  margin: 0 0 18px;
}
.ws-showcase-head h2 .t-italic {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}
.ws-showcase-head .section-sub {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
}

.ws-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.ws-showcase-card {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.10);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
}
.ws-showcase-item:hover .ws-showcase-card {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.18);
}
.ws-showcase-overlay { display: none; }

.ws-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* === Callouts === */
.ws-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  pointer-events: none;
}
.ws-callout-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  line-height: 1.25;
  max-width: 140px;
}
.ws-arrow {
  opacity: 0.85;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  flex-shrink: 0;
}

/* Organic positioning — each callout sits at a different edge */
.ws-callout.co-1 {
  top: 32px;
  left: 28px;
  max-width: 180px;
}
.ws-callout.co-1 .ws-callout-text { order: 1; }
.ws-callout.co-1 .ws-arrow { order: 2; transform: rotate(-8deg); }

.ws-callout.co-2 {
  top: 110px;
  right: 24px;
  max-width: 200px;
  flex-direction: row-reverse;
}
.ws-callout.co-2 .ws-callout-text { text-align: right; }
.ws-callout.co-2 .ws-arrow { transform: rotate(6deg); }

.ws-callout.co-3 {
  top: 200px;
  left: 36px;
  max-width: 200px;
}
.ws-callout.co-3 .ws-callout-text { order: 1; }
.ws-callout.co-3 .ws-arrow { order: 2; transform: rotate(12deg); }

/* === Card wrapper (item with button below image) === */
.ws-showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.ws-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-warm-deep);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 220ms var(--ease);
}
.ws-showcase-cta svg { transition: transform 220ms var(--ease); }
.ws-showcase-item:hover .ws-showcase-cta {
  background: var(--accent);
  color: #ffffff;
}
.ws-showcase-item:hover .ws-showcase-cta svg { transform: translateX(4px); }

/* === Responsive === */
@media (max-width: 1100px) {
  .ws-showcase-grid { grid-template-columns: 1fr; max-width: 480px; }
  .ws-showcase-card { height: 460px; }
}
@media (max-width: 720px) {
  .ws-showcase { padding: 56px 0; }
  .ws-showcase-grid { padding: 0 20px; }
  .ws-showcase-head h2 { font-size: clamp(28px, 8vw, 38px); }
  .ws-callout-text { font-size: 12px; }
}
@media (max-width: 1100px) {
  .ws-hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 0 24px; }
  .ws-hero { min-height: auto; }
  .ws-hero-copy { padding: 64px 0 40px; max-width: 100%; }
  .ws-hero-visual { display: none; }

  .ws-cats-grid { grid-template-columns: 1fr; max-width: 480px; }
  .ws-benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .ws-benefits-checks { gap: 12px 24px; }

  .ws-elevate-inner { grid-template-columns: 1fr; }
  .ws-elevate-copy { padding: 72px 32px; }
  .ws-elevate-visual { min-height: 460px; }

  .ws-cats, .ws-benefits { padding: 72px 0; }
  .ws-final { padding: 80px 24px; }
}

@media (max-width: 720px) {
  .ws-hero h1 { font-size: clamp(40px, 11vw, 60px); }
  .ws-hero-sub { font-size: 16px; }
  .ws-hero-ctas .btn { width: 100%; padding: 16px 26px; }

  .ws-marquee-item { font-size: 12px; gap: 32px; letter-spacing: 0.12em; }
  .ws-marquee-item::after { margin-left: 32px; }

  .ws-cats-grid { padding: 0 20px; }
  .ws-benefits-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 12px; }
  .ws-benefit { padding: 22px 14px; }
  .ws-benefit-name { font-size: 11px; }
  .ws-benefits-checks { padding: 24px 20px 0; }

  .ws-elevate-copy { padding: 56px 24px; }
  .ws-elevate h2 { font-size: clamp(34px, 10vw, 52px); }
  .ws-elevate p { font-size: 17px; }
  .ws-elevate-features li { font-size: 14.5px; }

  .ws-final { padding: 64px 20px; }
  .ws-final h2 { font-size: clamp(34px, 10vw, 56px); }
  .ws-final p { font-size: 17px; }
  .ws-final-cta .btn { padding: 16px 28px; width: 100%; }
}
