/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  /* Palette */
  --gl-bg:       #fafaf8;
  --gl-bg2:      #f2f0eb;
  --gl-bg3:      #eceae4;
  --gl-ink:      #111111;
  --gl-ink-hover:#333333;
  --gl-muted:    #777777;
  --gl-line:     #dddddd;
  --gl-gold:     #a07840;
  --gl-red:      #c0392b;

  /* Typography */
  --gl-disp:     'Oswald SemiBold', sans-serif;
  --gl-body:     'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  /* Rubel-Zeichen ₽ fallback — DM Sans hat kein U+20BD */
  --gl-currency: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --nav-h:       56px;
  --ticker-h:    36px;

  /* Overlay */
  --gl-overlay-dark: rgba(0, 0, 0, 0.92);
  --gl-overlay-banner: rgba(0, 0, 0, 0.72);
  --gl-overlay-banner-mobile: rgba(0, 0, 0, 0.78);
}

*, *::before, *::after { box-sizing: border-box; }

/* ── Rubel-Zeichen Fallback ───────────────────────────────────────
   DM Sans und Oswald SemiBold enthalten kein ₽ (U+20BD). Dieser
   @font-face lädt für dieses Zeichen die System-Schrift.
   ────────────────────────────────────────────────────────────── */

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gl-line) var(--gl-bg);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--gl-bg);
  color: var(--gl-ink);
  font-family: var(--gl-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.2;
}

p { margin-top: 0; margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }
address { font-style: normal; }

/* Rubel-Zeichen ₽ (U+20BD) — DM Sans fehlt dieses Zeichen.
   Alle Preis-Elemente bekommen einen Fallback-Stack der ₽ korrekt rendert. */
.gl-d-price,
.gl-arrival-price,
.gl-p-price,
.gl-ci-price,
.gl-cs-row-val,
.gl-fav-price,
.gl-co-sum-val,
.gl-co-item-price,
.gl-ci-price-mobile {
  font-family: var(--gl-currency);
}

/* Inline ₽ in beliebigem Kontext */
.gl-rub {
  font-family: var(--gl-currency);
  font-style: normal;
}

.gl-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Webkit scrollbar */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--gl-bg); }
::-webkit-scrollbar-thumb { background: var(--gl-line); }

main#page-home {
  display: block;
  padding-top: calc(var(--nav-h) + var(--ticker-h));
}

/* ══════════════════════════════════════════
   FOCUS STATES
══════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gl-gold);
  outline-offset: 2px;
}
/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-gl-primary {
  background: var(--gl-ink); color: var(--gl-bg);
  border: 1px solid var(--gl-ink);
  font-family: var(--gl-body); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 12px 24px; cursor: pointer;
  border-radius: 0; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-gl-primary:hover {
  background: var(--gl-ink-hover);
  border-color: var(--gl-ink-hover);
  color: var(--gl-bg);
}

.btn-gl-primary--white {
  background: var(--gl-bg); color: var(--gl-ink);
  border-color: var(--gl-bg);
}
.btn-gl-primary--white:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
  color: var(--gl-ink);
}

.btn-gl-outline {
  background: transparent; color: var(--gl-ink);
  border: 1px solid var(--gl-line);
  font-family: var(--gl-body); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 12px 24px; cursor: pointer;
  border-radius: 0; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-gl-outline:hover { border-color: var(--gl-ink); }

/* ══════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════ */
.gl-section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--gl-line);
}
.gl-section-title {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gl-ink);
}
.gl-section-link {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gl-muted); background: none; border: none; cursor: pointer;
  text-decoration: none; transition: color 0.2s;
}
.gl-section-link:hover { color: var(--gl-ink); }

@media (max-width: 767.98px) {
  .gl-section-header { padding: 20px 20px 16px; }
}

