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

:root{
  --bg:#04060a;
  --bg-alt:#081018;
  --text:#f4f4f5;
  --muted:#a5a7b3;
  --accent:#d6b071;
  --border-subtle: rgba(255,255,255,0.10);
  --card-bg: rgba(9,11,19,0.75);
  --radius-lg: 28px;
  --shadow-soft: 0 24px 80px rgba(0,0,0,0.65);
}

html, body { margin:0; padding:0; min-height:100%; scroll-behavior:smooth; }
[data-aos] { will-change: transform, opacity; }

/* ===== Sticky footer layout ===== */
html, body {
  height: 100%;
}

#pageRoot.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* main content grows to fill available space */
.site-main {
  flex: 1 0 auto;
}

/* footer stays at the bottom */
.footer {
  margin-top: auto;
}

body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  background-image:url("/public/assets/LDV_dark.jpg");
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  background-attachment:fixed;
  color:var(--text);
}

.container{
  width:100%;
  max-width:1820px;
  margin:0 auto;
  padding:0 5vw;
}

/* NAV */
/* NAV */
.nav{
  position:fixed; top:0; left:0; right:0;
  z-index:30;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(3,4,8,0.98), rgba(3,4,8,0.58), rgba(3,4,8,0.10));
}

.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:0.85rem 5vw;
  gap: 16px;
}

.nav__logo-img{ height:80px; width:auto; display:block; }

.nav__links{
  display:flex; gap:1.5rem;
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.18em;
}

/* Sleek underline hover */
.nav__link{
  color:var(--muted);
  text-decoration:none;
  position:relative;
  padding: 0.35rem 0;
  transition: color 180ms ease;
}
.nav__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height:1px;
  width:100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, rgba(214,176,113,0.95), rgba(214,176,113,0));
  transition: transform 220ms ease;
  opacity: 0.95;
}
.nav__link:hover{ color:var(--text); }
.nav__link:hover::after{ transform: scaleX(1); }

/* right side */
.nav__right{ display:flex; align-items:center; gap:12px; }

