/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* --- Colors --- */
  --c-bg-dark:        #0d0d0d;
  --c-bg-dark-2:      #181818;
  --c-bg-dark-3:      #222222;
  --c-bg-light:       #f4f4f2;
  --c-bg-card:        #fbfbfb;
  --c-bg-white:       #ffffff;

  --c-text:           #0d0d0d;
  --c-text-muted:     #888888;
  --c-text-inv:       #ffffff;
  --c-text-inv-muted: rgba(255, 255, 255, 0.5);

  --c-accent:         #EC6608;
  --c-accent-h:       #c73208;

  --c-border-dark:    rgba(255, 255, 255, 0.1);
  --c-border-light:   rgba(0, 0, 0, 0.1);

  /* --- Typography --- */
  --f-head: 'Barlow Condensed', 'Arial Black', Arial, sans-serif;
  --f-body: 'Barlow', Arial, sans-serif;

  --fw-reg:   400;
  --fw-semi:  600;
  --fw-bold:  700;
  --fw-black: 900;

  --fs-10:  0.625rem;
  --fs-11:  0.6875rem;
  --fs-12:  0.75rem;
  --fs-13:  0.8125rem;
  --fs-14:  0.875rem;
  --fs-16:  1rem;
  --fs-18:  1.125rem;
  --fs-20:  1.25rem;
  --fs-22:  1.375rem;
  --fs-24:  1.5rem;
  --fs-28:  1.75rem;
  --fs-32:  2rem;
  --fs-40:  2.5rem;
  --fs-48:  3rem;
  --fs-56:  3.5rem;
  --fs-hero: clamp(3.25rem, 7vw, 6.5rem);
  --fs-drop: clamp(2.75rem, 5.5vw, 5.5rem);

  --ls-tight:  -0.02em;
  --ls-wide:    0.08em;
  --ls-wider:   0.14em;
  --lh-tight:   1;
  --lh-snug:    1.15;
  --lh-base:    1.5;

  /* --- Spacing --- */
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* --- Layout --- */
  --nav-h:            68px;
  --container-max:    1440px;
  --container-pad:    clamp(1.25rem, 4vw, 4rem);
  --container-wide-pad: clamp(1.25rem, 2.5vw, 2.5rem);

  /* --- Effects --- */
  --radius-sm:  2px;
  --radius:     4px;
  --radius-lg:  8px;
  --t-fast:     150ms ease;
  --t-base:     220ms ease;
  --t-slow:     380ms ease;
}


/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--f-body);
  font-size: var(--fs-16);
  font-weight: var(--fw-reg);
  color: var(--c-text);
  background: var(--c-bg-white);
  overflow-x: hidden;
  --pdp-strip-h: 0px;
}
body.has-context-strip { --pdp-strip-h: 45px; }

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
}


/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--wide {
  max-width: var(--container-max);
  padding-inline: var(--container-wide-pad);
}

.section {
  position: relative;
  padding-block: var(--sp-20);
}

.section--dark {
  background: var(--c-bg-dark);
  color: var(--c-text-inv);
}

.section--light {
  background: var(--c-bg-white);
  color: var(--c-text);
}


/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.section-label {
  font-family: var(--f-body);
  font-size: var(--fs-11);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-2);
}

.section-label--accent { color: var(--c-accent); }
.section-label--inv    { color: var(--c-text-inv-muted); }

.section-title {
  font-family: var(--f-head);
  font-size: var(--fs-56);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
}

.accent-dot { color: var(--c-accent); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-10);
  gap: var(--sp-4);
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-size: var(--fs-13);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn--accent {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.btn--accent:hover {
  background: var(--c-accent-h);
  border-color: var(--c-accent-h);
}

.btn--outline {
  background: transparent;
  color: var(--c-text-inv);
  border-color: var(--c-border-dark);
}
.btn--outline:hover {
  border-color: var(--c-text-inv);
}

.btn--sm {
  font-size: var(--fs-12);
  padding: 0.625rem 1.25rem;
}

.btn--icon {
  padding: 0.875rem 1.25rem;
}

.btn__arrow { font-style: normal; }


/* ============================================================
   ARROW BUTTONS
============================================================ */
.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-border-dark);
  color: var(--c-text-inv);
  font-size: var(--fs-18);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.arrow-btn--dark {
  border-color: var(--c-border-light);
  color: var(--c-text);
}
.arrow-btn--dark:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.3);
}


/* ============================================================
   LINK ARROWS
============================================================ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-body);
  font-size: var(--fs-12);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.link-arrow:hover { color: var(--c-accent); }

.link-arrow--sm { font-size: var(--fs-11); }

.link-arrow--inv { color: var(--c-text-inv); }
.link-arrow--inv:hover { color: rgba(255,255,255,0.7); }

.section--dark .link-arrow {
  color: var(--c-text-inv-muted);
}
.section--dark .link-arrow:hover {
  color: var(--c-text-inv);
}


/* ============================================================
   NAVIGATION
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--c-bg-dark);
  border-bottom: 1px solid var(--c-border-dark);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding-inline: var(--container-pad);
  gap: var(--sp-8);
}

/* Logo */
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-inline: auto;
}

