/** Shopify CDN: Minification failed

Line 5387:0 Unexpected "}"

**/
/* ═══════════════════════════════════════
   NOOON — Base Styles
   ═══════════════════════════════════════ */

:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-muted: rgba(0, 0, 0, 0.5);
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --nav-height: 80px;
  --page-pad: 48px;
}

@media (max-width: 768px) {
  :root {
    --page-pad: 20px;
  }
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  background-color: #fff;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.4;
  overflow-x: hidden;
  overscroll-behavior: none;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
}

.template-page-contact #main,
.template-page-help-center #main,
.template-page-newsletter #main,
.template-page-press #main,
.template-page-legal #main,
.template-page-about #main,
.template-page-image-bank #main {
  background: #fff;
}

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

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

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

ul, ol {
  list-style: none;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-text);
  color: var(--color-bg);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}
.skip-to-content:focus {
  top: 0;
}

/* ═══════════════════════════════════════
   STICKY HEADER
   ═══════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px var(--page-pad);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}

.site-header a,
.site-header button,
.site-header div {
  color: inherit;
}

.site-header--dark {
  color: #000;
}

.site-header--dark img {
  filter: invert(1);
}

.site-header__logo img {
  height: 30px;
  width: auto;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-header__nav a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.site-header__nav a:hover {
  opacity: 0.6;
}

/* Collections dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 0;
}

.nav-dropdown__trigger:hover {
  opacity: 0.6;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  max-height: 200px;
  opacity: 1;
}

.nav-dropdown__link {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.nav-dropdown__link:hover {
  opacity: 0.6;
}

/* Mobile Collections dropdown */
.mobile-nav__dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.mobile-nav__dropdown.is-open .mobile-nav__dropdown-menu {
  max-height: 200px;
  opacity: 1;
  padding-top: 20px;
}

.mobile-nav__sub-link {
  font-size: 20px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.site-header__menu-toggle {
  display: none;
  padding: 8px;
}

.site-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
}

.site-header__hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  width: 100%;
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav__link {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
  .site-header__actions {
    display: none;
  }
  .site-header__menu-toggle {
    display: block;
  }
  .site-header__logo img {
    height: 22px;
  }
  .site-header {
    padding: 20px var(--page-pad);
  }
}

/* ── Utilities ── */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

/* ═══════════════════════════════════════
   SHARED SECTION BAR (header + footer)
   Used in hero, lookbook, and any
   full-screen section.
   ═══════════════════════════════════════ */

.section-bar {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 10;
}

.section-bar--top {
  top: 36px;
}

.section-bar--bottom {
  bottom: 36px;
}

/* Colors: default is white (for dark sections) */
.section-bar--dark {
  color: #fff;
}
.section-bar--dark img.icon-invert { filter: none; }

.section-bar--light {
  color: #000;
}
.section-bar--light img.icon-invert { filter: invert(1); }

/* ── Logo ── */
.section-bar__logo img {
  height: 30px;
  width: auto;
}

/* ── Nav ── */
.section-bar__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.section-bar__nav a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
.section-bar__nav a:hover {
  opacity: 0.6;
}

/* ── Actions (search + cart) ── */
.section-bar__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.section-bar__action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
}

/* ── Bottom bar items ── */
.section-bar__left {
  font-size: 16px;
}
.section-bar__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 48px;
}
.section-bar__center a {
  font-size: 24px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}
.section-bar__center a:hover {
  opacity: 0.6;
}
.section-bar__right {
  font-size: 16px;
  transition: opacity 0.2s ease;
}
.section-bar__right:hover {
  opacity: 0.6;
}

