/* ================================================================
   DROPS — Dark Premium Drink Delivery
   Font: Space Grotesk + Space Mono
   Palette: #0d0d0d bg · #f0f0f0 text · #d4a843 gold accent
   ================================================================ */

:root {
  --bg:       #0d0d0d;
  --bg2:      #141414;
  --bg3:      #1c1c1c;
  --surface:  #1f1f1f;
  --border:   rgba(255,255,255,.08);
  --border2:  rgba(255,255,255,.14);
  --text:     #f0f0f0;
  --text2:    #999;
  --text3:    #555;
  --gold:     #d4a843;
  --gold2:    #f0c75a;
  --green:    #22c55e;
  --r:        10px;
  --r2:       16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(13,13,13,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px; height: 64px;
}
.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 22px; font-weight: 700;
  flex-shrink: 0; letter-spacing: -1px;
  display: flex; align-items: baseline; gap: 1px;
}
.nav-logo-text {
  background: linear-gradient(135deg, var(--gold), #ff9a3c, var(--gold2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logo-shimmer 4s linear infinite;
}
@keyframes logo-shimmer { to { background-position: 200% center; } }
.nav-logo-dot { color: var(--gold); -webkit-text-fill-color: var(--gold); }

.nav-cats {
  display: flex; align-items: center; gap: 2px;
  overflow-x: auto; scrollbar-width: none; flex: 1;
}
.nav-cats::-webkit-scrollbar { display: none; }

.nav-cat {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  color: var(--cat-color, var(--text2));
  opacity: .65;
  border: 1px solid transparent;
  transition: all .18s;
}
.nav-cat:hover {
  opacity: 1;
  background: color-mix(in srgb, var(--cat-color, var(--gold)) 12%, transparent);
  border-color: color-mix(in srgb, var(--cat-color, var(--gold)) 25%, transparent);
}
.nav-cat.active {
  opacity: 1;
  color: var(--cat-color, var(--gold));
  background: color-mix(in srgb, var(--cat-color, var(--gold)) 15%, transparent);
  border-color: color-mix(in srgb, var(--cat-color, var(--gold)) 35%, transparent);
}
.nav-cat-emoji { font-size: 15px; }
.nav-cat-label { font-size: 13px; }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* nav inline search */
.nav-search-form {
  display: flex; background: var(--surface);
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.nav-search-input {
  background: transparent; border: none; outline: none;
  padding: 8px 12px; font-size: 13px; color: var(--text);
  font-family: inherit; width: 160px;
}
.nav-search-input::placeholder { color: var(--text3); }
.nav-search-btn {
  background: transparent; border: none;
  padding: 0 12px; color: var(--text3); cursor: pointer;
  border-left: 1px solid var(--border);
  transition: color .15s, background .15s;
}
.nav-search-btn:hover { color: var(--gold); background: rgba(212,168,67,.08); }

.nav-cart-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0d0d0d;
  padding: 8px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  position: relative; transition: background .18s;
}
.nav-cart-btn:hover { background: var(--gold2); color: #0d0d0d; }
.nav-badge {
  position: absolute; top: -6px; right: -6px;
  background: #ef4444; color: #fff;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center;
  background: var(--bg);
}

/* Animated noise texture */
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}

/* Glowing orbs */
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; animation: float 8s ease-in-out infinite;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,.15) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 70%);
  bottom: -100px; right: 200px;
  animation-delay: -3s;
}
.hero-glow-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(239,68,68,.08) 0%, transparent 70%);
  top: 30%; right: 0;
  animation-delay: -6s;
}
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(20px,-30px) scale(1.05); }
  66%  { transform: translate(-15px,20px) scale(.95); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  width: 100%;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,.1);
  border: 1px solid rgba(212,168,67,.3);
  color: var(--gold); padding: 6px 14px; border-radius: 30px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.6); } }

.hero-headline {
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 800; line-height: 1;
  letter-spacing: -3px; margin-bottom: 24px;
}
.hero-headline-accent { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text2); max-width: 480px;
  margin-bottom: 40px; line-height: 1.6;
}
.hero-sub strong { color: var(--text); }

