/* ═══════════════════════════════════════════════════════════════════════════
   SCHROTTANKAUF IMNU – Main Stylesheet
   Theme: Black / White / Yellow  |  Mobile-First
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Variables ────────────────────────────────────────────────────────────── */
:root {
  --c-black:   #111111;
  --c-black2:  #1e1e1e;
  --c-white:   #ffffff;
  --c-yellow:  #F5B800;
  --c-yellow-d:#D4A000;
  --c-gray:    #f7f7f7;
  --c-gray-mid:#e5e5e5;
  --c-text:    #1a1a1a;
  --c-muted:   #666666;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --radius:    8px;
  --radius-lg: 16px;
  --transition:.2s ease;
  --max-w:     1200px;
}

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--c-text); background: var(--c-white); line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ──────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--c-muted); }
.text-center { text-align: center; }
.text-muted  { color: var(--c-muted); }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mt-half { margin-top: .5rem; }
.mb-1  { margin-bottom: 1rem; }
.h3 { font-size: clamp(1.2rem,3vw,1.6rem); font-weight:700; }

/* ─── Layout ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.content-narrow { max-width: 820px; margin-left: auto; margin-right: auto; }
.section {
  padding: 4rem 0;
}
.bg-dark  { background: var(--c-black); color: var(--c-white); }
.bg-light { background: var(--c-gray); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--c-yellow);
  color: var(--c-black);
  border-color: var(--c-yellow);
}
.btn-primary:hover {
  background: var(--c-yellow-d);
  border-color: var(--c-yellow-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,184,0,.4);
}
.btn-outline {
  background: transparent;
  color: var(--c-black);
  border-color: var(--c-black);
}
.btn-outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}
.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}
.btn-outline-white:hover {
  background: var(--c-white);
  color: var(--c-black);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Navbar ──────────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; }
.navbar {
  background: var(--c-black);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-white);
  flex-shrink: 0;
}
.nav-logo .logo-icon { color: var(--c-yellow); font-size: 1.4rem; }
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
  margin-left: 1.5rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  padding: .5rem .75rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-yellow); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--c-black2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  min-width: 200px;
  padding: .5rem 0;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.dropdown-cities { columns: 2; min-width: 360px; }
.dropdown li a {
  display: block;
  padding: .45rem 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
}
.dropdown li a:hover { color: var(--c-yellow); background: rgba(255,255,255,.05); }
.dropdown .view-all { color: var(--c-yellow) !important; font-weight: 600; }
.has-dropdown:hover .dropdown { display: block; }

.nav-phone {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: .5rem;
  color: var(--c-yellow);
  font-weight: 700;
  font-size: .95rem;
  padding: .5rem 1rem;
  background: rgba(245,184,0,.12);
  border-radius: var(--radius);
  border: 1px solid rgba(245,184,0,.3);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-phone:hover { background: var(--c-yellow); color: var(--c-black); }

.burger {
  margin-left: auto;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--c-black2);
  padding: 1rem 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav li a {
  display: block;
  color: rgba(255,255,255,.85);
  padding: .6rem 0;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav li a:hover { color: var(--c-yellow); }
.mobile-nav .mob-sub a { padding-left: 1rem; font-size: .875rem; }
.mobile-nav .mob-sub-title { color: var(--c-yellow); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .75rem 0 .25rem; }
.mob-phone {
  display: block;
  margin-top: 1.5rem;
  background: var(--c-yellow);
  color: var(--c-black);
  text-align: center;
  padding: .875rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--c-gray);
  border-bottom: 1px solid var(--c-gray-mid);
  padding: .6rem 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  font-size: .85rem;
  color: var(--c-muted);
}
.breadcrumb li { display: flex; align-items: center; gap: .3rem; }
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-yellow); }
.breadcrumb li[aria-current="page"] { color: var(--c-text); font-weight: 600; }
.breadcrumb-inline { font-size:.85rem; color:var(--c-muted); margin-bottom:.75rem; }
.breadcrumb-inline a { color:var(--c-muted); }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--c-black);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1.25rem;
  width: 100%;
}
.hero-content { color: var(--c-white); }
.hero-badge {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-black);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--c-white);
}
.hero-title span { color: var(--c-yellow); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--c-yellow);
  color: var(--c-black);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  margin-bottom: 2rem;
  transition: var(--transition);
  position: relative;
}
.hero-phone:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,184,0,.5); }
.phone-icon-lg {
  width: 40px; height: 40px;
  background: rgba(0,0,0,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-icon-lg svg { stroke: var(--c-black); }
.phone-label { display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.phone-number { display: block; font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 900; }
.phone-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 12px; height: 12px;
  background: #ff4444;
  border-radius: 50%;
}
.phone-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #ff4444;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  to { transform: scale(2); opacity: 0; }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
}
.trust-badge span { color: var(--c-yellow); font-weight: 700; }

/* ─── Contact Form (Hero) ────────────────────────────────────────────────── */
.contact-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Toggle bar */
.form-toggle-bar {
  display: flex;
  border-bottom: 2px solid var(--c-gray-mid);
}
.form-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .85rem .75rem;
  border: none;
  background: var(--c-gray-light);
  color: var(--c-muted);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .01em;
}
.form-toggle-btn:first-child { border-right: 1px solid var(--c-gray-mid); }
.form-toggle-btn.active {
  background: var(--c-white);
  color: var(--c-text);
  border-bottom: 2px solid var(--c-yellow);
  margin-bottom: -2px;
}
.form-toggle-btn svg { flex-shrink: 0; }