/* ── Sticky CHAT button (homepage only) ── */
.chat-sticky {
  position: fixed;
  bottom: 40px;
  right: var(--page-pad);
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  z-index: 100;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.chat-sticky:hover {
  opacity: 0.6;
}
.chat-sticky--dark {
  color: #000;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .section-bar__nav {
    display: none;
  }
  .section-bar__logo img {
    height: 22px;
  }
  .section-bar__center a {
    font-size: 16px;
  }
  .section-bar__right {
    display: none;
  }
  .section-bar--bottom {
    bottom: 20px;
  }
  .section-bar--top {
    top: 20px;
  }
  .chat-sticky {
    display: none;
  }
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.hero__wordmark img {
  width: min(44vw, 762px);
  height: auto;
}

.hero__headline img {
  width: min(60vw, 1028px);
  height: auto;
}

.hero__headline-text {
  display: block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: min(18vw, 260px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 0.85;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero__wordmark img {
    width: 60vw;
  }
  .hero__headline img {
    width: 85vw;
  }
}

/* ═══════════════════════════════════════
   LOOKBOOK SECTION
   ═══════════════════════════════════════ */

.lookbook {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  overflow: hidden;
}

.lookbook__images {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 90px 0 80px;
  overflow: hidden;
}

.lookbook__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}



/* ── Card ── */
.lookbook__card {
  flex-shrink: 0;
  position: relative;
  height: 100%;
  display: block;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.lookbook__card img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: cover;
}

/* Hover: blur + fade all cards, then clear the hovered one */
.lookbook__track:hover .lookbook__card {
  filter: blur(5px);
  opacity: 0.34;
}

.lookbook__track:hover .lookbook__card:hover {
  filter: none;
  opacity: 1;
}

/* Product info — lives OUTSIDE the track, no blur inheritance */
.lookbook__info-overlay {
  position: absolute;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lookbook__info-overlay.is-visible {
  opacity: 1;
}

.lookbook__item-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.lookbook__item-cat {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
}

.lookbook__item-price {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: #000;
  margin-top: 4px;
}

@keyframes lookbook-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .lookbook__images {
    padding: 70px 0 80px;
  }
  .lookbook__track {
    /* speed set by JS */
  }
}

/* ═══════════════════════════════════════
   CAMPAIGN SECTION
   ═══════════════════════════════════════ */

.campaign {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.campaign__images {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.campaign__track {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.campaign__card {
  flex-shrink: 0;
  height: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  display: block;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.campaign__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.campaign__card-info {
  position: absolute;
  bottom: 36px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  font-family: var(--font-body);
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  pointer-events: none;
}

.campaign__card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.campaign__card-year {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.campaign__card-desc {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 200px;
  line-height: 1.4;
  opacity: 0.85;
}

.campaign__card-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.campaign__card:hover .campaign__card-cta {
  opacity: 1;
}

@keyframes campaign-scroll {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  .campaign__track {
    /* speed set by JS */
  }
}

/* ═══════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0a0a0a;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__image {
  transform: scale(1.03);
}
.product-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.product-card__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card__price {
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.8;
}

/* ═══════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════ */

.site-footer {
  background: #ffffff;
  color: #000;
  padding: 40px var(--page-pad) 0;
}

/* Product page variant — no top padding, no columns */
.site-footer--product {
  padding: 0;
}

/* ── Content Grid ── */
.site-footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__info-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__col-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__perks {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer__newsletter-heading {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
}

.site-footer__newsletter-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.7;
  max-width: 360px;
}

.site-footer__signup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid #000;
  border-radius: 33.5px;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  transition: background 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.site-footer__signup-btn:hover {
  background: #000;
  color: #fff;
}

/* ── Columns ── */
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__col-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.site-footer__col-link {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

a.site-footer__col-link:hover {
  opacity: 1;
}

/* ── Legal Bar ── */
.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 24px 0;
  font-size: 16px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: #000;
}

/* Product page legal bar has side padding (no parent padding) */
.site-footer--product .site-footer__legal {
  padding: 24px 36px;
}

.site-footer__legal-copy {
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__legal-links-unused {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__legal-links a {
  font-size: 16px;
  font-weight: 400;
  color: #a5a5a5;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-footer__legal-links a:hover {
  color: #000;
}

.site-footer__legal-rep {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__legal-rep:hover {
  color: #000;
}

.site-footer__inquire {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  text-decoration: none;
}

.site-footer__inquire:hover {
  text-decoration: underline;
}

/* ── Bottom Logo ── */
.site-footer__logo-bottom {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

.site-footer__logo-bottom img {
  width: 100%;
  max-width: 1606px;
  height: auto;
  display: block;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .site-footer__content {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__info {
    grid-column: 1 / -1;
  }
  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-footer__legal-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════
   COLLECTION PAGE
   ═══════════════════════════════════════ */

.collection-page {
  background: #fff;
  color: #000;
  padding-top: var(--header-bottom, 100px);
  min-height: 100vh;
}

/* ── Sidebar ── */
.collection-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 36px;
}

.collection-sidebar__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Pick Up Today toggle row */
.collection-sidebar__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
  cursor: pointer;
}

.collection-sidebar__toggle {
  position: relative;
  width: 40px;
  height: 22px;
  background: #ccc;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.collection-sidebar__toggle.is-on {
  background: #000;
}

.collection-sidebar__toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  display: block;
}

.collection-sidebar__toggle.is-on .collection-sidebar__toggle-thumb {
  transform: translateX(18px);
}

/* Divider */
.collection-sidebar__divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 8px;
}

/* Category links */
.collection-sidebar__categories {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.collection-sidebar__cat-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  padding: 7px 0;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.collection-sidebar__cat-link:hover {
  opacity: 0.6;
}

.collection-sidebar__cat-link.is-active {
  font-weight: 700;
}

/* Filter groups */
.collection-sidebar__filter {
  border-top: 1px solid #e0e0e0;
}

.collection-sidebar__filter:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.collection-sidebar__filter-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}

.collection-sidebar__filter-toggle svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.collection-sidebar__filter.is-open .collection-sidebar__filter-toggle svg {
  transform: rotate(180deg);
}

.collection-sidebar__filter-options {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
}

.collection-sidebar__filter.is-open .collection-sidebar__filter-options {
  display: flex;
}

.collection-sidebar__filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
}

.collection-sidebar__filter-option input[type="checkbox"] {
  accent-color: #000;
}

.collection-sidebar__filter-option input:disabled + span {
  opacity: 0.3;
}

.collection-sidebar__price-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.collection-sidebar__price-range input {
  width: 80px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #000;
}

/* ── Product Grid ── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.collection-card {
  display: block;
}

.collection-card__image {
  aspect-ratio: 478 / 597;
  overflow: hidden;
  background: #f5f5f5;
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.03);
}

.collection-card__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 14px 16px 32px;
  text-align: center;
  align-items: center;
}

.collection-card__name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.collection-card__type {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #b9b9b9;
}

.collection-card__price {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  margin-top: 8px;
}

.collection-grid__empty {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  opacity: 0.5;
}

/* Sold-out collection card */
.collection-card--sold-out .collection-card__image {
  position: relative;
}
.collection-card__sold-out-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  text-transform: uppercase;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ═══════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP)
   ═══════════════════════════════════════ */

.pdp {
  position: relative;
  background: #fff;
  color: #000;
  height: 100vh;
  overflow: hidden;
}

/* ── Image Gallery — infinite marquee, full width behind panel ── */
.pdp__images {
  position: absolute;
  top: 97px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.pdp__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes pdp-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.pdp__image {
  flex-shrink: 0;
  height: 100%;
}

.pdp__image img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: cover;
}

/* ── Info Panel — frosted glass ── */
.pdp__info {
  position: absolute;
  top: var(--header-bottom, 100px);
  left: 36px;
  width: 386px;
  height: 889px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 41px;
  padding: 60px 40px 59px 49px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 10;
  color: #000;
}

.pdp__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Price + Sizes on same row */
.pdp__price-sizes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pdp__price {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
}

.pdp__sizes {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdp__size {
  cursor: pointer;
}

.pdp__size input {
  display: none;
}

.pdp__size span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.pdp__size input:checked + span {
  border: 2px solid #000;
  border-radius: 5px;
}

/* Add to Cart */
.pdp__add-btn {
  width: 297px;
  height: 52px;
  flex-shrink: 0;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s ease;
  margin-bottom: 19px;
}

.pdp__add-btn:hover {
  opacity: 0.85;
}

.pdp__add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pdp__add-btn--sold-out {
  background: #666;
  opacity: 1;
}

/* Sold-out size variant — diagonal strikethrough */
.pdp__size--sold-out {
  cursor: not-allowed;
}
.pdp__size--sold-out span {
  position: relative;
  opacity: 0.35;
}
.pdp__size--sold-out span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top right,
    transparent calc(50% - 0.5px),
    #000 calc(50% - 0.5px),
    #000 calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
}

/* Sections (Description, Size Chart, Shipping) */
.pdp__section {
  border-top: 1px solid #000;
  padding-top: 11px;
  margin-bottom: 16px;
}

.pdp__section-heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pdp__section-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.pdp__section-body p {
  margin-bottom: 8px;
}

.pdp__final-sale {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 16px;
}

/* ── Zellerfeld PDP variant selectors ── */
.pdp__zf-option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.pdp__zf-option-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.pdp__zf-colors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pdp__zf-color {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 8px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.55);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.pdp__zf-color.is-selected {
  border-color: #000;
  color: #000;
}

.pdp__zf-color:hover:not(.is-selected) {
  border-color: rgba(0,0,0,0.5);
  color: rgba(0,0,0,0.8);
}

.pdp__zf-color-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--swatch, #888);
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.15);
}

.pdp__zf-color-name {
  line-height: 1;
}

.pdp__zf-size-select {
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: #000;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  transition: border-color 0.15s ease;
}

.pdp__zf-size-select:focus {
  border-color: #000;
}

.pdp__zf-size-select option {
  background: #fff;
  color: #000;
  text-transform: uppercase;
}

/* Custom fit link */
.pdp__zf-scan-link {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Size reference table */
.pdp__zf-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: #000;
}

.pdp__zf-size-table th,
.pdp__zf-size-table td {
  padding: 5px 10px 5px 0;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.pdp__zf-size-table th {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  padding-bottom: 8px;
}

/* Zellerfeld badge on PDP */
.pdp__zf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 14px;
}

.pdp__zf-badge-label {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
}

.pdp__zf-badge-logo {
  height: 14px;
  width: auto;
  display: block;
  color: #000;
}

/* ── Responsive ── */
@media (max-width: 1440px) {
  .pdp__info {
    height: auto;
    bottom: 80px;
    padding: 48px 36px;
  }
}

@media (max-width: 768px) {
  .pdp {
    height: auto;
    min-height: 100vh;
  }
  .pdp__images {
    position: relative;
    top: auto;
    bottom: auto;
    left: 0;
    height: 60vh;
    margin-top: 80px;
    overflow: hidden;
  }
  .pdp__info {
    position: relative;
    top: auto;
    left: 0;
    bottom: auto;
    width: 100%;
    height: auto;
    border-radius: 0;
    background: rgba(255,255,255,0.92);
    padding: 24px var(--page-pad);
  }
  .pdp__price-sizes {
    flex-wrap: wrap;
    gap: 12px;
  }
  .pdp__add-btn {
    width: 100%;
    height: auto;
    padding: 14px 24px;
  }
}

/* ── Lower section — detail images, reverse marquee ── */
.pdp-lower {
  position: relative;
  background: #fff;
  height: calc(100vh - 97px);
  overflow: hidden;
}

.pdp-lower__images {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pdp-lower__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes pdp-lower-scroll {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.pdp-lower__image {
  flex-shrink: 0;
  height: 100%;
}

.pdp-lower__image img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .pdp-lower {
    height: 60vh;
  }
}

/* ── Related Products — marquee, shorter than main ── */
.pdp-related {
  background: #fff;
  padding: 36px 0 60px;
}

.pdp-related__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  padding: 0 36px 20px;
}

.pdp-related__images {
  position: relative;
  overflow: hidden;
  height: 589px;
}

.pdp-related__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes related-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.pdp-related__image {
  flex-shrink: 0;
  height: 100%;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.pdp-related__image img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: cover;
}

/* Hover: pause + blur/fade non-hovered, same as lookbook */
.pdp-related__track:hover {
  animation-play-state: paused;
}

.pdp-related__track:hover .pdp-related__image {
  filter: blur(5px);
  opacity: 0.34;
}

.pdp-related__track:hover .pdp-related__image:hover {
  filter: none;
  opacity: 1;
}

/* Sold-out search trending card */
.search-overlay__product {
  position: relative;
}
.search-overlay__product-img {
  position: relative;
}
.search-overlay__sold-out-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 768px) {
  .pdp-related__images {
    height: 320px;
  }
}

/* ═══════════════════════════════════════
   LIST-COLLECTIONS PAGE
   ═══════════════════════════════════════ */

/* ── Hero split — two 4:5 panels ── */
.lc-hero {
  display: flex;
  width: 100%;
  height: 100vh;
}

.lc-hero__panel {
  position: relative;
  flex: 1;
  display: block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.lc-hero__image {
  width: 100%;
  height: 100%;
}

.lc-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.lc-hero__panel:hover .lc-hero__image img {
  transform: scale(1.03);
}

.lc-hero__info {
  position: absolute;
  bottom: 36px;
  left: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  mix-blend-mode: difference;
  font-family: var(--font-body);
}

.lc-hero__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lc-hero__year {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.lc-hero__desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 280px;
  opacity: 0.8;
}

/* ── Lookbook marquee sections ── */
.lc-lookbook {
  background: #fff;
  padding: 16px 0 20px;
}

.lc-lookbook__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  padding: 0 36px 10px;
}

.lc-lookbook__images {
  position: relative;
  overflow: hidden;
  height: 589px;
}

.lc-lookbook__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: max-content;
}

.lc-lookbook__track--left,
.lc-lookbook__track--right {
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes lc-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes lc-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.lc-lookbook__card {
  flex-shrink: 0;
  height: 100%;
  display: block;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.lc-lookbook__card img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: cover;
}

/* Hover: pause + blur/fade, same as main lookbook */


.lc-lookbook__track:hover .lc-lookbook__card {
  filter: blur(5px);
  opacity: 0.34;
}

.lc-lookbook__track:hover .lc-lookbook__card:hover {
  filter: none;
  opacity: 1;
}

/* ── Home collection — left half ── */
.lc-home {
  display: flex;
  width: 100%;
  height: 100vh;
}

.lc-home__panel {
  position: relative;
  flex: 0 0 50%;
  display: block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.lc-home__image {
  width: 100%;
  height: 100%;
}

.lc-home__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.lc-home__panel:hover .lc-home__image img {
  transform: scale(1.03);
}

.lc-home__info {
  position: absolute;
  bottom: 36px;
  left: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  mix-blend-mode: difference;
  font-family: var(--font-body);
}

.lc-home__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lc-home__year {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.lc-home__desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 280px;
  opacity: 0.8;
}

.lc-home__empty {
  flex: 0 0 50%;
  background: #fff;
}

/* ── Home mobile-only products — hidden on desktop; shown via mobile.css ── */
.home-mobile-products { display: none; }

/* ── Hero mobile-only CTAs — hidden on desktop; shown via mobile.css ── */
.hero__ctas-mobile { display: none; }

/* ── Mobile fullscreen CTA sections — hidden on desktop; shown via mobile.css ── */
.home-mobile-fullscreen-cta { display: none; }

/* ── PDP mobile gallery controls — hidden on desktop ── */
.pdp__gallery-arrow,
.pdp__gallery-dots { display: none; }

/* ── Mobile-only related products section — hidden on desktop ── */
.pdp-related-mobile { display: none; }

/* ── Collections page product grid ── */
.lc-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  color: #000;
  margin-top: 80px;
}

.lc-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.lc-product-card__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.lc-product-card__image .cc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.6s ease;
}

.lc-product-card__image .cc-img--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-fit: contain;
  object-position: center;
}

/* diagonal wave */
.lc-product-card.cc-show-secondary .cc-img--primary {
  opacity: 0;
}

.lc-product-card.cc-show-secondary .cc-img--secondary {
  opacity: 1;
}

.lc-product-card:hover .lc-product-card__image .cc-img {
  transform: scale(1.03);
}

/* Sold-out lc-product-card */
.lc-product-card__sold-out-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  text-transform: uppercase;
  z-index: 2;
}