/* ══════════════════════════════════════════
   NEW ARRIVALS
══════════════════════════════════════════ */
.gl-arrivals {
  border-bottom: 1px solid var(--gl-line);
  display: flex;
  overflow: hidden;
}
.gl-arrivals-scroll {
  display: flex;
  gap: 0;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.gl-arrivals-scroll::-webkit-scrollbar { display: none; }

.gl-arrivals[data-arrivals-slider] {
  position: relative;
}
.gl-arrivals-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background: rgba(250, 250, 248, 0.92);
  border: 1px solid var(--gl-line);
  color: var(--gl-ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  z-index: 3;
  padding: 0;
}
.gl-arrivals-control:hover {
  background: var(--gl-bg);
  color: var(--gl-ink);
  border-color: var(--gl-ink);
}
.gl-arrivals-control:disabled {
  opacity: 0.35;
  pointer-events: none;
}
.gl-arrivals-control--prev { left: 12px; }
.gl-arrivals-control--next { right: 12px; }
.gl-arrivals-control svg {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .gl-arrivals-control {
    width: 38px;
    height: 38px;
  }
  .gl-arrivals-control--prev { left: 8px; }
  .gl-arrivals-control--next { right: 8px; }
}

.gl-arrival-card {
  flex-shrink: 0; width: 220px;
  border-right: 1px solid var(--gl-line);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.gl-arrival-card:last-child { border-right: none; }

.gl-arrival-card > a {
  display: flex; flex-direction: column; flex: 1;
  text-decoration: none; color: inherit;
}

.gl-arrival-img {
  height: 280px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--gl-line);
}
.gl-arrival-bg {
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
}
.gl-arrival-card:hover .gl-arrival-bg,
.gl-arrival-card > a:hover .gl-arrival-bg { transform: scale(1.04); }

.gl-arrival-card > a:focus-visible .gl-arrival-bg {
  transform: scale(1.04);
}

/* Shared gradient utilities */
[class^="arr-bg-"],
[class^="pb"],
[class^="bb-"],
[class^="dt"],
[class^="cib"] {
  background: linear-gradient(var(--_bg-angle, 145deg), var(--_bg-from), var(--_bg-to));
}

.arr-bg-1, .pb1 { --_bg-from: #e8ddd0; --_bg-to: #f0e8dc; }
.arr-bg-2, .pb2 { --_bg-from: #d5dce5; --_bg-to: #e4eaf0; }
.arr-bg-3, .pb3 { --_bg-from: #d0d8e0; --_bg-to: #dde5ec; }
.arr-bg-4, .pb4 { --_bg-from: #e0ddd6; --_bg-to: #eae8e2; }
.arr-bg-5, .pb5 { --_bg-from: #d8d4cc; --_bg-to: #e6e2da; }
.pb6              { --_bg-from: #dcd5d0; --_bg-to: #ece8e4; }

.bb-1 {
  --_bg-angle: ellipse at 65% 35%;
  --_bg-from: #e2d8cc;
  --_bg-to: #ede8e0;
  background: radial-gradient(var(--_bg-angle), var(--_bg-from) 0%, #cfc3b0 30%, #bdb09c 55%, var(--_bg-to) 100%);
}
.bb-2 {
  --_bg-angle: ellipse at 40% 40%;
  --_bg-from: #c8d4dc;
  --_bg-to: #dde8ee;
  background: radial-gradient(var(--_bg-angle), var(--_bg-from) 0%, #b4c2cc 30%, #a0b0bc 55%, var(--_bg-to) 100%);
}

.dt1, .cib1 { --_bg-angle: 135deg; --_bg-from: #e8ddd0; --_bg-to: #f0e8dc; }
.dt2, .cib2 { --_bg-angle: 135deg; --_bg-from: #d5dce5; --_bg-to: #e4eaf0; }
.dt3         { --_bg-angle: 135deg; --_bg-from: #d0d8e0; --_bg-to: #dde5ec; }
.dt4, .cib3 { --_bg-angle: 135deg; --_bg-from: #e0ddd6; --_bg-to: #eae8e2; }

.gl-arrival-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 3px 8px;
  background: var(--gl-ink); color: var(--gl-bg);
  z-index: 2;
}
.gl-arrival-badge.sale { background: var(--gl-red); }

.gl-arrival-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gl-arrival-card a,
.gl-arrival-card a:visited,
.gl-banner > a,
.gl-banner > a:visited,
.gl-ed-panel > a,
.gl-ed-panel > a:visited,
.gl-brand-cell,
.gl-brand-cell:visited { color: inherit; text-decoration: none; }
.gl-arrival-brand {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gl-muted); margin-bottom: 4px;
}
.gl-arrival-name {
  font-size: 13px; font-weight: 400; color: var(--gl-ink);
  line-height: 1.4; margin-bottom: 0; flex: 1;
}
.gl-arrival-price {
  font-size: 20px; color: var(--gl-ink);
  margin-top: 10px;
}
.gl-arrival-old {
  font-size: 11px; color: var(--gl-muted); text-decoration: line-through;
  margin-left: 6px; font-family: var(--gl-body);
}

@media (max-width: 767.98px) {
  .gl-arrival-card { width: 46vw; min-width: 160px; }
  .gl-arrival-img { height: 58vw; min-height: 200px; }
}

/* ══════════════════════════════════════════
   HERO: DOUBLE BANNER
══════════════════════════════════════════ */
.gl-hero-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  border-bottom: 1px solid var(--gl-line);
}

/* ══════════════════════════════════════════
   HERO: SINGLE BANNER
══════════════════════════════════════════ */
.gl-hero-single {
  border-bottom: 1px solid var(--gl-line);
  height: 560px;
}
.gl-hero-single .gl-banner {
  height: 100%;
  border-right: none;
}

@media (max-width: 767.98px) {
  .gl-hero-single {
    height: auto;
  }
  .gl-hero-single .gl-banner {
    min-height: 130vw;
  }
  .gl-hero-single .gl-banner-img-wrap {
    position: absolute;
    inset: 0;
  }
  .gl-hero-single .gl-banner-picture,
  .gl-hero-single .gl-banner-picture img {
    width: 100%;
    height: 100%;
  }
  .gl-hero-single .gl-banner-img--hero-single {
    object-fit: cover;
    object-position: center top;
  }
  .gl-hero-single .gl-banner-content,
  .gl-hero-single .gl-banner-content--photo {
    padding-top: 56px;
  }
}

.gl-banner {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer;
  border-right: 1px solid var(--gl-line);
}
.gl-banner:last-child { border-right: none; }

.gl-banner > a {
  display: flex; flex-direction: column; justify-content: flex-end;
  position: absolute; inset: 0; z-index: 3;
  text-decoration: none; color: inherit;
}

.gl-banner-img-wrap {
  position: absolute; inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gl-banner:hover .gl-banner-img-wrap,
.gl-banner:focus-within .gl-banner-img-wrap { transform: scale(1.04); }

/* (banner gradients consolidated above in gradient utilities) */

.gl-banner-illus {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  opacity: 0.85; pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}
.gl-banner:hover .gl-banner-illus,
.gl-banner:focus-within .gl-banner-illus { transform: translate(-50%, -55%); opacity: 1; }

.gl-banner-tag {
  position: absolute; top: 28px; left: 28px;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: #000;
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.gl-banner-tag::after {
  content: ''; width: 40px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.gl-banner-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--gl-disp); font-size: 72px; line-height: 1;
  color: rgba(255,255,255,0.07); z-index: 1; pointer-events: none;
  transition: color 0.3s;
}
.gl-banner:hover .gl-banner-num,
.gl-banner:focus-within .gl-banner-num { color: rgba(0, 0, 0, 0.12); }

.gl-banner-sale {
  position: absolute; top: 28px; right: 28px;
  background: var(--gl-red); color: #fff;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 10px; z-index: 3;
}

/* Banner background layer */
.gl-banner-img-wrap .gl-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* Banner image helpers */
.gl-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.gl-banner-img--top {
  object-position: center top;
}

.gl-banner-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.gl-banner-img--hero-single {
  object-position: center 18%;
}

/* ── Video Banner ── */
.gl-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.gl-banner-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0.15) 0%,
    rgba(17,17,17,0.25) 60%,
    rgba(17,17,17,0.65) 100%
  );
  z-index: 1;
}

/* Damit Overlay + Content korrekt gestapelt werden */
.gl-banner-video ~ .gl-banner-video-overlay,
.gl-banner-img-wrap > .gl-banner-video-overlay {
  z-index: 1;
}
.gl-banner > a { z-index: 3; }

.gl-banner-content {
  position: relative; z-index: 2;
  padding: 32px 32px 36px;
  background: linear-gradient(to top, rgba(250,250,248,0.98) 50%, transparent 100%);
}

.gl-banner-content--photo {
  background: linear-gradient(to top, var(--gl-overlay-banner) 50%, transparent 100%);
}

.gl-banner-headline {
  font-family: var(--gl-disp);
  font-size: clamp(52px, 6vw, 96px);
  line-height: 0.88; letter-spacing: -0.01em;
  color: var(--gl-ink); margin-bottom: 12px;
}
.gl-banner-headline .outline {
  -webkit-text-stroke: 1px var(--gl-line);
  color: transparent; display: block;
}
.gl-banner-headline--light { color: #ffffff; }
.gl-banner-headline--light .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  color: transparent;
}

.gl-banner-desc {
  font-size: 12px; line-height: 1.7;
  color: var(--gl-muted); max-width: 280px;
  letter-spacing: 0.02em; margin-bottom: 20px;
}
.gl-banner-desc--light { color: rgba(255,255,255,0.82); }

.gl-banner-cta { display: flex; gap: 8px; flex-wrap: wrap; }

/* Mobile layout */
@media (max-width: 767.98px) {
  .gl-hero-double {
    grid-template-columns: 1fr;
    height: auto; min-height: auto;
  }
  .gl-banner {
    position: relative;
    min-height: 130vw;
    border-right: none; border-bottom: 1px solid var(--gl-line);
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .gl-banner:last-child { border-bottom: none; }

  .gl-banner-img-wrap {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    overflow: hidden;
  }
  .gl-banner-img-wrap .gl-banner-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
  }
  .gl-banner > a {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
  }

  .gl-banner-illus { display: none; }
  .gl-banner-tag { top: 16px; left: 16px; }
  .gl-banner-num { font-size: 48px; top: 12px; right: 12px; }
  .gl-banner-sale { top: 16px; right: 16px; }

  /* All banners get dark overlay on mobile */
  .gl-banner .gl-banner-content,
  .gl-banner .gl-banner-content--photo {
    position: relative; z-index: 2;
    background: linear-gradient(to top, var(--gl-overlay-banner-mobile) 60%, transparent 100%);
    padding: 40px 20px 24px;
  }
  .gl-banner .gl-banner-headline,
  .gl-banner .gl-banner-headline--light {
    font-size: clamp(40px, 12vw, 64px);
    color: #fff;
  }
  .gl-banner .gl-banner-headline .outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.35);
    color: transparent;
  }
  .gl-banner .gl-banner-desc,
  .gl-banner .gl-banner-desc--light { color: rgba(255,255,255,0.82); }

  .gl-banner .gl-banner-content .btn-gl-primary,
  .gl-banner .gl-banner-content .btn-gl-primary--white {
    background: var(--gl-bg);
    color: var(--gl-ink);
    border-color: var(--gl-bg);
  }
}

/* ══════════════════════════════════════════
   BRANDS GRID
══════════════════════════════════════════ */
.gl-brands-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-left: 1px solid var(--gl-line);
}
.gl-brand-cell {
  height: 80px; padding: 0 12px;
  border-right: 1px solid var(--gl-line);
  border-bottom: 1px solid var(--gl-line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s; text-decoration: none;
}
.gl-brand-cell:hover { background: var(--gl-bg2); }
.gl-brand-cell span {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; color: var(--gl-muted); line-height: 1.3;
  transition: color 0.15s;
}
.gl-brand-cell:hover span { color: var(--gl-ink); }

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

/* ══════════════════════════════════════════
   EDITORIAL STRIP
══════════════════════════════════════════ */
.gl-editorial {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gl-line);
  border-bottom: 1px solid var(--gl-line);
}
.gl-ed-panel {
  position: relative; overflow: hidden;
  border-right: 1px solid var(--gl-line);
  cursor: pointer; transition: background 0.2s;
  min-height: 280px;
}
.gl-ed-panel:last-child { border-right: none; }
.gl-ed-panel:hover,
.gl-ed-panel:focus-within { background: var(--gl-bg2); }

.gl-ed-panel > a {
  display: flex; flex-direction: column;
  padding: 48px 40px; min-height: 280px;
  text-decoration: none; color: inherit;
  position: relative; z-index: 1;
}

/* Tag + Title — bleibt oben */
.gl-ed-panel > a > div:first-child {
  flex-shrink: 0;
}

/* Body — wächst und füllt den Raum */
.gl-ed-panel > a > div:last-of-type {
  flex: 1;
}

.gl-ed-tag {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gl-gold); margin-bottom: 16px; display: block;
}
.gl-ed-title {
  font-family: var(--gl-disp);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--gl-ink); margin: 0;
  line-height: 1.1;
}
.gl-ed-body { font-size: 12px; line-height: 1.8; color: var(--gl-muted); margin-top: 16px; }

/* Pfeil — immer am unteren Rand, gleiche Position in allen Panels */
.gl-ed-arrow {
  font-size: 20px;
  color: var(--gl-gold);
  display: block;
  margin-top: auto;
  padding-top: 20px;
  flex-shrink: 0;
}
.gl-ed-num {
  position: absolute; bottom: 16px; right: 24px;
  font-family: var(--gl-disp); font-size: 100px; line-height: 1;
  color: var(--gl-line); pointer-events: none;
}

@media (max-width: 767.98px) {
  .gl-editorial { grid-template-columns: 1fr; }
  .gl-ed-panel { border-right: none; border-bottom: 1px solid var(--gl-line); min-height: auto; }
  .gl-ed-panel > a { padding: 32px 20px; min-height: auto; }
  .gl-ed-panel:last-child { border-bottom: none; }
  .gl-ed-num { font-size: 72px; }
}


/* ══════════════════════════════════════════
   DETAIL PAGE — LEGACY CLASSES (gl-d-*)
   Used by detail.php — keep until migrated
══════════════════════════════════════════ */
.gl-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
@media (max-width: 767.98px) { .gl-detail-wrap { grid-template-columns: 1fr; } }

.gl-d-gallery {
  border-right: 1px solid var(--gl-line);
  display: flex;
  flex-direction: column;
}
.gl-d-main-img {
  flex: 1;
  background: var(--gl-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}
@media (max-width: 767.98px) {
  .gl-d-main-img {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }
}

.gl-d-img-label {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gl-muted);
}
.gl-d-thumbs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--gl-line);
}
.gl-d-thumb {
  flex: 1;
  height: 80px;
  border-right: 1px solid var(--gl-line);
  cursor: pointer;
  overflow: hidden;
}
.gl-d-thumb:last-child { border-right: none; }
.gl-d-thumb-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.gl-d-thumb:hover .gl-d-thumb-bg { transform: scale(1.06); }
.gl-d-thumb.active { box-shadow: inset 0 -2px 0 var(--gl-gold); }
/* (detail thumb gradients consolidated in gradient utilities section) */

.gl-d-info { padding: 40px; overflow-y: auto; }
@media (max-width: 767.98px) { .gl-d-info { padding: 24px 20px; } .gl-d-thumbs { display: none; } }

.gl-d-breadcrumb {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gl-muted);
  margin-bottom: 20px;
}
.gl-d-breadcrumb a {
  cursor: pointer;
  color: var(--gl-muted);
  text-decoration: none;
}
.gl-d-breadcrumb a:hover { color: var(--gl-ink); }
.gl-d-brand-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gl-gold);
  margin-bottom: 10px;
}
.gl-d-name {
  font-family: var(--gl-disp);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.9;
  color: var(--gl-ink);
  margin-bottom: 8px;
}
.gl-d-sku {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gl-muted);
  margin-bottom: 20px;
}
.gl-d-price::first-line,
.gl-d-price-old,
.gl-d-price-row {
  font-family: var(--gl-currency);
}