.hero-cta { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #0d0d0d;
  padding: 16px 32px; border-radius: var(--r);
  font-size: 16px; font-weight: 700;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 0 40px rgba(212,168,67,.3);
}
.btn-hero:hover {
  background: var(--gold2); color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(212,168,67,.5);
}

.hero-stats { display: flex; align-items: center; gap: 16px; }
.hero-stat { text-align: center; }
.stat-val { display: block; font-size: 28px; font-weight: 800; color: var(--text); }
.stat-lbl { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 36px; background: var(--border2); }

/* Orbiting drink emojis */
.hero-orbit {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px; pointer-events: none;
}
.orbit-ring {
  position: absolute; border: 1px solid var(--border);
  border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.orbit-ring-1 { width: 300px; height: 300px; animation: spin 20s linear infinite; }
.orbit-ring-2 { width: 420px; height: 420px; animation: spin 30s linear infinite reverse; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.orbit-item {
  position: absolute; font-size: 28px;
  top: 50%; left: 50%;
  transform: rotate(calc(var(--i) * 90deg)) translateY(-150px) rotate(calc(var(--i) * -90deg));
  animation: counter-spin 20s linear infinite;
  display: block;
}
.orbit-ring-2 .orbit-item {
  transform: rotate(calc(var(--i) * 90deg)) translateY(-210px) rotate(calc(var(--i) * -90deg));
  animation: counter-spin2 30s linear infinite;
}
@keyframes counter-spin  { to { transform: rotate(calc(var(--i)*90deg)) translateY(-150px) rotate(calc(360deg + var(--i)*-90deg)); } }
@keyframes counter-spin2 { to { transform: rotate(calc(var(--i)*90deg)) translateY(-210px) rotate(calc(-360deg + var(--i)*-90deg)); } }

/* ── TICKER ───────────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: linear-gradient(90deg, #b8860b, #d4a843, #f0c75a, #e8a020, #d4a843, #b8860b);
  background-size: 300% 100%;
  animation: ticker-bg 8s linear infinite;
  padding: 11px 0;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, #b8860b, transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left, #b8860b, transparent); }
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  color: #1a0e00; font-size: 13px; font-weight: 700;
  letter-spacing: .3px;
}
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ticker-bg { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ── SECTIONS ─────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-dark { background: var(--bg2); }
.section-wrap { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px;
}
.section-title { font-size: clamp(24px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; }
.section-more { font-size: 14px; color: var(--gold); font-weight: 600; }
.section-more:hover { text-decoration: underline; }

/* ── CATEGORY GRID ────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--r2); padding: 28px 20px 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 8px;
}
.cat-card-bg {
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0; transition: opacity .25s;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--clr); box-shadow: 0 0 40px color-mix(in srgb, var(--clr) 25%, transparent); }
.cat-card:hover .cat-card-bg { opacity: .15; }
.cat-card-icon { font-size: 40px; position: relative; }
.cat-card-name { font-size: 18px; font-weight: 700; position: relative; }
.cat-card-arrow { font-size: 18px; color: var(--text3); position: relative; margin-top: auto; transition: color .2s, transform .2s; }
.cat-card:hover .cat-card-arrow { color: var(--clr); transform: translateX(4px); }

/* ── PRODUCT CARDS ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.scroll-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  overflow-x: auto; scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.product-card-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); padding: 16px; overflow: hidden;
}
.product-card-img img { max-height: 128px; width: auto; object-fit: contain; }
.card-placeholder { font-size: 48px; opacity: .3; }
.product-card-body { padding: 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-brand { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.card-name { font-size: 13px; font-weight: 600; line-height: 1.3; flex: 1; }
.card-qty { font-size: 11px; color: var(--text3); }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 8px; }
.card-price { font-size: 18px; font-weight: 800; color: var(--gold); }
.card-price span { font-size: 13px; font-weight: 500; color: var(--text2); }
.card-add {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gold); color: #0d0d0d; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background .18s, transform .18s;
}
.card-add:hover { background: var(--gold2); transform: scale(1.1); }

/* ── VALUE PROPS ──────────────────────────────────────────────── */
.props-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.prop-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px 22px;
  transition: border-color .2s;
}
.prop-card:hover { border-color: var(--border2); }
.prop-card-accent {
  background: linear-gradient(135deg, rgba(212,168,67,.1), rgba(212,168,67,.03));
  border-color: rgba(212,168,67,.2);
}
.prop-icon { font-size: 32px; margin-bottom: 14px; }
.prop-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.prop-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.how-text .how-label {
  font-size: 11px; letter-spacing: 2px; color: var(--gold);
  font-weight: 700; margin-bottom: 16px;
}
.how-text h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.how-text p { color: var(--text2); margin-bottom: 32px; }
.how-steps { display: flex; flex-direction: column; gap: 28px; }
.how-step { display: flex; align-items: flex-start; gap: 20px; }
.how-num {
  font-family: 'Space Mono', monospace; font-size: 13px;
  color: var(--gold); border: 1px solid rgba(212,168,67,.3);
  padding: 4px 10px; border-radius: 6px; flex-shrink: 0; margin-top: 2px;
}
.how-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.how-step p { font-size: 13px; color: var(--text2); }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0d0d0d;
  padding: 12px 24px; border-radius: var(--r);
  font-size: 14px; font-weight: 700;
  transition: background .18s;
}
.btn-dark:hover { background: var(--gold2); color: #0d0d0d; }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
  padding: 12px 24px; border-radius: var(--r);
  font-size: 14px; font-weight: 600;
  transition: border-color .18s, background .18s;
}
.btn-outline-dark:hover { border-color: var(--text2); background: var(--surface); }