.lc-product-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 28px;
  font-family: var(--font-body);
  text-align: center;
  align-items: center;
}

.lc-product-card__name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lc-product-card__price {
  font-size: 13px;
  font-weight: 400;
  color: #666;
}

@media (max-width: 1024px) {
  .lc-products { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .lc-products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .lc-products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .lc-hero {
    flex-direction: column;
    height: auto;
  }
  .lc-hero__panel {
    aspect-ratio: 4/5;
  }
  .lc-lookbook__images {
    height: 320px;
  }
  .lc-lookbook__track--left,
  .lc-lookbook__track--right {
    /* speed set by JS */
  }
  .lc-home {
    flex-direction: column;
    height: auto;
  }
  .lc-home__panel {
    flex: none;
    width: 100%;
    aspect-ratio: 4/5;
  }
  .lc-home__empty {
    display: none;
  }
}

/* ═══════════════════════════════════════
   CAMPAIGNS PAGE — panel rows
   ═══════════════════════════════════════ */

.campaigns-page {
  padding-top: 0;
}

.camp-row {
  display: flex;
  width: 100%;
  height: 100vh;
}

.camp-panel {
  position: relative;
  flex: 1;
  display: block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.camp-panel--empty {
  flex: 1;
  background: #fff;
}

.camp-panel__image {
  width: 100%;
  height: 100%;
}

.camp-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.camp-panel:hover .camp-panel__image img {
  transform: scale(1.03);
}

.camp-panel__info {
  position: absolute;
  bottom: 36px;
  left: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  mix-blend-mode: difference;
  font-family: var(--font-body);
}

.camp-panel__info--dark {
  color: #000;
  mix-blend-mode: normal;
}

.camp-panel__info--white {
  color: #fff;
  mix-blend-mode: normal;
}

.camp-panel__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.camp-panel__year {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.camp-panel__desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 280px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .camp-row {
    flex-direction: column;
    height: auto;
  }
  .camp-panel {
    aspect-ratio: 4/5;
  }
  .camp-panel--empty {
    display: none;
  }
}

/* ═══════════════════════════════════════
   CAMPAIGN DETAIL — Pinterest masonry
   ═══════════════════════════════════════ */

.campaign-detail {
  background: #fff;
}

.campaign-detail__hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.campaign-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campaign-detail__hero-info {
  position: absolute;
  bottom: 36px;
  left: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  mix-blend-mode: difference;
}

.campaign-detail__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.campaign-detail__year {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* Masonry — CSS columns for Pinterest effect */
.campaign-detail__masonry {
  column-count: 3;
  column-gap: 0;
  padding: 0;
}

.campaign-detail__masonry img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
  break-inside: avoid;
  background: #111;
}

.campaign-detail__masonry p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  break-inside: avoid;
  margin-bottom: 12px;
  padding: 16px 0;
}

.campaign-detail__masonry h2,
.campaign-detail__masonry h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  break-inside: avoid;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .campaign-detail__masonry {
    column-count: 2;
    padding: 16px;
  }
  .campaign-detail__hero {
    height: 50vh;
  }
}