/* Form panels */
.form-panel {
  padding: 1.75rem 2rem 2rem;
}

.form-title {
  font-size: 1.3rem;
  margin-bottom: .25rem;
  color: var(--c-text);
}
.form-subtitle {
  color: var(--c-muted);
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--c-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--c-gray-mid);
  border-radius: var(--radius);
  font-size: .95rem;
  transition: var(--transition);
  background: var(--c-white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--c-yellow);
  box-shadow: 0 0 0 3px rgba(245,184,0,.15);
}
.form-group textarea { resize: vertical; }
.form-alert {
  padding: .75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 500;
}
.form-alert.success { background: #d4edda; color: #155724; }
.form-alert.error   { background: #f8d7da; color: #721c24; }
.form-legal {
  font-size: .78rem;
  color: var(--c-muted);
  margin-top: .75rem;
  text-align: center;
}
.form-legal a { color: var(--c-yellow); text-decoration: underline; }

/* ─── USP Strip ──────────────────────────────────────────────────────────── */
.usp-strip {
  background: var(--c-yellow);
  padding: 2rem 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.usp-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--c-black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.usp-icon svg {
  width: 22px; height: 22px;
  stroke: var(--c-yellow);
}
.usp-item h3 { font-size: 1rem; margin-bottom: .2rem; color: var(--c-black); font-weight: 700; }
.usp-item p  { font-size: .85rem; color: rgba(0,0,0,.65); margin: 0; }

/* ─── Section Header ─────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.light h2 { color: var(--c-white); }
.section-header.light p  { color: rgba(255,255,255,.7); }
.section-tag {
  display: inline-block;
  color: var(--c-yellow);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.bg-dark .section-tag { color: var(--c-yellow); }

/* ─── Metals Grid ────────────────────────────────────────────────────────── */
.metals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.metal-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1.5px solid var(--c-gray-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.metal-card:hover {
  border-color: var(--c-yellow);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
/* Metal symbol badge (replaces emojis) */
.metal-icon {
  width: 48px; height: 48px;
  background: var(--c-black);
  color: var(--c-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: .875rem;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.metal-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.metal-desc { font-size: .85rem; color: var(--c-muted); flex: 1; margin-bottom: .875rem; line-height: 1.5; }
.metal-link { font-size: .82rem; font-weight: 700; color: var(--c-yellow); text-transform: uppercase; letter-spacing: .05em; }

/* Metal symbol hero (on metal page) */
.metal-symbol-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-yellow);
  color: var(--c-black);
  border-radius: 12px;
  padding: .5rem 1rem;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}

.metals-grid-sm {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.metal-card-sm {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.06);
  color: var(--c-white);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  font-size: .875rem;
  font-weight: 500;
  transition: var(--transition);
}
.metal-sym-sm {
  font-size: .7rem;
  font-weight: 900;
  background: rgba(245,184,0,.2);
  color: var(--c-yellow);
  padding: .15rem .4rem;
  border-radius: 4px;
  letter-spacing: -.01em;
}
.metal-card-sm:hover { background: var(--c-yellow); color: var(--c-black); border-color: var(--c-yellow); }
.metal-card-sm:hover .metal-sym-sm { background: rgba(0,0,0,.2); color: var(--c-black); }

/* ─── Steps ──────────────────────────────────────────────────────────────── */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  max-width: 300px;
  width: 100%;
  /* equal height */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--c-yellow);
  color: var(--c-black);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
}
.step h3 { color: var(--c-white); margin-bottom: .5rem; }
.step p  { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; flex: 1; }
.step-arrow {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--c-yellow), transparent);
  flex-shrink: 0;
}

/* ─── Cities Grid ────────────────────────────────────────────────────────── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .625rem;
}
.cities-grid-full { grid-template-columns: repeat(2, 1fr); }
.cities-grid-sm   { grid-template-columns: repeat(2, 1fr); }

/* ─── Areas grid (city pages) ───────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem .75rem;
  margin: 1.25rem 0 1rem;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-text);
}
.area-check {
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.areas-note {
  font-size: .875rem;
  color: var(--c-muted);
  font-style: italic;
  margin-top: .5rem;
}
@media (min-width: 640px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
.city-card {
  display: flex;
  flex-direction: column;
  padding: .875rem 1rem .875rem 1.125rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-gray-mid);
  border-left: 3px solid var(--c-gray-mid);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.city-card:hover {
  border-color: var(--c-yellow);
  border-left-color: var(--c-yellow);
  box-shadow: 0 4px 16px rgba(245,184,0,.15);
  transform: translateY(-1px);
}
.city-name   { font-weight: 700; font-size: .9rem; color: var(--c-text); line-height: 1.2; margin-bottom: .15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.city-region { font-size: .75rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ─── Intro Text Grid ────────────────────────────────────────────────────── */
.intro-text-grid {
  display: grid;
  gap: 2.5rem;
}
.intro-text-main h2 { margin-bottom: 1rem; }
.intro-text-main p  { margin-bottom: 1rem; line-height: 1.8; color: #444; }
.intro-text-main p:last-child { margin-bottom: 0; }
.intro-text-main a  { color: var(--c-yellow); text-decoration: underline; text-underline-offset: 3px; }
.aside-card {
  background: var(--c-white);
  border: 2px solid var(--c-yellow);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.aside-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.check-ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .55rem; }
.check-ul li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }
.check-ul li::before { content: '✓'; color: var(--c-yellow); font-weight: 700; flex-shrink: 0; }
.btn-block { display: block; text-align: center; width: 100%; }
@media (min-width: 900px) {
  .intro-text-grid { grid-template-columns: 1fr 320px; align-items: start; }
}

/* ─── Prices Grid ────────────────────────────────────────────────────────── */
.prices-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--c-gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--c-gray-mid);
  background: var(--c-white);
  transition: background .15s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: #fafafa; }