/* ── SHOP PAGE ────────────────────────────────────────────────── */
.shop-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.shop-hero-cat {
  background: color-mix(in srgb, var(--cat-clr, var(--gold)) 8%, var(--bg2));
  border-bottom-color: color-mix(in srgb, var(--cat-clr, var(--gold)) 20%, transparent);
}
.shop-hero-inner { max-width: 1400px; margin: 0 auto; }
.shop-hero-emoji { font-size: 56px; margin-bottom: 12px; }
.shop-hero h1 { font-size: clamp(28px, 5vw, 56px); font-weight: 800; letter-spacing: -1px; }
.shop-hero p { color: var(--text3); margin-top: 6px; font-size: 14px; }

.shop-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 28px; max-width: 1400px; margin: 0 auto;
  padding: 28px 24px;
}

/* sidebar */
.shop-sidebar { }
.sidebar-search {
  display: flex; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; margin-bottom: 16px;
}
.sidebar-search-input {
  flex: 1; background: transparent; border: none;
  padding: 10px 14px; font-size: 13px; color: var(--text);
  font-family: inherit; outline: none;
}
.sidebar-search button {
  background: transparent; border: none;
  padding: 0 14px; color: var(--text2); cursor: pointer;
  transition: color .18s;
}
.sidebar-search button:hover { color: var(--gold); }