/* ═══════════════════════════════════════
   EVENT DETAIL — full-width stacked cells
   (each image / video occupies a single full-width row)
   ═══════════════════════════════════════ */

.event-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #000;
}

.event-detail-stack img,
.event-detail-stack video {
  width: 100%;
  height: auto;
  display: block;
  background: #111;
}

.event-detail-stack__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.event-detail-stack__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Grid variant: N-column layout for event detail pages */
.event-detail-grid {
  display: grid;
  gap: 0;
  background: #000;
}

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

.event-detail-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 2;
  background: #111;
}

@media (max-width: 768px) {
  .event-detail-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   EVENTS PAGE — stacked 16:9 panels
   ═══════════════════════════════════════ */

.events-page {
  display: flex;
  flex-direction: column;
}

.event-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.event-masonry {
  column-count: 3;
  column-gap: 4px;
  padding: 4px 0;
}

.event-masonry img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 4px;
  break-inside: avoid;
  background: #111;
}

@media (max-width: 768px) {
  .event-masonry {
    column-count: 2;
  }
}

.event-panel__image {
  width: 100%;
  height: 100%;
}

.event-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.event-panel:hover .event-panel__image img {
  transform: scale(1.03);
}


.event-panel__info {
  position: absolute;
  bottom: 36px;
  left: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  mix-blend-mode: difference;
  font-family: var(--font-body);
}

.event-panel__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-panel__year {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.event-panel__desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 360px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .event-panel {
    aspect-ratio: 4/3;
  }
}

/* Campaigns, campaign-detail, events pages: transparent header */
.template-page-campaigns .site-header,
.template-page-campaign-detail .site-header,
.template-page-events .site-header {
  background: transparent !important;
  color: #fff !important;
}
.template-page-campaigns .site-header img,
.template-page-campaign-detail .site-header img,
.template-page-events .site-header img {
  filter: none !important;
}

/* ── List-collections page: transparent header over hero ── */
.template-list-collections #main {
  background: #fff;
}

.template-list-collections .site-header {
  background: transparent !important;
  color: #fff !important;
}

.template-list-collections .site-header img {
  filter: none !important;
}

/* ── Product + Collection pages: solid white header ── */
.template-product .site-header,
.template-page-product .site-header,
.template-collection .site-header {
  background: #fff !important;
  color: #000 !important;
}

.template-product .site-header img,
.template-page-product .site-header img,
.template-collection .site-header img {
  filter: invert(1) !important;
}

/* ── Draggable carousels ── */
.lookbook__track,
.campaign__track,
.pdp__track,
.pdp-lower__track,
.pdp-related__track {
  cursor: grab;
}

.lookbook__track.is-dragging,
.campaign__track.is-dragging,
.pdp__track.is-dragging,
.pdp-lower__track.is-dragging,
.pdp-related__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

/* Prevent native image drag interfering */
.lookbook__track img,
.campaign__track img,
.pdp__track img,
.pdp-lower__track img,
.pdp-related__track img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════ */

.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lb-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.lb-img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s ease;
}

.lb-img--fade {
  opacity: 0;
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #000;
  font-size: 36px;
  padding: 20px 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  line-height: 1;
}

.lb-arrow:hover {
  opacity: 1;
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  padding: 8px;
  line-height: 1;
}

.lb-close:hover {
  opacity: 1;
}

.lb-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-family: var(--font-body);
  font-size: 14px;
  opacity: 0.5;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════ */

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: all;
}

/* Backdrop */
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  background: rgba(0, 0, 0, 0.4);
}

/* Sliding panel */
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #000;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

/* Header */
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px 24px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cart-drawer__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(0,0,0,0.45);
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #000;
  padding: 4px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.cart-drawer__close:hover {
  opacity: 0.4;
}

/* Hide column headers */
.cart-drawer__col-headers {
  display: none !important;
}

/* Items scroll area */
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 0 36px;
}

.cart-drawer__empty {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(0,0,0,0.25);
  text-align: center;
  padding: 80px 0;
}

/* Single item row */
.cart-drawer__item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}

.cart-drawer__item-image {
  width: 100px;
  aspect-ratio: 4 / 5;
  height: auto;
  background: #f5f5f5;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-drawer__item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.cart-drawer__item-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #000;
}

.cart-drawer__item-variant {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.4);
}

.cart-drawer__item-remove {
  background: none;
  border: none;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: rgba(0,0,0,0.3);
  padding: 0;
  text-decoration: none;
  margin-top: 10px;
  align-self: start;
  transition: color 0.2s ease;
}

.cart-drawer__item-remove:hover {
  color: #000;
}

.cart-drawer__item-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding-top: 2px;
  text-align: right;
  color: #000;
  white-space: nowrap;
}

/* Footer */
.cart-drawer__footer {
  flex-direction: column;
  gap: 0;
  padding: 0 36px 32px;
  flex-shrink: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  padding: 24px 0 10px;
}

.cart-drawer__taxes {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.35);
  padding-bottom: 20px;
}

.cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 18px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.16em;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.cart-drawer__checkout:hover {
  opacity: 0.85;
}

.cart-drawer__panel-footer {
  display: none;
}

/* Zellerfeld custom fit notice */
.cart-drawer__zf-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cart-drawer__zf-notice-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.5);
  line-height: 1.4;
}

.cart-drawer__zf-notice-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .cart-drawer__panel {
    width: 100%;
  }
  .cart-drawer__header,
  .cart-drawer__items,
  .cart-drawer__footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */

.legal {
  background: #fff;
  color: #000;
  padding-top: var(--header-bottom, 80px);
}

.legal__body {
  padding: 60px var(--page-pad) 100px;
  font-family: var(--font-body);
}

.legal__title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.legal__updated {
  font-size: 13px;
  color: #999;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal__body h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 36px 0 10px;
}

.legal__body h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 20px 0 8px;
}

.legal__body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.legal__body ul {
  margin: 0 0 16px 20px;
}