.nav__item { position: relative; }

.nav__link {
  font-family: var(--f-body);
  font-size: var(--fs-13);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-inv-muted);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav__link:hover { color: var(--c-text-inv); }
.nav__link--accent { color: var(--c-accent); }
.nav__link--accent:hover { color: var(--c-accent-h); }
.nav__link--current { color: var(--c-text-inv) !important; }

.nav__caret {
  font-size: 0.6em;
  vertical-align: middle;
  margin-left: 2px;
  display: inline-block;
  transition: transform var(--t-fast);
}
.nav__item--has-dropdown:hover .nav__caret { transform: rotate(180deg); }
.nav__item--has-megamenu:hover .nav__caret  { transform: rotate(180deg); }

/* Caret for mega menu items */
.nav__item--has-megamenu:hover .nav__caret,
.nav__item--has-megamenu.is-open .nav__caret { transform: rotate(180deg); }


/* ============================================================
   MEGA MENUS
============================================================ */
.nav__megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 14, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 48px rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--t-base), transform var(--t-base);
  z-index: 190;
}

.nav__megamenu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.megamenu__body {
  display: flex;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-left: var(--container-pad);
  min-height: 340px;
  align-items: stretch;
}

/* Left: categories / content section */
.megamenu__section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-block: var(--sp-8);
  padding-right: var(--sp-10);
  min-width: 0;
}

.megamenu__section-label {
  font-size: var(--fs-11);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-text-inv-muted);
}

/* Category grid (2 columns) */
.megamenu__cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  flex: 1;
  align-content: start;
}

.megamenu__cat-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  transition: background var(--t-fast);
}

.megamenu__cat-item:hover { background: rgba(255,255,255,0.06); }

.megamenu__cat-thumb-wrap {
  width: 52px;
  height: 52px;
  background: var(--c-bg-dark-3);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.megamenu__cat-thumb {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.megamenu__cat-thumb-wrap--accent { background: var(--c-accent); }

.megamenu__cat-deals-icon {
  font-family: var(--f-head);
  font-size: var(--fs-22);
  font-weight: var(--fw-black);
  color: #fff;
}

.megamenu__cat-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.megamenu__cat-name {
  font-size: var(--fs-13);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-inv);
  transition: color var(--t-fast);
  white-space: nowrap;
}

.megamenu__cat-item:hover .megamenu__cat-name { color: var(--c-accent); }

.megamenu__cat-sub {
  font-size: var(--fs-11);
  color: var(--c-text-inv-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.megamenu__footer-link { margin-top: auto; }

/* Right: feature image panel */
.megamenu__feature {
  width: clamp(240px, 28%, 380px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.megamenu__feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.megamenu__feature-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
}

.megamenu__feature-eyebrow {
  font-size: var(--fs-11);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-2);
}

.megamenu__feature-title {
  font-family: var(--f-head);
  font-size: var(--fs-28);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-4);
}

.megamenu__feature-cta {
  font-size: var(--fs-12);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--t-fast);
}

.megamenu__feature-cta:hover { color: var(--c-accent); }

/* Discover mega menu */
.megamenu__body--discover {
  padding-right: var(--container-pad);
  min-height: 280px;
}

.megamenu__articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  flex: 1;
}

.megamenu__article {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.megamenu__article-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-bg-dark-3);
}

.megamenu__article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.megamenu__article:hover .megamenu__article-img { transform: scale(1.04); }

.megamenu__article-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
}

.megamenu__article-tag {
  font-size: var(--fs-11);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-accent);
}

.megamenu__article-title {
  font-family: var(--f-head);
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-text-inv);
  line-height: var(--lh-snug);
  transition: color var(--t-fast);
}

.megamenu__article:hover .megamenu__article-title { color: var(--c-accent); }

/* Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.nav__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--c-text-inv-muted);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__icon-btn:hover {
  color: var(--c-text-inv);
  background: rgba(255,255,255,0.07);
}

.nav__cart-btn { position: relative; }
.nav__cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--c-accent);
  color: #fff;
  font-size: var(--fs-10);
  font-weight: var(--fw-bold);
  line-height: 16px;
  text-align: center;
  border-radius: 999px;
  padding-inline: 3px;
  display: none;
}
.nav__cart-badge.is-visible { display: block; }

/* Mobile toggle */
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  margin-left: auto;
}
.nav__mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--c-text-inv);
  border-radius: 1px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav__mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   SHOP PAGE HEADER (shared: shop + discover)