.gl-d-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.gl-d-price {
  font-family: var(--gl-disp);
  font-size: 36px;
  color: var(--gl-ink);
}

.gl-d-price-old {
  font-size: 14px;
  color: var(--gl-muted);
  text-decoration: line-through;
  font-family: var(--gl-body);
}
.gl-d-pct {
  font-size: 12px;
  color: var(--gl-red);
  letter-spacing: 0.05em;
}

.gl-d-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.gl-stars { color: var(--gl-gold); letter-spacing: 2px; }
.gl-stars-txt { font-size: 12px; color: var(--gl-muted); }

.gl-d-opt-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gl-muted);
  margin-bottom: 10px;
}
.gl-d-opt-label a {
  color: var(--gl-gold);
  text-decoration: underline;
  cursor: pointer;
  margin-left: 8px;
}

.gl-sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.gl-sz {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gl-line);
  background: none;
  font-family: var(--gl-body);
  font-size: 12px;
  cursor: pointer;
  color: var(--gl-ink);
  transition: all 0.15s;
}
.gl-sz:hover:not(.off) { border-color: var(--gl-ink); }
.gl-sz.active {
  border-color: var(--gl-ink);
  background: var(--gl-ink);
  color: var(--gl-bg);
}
.gl-sz.off {
  color: var(--gl-line);
  border-color: var(--gl-line);
  cursor: not-allowed;
  text-decoration: line-through;
}