.price-metal { font-weight: 700; font-size: .95rem; }
.price-metal a { color: var(--c-text); text-decoration: none; }
.price-metal a:hover { color: var(--c-yellow); }
.price-types { font-size: .85rem; color: var(--c-muted); }
.price-badge {
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 99px;
  background: var(--c-yellow);
  color: var(--c-black);
  white-space: nowrap;
}
.prices-note { font-size: .85rem; color: var(--c-muted); }
.prices-note a { color: var(--c-yellow); }
@media (max-width: 639px) {
  .price-row { grid-template-columns: 1fr auto; }
  .price-types { display: none; }
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .5rem; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--c-white);
  border: 1.5px solid var(--c-gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--c-yellow); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--c-yellow);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1.1rem; }
.faq-answer p { font-size: .95rem; color: #444; line-height: 1.7; margin: 0; }
.faq-answer a { color: var(--c-yellow); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Trust Stats ────────────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.trust-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.trust-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--c-yellow);
  line-height: 1;
  margin-bottom: .5rem;
}
.trust-label { color: var(--c-muted); font-size: .9rem; }

/* ─── Blog Grid ──────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.blog-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--c-gray-mid);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card-img {
  display: block;
  height: 200px;
  overflow: hidden;
  background: var(--c-gray);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-img-placeholder { background: linear-gradient(135deg, var(--c-black) 0%, var(--c-black2) 100%); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: .8rem; color: var(--c-muted); display: block; margin-bottom: .5rem; }
.blog-card h3, .blog-card .h3 { margin-bottom: .75rem; }
.blog-card h3 a:hover, .blog-card .h3 a:hover { color: var(--c-yellow); }
.blog-card p { font-size: .9rem; color: var(--c-muted); flex: 1; margin-bottom: 1rem; }
.read-more { font-weight: 600; font-size: .875rem; color: var(--c-yellow); }
.read-more:hover { text-decoration: underline; }

/* Blog Article */
.blog-article-header { background: var(--c-gray); padding: 3rem 0 2rem; }
.blog-article-header.page-hero--bg { background: var(--c-black); }
.blog-article-header.page-hero--bg h1,
.blog-article-header.page-hero--bg .breadcrumb-inline,
.blog-article-header.page-hero--bg .breadcrumb-inline a { color: var(--c-white); }
.blog-article-header.page-hero--bg .blog-meta { color: rgba(255,255,255,.65); }
.blog-meta { color: var(--c-muted); font-size: .9rem; margin-top: .5rem; }
.blog-content { padding: 2.5rem 0; }
.blog-content h2 { margin: 2rem 0 1rem; }
.blog-content h3 { margin: 1.5rem 0 .75rem; }
.blog-content p  { margin-bottom: 1.25rem; color: #333; line-height: 1.8; }
.blog-content ul, .blog-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-content li { margin-bottom: .4rem; }
.blog-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-article-img { padding: 1.5rem 0 0; }
.blog-share { border-top: 2px solid var(--c-gray-mid); padding-top: 2rem; margin-top: 2rem; margin-bottom: 3rem; }

/* Pagination */
.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 2.5rem; }
.page-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--c-gray-mid);
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}
.page-link.active, .page-link:hover { background: var(--c-yellow); border-color: var(--c-yellow); color: var(--c-black); }