.sidebar-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.sidebar-block-title {
  padding: 10px 14px; font-size: 10px; letter-spacing: 1.5px;
  font-weight: 700; color: var(--text3); text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.sidebar-link {
  display: block; padding: 10px 14px; font-size: 13px;
  color: var(--text2); border-left: 3px solid transparent;
  transition: color .18s, background .18s, border-color .18s;
}
.sidebar-link:hover { color: var(--text); background: var(--bg3); }
.sidebar-link-active {
  color: var(--active-clr, var(--gold));
  background: color-mix(in srgb, var(--active-clr, var(--gold)) 8%, transparent);
  border-left-color: var(--active-clr, var(--gold));
  font-weight: 600;
}
.sidebar-subcats { background: var(--bg3); padding: 4px 0; border-top: 1px solid var(--border); }
.sidebar-sublink {
  display: block; padding: 7px 14px 7px 28px; font-size: 12px; color: var(--text3);
  transition: color .18s;
}
.sidebar-sublink:hover { color: var(--text); }
.sidebar-sublink-active { color: var(--gold); font-weight: 600; }

/* shop main */
.shop-filters-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 20px; padding: 4px 12px; font-size: 12px;
}
.filter-chip a { color: var(--text3); margin-left: 4px; }
.filter-chip a:hover { color: #ef4444; }

.products-grid-shop { gap: 14px; }

/* ── PAGINATION ───────────────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 48px; flex-wrap: wrap;
}
.pg-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; color: var(--text2);
  transition: all .15s;
}
.pg-btn:hover { border-color: var(--border2); color: var(--text); }
.pg-active { background: var(--gold); border-color: var(--gold); color: #0d0d0d; font-weight: 700; }
.pg-ellipsis { display: inline-flex; align-items: center; color: var(--text3); padding: 0 4px; }

/* ── EMPTY STATE ──────────────────────────────────────────────── */
.empty { text-align: center; }
.empty-icon { font-size: 56px; margin-bottom: 16px; opacity: .4; }
.empty h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.empty p { color: var(--text2); margin-bottom: 24px; }

/* ── CART PAGE ────────────────────────────────────────────────── */
.cart-page { min-height: 60vh; padding: 48px 0; }
.cart-page-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.cart-title {
  font-size: 36px; font-weight: 800; letter-spacing: -1px;
  margin-bottom: 32px; display: flex; align-items: center; gap: 14px;
}
.cart-title-count {
  font-size: 18px; background: var(--gold); color: #0d0d0d;
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }

.cart-list {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
}
.cart-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 68px; height: 68px; flex-shrink: 0;
  background: var(--bg3); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; font-size: 28px;
}
.cart-item-img img { max-height: 60px; width: auto; object-fit: contain; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-brand { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.cart-item-name { font-size: 14px; font-weight: 600; }
.cart-item-size { font-size: 12px; color: var(--text3); }
.cart-item-price { font-size: 12px; color: var(--text3); margin-top: 2px; }
.cart-item-controls {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.qty-btn {
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text); font-size: 16px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s;
}
.qty-btn:hover { border-color: var(--gold); background: rgba(212,168,67,.1); }
.qty-num { font-weight: 700; min-width: 22px; text-align: center; }
.cart-item-total { font-weight: 700; color: var(--gold); font-size: 15px; min-width: 70px; text-align: right; flex-shrink: 0; }
.cart-item-del {
  background: none; border: none; color: var(--text3);
  padding: 6px; border-radius: 6px; cursor: pointer; flex-shrink: 0;
  transition: color .15s, background .15s;
}
.cart-item-del:hover { color: #ef4444; background: rgba(239,68,68,.1); }

.cart-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px; position: sticky; top: 80px;
}
.cart-summary h2 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.cs-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--text2); }
.cs-row span:last-child { color: var(--text); }
.free { color: var(--green); font-weight: 700; }
.cs-hint {
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2);
  border-radius: 8px; padding: 10px 12px; font-size: 12px; color: var(--green); margin-bottom: 8px;
}
.cs-divider { border-top: 1px solid var(--border); margin: 12px 0; }
.cs-grand { font-size: 18px; font-weight: 700; color: var(--text) !important; }
.cs-grand span { color: var(--gold) !important; }
.btn-checkout {
  display: flex; justify-content: center; align-items: center;
  width: 100%; padding: 14px; margin-top: 16px;
  background: var(--gold); color: #0d0d0d;
  border-radius: var(--r); font-size: 15px; font-weight: 700;
  transition: background .18s, transform .18s;
}
.btn-checkout:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-continue {
  display: flex; justify-content: center;
  width: 100%; padding: 12px; margin-top: 8px;
  color: var(--text2); font-size: 13px;
  border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color .18s, color .18s;
}
.btn-continue:hover { border-color: var(--border2); color: var(--text); }
.cs-payment { display: flex; justify-content: center; gap: 12px; margin-top: 16px; font-size: 18px; opacity: .5; }

/* ── CHECKOUT ─────────────────────────────────────────────────── */
.checkout-page { padding: 48px 0; }
.checkout-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.checkout-title { font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-bottom: 32px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }

.co-form { display: flex; flex-direction: column; gap: 24px; }
.co-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px;
}
.co-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 20px; text-transform: uppercase;
}
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.co-field { margin-bottom: 16px; }
.co-field-sm { max-width: 140px; }
.co-field label { display: block; font-size: 12px; color: var(--text3); margin-bottom: 6px; font-weight: 600; }
.co-field input, .co-field select, .co-field textarea {
  width: 100%; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 11px 14px; font-size: 14px; color: var(--text);
  font-family: inherit; outline: none;
  transition: border-color .18s;
}
.co-field input:focus, .co-field select:focus, .co-field textarea:focus { border-color: var(--gold); }
.co-field select option { background: var(--bg2); }

.co-payment-opts { display: flex; flex-direction: column; gap: 10px; }
.co-pay-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  transition: border-color .18s, background .18s;
}
.co-pay-opt:has(input:checked) { border-color: var(--gold); background: rgba(212,168,67,.06); }
.co-pay-opt span { font-weight: 500; font-size: 14px; }
.co-pay-opt input { accent-color: var(--gold); }

.btn-checkout-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; background: var(--gold); color: #0d0d0d;
  border: none; border-radius: var(--r); font-size: 16px; font-weight: 700;
  font-family: inherit; cursor: pointer;
  transition: background .18s, transform .2s;
  box-shadow: 0 0 30px rgba(212,168,67,.25);
}
.btn-checkout-submit:hover { background: var(--gold2); transform: translateY(-1px); }
.co-legal { font-size: 11px; color: var(--text3); text-align: center; margin-top: 10px; }

.co-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px; position: sticky; top: 80px;
}
.co-summary-title { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); font-weight: 700; margin-bottom: 16px; }
.co-summary-item { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; gap: 10px; }
.co-summary-item em { color: var(--text3); }
.co-summary-divider { border-top: 1px solid var(--border); margin: 12px 0; }
.co-summary-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; color: var(--text2); }
.co-summary-grand { font-size: 18px; font-weight: 700; color: var(--gold) !important; }
.co-delivery-box {
  background: rgba(212,168,67,.08); border: 1px solid rgba(212,168,67,.2);
  border-radius: 8px; padding: 12px 14px; font-size: 12px;
  margin-top: 14px; line-height: 1.8; color: var(--text2);
}

/* ── SUCCESS PAGE ─────────────────────────────────────────────── */
.success-page { display: flex; justify-content: center; padding: 80px 24px; }
.success-inner { max-width: 560px; text-align: center; }
.success-ring {
  width: 90px; height: 90px; border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: ring-appear .5s ease;
  box-shadow: 0 0 40px rgba(212,168,67,.2);
}
@keyframes ring-appear { from { transform:scale(.5); opacity:0; } to { transform:scale(1); opacity:1; } }
.success-check { font-size: 36px; color: var(--gold); }
.success-inner h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.success-id { color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.success-msg { color: var(--text2); margin-bottom: 36px; }
.success-details {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  margin-bottom: 24px;
}
.success-detail-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
}
.sdb-label { font-size: 10px; letter-spacing: 1px; color: var(--text3); text-transform: uppercase; margin-bottom: 6px; }
.sdb-val { font-size: 13px; font-weight: 500; line-height: 1.5; }
.success-grand { color: var(--gold); font-size: 22px; font-weight: 800; }
.success-items {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px; margin-bottom: 28px;
  text-align: left;
}
.si-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; border-bottom: 1px solid var(--border); color: var(--text2); }
.si-row:last-child { border-bottom: none; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-page { padding: 80px 0; }
.contact-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-eyebrow { font-size: 11px; letter-spacing: 2px; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.contact-left h1 { font-size: clamp(32px,5vw,56px); font-weight: 800; letter-spacing: -2px; margin-bottom: 14px; line-height:1.05; }
.contact-accent { color: var(--gold); }
.contact-left > p { color: var(--text2); margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
}
.cc-icon { font-size: 24px; }
.contact-card strong { display: block; font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--gold); }
.contact-discounts { display: flex; flex-direction: column; gap: 10px; }
.cd-item { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.cd-icon { font-size: 22px; }

.contact-right {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 36px;
}
.cf-field { margin-bottom: 18px; }
.cf-field label { display: block; font-size: 12px; color: var(--text3); margin-bottom: 6px; font-weight: 600; }
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 11px 14px; font-size: 14px; color: var(--text);
  font-family: inherit; outline: none; transition: border-color .18s;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--gold); }