.gl-colors { display: flex; gap: 8px; margin-bottom: 24px; }
.gl-col-dot {
  width: 28px;
  height: 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s;
}
.gl-col-dot.active { box-shadow: 0 0 0 2px var(--gl-bg), 0 0 0 3.5px var(--gl-ink); }

.gl-qty-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.gl-qty-btn {
  width: 40px;
  height: 48px;
  border: 1px solid var(--gl-line);
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--gl-ink);
  transition: background 0.15s;
}
.gl-qty-btn:hover { background: var(--gl-bg2); }
.gl-qty-num {
  width: 56px;
  height: 48px;
  border-top: 1px solid var(--gl-line);
  border-bottom: 1px solid var(--gl-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
}

.gl-add-row {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 6px;
  margin-bottom: 32px;
}
.gl-btn-cart {
  background: var(--gl-ink);
  color: var(--gl-bg);
  border: none;
  font-family: var(--gl-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.gl-btn-cart:hover { background: var(--gl-ink-hover); }
.gl-btn-wish {
  border: 1px solid var(--gl-line);
  background: none;
  font-size: 18px;
  color: var(--gl-ink);
  cursor: pointer;
  transition: all 0.2s;
}
.gl-btn-wish:hover {
  border-color: var(--gl-red);
  color: var(--gl-red);
}

.gl-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--gl-line);
  margin-bottom: 16px;
}
.gl-tab-btn {
  padding: 12px 0;
  margin-right: 28px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gl-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.gl-tab-btn.active {
  color: var(--gl-ink);
  border-bottom-color: var(--gl-ink);
}
.gl-tab-content {
  display: none;
  font-size: 13px;
  line-height: 1.8;
  color: var(--gl-muted);
}
.gl-tab-content.active { display: block; }
.gl-tab-content table { width: 100%; font-size: 12px; }
.gl-tab-content table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--gl-line);
}
.gl-tab-content table td:first-child { color: var(--gl-muted); width: 140px; }

/* ══════════════════════════════════════════
   PRODUCT LAYOUT — 2-Column Grid
══════════════════════════════════════════ */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gl-line);
}

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

/* Left column: sticky gallery */
.pdp-gallery {
  border-right: 1px solid var(--gl-line);
  position: sticky; top: calc(var(--nav-h) + var(--ticker-h));
  height: calc(100vh - var(--nav-h) - var(--ticker-h));
  display: flex; flex-direction: column;
}

@media (max-width: 1024px) {
  .pdp-gallery {
    position: relative; top: auto;
    height: auto; border-right: none;
  }
}

.pdp-main-img {
  flex: 1; position: relative; overflow: hidden;
  background: var(--gl-bg2);
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-in; min-height: 0;
}
.pdp-main-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pdp-main-img:hover img { transform: scale(1.06); }