/* ─── Bottom Contact Section (pages without hero form) ──────────────────── */
.bottom-contact-section { border-top: 3px solid var(--c-yellow); }
.bottom-contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.bottom-contact-text h2 { margin-bottom: .75rem; }
.bottom-contact-text p  { color: var(--c-muted); margin-bottom: 1.25rem; }
@media (min-width: 900px) {
  .bottom-contact-wrap { grid-template-columns: 1fr 420px; align-items: center; }
}

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.cta-section { background: var(--c-black); }
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.cta-text h2 { color: var(--c-white); margin-bottom: .5rem; }
.cta-text p  { color: rgba(255,255,255,.7); margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── Page Hero ──────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--c-black);
  padding: 3rem 0;
  position: relative;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.page-hero-text { color: var(--c-white); }
.page-hero-text h1 { margin-bottom: 1rem; }
.page-hero-text .lead { color: rgba(255,255,255,.75); }

/* Push hero text to bottom of its grid cell (city pages) */
.page-hero-text--bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Center hero text vertically (metal pages) */
.page-hero-text--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-simple {
  background: var(--c-black);
  padding: 3rem 0 2.5rem;
  color: var(--c-white);
}
.page-hero-simple h1 { margin-bottom: .75rem; }
.page-hero-simple .lead { color: rgba(255,255,255,.7); }