.legal__body li {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 4px;
}

.legal__body a {
  color: #000;
  text-decoration: underline;
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13px;
}

.legal__table th,
.legal__table td {
  text-align: left;
  padding: 10px 16px;
  border: 1px solid #e0e0e0;
  color: #333;
}

.legal__table th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f5f5f5;
  color: #000;
}

.template-page-legal .site-header {
  background: #fff !important;
  color: #000 !important;
}

.template-page-legal .site-header img {
  filter: invert(1) !important;
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  color: #fff;
  z-index: 9999;
  padding: 16px var(--page-pad);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__link {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: 33px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.cookie-banner__btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
}

.cookie-banner__btn--filled {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

.cookie-banner__btn:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════ */

.cart-page {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
}
.cart-page__title {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.02em;
  padding: 0 var(--page-pad) 40px;
}
.cart-page__items {
  display: flex;
  flex-direction: column;
  padding: 0 var(--page-pad);
}
.cart-page__item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cart-page__item-image {
  width: 100px;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0a0a0a;
}
.cart-page__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-page__item-title {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
}
.cart-page__item-variant {
  margin-top: 4px;
  opacity: 0.6;
}
.cart-page__item-price {
  margin-top: 8px;
  opacity: 0.8;
}
.cart-page__qty-input {
  width: 60px;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 8px;
}
.cart-page__footer {
  padding: 40px var(--page-pad) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.cart-page__subtotal {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 24px;
}
.cart-page__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cart-page__actions button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 33.5px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.cart-page__actions button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.cart-page__empty {
  padding: 80px var(--page-pad);
  text-align: center;
}

@media (max-width: 768px) {
  .cart-page__item {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }
  .cart-page__item-quantity,
  .cart-page__item-total {
    grid-column: 2;
  }
  .cart-page__footer {
    align-items: stretch;
  }
}

/* ═══════════════════════════════════════
   PAGE CONTENT
   ═══════════════════════════════════════ */

.page-content {
  padding: calc(var(--nav-height) + 40px) var(--page-pad) 60px;
}
.page-content__title {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.02em;
  padding-bottom: 40px;
}
.page-content__body {
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
  opacity: 0.85;
}
.page-content__body h2,
.page-content__body h3 {
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 12px;
}
.page-content__body p {
  margin-bottom: 16px;
}
.page-content__body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════
   INFO PAGES (Help Center, Press, Blog)
   ═══════════════════════════════════════ */

.info-page {
  background: #fff;
  color: #000;
  padding-top: var(--header-bottom, 80px);
}

.info-page__body {
  max-width: 75%;
  padding: 32px var(--page-pad) 16px;
  font-family: var(--font-body);
}

.info-page__label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000;
  margin-bottom: 20px;
  display: block;
}

.info-page__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000;
  margin-bottom: 20px;
  display: block;
}

.info-page__section {
  margin-top: 16px;
}

.info-page__section p {
  font-size: 13px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 8px;
}

.info-page__section a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-page__faq {
  margin-bottom: 16px;
}

.info-page__faq h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.info-page__faq p {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
}

.info-page__list {
  margin: 0 0 12px 16px;
  list-style: disc;
}

.info-page__list li {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2px;
}

/* ── About page — team row ── */

.about__team {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  font-size: 12px;
  color: #555;
}

.about__team-member {
  white-space: nowrap;
}

.about__team-member strong {
  color: #000;
  font-weight: 400;
}

.about__large {
  font-size: clamp(18px, 2.8vw, 32px);
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  max-width: 900px;
  margin-bottom: 24px;
}

/* Header dark text on info pages */
.template-page-press .site-header,
.template-page-contact .site-header,
.template-page-newsletter .site-header,
.template-page-about .site-header,
.template-page-image-bank .site-header {
  background: #fff !important;
  color: #000 !important;
}

.template-page-press .site-header img,
.template-page-contact .site-header img,
.template-page-newsletter .site-header img,
.template-page-about .site-header img,
.template-page-image-bank .site-header img {
  filter: invert(1) !important;
}

/* ── Help Center ── */

.template-page-help-center #main {
  background: #fff;
}

.hc-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hc-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hc-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 560px;
  padding: 0 24px;
}

.hc-hero__label {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.hc-hero__search {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #fff;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hc-hero__search::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hc-hero__search:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

.hc-categories {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hc-cat {
  flex-shrink: 0;
  padding: 20px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  border: none;
  border-right: 1px solid #e0e0e0;
  background: #fff;
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.hc-cat:hover {
  background: #f5f5f5;
}

.hc-faq {
  padding: 0 var(--page-pad) 80px;
  background: #fff;
}

.hc-section {
  border-bottom: 1px solid #e0e0e0;
  padding: 48px 0;
}

.hc-section:last-child {
  border-bottom: none;
}

.hc-section__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  margin: 0 0 24px;
}

.hc-item {
  border-top: 1px solid #e0e0e0;
}

.hc-item:first-of-type {
  border-top: none;
}

.hc-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  gap: 16px;
}

.hc-item summary::-webkit-details-marker {
  display: none;
}

.hc-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #000;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hc-item[open] summary::after {
  transform: rotate(45deg);
}

.hc-item__q {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}

.hc-item__a {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.hc-item__a p {
  margin-bottom: 10px;
}

.hc-item__a ul {
  margin: 8px 0 10px 20px;
}

.hc-item__a li {
  margin-bottom: 4px;
}

.hc-item__a a {
  color: #000;
  text-decoration: underline;
}

.hc-contact__text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.hc-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 33px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hc-contact__btn:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .hc-hero { height: 280px; }
  .hc-cat { padding: 16px 20px; font-size: 11px; }
  .hc-faq { padding: 0 var(--page-pad) 60px; }
}

/* ── Image Bank ── */

.ib-page {
  background: #fff;
  color: #000;
  padding-top: var(--header-bottom, 80px);
}

.ib-header {
  padding: 48px var(--page-pad) 32px;
  border-bottom: 1px solid #e0e0e0;
}

.ib-header__title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.ib-header__sub {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.ib-header__sub a {
  color: #000;
  text-decoration: underline;
}

.ib-section {
  padding: 40px var(--page-pad) 0;
}

.ib-section__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

/* Collapsible campaign sections (Image Bank) */
.ib-section--collapsible {
  padding-top: 0;
}

.ib-section--collapsible summary.ib-section__title {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 32px;
  margin-bottom: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  user-select: none;
}

.ib-section--collapsible summary.ib-section__title::-webkit-details-marker {
  display: none;
}

.ib-section--collapsible summary.ib-section__title::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: #999;
  transition: transform 0.2s ease;
}

.ib-section--collapsible[open] summary.ib-section__title::after {
  transform: translateY(-50%) rotate(45deg);
}

.ib-section--collapsible[open] .ib-grid {
  margin-top: 20px;
}

.ib-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

.ib-grid--logos {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
}

.ib-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 4 / 5;
  text-decoration: none;
}

.ib-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.ib-item:hover img {
  transform: scale(1.03);
}

.ib-item__dl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 12px;
  transform: translateY(100%);
  transition: transform 0.2s ease;
  text-align: center;
}

.ib-item:hover .ib-item__dl {
  transform: translateY(0);
}

.ib-item--logo {
  aspect-ratio: auto;
}

.ib-item__logo-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  aspect-ratio: 4 / 3;
}