.pdp-img-badge {
  position: absolute; top: 20px; left: 20px;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 10px;
  background: var(--gl-ink); color: var(--gl-bg);
  z-index: 2;
}

.pdp-img-nav {
  position: absolute; bottom: 20px; right: 20px;
  display: flex; gap: 6px; z-index: 2;
}
.pdp-img-nav button {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.pdp-img-nav button:hover { background: #fff; }
.pdp-img-nav button svg { width: 14px; height: 14px; }

.pdp-img-counter {
  position: absolute; bottom: 24px; left: 20px;
  font-size: 10px; letter-spacing: 0.2em; color: var(--gl-muted);
  z-index: 2;
}

/* Thumbnail strip */
.pdp-thumbs {
  display: flex; border-top: 1px solid var(--gl-line);
  flex-shrink: 0;
}
.pdp-thumb {
  flex: 1; height: 88px;
  border-right: 1px solid var(--gl-line);
  cursor: pointer; overflow: hidden;
  position: relative; background: var(--gl-bg2);
}
.pdp-thumb:last-child { border-right: none; }
.pdp-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.pdp-thumb:hover img { transform: scale(1.08); }
.pdp-thumb.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gl-gold);
}

@media (max-width: 1024px) {
  .pdp-main-img { aspect-ratio: 3 / 4; min-height: 0; }
  .pdp-thumbs { display: none; }
}

/* Right column: product info */
.pdp-info {
  padding: 40px 48px;
  overflow-y: auto;
}

@media (max-width: 1024px) {
  .pdp-info { padding: 28px 20px; }
}

.pdp-brand-tag {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gl-gold); margin-bottom: 8px;
}
.pdp-brand-tag a { text-decoration: none; color: inherit; transition: color 0.2s; }
.pdp-brand-tag a:hover { color: var(--gl-ink); }

.pdp-name {
  font-family: var(--gl-disp);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.88; color: var(--gl-ink);
  margin-bottom: 6px;
}

.pdp-sku {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--gl-muted); margin-bottom: 24px;
}

/* Price block */
.pdp-price-row {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 8px;
}
.pdp-price {
  font-family: var(--gl-disp);
  font-size: 40px; color: var(--gl-ink);
}
.pdp-price-old {
  font-size: 14px; color: var(--gl-muted);
  text-decoration: line-through;
}
.pdp-pct {
  font-size: 11px; letter-spacing: 0.05em;
  color: var(--gl-red); font-weight: 400;
}

.pdp-tax-note {
  font-size: 10px; color: var(--gl-muted);
  letter-spacing: 0.05em; margin-bottom: 24px;
}

/* Rating block */
.pdp-rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--gl-line);
}
.pdp-stars { display: flex; gap: 2px; }
.pdp-stars svg { width: 14px; height: 14px; }
.pdp-stars svg.filled { fill: var(--gl-gold); stroke: var(--gl-gold); }
.pdp-stars svg.empty { fill: none; stroke: var(--gl-line); }
.pdp-rating-text {
  font-size: 11px; color: var(--gl-muted); letter-spacing: 0.03em;
}
.pdp-rating-text a { color: var(--gl-gold); text-decoration: underline; cursor: pointer; }

/* Color selector */
.pdp-opt-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gl-muted); margin-bottom: 12px;
}
.pdp-opt-label span {
  color: var(--gl-ink); font-weight: 400; margin-left: 4px;
  text-transform: none; letter-spacing: 0;
}

.pdp-colors { display: flex; gap: 8px; margin-bottom: 24px; }
.pdp-color-swatch {
  width: 32px; height: 32px; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s;
  position: relative;
}
.pdp-color-swatch:hover { border-color: var(--gl-muted); }
.pdp-color-swatch.active {
  box-shadow: 0 0 0 2px var(--gl-bg), 0 0 0 3.5px var(--gl-ink);
}