/* ─── Buy Box & Check List ───────────────────────────────────────────────── */
.buy-box {
  background: var(--c-gray);
  border-left: 4px solid var(--c-yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.buy-box h3 { margin-bottom: 1rem; }
.check-list { display: grid; grid-template-columns: 1fr; gap: .5rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; line-height: 1.4; }
.check { color: var(--c-yellow); font-weight: 700; flex-shrink: 0; }

/* Checkmark dot (new style for metal types box) */
.check-mark {
  width: 18px; height: 18px;
  background: var(--c-yellow);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .12rem;
  position: relative;
}
.check-mark::after {
  content: '';
  position: absolute;
  left: 5px; top: 3px;
  width: 5px; height: 8px;
  border: 2px solid var(--c-black);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

/* ─── Metal Page Content ─────────────────────────────────────────────────── */
.metal-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.metal-intro-text .section-tag { margin-bottom: .5rem; }
.metal-intro-text h2 { margin-bottom: 1rem; }
.metal-intro-text p  { color: #444; line-height: 1.8; font-size: 1.05rem; }

.metal-types-box {
  background: var(--c-black);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}
.metal-types-box h3 {
  color: var(--c-yellow);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.metal-types-box .check-list li { color: rgba(255,255,255,.85); }
.metal-types-box .check-mark { background: var(--c-yellow); }

.metal-section {
  padding: 3rem 0;
  border-top: 1px solid var(--c-gray-mid);
}
.metal-section--light { background: var(--c-gray); }
.metal-section-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.metal-section-num {
  width: 40px; height: 40px;
  background: var(--c-yellow);
  color: var(--c-black);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .25rem;
}
.metal-section-inner h2 { font-size: 1.35rem; margin-bottom: .75rem; }
.metal-section-inner p  { color: #444; line-height: 1.8; margin: 0; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1.5px solid var(--c-gray-mid); border-radius: var(--radius); overflow: hidden; }
.faq-dark .faq-item { border-color: rgba(255,255,255,.15); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--c-white);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.faq-dark .faq-q { background: #2d2d2d !important; color: #fff !important; }
.faq-q:hover { background: var(--c-gray); }
.faq-dark .faq-q:hover { background: #363636 !important; }
.faq-q[aria-expanded="true"] { color: var(--c-yellow); }
.faq-dark .faq-item { border-color: rgba(255,255,255,.15) !important; }
.faq-arrow { transition: transform .2s; font-size: .85rem; color: var(--c-muted); }
.faq-dark .faq-arrow { color: var(--c-yellow); }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--c-yellow); }
.faq-a { padding: 1rem 1.25rem; background: var(--c-gray); }
.faq-dark .faq-a { background: #262626 !important; }
.faq-a p { margin: 0; color: var(--c-muted); }
.faq-dark .faq-a p { color: rgba(255,255,255,.8) !important; }

/* ─── City page specifics ────────────────────────────────────────────────── */
.info-boxes { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
.info-box {
  background: var(--c-gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 3px solid var(--c-yellow);
}
.info-box h4 { margin-bottom: .75rem; }
.info-box ul { padding-left: .5rem; }
.info-box li { padding: .25rem 0; font-size: .9rem; }

.process-list { display: flex; flex-direction: column; gap: 1.5rem; }
.process-step { display: flex; gap: 1rem; align-items: flex-start; }
.process-num {
  width: 40px; height: 40px;
  background: var(--c-yellow);
  color: var(--c-black);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process-step h4 { margin-bottom: .35rem; }
.process-step p  { font-size: .9rem; color: var(--c-muted); margin: 0; }

/* ─── Contact page ───────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--c-black);
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
}
/* Simple CSS-drawn icons using pseudo-elements */
.contact-detail-icon--phone::after,
.contact-detail-icon--mail::after,
.contact-detail-icon--pin::after,
.contact-detail-icon--clock::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-yellow);
  -webkit-mask-size: 20px;
  mask-size: 20px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.contact-detail-icon--phone::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 12 19.79 19.79 0 0 1 1.61 3.39 2 2 0 0 1 3.59 1h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L7.91 8.54a16 16 0 0 0 6.29 6.29l.92-.92a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 12 19.79 19.79 0 0 1 1.61 3.39 2 2 0 0 1 3.59 1h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L7.91 8.54a16 16 0 0 0 6.29 6.29l.92-.92a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.contact-detail-icon--mail::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}
.contact-detail-icon--pin::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.contact-detail-icon--clock::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}
.contact-phone-large { display: block; font-size: 1.5rem; font-weight: 800; color: var(--c-yellow); margin: .25rem 0 .1rem; }
.contact-hint { font-size: .85rem; color: var(--c-muted); }
.contact-note {
  background: var(--c-gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 3px solid var(--c-yellow);
}
.contact-note h4 { margin-bottom: .75rem; }
.contact-note li { padding: .2rem 0; font-size: .9rem; }
.contact-note li::before { content: '→ '; color: var(--c-yellow); font-weight: 700; }

/* ─── Legal content ──────────────────────────────────────────────────────── */
.legal-content h2 { margin: 2rem 0 1rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { line-height: 1.8; color: #444; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-black);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 1rem;
}
.footer-logo .logo-icon { color: var(--c-yellow); }
.footer-tagline { font-size: .875rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-phone {
  display: inline-block;
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-col h4 {
  color: var(--c-white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col a:hover { color: var(--c-yellow); }
.footer-address, .footer-hours { margin-top: 1.5rem; font-size: .875rem; }
.footer-address address, .footer-hours p { color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--c-yellow); }

/* ─── Misc ───────────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 3rem; color: var(--c-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE – TABLET  ≥ 640px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .usp-grid  { grid-template-columns: repeat(2, 1fr); }
  .metals-grid { grid-template-columns: repeat(3, 1fr); }
  .check-list  { grid-template-columns: repeat(2, 1fr); }
  .info-boxes  { grid-template-columns: repeat(2, 1fr); }
  .blog-grid   { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE – DESKTOP  ≥ 900px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-phone  { display: flex; }
  .burger     { display: none; }

  .hero-inner  { grid-template-columns: 1fr 420px; align-items: center; }
  .page-hero-inner { grid-template-columns: 1fr 400px; align-items: stretch; }

  .usp-grid    { grid-template-columns: repeat(4, 1fr); }
  .metals-grid { grid-template-columns: repeat(5, 1fr); }
  .metal-intro-grid { grid-template-columns: 1fr 380px; align-items: start; }
  .steps-grid  { flex-direction: row; justify-content: center; align-items: stretch; }
  .step        { max-width: 280px; }
  .step-arrow  { width: auto; height: auto; background: none; display: flex; align-items: center; padding: 0 .5rem; }
  .step-arrow::after { content: '→'; color: var(--c-yellow); font-size: 1.5rem; font-weight: 300; }
  .trust-grid  { grid-template-columns: repeat(4, 1fr); }
  .blog-grid   { grid-template-columns: repeat(3, 1fr); }
  .cities-grid { grid-template-columns: repeat(6, 1fr); }
  .cities-grid-full { grid-template-columns: repeat(6, 1fr); }
  .check-list  { grid-template-columns: repeat(2, 1fr); }
  .cta-inner   { flex-direction: row; align-items: center; text-align: left; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE BOTTOM BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 58px;
  border-top: 2px solid var(--c-yellow);
}

@media (max-width: 899px) {
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 58px; }
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity var(--transition);
}
.mobile-bottom-btn:active { opacity: 0.85; }

.mobile-bottom-btn--call {
  background: var(--c-yellow);
  color: var(--c-black);
}
.mobile-bottom-btn--whatsapp {
  background: #25D366;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #111;
  border-top: 3px solid var(--c-yellow);
  padding: 1.25rem 1rem;
  box-shadow: 0 -6px 32px rgba(0,0,0,.4);
  animation: slideUpCookie .35s ease;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@media (max-width: 899px) {
  .cookie-banner { bottom: 58px; } /* sit above mobile bottom bar */
}

.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 220px;
  color: #bbb;
  font-size: .875rem;
  line-height: 1.55;
}
.cookie-banner-text strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: .35rem;
}
.cookie-banner-text p  { margin: 0 0 .35rem; }
.cookie-banner-text a  { color: var(--c-yellow); text-decoration: underline; font-size: .8rem; }

.cookie-banner-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-decline {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.cookie-btn-decline:hover { border-color: #fff; }

.cookie-settings-btn {
  background: none;
  border: none;
  color: var(--c-muted);
  font-size: .8rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.cookie-settings-btn:hover { color: var(--c-text); }