.cf-field select option { background: var(--bg2); }

.contact-sent { text-align: center; padding: 60px 20px; }
.sent-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(212,168,67,.1); border: 2px solid var(--gold);
  font-size: 28px; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.contact-sent h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.contact-sent p { color: var(--text2); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { font-family: 'Space Mono', monospace; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: color .18s, border-color .18s;
}
.footer-socials a:hover { color: var(--gold); border-color: rgba(212,168,67,.3); }
.footer-links h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); font-weight: 700; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: var(--text2); margin-bottom: 10px; transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-contact h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); font-weight: 700; margin-bottom: 16px; }
.footer-contact p { font-size: 14px; color: var(--text2); margin-bottom: 8px; }
.footer-badge {
  display: inline-block; margin-top: 12px;
  background: rgba(212,168,67,.1); border: 1px solid rgba(212,168,67,.3);
  color: var(--gold); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid var(--border); padding: 16px 24px;
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text3);
}

/* ── TOPBAR ───────────────────────────────────────────────────── */
.topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 7px 0; font-size: 12px; color: var(--text3);
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.tb-item { display: flex; align-items: center; gap: 6px; }
.tb-center { flex: 1; justify-content: center; gap: 10px; font-size: 12px; }
.tb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }
.topbar a { color: var(--gold); }
.topbar a:hover { text-decoration: underline; }
.topbar strong { color: var(--text); }

/* ── HERO OUTLINE BTN ─────────────────────────────────────────── */
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
  padding: 15px 26px; border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  transition: border-color .2s, background .2s;
}
.btn-hero-outline:hover { border-color: var(--gold); background: rgba(212,168,67,.06); color: var(--gold); }