/* Size selector */
.pdp-sizes { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.pdp-sz {
  min-width: 52px; height: 48px; padding: 0 12px;
  border: 1px solid var(--gl-line); background: none;
  font-family: var(--gl-body); font-size: 13px;
  cursor: pointer; color: var(--gl-ink); transition: all 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.pdp-sz:hover:not(.off) { border-color: var(--gl-ink); }
.pdp-sz.active {
  border-color: var(--gl-ink);
  background: var(--gl-ink); color: var(--gl-bg);
}
.pdp-sz.off {
  color: var(--gl-line); border-color: var(--gl-line);
  cursor: not-allowed; text-decoration: line-through;
}

.pdp-size-guide {
  font-size: 10px; letter-spacing: 0.12em;
  color: var(--gl-gold); text-decoration: underline;
  cursor: pointer; background: none; border: none;
  margin-bottom: 28px; display: inline-block;
}

/* Quantity selector */
.pdp-qty-row { display: flex; align-items: center; gap: 0; margin-bottom: 16px; }
.pdp-qty-btn {
  width: 44px; height: 52px;
  border: 1px solid var(--gl-line); background: none;
  font-size: 18px; cursor: pointer; color: var(--gl-ink);
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.pdp-qty-btn:hover { background: var(--gl-bg2); }
.pdp-qty-num {
  width: 60px; height: 52px;
  border-top: 1px solid var(--gl-line);
  border-bottom: 1px solid var(--gl-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 400;
}

/* Primary actions */
.pdp-actions {
  display: grid; grid-template-columns: 1fr 52px;
  gap: 6px; margin-bottom: 16px;
}
.pdp-btn-cart {
  background: var(--gl-ink); color: var(--gl-bg); border: none;
  font-family: var(--gl-body); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 24px; cursor: pointer;
  transition: background 0.25s;
  position: relative; overflow: hidden;
}
.pdp-btn-cart:hover { background: var(--gl-ink-hover); }
.pdp-btn-cart:active { transform: scale(0.99); }

.pdp-btn-wish {
  border: 1px solid var(--gl-line); background: none;
  cursor: pointer; color: var(--gl-ink);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.pdp-btn-wish:hover { border-color: var(--gl-red); color: var(--gl-red); }
.pdp-btn-wish svg { width: 20px; height: 20px; }

/* Trust badges */
.pdp-trust { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.pdp-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.08em; color: var(--gl-muted);
}
.pdp-trust-item svg {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke: var(--gl-gold); fill: none; stroke-width: 1.3;
}

/* Tabs */
.pdp-tabs-nav {
  display: flex;
  border-top: 1px solid var(--gl-line);
  border-bottom: 1px solid var(--gl-line);
  margin-bottom: 0;
}
.pdp-tab-btn {
  padding: 14px 0; margin-right: 28px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gl-muted); background: none; border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer; transition: color 0.2s, border-color 0.2s;
}
.pdp-tab-btn:first-child { margin-left: 0; }
.pdp-tab-btn.active { color: var(--gl-ink); border-bottom-color: var(--gl-ink); }

.pdp-tab-panel {
  display: none; padding: 24px 0;
  font-size: 13px; line-height: 1.9; color: var(--gl-muted);
}
.pdp-tab-panel.active { display: block; }

.pdp-tab-panel table { width: 100%; font-size: 12px; border-collapse: collapse; }
.pdp-tab-panel table td {
  padding: 10px 0; border-bottom: 1px solid var(--gl-line); vertical-align: top;
}
.pdp-tab-panel table td:first-child {
  color: var(--gl-muted); width: 140px; letter-spacing: 0.05em;
}
.pdp-tab-panel table td:last-child { color: var(--gl-ink); }

.pdp-tab-panel ul { list-style: none; padding: 0; }
.pdp-tab-panel ul li { padding: 4px 0; padding-left: 16px; position: relative; }
.pdp-tab-panel ul li::before {
  content: '-'; position: absolute; left: 0; color: var(--gl-gold);
}

/* ══════════════════════════════════════════
   ANIMATIONS (PDP-specific)
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pdp-info > * { animation: fadeUp 0.5s ease both; }
.pdp-info > *:nth-child(1) { animation-delay: 0.05s; }
.pdp-info > *:nth-child(2) { animation-delay: 0.1s; }
.pdp-info > *:nth-child(3) { animation-delay: 0.14s; }
.pdp-info > *:nth-child(4) { animation-delay: 0.18s; }
.pdp-info > *:nth-child(5) { animation-delay: 0.22s; }
.pdp-info > *:nth-child(6) { animation-delay: 0.26s; }
.pdp-info > *:nth-child(7) { animation-delay: 0.3s; }
.pdp-info > *:nth-child(n+8) { animation-delay: 0.34s; }

/* ══════════════════════════════════════════
   NOTIFICATION TOAST
══════════════════════════════════════════ */
.pdp-notification {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gl-ink); color: var(--gl-bg);
  padding: 14px 28px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 9999; opacity: 0;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none; white-space: nowrap;
}
.pdp-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════════
   ZOOM OVERLAY
══════════════════════════════════════════ */
.pdp-zoom-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--gl-overlay-dark);
  display: none; align-items: center; justify-content: center;
  cursor: zoom-out;
}
.pdp-zoom-overlay.active { display: flex; }
.pdp-zoom-overlay img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  animation: fadeUp 0.3s ease;
}
.pdp-zoom-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.pdp-zoom-close:hover { border-color: rgba(255,255,255,0.6); }

/* Mobile: hide arrival carousel controls, use swipe/scroll instead */
@media (max-width: 767.98px) {
  .gl-arrivals-control {
    display: none !important;
  }
}




/* ══════════════════════════════════════════
   SHARED COMPONENTS
   Central classes used across all pages
   Replaces page-specific breadcrumb/h1/sub/toolbar/form variants
══════════════════════════════════════════ */

/* ── Page wrapper ── */
.gl-page {
  padding-top: calc(var(--nav-h) + 36px);
  min-height: 100vh;
}

/* ── Page Header container ── */
.gl-page-header {
  border-bottom: 1px solid var(--gl-line);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 32px 0 0;
}

.gl-page-header .gl-breadcrumb,
.gl-page-header .gl-page-h1,
.gl-page-header .gl-page-sub,
.gl-page-header .gl-toolbar {
  padding-left: 32px;
  padding-right: 32px;
}

/* ── Breadcrumb ── */
.gl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gl-muted);
  margin-bottom: 20px;
}
.gl-breadcrumb a {
  color: var(--gl-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.gl-breadcrumb a:hover { color: var(--gl-ink); }
.gl-breadcrumb-sep { opacity: 0.35; font-size: 9px; }

/* ── Page H1 ── */
.gl-page-h1 {
  font-family: var(--gl-disp);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.88;
  color: var(--gl-ink);
  margin-bottom: 8px;
  display: block;
}

/* ── Page Sub-label ── */
.gl-page-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gl-muted);
  margin-bottom: 24px;
}

/* ── Toolbar ── */
.gl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--gl-line);
  gap: 12px;
}

/* ── Form elements ── */
.gl-form-group { margin-bottom: 16px; }

.gl-form-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gl-muted);
  margin-bottom: 8px;
}

.gl-form-input {
  width: 100%;
  border: 1px solid var(--gl-line);
  background: #ffffff;
  padding: 13px 14px;
  font-family: var(--gl-body);
  font-size: 13px;
  color: var(--gl-ink);
  transition: border-color 0.15s;
  display: block;
  box-sizing: border-box;
}
.gl-form-input::placeholder { color: var(--gl-muted); font-size: 12px; }
.gl-form-input:focus { outline: none; border-color: var(--gl-ink); }
.gl-form-input.error { border-color: var(--gl-red); }

.gl-form-error {
  font-size: 10px;
  color: var(--gl-red);
  margin-top: 5px;
  letter-spacing: 0.05em;
  display: none;
}
.gl-form-input.error + .gl-form-error { display: block; }