.nav__cart{
  display:flex; align-items:center; gap:8px;
  text-decoration:none; color:var(--muted);
  border:1px solid rgba(255,255,255,0.10);
  padding:8px 10px; border-radius:999px;
  background: rgba(255,255,255,0.05);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.nav__cart:hover{
  color:var(--text);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
}
.nav__cart-badge{
  min-width:22px; height:22px;
  display:grid; place-items:center;
  border-radius:999px;
  background: rgba(214,176,113,0.20);
  border:1px solid rgba(214,176,113,0.35);
  color:var(--text);
  font-size:12px;
}

/* ===== Language dropdown ===== */
.lang-dd{ position: relative; }
.lang-dd__btn{
  appearance:none;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: rgba(244,244,245,0.92);
  border-radius: 999px;
  padding: 8px 10px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  cursor:pointer;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.lang-dd__btn:hover{
  border-color: rgba(214,176,113,0.35);
  background: rgba(214,176,113,0.10);
  transform: translateY(-1px);
}
.lang-dd__chev{ opacity: 0.75; }

.lang-dd__panel{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  width: 220px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  padding: 8px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.lang-dd.is-open .lang-dd__panel{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dd__item{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(244,244,245,0.82);
  text-decoration:none;
  font-size: 0.9rem;
  transition: background 150ms ease, color 150ms ease;
}
.lang-dd__item:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(244,244,245,0.95);
}
.lang-dd__item.is-active{
  background: rgba(214,176,113,0.12);
  border: 1px solid rgba(214,176,113,0.25);
}

/* ===== Mobile toggle ===== */
.nav__toggle{
  display:none;
  appearance:none;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: rgba(244,244,245,0.92);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: relative;
  transition: border-color 180ms ease, background 180ms ease;
}
.nav__toggle:hover{
  border-color: rgba(214,176,113,0.35);
  background: rgba(214,176,113,0.10);
}

/* Hamburger lines */
.nav__toggle-lines,
.nav__toggle-lines::before,
.nav__toggle-lines::after{
  content:"";
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(244,244,245,0.9);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}
.nav__toggle-lines{ top: 50%; transform: translate(-50%, -50%); }
.nav__toggle-lines::before{ top: -6px; position:absolute; }
.nav__toggle-lines::after{ top: 6px; position:absolute; }

/* Mobile menu panel */
.nav__mobile{
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(3,4,8,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 5vw 18px;
}

.nav__mobile-links{
  display:grid;
  gap: 10px;
  padding: 8px 0 14px;
}
.nav__mobile-link{
  text-decoration:none;
  color: rgba(244,244,245,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 12px 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
}
.nav__mobile-link::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:10px;
  height:1px;
  background: linear-gradient(to right, rgba(214,176,113,0.95), rgba(214,176,113,0));
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav__mobile-link:hover::after{
  opacity: 1;
  transform: scaleX(1);
}

.nav__mobile-bottom{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.nav__mobile-label{
  color: rgba(244,244,245,0.62);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nav__mobile-langgrid{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lang-pill{
  text-decoration:none;
  color: rgba(244,244,245,0.78);
  border:1px solid rgba(255,255,255,0.10);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
}
.lang-pill.is-active{
  border-color: rgba(214,176,113,0.5);
  background: rgba(214,176,113,0.12);
  color: rgba(244,244,245,0.92);
}

/* Responsive */
@media (max-width: 960px){
  .nav__links{ display:none; }
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .lang-dd {display: none;}
}

/* HERO (home) */
/* =========================
   HERO (home) – aligned + centered
   ========================= */

.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: 64px; /* clears fixed nav */
  overflow: hidden;
}

/* Video background */
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.05) contrast(1.05) brightness(0.75);
  transform: scale(1.02);
}

.hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 25%),
    radial-gradient(circle at bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.15)),
    linear-gradient(to right, rgba(1,2,5,0.65), rgba(1,2,5,0.25));
  mix-blend-mode: multiply;
}

/* Content wrapper: use container for consistent left/right */
.hero__content{
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  /* was: space-between; */
  justify-content: center;

  /* even spacing between the two columns */
  gap: clamp(2.5rem, 6vw, 6.5rem);

  /* keep container padding handling left/right */
  padding: clamp(3.25rem, 6vh, 5rem) 0 clamp(2.25rem, 4vh, 3.5rem);
}
.hero__text{
  flex: 0 1 520px;
  max-width: 520px;
}
/* Typography */
.hero__eyebrow{
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero__title{
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.hero__tagline{
  font-size: 1.05rem;
  color: #e0e3f0;
  margin: 0 0 1rem;
}

.hero__intro{
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 34rem;     /* key: keep text column consistent */
  margin: 0 0 1.6rem;
}

/* Bottle column: aligned to same container edges */
.hero__bottle{
  position: relative;
  flex: 0 1 520px;     /* was flex: 1 ... (it was stretching) */
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  margin: 0;
}

.bottle__glow{
  position: absolute;
  width: 320px;
  height: 520px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0, rgba(255,255,255,0.40), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(214,176,113,0.35), transparent 60%);
  opacity: 0.9;
  filter: blur(18px);
  transform: translateY(22px);
  animation: glowPulse 8.5s ease-in-out infinite;
}

.bottle__image{
  position: relative;
  z-index: 1;
  max-height: 90vh;
  width: auto;
  display: block;
  filter: drop-shadow(0 32px 50px rgba(0,0,0,0.9));
  animation: bottleFloat 8.5s ease-in-out infinite;
  will-change: transform;
}

/* Animations */
@keyframes bottleFloat{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes glowPulse{
  0%   { transform: translateY(22px) scale(1); opacity: 0.85; }
  50%  { transform: translateY(18px) scale(1.03); opacity: 1; }
  100% { transform: translateY(22px) scale(1); opacity: 0.85; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .bottle__image,
  .bottle__glow{
    animation: none;
  }
}

/* Responsive: center text + HIDE bottle */
@media (max-width: 960px){
  .hero__content{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero__intro{
    margin-inline: auto;
  }

  .hero__bottle{
    display: none; /* hide bottle on mobile/tablet */
  }
}



/* Buttons */
.cta-row{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; padding-top: 20px; }
.cta-row--center{ justify-content:center; }
.btn{
  border-radius:999px;
  padding:12px 16px;
  font-size:0.85rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.14);
}
.btn--primary{
  background: linear-gradient(135deg, #f1d8a6, #cf9c55);
  color:#1a1205;
  border:none;
  font-weight:700;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}
.btn--ghost{
  background: rgba(255,255,255,0.06);
  color: rgba(244,244,245,0.92);
}
.btn--subtle{
  background: transparent;
  color: rgba(244,244,245,0.85);
  border-color: rgba(255,255,255,0.10);
}

/* Sections */
.section{ position:relative; padding:5.5rem 0; overflow:hidden; }
.section--dark{
  background: radial-gradient(circle at top, #11131f, #03040a 58%, #020308 100%);
}
.section--light{
  background: radial-gradient(circle at top, rgba(0,0,0,0.5), rgba(2,3,8,0.92));
}
.section__tag{
  font-size:0.75rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:0.75rem;
}
.section__title{
  font-family:"Playfair Display",serif;
  font-size:clamp(1.6rem,3vw,2.1rem);
  margin:0 0 0.75rem;
}
.section__lead{
  font-size:0.98rem;
  line-height:1.7;
  color:var(--muted);
  max-width:1860px;
  margin:0 0 2.3rem;
}

/* Grids & Cards */
.grid{ display:grid; gap:1.8rem; }
.grid--2col{ grid-template-columns:repeat(2, minmax(0,1fr)); }
.grid--3col{ grid-template-columns:repeat(3, minmax(0,1fr)); }

.card{
  position:relative;
  border-radius: var(--radius-lg);
  padding:1.6rem 1.8rem;
  border:1px solid var(--border-subtle);
  box-shadow:0 18px 50px rgba(0,0,0,0.6);
  overflow:hidden;
}
.card h3{ margin:0 0 0.8rem; font-size:1rem; }
.card p{ margin:0; font-size:0.92rem; color:#dddddd; line-height:1.7; }

.card--glass{
  background: linear-gradient(135deg, rgba(18,21,34,0.88), rgba(6,8,16,0.96));
  backdrop-filter: blur(16px);
}
.card--outline{
  background: radial-gradient(circle at top left, rgba(214,176,113,0.12), rgba(4,6,12,0.96));
  border-color: rgba(214,176,113,0.35);
}
.card--minimal{
  background: radial-gradient(circle at top, rgba(58,57,57,0.8), rgba(5,7,14,0.96));
  border-radius:24px;
}

/* Vision list */
.section__inner--split{
  display:grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
  gap:2.8rem;
}
.vision__list{ display:flex; flex-direction:column; gap:1.2rem; }
.vision__item{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:0.9rem 1.1rem;
  padding:1.2rem 1.4rem;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(5,7,14,0.96);
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
}
.vision__bullet{
  width:8px; height:8px; border-radius:999px;
  margin-top:0.35rem;
  background: radial-gradient(circle at 20% 0, #ffffff, #d6b071);
}

/* Page hero */
.page-hero{
  padding-top: 150px;
  padding-bottom: 50px;
}
.page-hero__inner{
  display:flex;
  gap:24px;
  align-items:center;
  justify-content:space-between;
}
.page-hero__title{
  font-family:"Playfair Display",serif;
  letter-spacing:0.06em;
  text-transform:uppercase;
  margin:0 0 8px;
}
.page-hero__lead{ margin:0; color: rgba(244,244,245,0.78); }
.page-hero__image{
  width:min(340px, 35vw);
  height:auto;
  filter: drop-shadow(0 28px 60px rgba(0,0,0,0.75));
}

.small-muted{ color: rgba(244,244,245,0.60); font-size: 13px; margin-top: 10px; }
.center{ display:flex; justify-content:center; margin-top: 18px; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.gallery img{
  width:100%;
  aspect-ratio: 9/16;
  object-fit:cover;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
}

/* Videos */
.video-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.video-card{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  overflow:hidden;
}
.video-card__tag{
  padding:10px 12px;
  color: rgba(244,244,245,0.72);
  letter-spacing:0.20em;
  text-transform:uppercase;
  font-size:12px;
}
.video-card video{ width:100%; display:block; }

/* Products */
.product-grid{
  display: flex;
  justify-content: center;
  grid-template-columns:1fr;
  width: 100%;
  gap:30px;
  padding-bottom: 200px;
  
}
/* ===== Shop product cards: bigger image / full height ===== */
.product-card{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;

  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  overflow: hidden;
  max-width: 1220px;
}

/* make the left side (image) fill the full card height */
.product-card__link{
  display: block;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), rgba(0,0,0,0.12));
}

.product-card__img{
  display: block;
  width: 100%;
  height: 100%;           /* full height */
  object-fit: cover;    /* show full bottle without cropping */
  padding: 18px;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,0.65));
  border-radius: 28px;
}

/* keep body aligned and roomy */
.product-card__body{
  padding: 18px 18px 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* optional: more elegant spacing on small screens */

.product-card__more {
  padding-top: 30px;
}
/* ===== "More products coming soon" note ===== */
/* Center wrapper */
.section-center{
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 22px;
}

/* Note card */
.soon-note{
  width: min(1220px, 100%);
  margin: 0 5vw;                /* aligns with your container padding style */
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.08);
  padding: 16px 18px;
  text-align: center;
}

.soon-note__title{
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: rgba(244,244,245,0.92);
  margin-bottom: 6px;
}

.soon-note__text{
  color: rgba(244,244,245,0.68);
  font-size: 0.95rem;
  line-height: 1.5;
}


.product-card__name{ font-weight:700; letter-spacing:0.02em; }
.product-card__meta{ color: rgba(244,244,245,0.62); font-size: 13px; margin-top:6px; }
.product-card__price{ margin-top:10px; font-size: 18px; }
.product-card__form{ display:flex; gap:10px; align-items:end; margin-top:12px; flex-wrap:wrap; }
.qty{ display:grid; gap:6px; font-size:12px; color: rgba(244,244,245,0.70); }
.qty input{
  width:90px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.30);
  color: var(--text);
  padding:10px 12px;
}
@media (max-width: 960px){
  .product-card{
    grid-template-columns: 1fr;
  }
  .product-card__body{
    padding: 0 18px 18px;
  }
  .product-card__img{
    height: 420px; /* keeps it tall on mobile */
  }
.product-card__more {
    padding-top: 0px;
  }
  .soon-note{
  margin-top: 0px;
  }
}

/* Cart */
/* Cart */
.cart__table{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

.cart__row{
  display: grid;
  grid-template-columns: 1fr 120px 140px;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart__head{
  color: rgba(244,244,245,0.62);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.cart__prod{
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0; /* important for overflow */
}

.cart__prod img{
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  flex: 0 0 auto;
}

.cart__name{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.cart__qty{
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.30);
  color: var(--text);
  padding: 10px 12px;
}

.cart__sum{ text-align: right; }

.cart__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cart__totals{
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  max-width: 420px;
}

.cart__totals > div{
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.cart__total{ font-size: 18px; }

/* =========================
   Mobile: rows become cards
   ========================= */
@media (max-width: 960px){
  .cart__table{
    overflow: visible; /* no horizontal cutoff */
    border-radius: 18px;
  }

  .cart__row.cart__head{
    display: none; /* hide table header on mobile */
  }

  .cart__row.cart__row--item{
    grid-template-columns: 1fr; /* stack */
    gap: 10px;
    padding: 14px;
  }

  /* each "cell" becomes a labeled row */
  .cart__row.cart__row--item > [data-label]{
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: center;
  }

  .cart__row.cart__row--item > [data-label]::before{
    content: attr(data-label);
    color: rgba(244,244,245,0.62);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    line-height: 1.2;
  }

  /* product block spans full width with image + text */
  .cart__prod{
    align-items: center;
  }

  .cart__prod::before{
    align-self: start;
    padding-top: 6px;
  }

  .cart__prod img{
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  .cart__cell--qty .cart__qty{
    max-width: 180px;
    justify-self: start;
  }

  .cart__cell--sum{
    align-items: baseline;
  }

  .cart__cell--sum .cart__sum{
    text-align: left;
    font-weight: 600;
  }

  .cart__totals{
    max-width: 100%;
  }

  .cart__actions{
    justify-content: center; /* optional: looks nicer on mobile */
  }
}

/* Extra small polish */
@media (max-width: 520px){
  .cart__row.cart__row--item > [data-label]{
    grid-template-columns: 1fr; /* label above value */
    gap: 6px;
  }

  .cart__row.cart__row--item > [data-label]::before{
    margin-bottom: 2px;
  }

  .cart__cell--qty .cart__qty{
    max-width: 100%;
  }
}

/* Checkout */
.checkout-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:18px;
  align-items:start;
}
.form{
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  padding:16px;
}
.form--narrow{   max-width:1860px;
 }
.form__title{ margin:0 0 10px; }
.form__subtitle{ margin:0 0 10px; font-size:14px; color: rgba(244,244,245,0.80); }
.form label{ display:grid; gap:8px; margin:10px 0; color: rgba(244,244,245,0.72); font-size:13px; }
.form input, .form textarea{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.30);
  color: var(--text);
  padding:12px 12px;
  outline:none;
}
.form__row{ display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:12px; }
.form__divider{ height:1px; background: rgba(255,255,255,0.10); margin:14px 0; }
.check{ display:flex; gap:10px; align-items:center; }
.shipping-block{ display:none; }
.shipping-block.is-open{ display:block; }

.summary{
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  padding:16px;
}
.summary__title{ margin:0 0 10px; }
.summary__line{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.08); }
.summary__totals{ margin-top:12px; }
.summary__totals > div{ display:flex; justify-content:space-between; padding:6px 0; }
.summary__total{ font-size:18px; margin-top:6px; }

.alert{
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(214,176,113,0.35);
  background: rgba(214,176,113,0.10);
  color: rgba(244,244,245,0.92);
}

/* Recipes */
/* Recipes */
.recipe-list{ display:grid; gap:50px; }

.recipe{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:16px;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  align-items: stretch;
}

.recipe__image{
  width:100%;
  height:100%;
  min-height: 320px;
  max-height: 700px;
  object-fit:cover;
  display:block;
}

.recipe__content{ padding:16px; min-width: 0; }
.recipe__title{ margin:0 0 8px; font-family:"Playfair Display",serif; text-transform:uppercase; letter-spacing:0.06em; }
.recipe__note{ margin:0 0 12px; color: rgba(244,244,245,0.70); }
.recipe__cols{ display:grid; grid-template-columns: 1fr; gap:30px; }
.recipe__label{ font-size:12px; letter-spacing:0.18em; text-transform:uppercase; color: rgba(244,244,245,0.62); margin-bottom:8px; }
.recipe__list{ margin:0; padding-left:18px; color: rgba(244,244,245,0.86); }

/* =========================
   Mobile fix: stack + safe image sizing
   ========================= */
@media (max-width: 960px){
  .recipe{
    grid-template-columns: 1fr;   /* stack image above content */
    gap: 0;                       /* no gutter seam */
  }

  .recipe__image{
    height: auto;                 /* stop height:100% issues */
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;        /* consistent hero crop */
    object-fit: cover;
  }

  .recipe__content{
    padding: 18px 16px;
  }

  /* optional: give lists more breathing room */
  .recipe__cols{ gap: 18px; }
}

/* Extra small screens */
@media (max-width: 520px){
  .recipe__image{
    aspect-ratio: 4 / 3;          /* taller image on very small screens */
  }

  .recipe__content{
    padding: 16px 14px;
  }

  .recipe__title{
    font-size: 1.05rem;
  }
}

/* FOOTER */
/* =========================================================
   FOOTER (improved layout + mobile one-column)
   ========================================================= */
/* =========================================================
   FOOTER — 3 columns desktop, 1 centered column mobile
   ========================================================= */

.footer{
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #040509;
  padding: 2.1rem 1rem;
}

/* === Footer grid: 3 columns centered === */
.footer__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  text-align: center;          /* centers text in each column */
  padding-bottom: 30px;
}

/* Brand */
.footer__brandLink{
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: rgba(244,244,245,0.92);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__logo-mark{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.02rem;
}

.footer__brand-text{
  font-size: 0.88rem;
  opacity: 0.95;
}
.footer__social{
  margin-top: 12px;
  display: grid;          /* column */
  gap: 10px;
  align-items: start;
}
.footer__social{
  display: grid;
  gap: 10px;
  justify-items: center;
}

/* Icon + text row */
.footer__iconLink{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);

  color: rgba(244,244,245,0.80);
  text-decoration: none;

  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.footer__iconLink i{
  width: 18px;
  text-align: center;
  font-size: 1rem;
}

.footer__iconText{
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer__iconLink:hover{
  transform: translateY(-1px);
  border-color: rgba(214,176,113,0.35);
  background: rgba(214,176,113,0.10);
  color: rgba(244,244,245,0.94);
}

.footer__fine{
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(244,244,245,0.56);
  line-height: 1.5;
  max-width: 46ch;
}

/* Column titles */
.footer__colTitle{
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(244,244,245,0.70);
  margin-bottom: 10px;
}

/* Links - one per line */
.footer__link{

  text-decoration: none;
  color: rgba(244,244,245,0.70);
  padding: 6px 0;
  transition: color 160ms ease, transform 160ms ease;
}


.footer__link:hover{
  color: rgba(244,244,245,0.92);
  transform: translateY(-1px);
}

.footer__link--accent{
  color: rgba(214,176,113,0.92);
}

.footer__link--accent:hover{
  color: rgba(214,176,113,1);
}

/* Swisspirits */
.footer__swissLogoLink{
  display: inline-flex;
  text-decoration: none;
  margin-top: 6px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.footer__swissLogoLink{
  display: grid;
  place-items: center;       /* centers the image inside the link */
  text-decoration: none;
}


.footer__swissLogo{
  height: 100px;
  width: auto;
  display: block;
  filter: grayscale(1) brightness(1.12);
  opacity: 0.92;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
  border-radius: 10px;
}

.footer__swissLogoLink:hover .footer__swissLogo{
  filter: grayscale(0) brightness(1.05);
  opacity: 1;
  transform: translateY(-1px);
}

/* Right side layout */
.footer__right{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

/* Bottom meta + credits */
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0 14px;
  text-align: center;
}

.footer__meta{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(244,244,245,0.62);
  margin-bottom: 8px;
}

.footer__dot{ opacity: 0.5; }

.footer__credits{
  text-decoration: none;
  font-size: 0.82rem;
}

.footer__col{
  display: grid;
  justify-items: center;
}

/* Screen-reader only helper */
.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;
}

/* Mobile: single centered column */
@media (max-width: 960px){
  .footer__grid{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 20px;
  }

  .footer__brandLink{
    justify-content: center;
  }

  .footer__fine{
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social{
    justify-items: center;
    align-items: center;
  }
  .footer__iconLink{
    margin-left: auto;
    margin-right: auto;
  }

  .footer__right{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .footer__link{
    margin-left: auto;
    margin-right: auto;
  }

  .footer__swissLogoLink{
    justify-content: center;
  }
}


/* Age gate (aus deinem Original, kompakt) */
/* ===== Age Gate (modal) ===== */
body.is-agegate-open {
  overflow: hidden;
  touch-action: none;
}

.age-gate[hidden] { display: none; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 50% -20%, rgba(255, 255, 255, 0.08), transparent 60%),
    rgba(4, 6, 10, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.age-gate__dialog {
  position: relative;
  width: min(640px, 100%);
  border: 1px solid rgba(244, 244, 245, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.age-gate__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.age-gate__mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  border: 1px solid rgba(244, 244, 245, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 244, 245, 0.96);
}

.age-gate__brandname {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: rgba(244, 244, 245, 0.96);
}
.age-gate__brandsub {
  color: rgba(244, 244, 245, 0.62);
  font-size: 0.9rem;
}

.age-gate__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: rgba(244, 244, 245, 0.96);
}

.age-gate__desc {
  margin: 10px 0 0;
  color: rgba(244, 244, 245, 0.72);
  line-height: 1.55;
  font-size: 1rem;
}

.age-gate__note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: rgba(244, 244, 245, 0.62);
  line-height: 1.5;
}

.age-gate__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.age-gate__btn {
  appearance: none;
  border: 1px solid rgba(244, 244, 245, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 244, 245, 0.96);
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.age-gate__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(244, 244, 245, 0.26);
  transform: translateY(-1px);
}

.age-gate__btn:active { transform: translateY(0); }

.age-gate__btn:focus-visible {
  outline: 3px solid rgba(244, 244, 245, 0.35);
  outline-offset: 2px;
}

.age-gate__btn--primary {
  background: rgba(244, 244, 245, 0.14);
}

.age-gate__fineprint {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(244, 244, 245, 0.58);
}

@media (max-width: 460px) {
  .age-gate__brandtext { text-align: center; }
  .age-gate__brand { flex-direction: column; }
  .age-gate__actions { flex-direction: column; }
  .age-gate__btn { width: 100%; }
}

/* Responsive */
@media (max-width: 960px){
  .hero__content{ flex-direction:column; text-align:center; gap:2.4rem; padding-top:4rem; }
  .cta-row{ justify-content:center; }
  .grid--3col, .product-grid, .video-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section__inner--split, .checkout-grid{ grid-template-columns: 1fr; }
  .page-hero__inner{ flex-direction:column; text-align:center; }
}
@media (max-width: 720px){
  body{ background-attachment:scroll; background-size:130% auto; background-color:#020308; }
  .grid--2col, .grid--3col, .product-grid, .video-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .recipe{ grid-template-columns: 1fr; }
}


/* ===== Cookie Banner (bottom) ===== */
.cookie[hidden] { display: none; }

.cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.cookie__inner {
  width: min(980px, 100%);
  border: 1px solid rgba(244, 244, 245, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie__text { max-width: 64ch; }
.cookie__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: rgba(244, 244, 245, 0.96);
  margin-bottom: 4px;
}
.cookie__desc {
  color: rgba(244, 244, 245, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie__btn {
  appearance: none;
  border: 1px solid rgba(244, 244, 245, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 244, 245, 0.96);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.cookie__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(244, 244, 245, 0.26);
  transform: translateY(-1px);
}

.cookie__btn--primary {
  background: rgba(244, 244, 245, 0.14);
}

@media (max-width: 720px) {
  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie__actions { justify-content: center; }
  .cookie__btn { width: 100%; }
}


/* ===== Product detail ===== */
.product-detail{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.product-detail__media{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  overflow:hidden;
}

.product-detail__img{
  width:100%;
  height:auto;
  display:block;
  object-fit: contain;
  padding: 18px;
  border-radius: 28px;
}

.product-detail__price{
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.product-detail__meta{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 14px;
  margin: 12px 0 14px;
}

.meta-row{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.meta-row:last-child{ border-bottom: none; }

.meta-label{
  color: rgba(244,244,245,0.62);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.meta-value{
  color: rgba(244,244,245,0.92);
  text-align: right;
}

.product-detail__form{
  display:flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: 14px 0 10px;
}

.qty--big input{
  width: 96px;
}

.product-detail__accordion details{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 12px 14px;
  margin-top: 12px;
}

.product-detail__accordion summary{
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: rgba(244,244,245,0.92);
}
.product-detail__accordion summary::-webkit-details-marker{ display:none; }

.details-body{
  margin-top: 10px;
}

/* Make product cards clickable */
.product-card__link{
  display:block;
  text-decoration:none;
}
.product-card__name--link{
  display:inline-block;
  margin-top: 8px;
  text-decoration:none;
  color: rgba(244,244,245,0.92);
}
.product-card__name--link:hover{
  color: rgba(244,244,245,1);
}

/* Responsive */
@media (max-width: 960px){
  .product-detail{
    grid-template-columns: 1fr;
  }
}


/* ===== Custom link styling (no default underline) ===== */
a.link{
  color: rgba(244,244,245,0.86);
  text-decoration: none;              /* removes underline */
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
  opacity: 0.92;
}

a.link::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(to right, rgba(214,176,113,0.95), rgba(214,176,113,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  opacity: 0.95;
}

a.link:hover{
  color: rgba(244,244,245,0.98);
  transform: translateY(-1px);
  opacity: 1;
}

a.link:hover::after{
  transform: scaleX(1);
}

a.link:focus-visible{
  outline: 3px solid rgba(214,176,113,0.35);
  outline-offset: 4px;
  border-radius: 10px;
}

/* Optional: subtle variant */
a.link--subtle{
  opacity: 0.78;
}
a.link--subtle:hover{
  opacity: 1;
}


/* =========================================================
   PARTNERS + PARTNER PAGE (CLEAN, NO DUPES)
   Copy/paste this block as a replacement for your current
   partners/partner-page CSS.
   ========================================================= */

/* ---------- Partner page spacing ---------- */
.partner-block{
  margin-top: 26px;
}

/* Optional: Partner minimal hero spacing (used by page-hero--partner-min) */
.page-hero--partner-min{
  padding-top: 92px;
  padding-bottom: 22px;
}
.page-hero--partner-min .page-hero__title{
  margin-top: 6px;
}

/* ---------- Partners section ---------- */
.partners{
  margin-top: 18px;
}

/* Grid */
.partners__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}
.partners__grid--page{
  margin-top: 10px;
}

/* Logo tile */
.partners__logo{
  display: grid;
  place-items: center;
    padding: 22px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.7);
  box-shadow: 0 16px 46px rgba(0,0,0,0.45);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.partners__logo img{
  min-height: 220px;       /* "larger theme" default */
  width: auto;
  max-width: 100%;
  display: cover;
  filter: grayscale(1) brightness(1.1);
  opacity: 0.85;
  transition: filter 180ms ease, opacity 180ms ease;
    border-radius: 22px;

}

/* Hover (only for clickable logos) */
.partners__logo:hover{
  transform: translateY(-2px);
  border-color: rgba(214,176,113,0.30);
  background: rgba(214,176,113,0.08);
}
.partners__logo:hover img{
  filter: grayscale(0) brightness(1.05);
  opacity: 1;
}
.partners__cta{
  padding-top: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Static logos (no hover lift) */
.partners__logo--static{
  cursor: default;
}
.partners__logo--static:hover{
  transform: none;
}

/* Size modifiers */
.partners--lg .partners__logo img{
  max-height: 120px;
}
.partners--xl .partners__logo img{
  max-height: 120px;
}
.partners--xl .partners__logo{
  padding: 26px 20px;
  border-radius: 24px;
}

/* ---------- Swiss Spirits note ---------- */
.swiss-spirits-note{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 14px;
  text-align: center;
}
.swiss-spirits-note__title{
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: rgba(244,244,245,0.92);
  margin-bottom: 6px;
}

/* ---------- Partner points (if still used anywhere) ---------- */
.partner-points{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.partner-points--stack{
  grid-template-columns: 1fr;
}

.partner-point{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 12px 14px;
}
.partner-point__title{
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,244,245,0.90);
  margin-bottom: 6px;
}
.partner-point__text{
  color: rgba(244,244,245,0.70);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ---------- Visual grid (more photos, less text) ---------- */
.partner-visual{
  padding: 0;
}
.visual-grid{
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.visual{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  min-height: 240px;
}
.visual--wide{
  grid-column: span 7;
  min-height: 360px;
}
.visual:not(.visual--wide){
  grid-column: span 5;
}
.visual img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.partner-minline{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(244,244,245,0.70);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.partner-minline span{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

/* ---------- Kontext dropdown (select) styling ---------- */
.form--partner label{
  display: grid;
  gap: 8px;
}

.form--partner select{
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 12px 44px 12px 14px; /* right padding for chevron */
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.04), rgba(2,3,8,0.96));
  color: rgba(244,244,245,0.92);
  font-size: 0.95rem;
  line-height: 1.2;
  outline: none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* chevron */
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(244,244,245,0.78) 50%),
    linear-gradient(135deg, rgba(244,244,245,0.78) 50%, transparent 50%),
    radial-gradient(circle at top left, rgba(255,255,255,0.04), rgba(2,3,8,0.96));
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    auto;
  background-repeat: no-repeat;

  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.form--partner select:hover{
  border-color: rgba(214,176,113,0.35);
}
.form--partner select:focus{
  border-color: rgba(214,176,113,0.75);
  box-shadow: 0 0 0 1px rgba(214,176,113,0.25), 0 18px 50px rgba(0,0,0,0.35);
}
.form--partner select:disabled{
  opacity: 0.55;
  cursor: not-allowed;
}
.form--partner select option{
  background: #070a10;
  color: rgba(244,244,245,0.92);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .partners__grid{
    grid-template-columns: 1fr;
  }
  .partner-points{
    grid-template-columns: 1fr;
  }
  .visual-grid{
    grid-template-columns: 1fr;
  }
  .visual, .visual--wide{
    grid-column: auto;
    min-height: 280px;
  }
  .partners__logo img{
    max-height: 70px;
  }
}

@media (max-width: 520px){
  .form--partner select{
    padding: 11px 42px 11px 14px;
    font-size: 0.92rem;
  }
}

.blank{
  height: 300px;
}

/* Legal pages */
.legal-card{
  max-width: 920px;
  margin: 0 auto;
}
.legal-card hr{
  border: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 18px 0;
}
.legal-card .small-muted{
  line-height: 1.8;
}