/* ── STUDENT & DISABILITY OFFERS ──────────────────────────────── */
.offers-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.offer-card {
  position: relative; overflow: hidden;
  border-radius: var(--r2); padding: 36px 32px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.offer-student { border-color: rgba(99,102,241,.3); }
.offer-disabled { border-color: rgba(34,197,94,.3); }
.offer-glow {
  position: absolute; width: 200px; height: 200px;
  border-radius: 50%; filter: blur(60px); pointer-events: none;
  top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
}
.offer-glow-green { background: radial-gradient(circle, rgba(34,197,94,.2) 0%, transparent 70%); }
.offer-badge {
  display: inline-block; background: rgba(99,102,241,.2); color: #818cf8;
  border: 1px solid rgba(99,102,241,.3); border-radius: 20px;
  padding: 3px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 18px;
}
.offer-badge-green { background: rgba(34,197,94,.15); color: #4ade80; border-color: rgba(34,197,94,.3); }
.offer-icon { font-size: 48px; margin-bottom: 12px; }
.offer-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.offer-value {
  font-size: 40px; font-weight: 800; color: #818cf8;
  letter-spacing: -2px; margin-bottom: 12px; line-height: 1;
}
.offer-value-green { color: #4ade80; }
.offer-card > p { color: var(--text2); font-size: 14px; margin-bottom: 18px; line-height: 1.6; }
.offer-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.offer-list li { font-size: 13px; color: var(--text2); }
.offer-btn {
  display: inline-flex; align-items: center;
  background: rgba(99,102,241,.15); color: #818cf8;
  border: 1px solid rgba(99,102,241,.3);
  padding: 11px 22px; border-radius: var(--r);
  font-size: 14px; font-weight: 700;
  transition: background .18s, border-color .18s;
}
.offer-btn:hover { background: rgba(99,102,241,.3); border-color: #818cf8; }
.offer-btn-green { background: rgba(34,197,94,.12); color: #4ade80; border-color: rgba(34,197,94,.3); }
.offer-btn-green:hover { background: rgba(34,197,94,.25); border-color: #4ade80; }
.offers-note {
  font-size: 13px; color: var(--text3); text-align: center; padding-top: 4px;
}
.offers-note a { color: var(--gold); }
.offers-note a:hover { text-decoration: underline; }

/* ── B2B SECTION ──────────────────────────────────────────────── */
.b2b-header { text-align: center; margin-bottom: 48px; }
.b2b-eyebrow {
  font-size: 11px; letter-spacing: 2px; font-weight: 700;
  color: var(--gold); margin-bottom: 12px;
}
.b2b-sub { color: var(--text2); font-size: 15px; margin-top: 12px; line-height: 1.7; }

.b2b-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px;
}
.b2b-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px 22px;
  transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column; gap: 12px;
}
.b2b-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.b2b-card-highlight {
  border-color: rgba(212,168,67,.3);
  background: linear-gradient(160deg, rgba(212,168,67,.06) 0%, var(--surface) 60%);
}
.b2b-card-highlight:hover { border-color: var(--gold); }
.b2b-highlight-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0d0d0d;
  padding: 3px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
}
.b2b-icon { font-size: 36px; }
.b2b-card h3 { font-size: 17px; font-weight: 700; }
.b2b-card > p { font-size: 13px; color: var(--text2); line-height: 1.6; flex: 1; }
.b2b-list { display: flex; flex-direction: column; gap: 6px; }
.b2b-list li {
  font-size: 12px; color: var(--text3); padding-left: 14px;
  position: relative;
}
.b2b-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.b2b-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text); padding: 10px 18px; border-radius: var(--r);
  font-size: 13px; font-weight: 600; margin-top: 4px;
  transition: border-color .18s, background .18s;
}
.b2b-btn:hover { border-color: var(--gold); background: rgba(212,168,67,.08); color: var(--gold); }
.b2b-btn-gold { background: var(--gold); color: #0d0d0d; border-color: var(--gold); }
.b2b-btn-gold:hover { background: var(--gold2); color: #0d0d0d; border-color: var(--gold2); }

.b2b-cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, rgba(212,168,67,.1), rgba(212,168,67,.04));
  border: 1px solid rgba(212,168,67,.2);
  border-radius: var(--r2); padding: 28px 32px; gap: 24px; flex-wrap: wrap;
}
.b2b-cta-text { font-size: 15px; line-height: 1.6; }
.b2b-cta-text strong { color: var(--gold); font-size: 17px; }
.b2b-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── SUMMER SECTION ───────────────────────────────────────────── */
.summer-section {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0d0d0d 0%, #1a0f00 40%, #0d0d0d 100%);
  border-top: 1px solid rgba(255,150,20,.12);
  border-bottom: 1px solid rgba(255,150,20,.12);
}
.summer-bg-glow {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.summer-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,140,0,.18) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.summer-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,200,50,.12) 0%, transparent 70%);
  bottom: -100px; right: 0;
}

.summer-header { text-align: center; margin-bottom: 48px; }
.summer-eyebrow {
  font-size: 12px; letter-spacing: 2px; font-weight: 700;
  color: #ff9a3c; margin-bottom: 14px;
}
.summer-title {
  font-size: clamp(36px, 6vw, 64px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px;
}
.summer-title-accent {
  background: linear-gradient(135deg, #ff9a3c, var(--gold), #ffcc44);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.summer-sub {
  font-size: 17px; color: var(--text2); line-height: 1.7; max-width: 520px; margin: 0 auto;
}
.summer-sub strong { color: var(--text); -webkit-text-fill-color: var(--text); }

/* Location cards */
.summer-locations {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 14px; margin-bottom: 28px;
}
.summer-loc {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,140,0,.15);
  border-radius: var(--r2); padding: 20px 16px; text-align: center;
  transition: border-color .2s, background .2s, transform .2s;
}
.summer-loc:hover {
  border-color: rgba(255,140,0,.4);
  background: rgba(255,140,0,.06);
  transform: translateY(-3px);
}
.summer-loc-featured {
  background: linear-gradient(135deg, rgba(255,140,0,.12), rgba(255,200,50,.06));
  border-color: rgba(255,140,0,.3);
  display: flex; flex-direction: column; justify-content: center;
}
.summer-loc-featured .sloc-icon { font-size: 48px; }
.sloc-icon { font-size: 32px; margin-bottom: 8px; }
.sloc-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.sloc-desc { font-size: 11px; color: var(--text3); line-height: 1.4; }

/* Ausweis card */
.ausweis-card {
  background: linear-gradient(135deg, rgba(255,140,0,.08), rgba(212,168,67,.04));
  border: 1px solid rgba(255,140,0,.25);
  border-radius: var(--r2); padding: 28px 32px;
  margin-bottom: 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.ausweis-left { display: flex; align-items: flex-start; gap: 20px; flex: 1; min-width: 280px; }
.ausweis-icon { font-size: 48px; flex-shrink: 0; }
.ausweis-left h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--gold); }
.ausweis-left p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.ausweis-steps {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: wrap;
}
.ausweis-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center; font-size: 12px; color: var(--text2);
}
.aus-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,140,0,.2); border: 1px solid rgba(255,140,0,.4);
  color: #ff9a3c; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.ausweis-arrow { font-size: 18px; color: rgba(255,140,0,.4); }