============================================================ */
.shop-page-header {
  padding-block: var(--sp-12) var(--sp-10);
}

.shop-page-header__title {
  font-family: var(--f-head);
  font-size: clamp(3rem, 8vw, var(--fs-hero));
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  color: var(--c-text-inv);
  margin-top: var(--sp-2);
}

.shop-page-header__desc {
  margin-top: var(--sp-3);
  font-size: var(--fs-16);
  color: var(--c-text-inv-muted);
}


/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--c-bg-dark);
  color: var(--c-text-inv);
  border-top: 1px solid var(--c-border-dark);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr;
  gap: var(--sp-10);
  padding-block: var(--sp-16);
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.footer__logo {
  width: 80px;
  height: 36px;
  object-fit: contain;
}

.footer__tagline {
  font-size: var(--fs-11);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-text-inv-muted);
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-border-dark);
  color: var(--c-text-inv-muted);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer__social-link:hover {
  color: var(--c-text-inv);
  border-color: rgba(255,255,255,0.3);
}

.footer__copyright {
  font-size: var(--fs-11);
  color: var(--c-text-inv-muted);
  margin-top: auto;
}

.footer__col { display: flex; flex-direction: column; gap: var(--sp-4); }

.footer__col-title {
  font-family: var(--f-head);
  font-size: var(--fs-13);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-text-inv);
  margin-bottom: var(--sp-2);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: var(--fs-13);
  color: var(--c-text-inv-muted);
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--c-text-inv); }

/* Newsletter */
.footer__newsletter-desc {
  font-size: var(--fs-13);
  color: var(--c-text-inv-muted);
  margin-bottom: var(--sp-2);
}

.footer__newsletter-form {
  display: flex;
  gap: 0;
}

.footer__input {
  flex: 1;
  background: var(--c-bg-dark-2);
  border: 1px solid var(--c-border-dark);
  border-right: none;
  padding: var(--sp-3) var(--sp-4);
  color: var(--c-text-inv);
  font-size: var(--fs-13);
}
.footer__input::placeholder { color: var(--c-text-inv-muted); }
.footer__input:focus { border-color: rgba(255,255,255,0.25); }

.footer__legal {
  font-size: var(--fs-11);
  color: var(--c-text-inv-muted);
  line-height: 1.5;
}

.footer__link-inline {
  color: var(--c-text-inv-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
.footer__link-inline:hover { color: var(--c-text-inv); }

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid var(--c-border-dark);
  padding-block: var(--sp-5);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer__bottom-links {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.footer__bottom-links .footer__link-inline {
  font-size: var(--fs-11);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}


/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  :root {
    --container-pad: clamp(1.25rem, 3.5vw, 3rem);
  }

  .nav__links { gap: var(--sp-4); }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer__brand { grid-column: span 2; flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --container-pad: 1.25rem;
  }

  /* Hide mega menus on mobile */
  .nav__megamenu { display: none; }

  /* Nav mobile */
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-bg-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--sp-8) var(--container-pad);
    gap: var(--sp-5);
    overflow-y: auto;
    z-index: 199;
  }
  .nav__links.is-open { display: flex; }
  .nav__mobile-toggle { display: flex; }
  .nav__dropdown { display: none; }

  .section-title { font-size: var(--fs-40); }
  .section-header { flex-wrap: wrap; gap: var(--sp-3); }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; flex-direction: column; }
  .footer__bottom-inner { justify-content: center; }
}


/* ============================================================
   REVIEW CARD (shared: home + product)
============================================================ */
.review-card {
  border: 1px solid var(--c-border-light);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.review-card__text {
  font-size: var(--fs-14);
  line-height: var(--lh-base);
  color: var(--c-text);
}

.review-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.review-card__author {
  font-size: var(--fs-12);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.review-card__bike {
  font-size: var(--fs-11);
  color: var(--c-text-muted);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-top: 2px;
}

.review-card__stars {
  color: var(--c-accent);
  font-size: var(--fs-14);
  letter-spacing: 2px;
}


/* ============================================================
   PDP CRAFT / FULL-BLEED SECTION (shared: product + discover)
============================================================ */
.pdp-craft {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
.pdp-craft__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.pdp-craft__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: var(--sp-12) var(--container-pad);
  text-align: right;
}
.pdp-craft__headline {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  color: #fff;
  line-height: var(--lh-tight);
  margin: var(--sp-3) 0 var(--sp-4);
}
.pdp-craft__body {
  font-size: var(--fs-14);
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  line-height: var(--lh-base);
  margin: 0;
}

@media (max-width: 768px) {
  .pdp-craft { height: 50vh; min-height: 320px; }
  .pdp-craft__overlay { align-items: flex-start; text-align: left; }
  .pdp-craft__body { max-width: 100%; }
}