.ib-item__logo-bg--white {
  background: #fff;
  border: 1px solid #e0e0e0;
}

.ib-item__logo-bg--black {
  background: #000;
}

.ib-item__logo-bg img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.ib-footer-note {
  padding: 40px var(--page-pad) 80px;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
}

.ib-footer-note p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.ib-footer-note a {
  color: #000;
  text-decoration: underline;
}

.template-page-image-bank .site-header {
  background: #fff !important;
  color: #000 !important;
}

.template-page-image-bank .site-header img {
  filter: invert(1) !important;
}

@media (max-width: 1024px) {
  .ib-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .ib-grid { grid-template-columns: repeat(3, 1fr); }
  .ib-grid--logos { grid-template-columns: 1fr 1fr; max-width: 100%; }
}

@media (max-width: 480px) {
  .ib-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Press Page — two-column list ── */

.press-list {
  display: flex;
  flex-direction: column;
}

.press-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  text-decoration: none;
  color: #000;
  transition: opacity 0.2s ease;
}

.press-row:first-child {
  border-top: 1px solid #eee;
}

.press-row:hover {
  opacity: 0.5;
}

.press-row__name {
  font-weight: 400;
}

.press-row__year {
  color: #999;
  font-size: 12px;
}

/* ── Simple row list (campaigns, etc.) ── */

.simple-list {
  display: flex;
  flex-direction: column;
}

.simple-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  gap: 24px;
}

.simple-row:first-child {
  border-top: 1px solid #eee;
}

.simple-row a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 12px;
}

.simple-row a:hover {
  opacity: 0.5;
}

.simple-row__name {
  font-weight: 400;
}

.simple-row__detail {
  color: #999;
  font-size: 12px;
  white-space: nowrap;
}

/* ── Image Bank Page ── */

.image-bank {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.image-bank__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.image-bank__placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  background: #eee;
}

.image-bank__placeholder--dark {
  background: #222;
}

.image-bank__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #999;
}

@media (max-width: 600px) {
  .image-bank {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════
   BLOG LISTING — editorial card grid
   ═══════════════════════════════════════ */

.blog-listing {
  background: #000;
  min-height: 100vh;
}

.blog-listing__header {
  padding: 80px 40px 48px;
  border-bottom: 1px solid #1a1a1a;
}

.blog-listing__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.blog-listing__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.blog-listing__empty {
  padding: 80px 40px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Grid */
.blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1a1a1a; /* gap colour */
}

/* Card */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #0c0c0c;
  padding: 28px 28px 0;
  text-decoration: none;
  color: #fff;
  transition: background 0.25s ease;
  overflow: hidden;
}

.blog-card:hover {
  background: #141414;
}

/* Top row — date + dot */
.blog-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blog-card__date {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.blog-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* Title */
.blog-card__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #fff;
}

/* Excerpt */
.blog-card__excerpt {
  font-size: 11px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  flex: 1;
  margin-bottom: 28px;
}

/* Image at bottom */
.blog-card__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 0 -28px; /* bleed to card edges */
  flex-shrink: 0;
}

.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image-wrap img {
  transform: scale(1.03);
}

/* Overlay on image */
.blog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0.15) 65%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 24px;
}

.blog-card__overlay-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 70%;
}

.blog-card__overlay-brand {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
}

.blog-card__overlay-title {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.4vw, 22px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
}

.blog-card__see-more {
  font-size: 11px;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.6);
  align-self: flex-end;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 960px) {
  .blog-listing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-listing__header {
    padding: 48px 20px 32px;
  }
  .blog-listing__grid {
    grid-template-columns: 1fr;
  }
  .blog-card {
    padding: 24px 20px 0;
  }
  .blog-card__image-wrap {
    margin: 0 -20px;
  }
}

/* ═══════════════════════════════════════
   ARTICLE PAGE — full reading layout
   ═══════════════════════════════════════ */

.article-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
}

/* Hero */
.article-page__hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
}

@media (max-width: 768px) {
  .article-page__hero {
    aspect-ratio: 4/3;
  }
}

.article-page__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 30%, rgba(0,0,0,0.1) 70%, transparent);
  display: flex;
  align-items: flex-end;
}

.article-page__hero-inner {
  padding: 48px 60px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-page__hero-date {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.article-page__hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 72px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

/* Body */
.article-page__body {
  padding: 60px 80px 100px;
}

.article-page__back {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-page__back:hover {
  color: #fff;
}

.article-page__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 12px;
}

.article-page__date {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* Content */
.article-page__content {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
}

.article-page__content h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 48px 0 16px;
}

.article-page__content h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin: 32px 0 10px;
}

.article-page__content p {
  margin-bottom: 20px;
}

.article-page__content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 36px 0;
}

.article-page__content a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.article-page__content a:hover {
  opacity: 1;
}

.article-page__content blockquote {
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

/* Campaign image gallery */
.article-page__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 60px;
}

.article-page__gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .article-page__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .article-page__gallery {
    grid-template-columns: 1fr;
  }
}

/* Prev / Next nav */
.article-page__nav {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid #1e1e1e;
}

.article-page__nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  max-width: 45%;
  transition: opacity 0.2s ease;
}

.article-page__nav-link:hover {
  opacity: 0.6;
}

.article-page__nav-link--next {
  align-items: flex-end;
  margin-left: auto;
}