/* Summer CTA */
.summer-cta { text-align: center; }
.btn-summer {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #ff8c00, #d4a843, #ff9a3c);
  background-size: 200% auto;
  color: #0d0d0d; font-size: 16px; font-weight: 800;
  padding: 16px 36px; border-radius: var(--r);
  transition: background-position .4s, transform .2s, box-shadow .2s;
  box-shadow: 0 0 40px rgba(255,140,0,.3);
  animation: logo-shimmer 3s linear infinite;
}
.btn-summer:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(255,140,0,.5); color: #0d0d0d; }
.summer-note { font-size: 13px; color: var(--text3); margin-top: 12px; }

/* ── FOOTER DISCOUNTS ─────────────────────────────────────────── */
.footer-discounts {
  margin-top: 14px; display: flex; flex-direction: column; gap: 6px;
}
.fd-item {
  font-size: 12px; color: var(--text3);
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 10px; line-height: 1.4;
}
.fd-item strong { color: var(--gold); }

/* ── TOAST ────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--surface); border: 1px solid var(--gold);
  color: var(--text); padding: 14px 22px; border-radius: var(--r);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 0 30px rgba(212,168,67,.2);
  z-index: 9999; opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
  max-width: 320px;
}
.toast.toast-show { opacity: 1; transform: translateY(0); }
.toast-err { border-color: #ef4444; box-shadow: 0 0 30px rgba(239,68,68,.15); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width:1200px) {
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .scroll-row { grid-template-columns: repeat(4,1fr); }
  .props-grid { grid-template-columns: repeat(2,1fr); }
  .b2b-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .summer-locations { grid-template-columns: repeat(3,1fr); }
  .summer-loc-featured { grid-column: span 1; }
}
@media (max-width:900px) {
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .hero-orbit { display: none; }
  .hero-headline { letter-spacing: -2px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .shop-layout { grid-template-columns:1fr; }
  .shop-sidebar { display: none; }
  .cart-layout { grid-template-columns:1fr; }
  .cart-summary { position: static; }
  .checkout-layout { grid-template-columns:1fr; }
  .how-grid { grid-template-columns:1fr; gap:40px; }
  .contact-inner { grid-template-columns:1fr; gap:40px; }
  .success-details { grid-template-columns:1fr; }
  .offers-grid { grid-template-columns:1fr; }
  .b2b-grid { grid-template-columns: repeat(2,1fr); }
  .b2b-cta-bar { flex-direction: column; text-align: center; }
  .summer-locations { grid-template-columns: repeat(2,1fr); }
  .ausweis-card { flex-direction: column; }
  .ausweis-steps { justify-content: center; }
  .nav-search-form { display: none; }
}
@media (max-width:600px) {
  .topbar { display: none; }
  .nav-cats { display: none; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .scroll-row { grid-template-columns: repeat(2,1fr); }
  .props-grid { grid-template-columns:1fr; }
  .b2b-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .offer-value { font-size: 32px; }
  .summer-locations { grid-template-columns: repeat(2,1fr); }
  .summer-title { letter-spacing: -1px; }
  .ausweis-steps { flex-direction: column; align-items: flex-start; }
  .ausweis-arrow { transform: rotate(90deg); }
}