.gl-form-submit {
  display: block;
  width: 100%;
  background: var(--gl-ink);
  color: var(--gl-bg);
  border: none;
  font-family: var(--gl-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.gl-form-submit:hover { background: #333; }

.gl-form-terms {
  font-size: 10px;
  color: var(--gl-muted);
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.03em;
}
.gl-form-terms a {
  color: var(--gl-muted);
  text-decoration: underline;
  transition: color 0.2s;
}
.gl-form-terms a:hover { color: var(--gl-ink); }

.gl-form-pw-wrap { position: relative; }
.gl-form-pw-wrap .gl-form-input { padding-right: 44px; }

.gl-form-pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gl-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.gl-form-pw-toggle:hover { color: var(--gl-ink); }

.gl-form-check {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 11px;
  color: var(--gl-muted);
}
.gl-form-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.gl-form-check-box {
  width: 14px;
  height: 14px;
  border: 1px solid var(--gl-line);
  background: #ffffff;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gl-form-check input:checked + .gl-form-check-box {
  background: var(--gl-ink);
  border-color: var(--gl-ink);
}
.gl-form-check input:checked + .gl-form-check-box::after {
  content: '';
  display: block;
  width: 10px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fafaf8' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .gl-page-header { padding-top: 20px; }
  .gl-page-header .gl-breadcrumb,
  .gl-page-header .gl-page-h1,
  .gl-page-header .gl-page-sub,
  .gl-page-header .gl-toolbar {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ══════════════════════════════════════════
   COOKIE CONSENT BANNER
   Einbinden: <link href="/css/consent.css" rel="stylesheet">
══════════════════════════════════════════ */

.gl-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--gl-bg);
  border-top: 1px solid var(--gl-line);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Sichtbar nach JS-Trigger */
.gl-consent--visible {
  transform: translateY(0);
}

/* Verstecken Animation */
.gl-consent--hiding {
  transform: translateY(100%);
}

.gl-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 32px;
}

/* ── Text ── */
.gl-consent-text {
  flex: 1;
  min-width: 0;
}

.gl-consent-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gl-ink);
  margin-bottom: 6px;
}

.gl-consent-body {
  font-size: 12px;
  color: var(--gl-muted);
  line-height: 1.7;
}

.gl-consent-body a {
  color: var(--gl-ink);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.gl-consent-body a:hover { opacity: 0.6; }

/* ── Actions ── */
.gl-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.gl-consent-btn {
  font-family: var(--gl-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 20px;
  cursor: pointer;
  border: 1px solid var(--gl-line);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.gl-consent-btn--secondary {
  background: none;
  color: var(--gl-muted);
}
.gl-consent-btn--secondary:hover {
  border-color: var(--gl-ink);
  color: var(--gl-ink);
}

.gl-consent-btn--primary {
  background: var(--gl-ink);
  color: var(--gl-bg);
  border-color: var(--gl-ink);
}
.gl-consent-btn--primary:hover {
  background: #333;
  border-color: #333;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 767.98px) {
  .gl-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 16px 28px;
  }

  .gl-consent-actions {
    flex-direction: column;
    gap: 8px;
  }

  .gl-consent-btn {
    width: 100%;
    text-align: center;
    padding: 13px;
  }
}


/* ══════════════════════════════════════════
   NEWSLETTER INCLUDE
   Einbinden: <link href="/css/newsletter_include.css" rel="stylesheet">
══════════════════════════════════════════ */

/* ── Gemeinsame Basis ── */

.gl-nl-inc-eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gl-gold);
  margin-bottom: 16px;
}

/* Input + Button nebeneinander */
.gl-nl-inc-row {
  display: flex;
  align-items: stretch;
}

.gl-nl-inc-input {
  flex: 1;
  border: 1px solid var(--gl-line);
  border-right: none;
  background: var(--gl-bg);
  padding: 13px 18px;
  font-family: var(--gl-body);
  font-size: 13px;
  color: var(--gl-ink);
  outline: none;
  min-width: 0;
  transition: border-color 0.15s;
}
.gl-nl-inc-input::placeholder { color: var(--gl-muted); }
.gl-nl-inc-input:focus { }
.gl-nl-inc-input.error { border-color: var(--gl-red); }

.gl-nl-inc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gl-ink);
  color: var(--gl-bg);
  border: 1px solid var(--gl-ink);
  padding: 13px 22px;
  font-family: var(--gl-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, gap 0.2s;
}
.gl-nl-inc-btn:hover {
  background: #222;
}
.gl-nl-inc-btn svg { flex-shrink: 0; transition: transform 0.2s; }
.gl-nl-inc-btn:hover svg { transform: translateX(2px); }

.gl-nl-inc-error {
  font-size: 10px;
  color: var(--gl-red);
  letter-spacing: 0.05em;
  margin-top: 8px;
  display: none;
}
.gl-nl-inc-error.show { display: block; }

.gl-nl-inc-note {
  font-size: 10px;
  color: var(--gl-muted);
  line-height: 1.7;
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.gl-nl-inc-note a {
  color: var(--gl-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
.gl-nl-inc-note a:hover { opacity: 0.55; }

/* ── Promo offer pill ── */
.gl-nl-inc-offer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 12px 20px 12px 0;
  border-top: 1px solid var(--gl-line);
}

.gl-nl-inc-offer-pct {
  font-family: var(--gl-disp);
  font-size: 36px;
  line-height: 1;
  color: var(--gl-gold);
  flex-shrink: 0;
}

.gl-nl-inc-offer-label {
  font-size: 11px;
  color: var(--gl-muted);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* ── Perks list ── */
.gl-nl-inc-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.gl-nl-inc-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--gl-muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.gl-nl-inc-perk svg { color: var(--gl-gold); flex-shrink: 0; }

/* ── Label above input ── */
.gl-nl-inc-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gl-muted);
  margin-bottom: 10px;
}

/* ── Success state ── */
.gl-nl-inc-success {
  display: none;
}
.gl-nl-inc-success.show { display: block; }

.gl-nl-inc-success-check {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gl-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gl-gold);
  margin-bottom: 16px;
}

.gl-nl-inc-success-title {
  font-family: var(--gl-disp);
  font-size: 28px;
  line-height: 1;
  color: var(--gl-ink);
  margin-bottom: 8px;
}

.gl-nl-inc-success-sub {
  font-size: 12px;
  color: var(--gl-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.gl-nl-inc-success-code-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  border: 1px solid var(--gl-line);
  background: var(--gl-bg2);
}

.gl-nl-inc-success-code-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gl-muted);
}