.article-page__nav-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.article-page__nav-title {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .article-page__hero-inner {
    padding: 28px 20px;
  }
  .article-page__body {
    padding: 40px 20px 80px;
  }
  .article-page__nav {
    flex-direction: column;
    gap: 24px;
  }
  .article-page__nav-link {
    max-width: 100%;
  }
  .article-page__nav-link--next {
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════
   SEARCH OVERLAY
   ═══════════════════════════════════════ */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
}

.search-overlay__panel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.search-overlay__top {
  display: flex;
  justify-content: flex-end;
  padding: 36px 0 24px;
}

.search-overlay__close {
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  padding: 0;
}

.search-overlay__close:hover {
  opacity: 1;
}

.search-overlay__body {
  flex: 1;
  padding-bottom: 60px;
}

.search-overlay__form {
  margin-bottom: 48px;
}

.search-overlay__input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 16px 0;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-overlay__input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* Hide native clear button in search inputs */
.search-overlay__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.search-overlay__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.search-overlay__products {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.search-overlay__products::-webkit-scrollbar {
  display: none;
}

.search-overlay__product {
  flex-shrink: 0;
  width: 140px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.search-overlay__product:hover {
  opacity: 0.7;
}

.search-overlay__product-img {
  width: 140px;
  height: 175px;
  background: #111;
  overflow: hidden;
}

.search-overlay__product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-overlay__product-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
}

.search-overlay__product-price {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  opacity: 0.5;
  text-align: center;
}

.search-overlay__no-results {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .search-overlay__input {
    font-size: 20px;
  }
  .search-overlay__product {
    width: 110px;
  }
  .search-overlay__product-img {
    width: 110px;
    height: 138px;
  }
}

/* ═══════════════════════════════════════
   NEWSLETTER POPUP
   ═══════════════════════════════════════ */

.newsletter-popup {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 150;
  width: 360px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.newsletter-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.newsletter-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.newsletter-popup__close:hover {
  color: #fff;
}

.newsletter-popup__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.newsletter-popup__title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.1;
}

.newsletter-popup__desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 24px;
}

.newsletter-popup__field {
  display: flex;
  gap: 0;
}

.newsletter-popup__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-popup__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-popup__input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-popup__btn {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.newsletter-popup__btn:hover {
  opacity: 0.85;
}

.newsletter-popup__legal {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 12px;
  line-height: 1.5;
}

.newsletter-popup__success {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .newsletter-popup {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════ */

.contact-form {
  margin-top: 32px;
  max-width: 600px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-form__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000;
}

.contact-form__input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-family: var(--font-body);
  font-size: 14px;
  color: #000;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.contact-form__input:focus {
  border-bottom-color: #000;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__btn {
  background: #000;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s ease;
}

.contact-form__btn:hover {
  opacity: 0.8;
}

.contact-form__success {
  color: #000;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 20px 0;
}

.contact-form__error {
  color: #c00;
  font-family: var(--font-body);
  font-size: 13px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ═══════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════ */

.page-404__search {
  max-width: 400px;
  margin: 32px 0;
}

.page-404__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.page-404__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.page-404__link:hover {
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE OVERRIDES
   Desktop styles are never modified here.
   Breakpoints:
     768px  tablet / large phone landscape
     480px  standard phone (375–480px viewport)
     375px  small phone
   ═══════════════════════════════════════════════════════════ */

/* ── Global tokens ── */
@media (max-width: 480px) {
  :root {
    --page-pad: 16px;
    --nav-height: 64px;
  }
  body {
    font-size: 15px;
  }
}

/* Prevent horizontal overflow sitewide */
@media (max-width: 768px) {
  body { overflow-x: hidden; }
}

/* ── Header ── */
@media (max-width: 480px) {
  .site-header {
    padding: 14px var(--page-pad);
  }
  .site-header__logo img {
    height: 18px;
  }
  .site-header__menu-toggle {
    padding: 6px;
  }
}

/* ── Section bar ── */
@media (max-width: 480px) {
  .section-bar--bottom { bottom: 12px; }
  .section-bar--top    { top: 12px; }
  .section-bar__center a {
    font-size: 13px;
    gap: 10px;
  }
}

/* ── Mobile nav overlay ── */
@media (max-width: 480px) {
  .mobile-nav__inner { gap: 20px; }
  .mobile-nav__link  { font-size: 20px; }
  .mobile-nav__sub-link { font-size: 15px; }
  .mobile-nav__actions { gap: 12px; margin-top: 16px; }
}

/* ── Hero ── */
@media (max-width: 768px) {
  /* Use svh so mobile browser chrome doesn't crop the bottom */
  .hero { height: 100svh; }
}
@media (max-width: 480px) {
  .hero__wordmark img  { width: 70vw; }
  .hero__headline img  { width: 90vw; }
}

/* ── Lookbook ── */
@media (max-width: 768px) {
  .lookbook           { height: 72vh; }
  .lookbook__images   { padding: 60px 0 80px; }
}
@media (max-width: 480px) {
  .lookbook           { height: 58vh; }
  .lookbook__images   { padding: 60px 0 80px; }
  .lookbook__item-title { font-size: 11px; letter-spacing: 0.02em; }
  .lookbook__item-price { font-size: 14px; }
}

/* ── Campaign (collection cards strip) ── */
@media (max-width: 768px) {
  .campaign { height: 72vh; }
}
@media (max-width: 480px) {
  .campaign { height: 58vh; }
  .campaign__card-info { bottom: 16px; left: 14px; gap: 2px; }
  .campaign__card-title { font-size: 14px; }
  .campaign__card-year  { font-size: 10px; }
  .campaign__card-desc  { font-size: 9px; }
  .campaign__card-cta   { font-size: 9px; }
}

/* ── PDP (product page) ── */
@media (max-width: 480px) {
  .pdp__images {
    height: 52vh;
    margin-top: 64px;
  }
  .pdp__info {
    padding: 20px var(--page-pad) 32px;
  }
  .pdp__title {
    font-size: 20px;
    letter-spacing: 0.01em;
    line-height: 1.15;
  }
  .pdp__price {
    font-size: 16px;
  }
  .pdp__sizes {
    gap: 6px;
    flex-wrap: wrap;
  }
  .pdp__size-btn {
    font-size: 12px;
    padding: 8px 10px;
    min-width: 36px;
  }
  .pdp__add-btn {
    font-size: 15px;
    padding: 12px 20px;
    letter-spacing: 0.05em;
  }
  .pdp-lower {
    height: 50vh;
  }
  .pdp-related {
    padding: 24px 0 40px;
  }
  .pdp-related__title {
    font-size: 12px;
    padding: 0 var(--page-pad);
    margin-bottom: 16px;
  }
}

/* ── Collection page ── */
@media (max-width: 768px) {
  .collection-page__layout { padding: 0 24px; }
  .collection-grid          { gap: 6px; }
}
@media (max-width: 480px) {
  .collection-page          { padding-bottom: 48px; }
  .collection-page__layout  { padding: 0 var(--page-pad); gap: 20px; }
  .collection-sidebar       { margin-bottom: 16px; }
  .collection-sidebar__title      { font-size: 13px; margin-bottom: 12px; }
  .collection-sidebar__toggle-row { font-size: 13px; }
  .collection-grid          { gap: 4px; }
  .collection-card__name    { font-size: 12px; letter-spacing: 0.01em; }
  .collection-card__type    { font-size: 10px; }
  .collection-card__price   { font-size: 14px; }
  .collection-card__badge   { font-size: 9px; padding: 3px 8px; }
}

/* ── Collections listing (list-collections) ── */
@media (max-width: 768px) {
  .lc-hero             { height: 55vh; }
  .lc-hero__title      { font-size: clamp(24px, 8vw, 56px); }
  .lc-marquee-section  { height: 55vh; }
  .lc-home             { min-height: 50vh; }
}
@media (max-width: 480px) {
  .lc-hero             { height: 45vh; }
  .lc-hero__title      { font-size: clamp(20px, 7vw, 40px); }
  .lc-hero__desc       { font-size: 10px; }
  .lc-hero__cta        { font-size: 10px; padding: 8px 20px; }
  .lc-marquee-section  { height: 45vh; }
  .lc-home             { min-height: 40vh; }
}

/* ── Footer ── */
@media (max-width: 768px) {
  .site-footer         { padding-top: 32px; }
  .site-footer__content { gap: 20px; }
}
@media (max-width: 480px) {
  .site-footer         { padding-top: 24px; }
  .site-footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  .site-footer__info       { gap: 12px; }
  .site-footer__col-heading { font-size: 13px; margin-bottom: 6px; }
  .site-footer__col-link    { font-size: 12px; }
  .site-footer__newsletter-heading { font-size: 14px; }
  .site-footer__newsletter-text    { font-size: 12px; }
  .site-footer__perks      { font-size: 13px; }
  .site-footer__signup-btn { font-size: 13px; padding: 8px 18px; }
  .site-footer__legal      { padding: 12px var(--page-pad); }
  .site-footer__legal-text { font-size: 10px; }
  .site-footer__logo-bottom img { max-height: 80px; }
}

/* ── Cart drawer ── */
@media (max-width: 480px) {
  .cart-drawer__header  { padding: 16px var(--page-pad); }
  .cart-drawer__title   { font-size: 14px; }
  .cart-drawer__items   { padding: 0 var(--page-pad); }
  .cart-drawer__item {
    grid-template-columns: 88px 1fr auto;
    gap: 10px;
    padding: 12px 0;
  }
  .cart-drawer__item-image { width: 88px; height: auto; aspect-ratio: 4 / 5; }
  .cart-drawer__item-title   { font-size: 13px; }
  .cart-drawer__item-variant { font-size: 11px; }
  .cart-drawer__item-price   { font-size: 13px; }
  .cart-drawer__footer { padding: 16px var(--page-pad) 28px; }
  .cart-drawer__subtotal-label { font-size: 13px; }
  .cart-drawer__subtotal-price { font-size: 13px; }
  .cart-drawer__checkout-btn   { font-size: 14px; padding: 14px; }
}

/* ── Blog listing ── */
@media (max-width: 768px) {
  .blog-listing__header { padding: 56px 24px 36px; }
  .blog-listing__title  { font-size: clamp(28px, 7vw, 64px); }
  .blog-listing__grid   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .blog-listing__header { padding: 48px var(--page-pad) 28px; }
  .blog-listing__label  { font-size: 9px; margin-bottom: 8px; }
  .blog-listing__title  { font-size: clamp(22px, 6vw, 44px); }
  .blog-card            { padding: 20px var(--page-pad) 0; }
  .blog-card__image-wrap { margin: 0 calc(-1 * var(--page-pad)); }
  .blog-card__top       { margin-bottom: 14px; }
  .blog-card__date      { font-size: 10px; }
  .blog-card__title     { font-size: clamp(17px, 5vw, 26px); margin-bottom: 14px; }
  .blog-card__excerpt   { font-size: 11px; line-height: 1.7; margin-bottom: 20px; }
  .blog-card__overlay   { padding: 14px 16px; }
  .blog-card__overlay-title { font-size: clamp(11px, 3.5vw, 18px); }
  .blog-card__see-more  { font-size: 10px; }
}

/* ── Article page ── */
@media (max-width: 768px) {
  .article-page__hero   { aspect-ratio: 3/2; }
  .article-page__hero-inner { padding: 32px 24px; gap: 8px; }
  .article-page__hero-title { font-size: clamp(22px, 5vw, 56px); }
}
@media (max-width: 480px) {
  .article-page__hero   { aspect-ratio: 4/3; }
  .article-page__hero-inner { padding: 20px var(--page-pad); gap: 6px; }
  .article-page__back   { font-size: 9px; }
  .article-page__hero-date  { font-size: 9px; }
  .article-page__hero-title { font-size: clamp(17px, 5.5vw, 36px); line-height: 1.1; }
  .article-page__body   { padding: 32px var(--page-pad) 60px; }
  .article-page__content { font-size: 14px; line-height: 1.82; }
  .article-page__content h2 { font-size: 14px; margin: 32px 0 12px; }
  .article-page__content h3 { font-size: 12px; }
  .article-page__nav    { margin-top: 48px; padding-top: 24px; gap: 20px; }
  .article-page__nav-label { font-size: 9px; }
  .article-page__nav-title  { font-size: 12px; }
}

/* ── Campaign detail pages ── */
@media (max-width: 768px) {
  .campaign-page__header { padding: 88px 24px 32px; }
  .campaign-page__title  { font-size: clamp(28px, 8vw, 72px); }
  .campaign-gallery      { columns: 2; gap: 4px; }
}
@media (max-width: 480px) {
  .campaign-page__header { padding: 80px var(--page-pad) 20px; }
  .campaign-page__title  { font-size: clamp(24px, 7.5vw, 48px); }
  .campaign-page__desc   { font-size: 12px; }
  .campaign-gallery      { columns: 1; }
  .campaign-gallery__item { margin-bottom: 3px; }
}

/* ── Events page ── */
@media (max-width: 768px) {
  .event-panel           { aspect-ratio: 16/9; }
  .event-panel__title    { font-size: 18px; }
}
@media (max-width: 480px) {
  .event-panel           { aspect-ratio: 4/3; }
  .event-panel__info     { padding: 14px; }
  .event-panel__title    { font-size: 16px; letter-spacing: 0.04em; }
  .event-panel__year     { font-size: 10px; }
  .event-panel__desc {
    font-size: 11px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ── Search overlay ── */
@media (max-width: 480px) {
  .search-overlay__panel  { padding: 0 var(--page-pad); }
  .search-overlay__input  { font-size: 18px; padding: 12px 0; }
  .search-overlay__label  { font-size: 10px; }
  .search-overlay__close  { font-size: 12px; }
  .search-overlay__products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .search-overlay__product-title { font-size: 12px; }
  .search-overlay__product-price { font-size: 11px; }
}

/* ── Newsletter popup ── */
@media (max-width: 480px) {
  .newsletter-popup       { padding: 24px var(--page-pad); }
  .newsletter-popup__title { font-size: 18px; letter-spacing: 0.04em; }
  .newsletter-popup__desc  { font-size: 12px; }
  .newsletter-popup__input { font-size: 16px; } /* prevent iOS zoom */
}

/* ── Info pages (about, press, etc.) ── */
@media (max-width: 768px) {
  .info-page__body  { padding: 80px 24px 60px; }
  .info-page__title { font-size: clamp(28px, 7vw, 64px); }
}
@media (max-width: 480px) {
  .info-page__body  { padding: 72px var(--page-pad) 48px; }
  .info-page__title { font-size: clamp(22px, 7vw, 48px); margin-bottom: 20px; }
  .info-page__section h2 { font-size: 13px; }
  .info-page__section p  { font-size: 13px; line-height: 1.7; }
}

/* ── Contact form ── */
@media (max-width: 480px) {
  /* font-size: 16px prevents iOS auto-zoom on input focus */
  .contact-form__input,
  .contact-form__textarea,
  .contact-form__select { font-size: 16px; }
  .contact-form__submit { width: 100%; font-size: 13px; }
  .contact-form__label  { font-size: 11px; }
}

/* ── 404 page ── */
@media (max-width: 480px) {
  .page-404__search input { font-size: 16px; }
  .page-404__links  { margin-top: 24px; gap: 10px; }
  .page-404__link   { font-size: 12px; }
}

/* ── 375px small phones — final tightening ── */
@media (max-width: 375px) {
  :root { --page-pad: 14px; }
  .site-header__logo img    { height: 16px; }
  .mobile-nav__link         { font-size: 18px; }
  .blog-card__title         { font-size: 16px; }
  .article-page__hero-title { font-size: 16px; }
  .pdp__title               { font-size: 18px; }
  .campaign__card-title     { font-size: 12px; }
  .site-footer__content     { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ── Zellerfeld product info ── */
.product-page__zellerfeld {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.product-page__zf-notice {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-page__zf-notice-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
}

.product-page__zf-notice-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.product-page__zf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  width: fit-content;
  transition: border-color 0.2s ease;
}

.product-page__zf-badge:hover {
  border-color: rgba(255,255,255,0.6);
}

.product-page__zf-badge-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
}

.product-page__zf-badge-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}
}

/* ═══════════════════════════════════════
   BACK-TO-TOP BUTTON
   ═══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.back-to-top:hover {
  transform: translateY(-2px);
  background: #000;
}
.back-to-top[hidden] {
  display: none;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
}