/* ── Promo code pill ── */
.gl-nl-inc-code {
  font-family: var(--gl-body);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--gl-ink);
  font-weight: 400;
}

/* inline + minimal success */
.gl-nl-inc-success--inline,
.gl-nl-inc-success--minimal {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gl-ink);
  letter-spacing: 0.03em;
}
.gl-nl-inc-success--inline.show,
.gl-nl-inc-success--minimal.show {
  display: flex;
}
.gl-nl-inc-success--inline svg,
.gl-nl-inc-success--minimal svg {
  color: var(--gl-gold);
  flex-shrink: 0;
}
.gl-nl-inc-success--inline .gl-nl-inc-code,
.gl-nl-inc-success--minimal .gl-nl-inc-code {
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 2px 8px;
  background: var(--gl-bg2);
  border: 1px solid var(--gl-line);
}


/* ══════════════════════════════════════════
   SECTION — groß, zweispaltig, dunkel links
══════════════════════════════════════════ */
.gl-nl-inc--section {
  background: var(--gl-bg);
  overflow: hidden;
}

.gl-nl-inc--section .gl-nl-inc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.gl-nl-inc--section .gl-nl-inc-left {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Video hinter dem Text */
.gl-nl-inc-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gl-nl-inc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Gradient-Overlay für Lesbarkeit */
.gl-nl-inc-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0.25) 0%,
    rgba(17,17,17,0.55) 50%,
    rgba(17,17,17,0.82) 100%
  );
}

/* Text-Content über dem Video */
.gl-nl-inc-left-content {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.gl-nl-inc--section .gl-nl-inc-left .gl-nl-inc-eyebrow {
  color: var(--gl-gold);
}

.gl-nl-inc--section .gl-nl-inc-heading {
  font-family: var(--gl-disp);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 0.88;
  color: var(--gl-bg);
  letter-spacing: -0.01em;
  flex: 1;
  padding: 20px 0;
}

.gl-nl-inc--section .gl-nl-inc-body {
  font-size: 12px;
  color: rgba(250,250,248,0.55);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.gl-nl-inc--section .gl-nl-inc-offer {
  border-top-color: rgba(250,250,248,0.15);
  margin-top: 24px;
  padding-top: 20px;
}

.gl-nl-inc--section .gl-nl-inc-offer-pct {
  font-size: 44px;
  color: var(--gl-gold);
}

.gl-nl-inc--section .gl-nl-inc-offer-label {
  color: rgba(250,250,248,0.5);
}

.gl-nl-inc--section .gl-nl-inc-right {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--gl-line);
}

.gl-nl-inc--section .gl-nl-inc-input {
  background: #ffffff;
  padding: 15px 18px;
  font-size: 14px;
}

.gl-nl-inc--section .gl-nl-inc-btn {
  padding: 15px 24px;
}


/* ══════════════════════════════════════════
   INLINE — horizontales Banner
══════════════════════════════════════════ */
.gl-nl-inc--inline {
  background: var(--gl-bg2);
}

.gl-nl-inc--inline .gl-nl-inc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 120px;
}

.gl-nl-inc--inline .gl-nl-inc-left {
  padding: 32px 40px 32px 32px;
  border-right: 1px solid var(--gl-line);
}

.gl-nl-inc--inline .gl-nl-inc-heading--sm {
  font-size: 15px;
  color: var(--gl-ink);
  line-height: 1.4;
  margin-bottom: 4px;
}
.gl-nl-inc--inline .gl-nl-inc-heading--sm em {
  font-style: normal;
  font-family: var(--gl-disp);
  font-size: 20px;
  color: var(--gl-gold);
  vertical-align: baseline;
}

.gl-nl-inc--inline .gl-nl-inc-body--sm {
  font-size: 11px;
  color: var(--gl-muted);
  letter-spacing: 0.03em;
}

.gl-nl-inc--inline .gl-nl-inc-right {
  padding: 32px 32px 32px 40px;
}


/* ══════════════════════════════════════════
   MINIMAL
══════════════════════════════════════════ */
.gl-nl-inc--minimal {
  padding: 0;
}

.gl-nl-inc-minimal-offer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gl-nl-inc--minimal .gl-nl-inc-offer-pct {
  font-family: var(--gl-disp);
  font-size: 28px;
  line-height: 1;
  color: var(--gl-gold);
  flex-shrink: 0;
}

.gl-nl-inc--minimal .gl-nl-inc-offer-label {
  font-size: 11px;
  color: var(--gl-muted);
  line-height: 1.5;
}

.gl-nl-inc-btn--minimal {
  padding: 13px 16px;
  width: 48px;
  justify-content: center;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .gl-nl-inc--section .gl-nl-inc-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .gl-nl-inc--section .gl-nl-inc-left {
    min-height: 320px;
  }
  .gl-nl-inc--section .gl-nl-inc-left-content {
    padding: 40px 32px;
  }
  .gl-nl-inc--section .gl-nl-inc-right {
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 40px 32px;
  }
  .gl-nl-inc--inline .gl-nl-inc-inner {
    grid-template-columns: 1fr;
  }
  .gl-nl-inc--inline .gl-nl-inc-left {
    border-right: none;
    border-bottom: 1px solid var(--gl-line);
    padding: 28px 24px 24px;
  }
  .gl-nl-inc--inline .gl-nl-inc-right {
    padding: 24px 24px 28px;
  }
}

@media (max-width: 767.98px) {
  .gl-nl-inc--section .gl-nl-inc-left { min-height: 280px; }
  .gl-nl-inc--section .gl-nl-inc-left-content { padding: 32px 20px; }
  .gl-nl-inc--section .gl-nl-inc-right { padding: 32px 20px; }
  .gl-nl-inc--section .gl-nl-inc-heading { font-size: clamp(40px, 12vw, 64px); }
  .gl-nl-inc--inline .gl-nl-inc-left  { padding: 24px 16px 20px; }
  .gl-nl-inc--inline .gl-nl-inc-right { padding: 20px 16px 24px; }
  .gl-nl-inc-btn { padding: 13px 16px; font-size: 9px; }
}