/* ==========================================================================
   Car Style Garage — Stylesheet
   Keine externen Font-CDNs (bewusst, aus DSGVO-Gründen) — nur Systemfonts.
   ========================================================================== */

:root {
  /* Farben */
  --bg: #0a0b0d;
  --surface: #14171b;
  --surface-2: #1c2024;
  --border: #262b30;
  --text: #f1f2ed;
  --text-dim: #9ba3a8;
  --cyan: #35f2c9;
  --magenta: #ff2bc2;
  --amber: #ffc42e;
  --gradient-swatch: linear-gradient(90deg, var(--cyan) 0%, #3fd8ff 20%, #a86bff 40%, var(--magenta) 60%, var(--amber) 85%, var(--cyan) 100%);
  --glow-cyan: 0 0 24px rgba(53, 242, 201, 0.55), 0 0 56px rgba(53, 242, 201, 0.18);
  --glow-magenta: 0 0 24px rgba(255, 43, 194, 0.55), 0 0 56px rgba(255, 43, 194, 0.18);
  --glow-amber: 0 0 24px rgba(255, 196, 46, 0.5), 0 0 56px rgba(255, 196, 46, 0.16);

  /* Typografie */
  --font-display: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin: 0 0 0.4em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-block;
  margin-bottom: 0.8em;
  text-shadow: 0 0 14px rgba(53, 242, 201, 0.6);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-heading p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin: 0;
}

section { padding: 96px 0; }

/* -------------------------------------------------------------------- */
/* Swatch strip — Signature-Element (Farbwechselfolie als Referenz)     */
/* -------------------------------------------------------------------- */
.swatch-strip {
  height: 10px;
  width: 100%;
  background: var(--gradient-swatch);
  background-size: 200% 100%;
  animation: swatch-shift 8s linear infinite;
  box-shadow: 0 0 30px rgba(255, 43, 194, 0.35), 0 0 30px rgba(53, 242, 201, 0.25);
}

@keyframes swatch-shift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .swatch-strip { animation: none; }
}

/* -------------------------------------------------------------------- */
/* Header                                                                */
/* -------------------------------------------------------------------- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

body { padding-top: 92px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.logo {
  font-family: var(--font-display);
  font-stretch: condensed;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  width: auto;
  height: 68px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  background: none;
}

.footer-logo {
  height: 52px;
}

.brand-name {
  font-size: 1.8rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .brand-name { font-size: 1.25rem; }
  .site-logo { height: 48px; }
}

nav.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a:focus-visible {
  color: var(--text);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.header-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 10px -2px rgba(0,0,0,0.5);
}

.header-icon-btn svg { width: 21px; height: 21px; }

.header-icon-btn.tel { background: var(--cyan); }
.header-icon-btn.wa { background: #25d366; }
.header-icon-btn.mail { background: var(--amber); }
.header-icon-btn.fb { background: #1877f2; }
.header-icon-btn.ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.header-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.6);
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--cyan);
  color: #04120e;
  box-shadow: 0 0 18px rgba(53, 242, 201, 0.35);
}

.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* -------------------------------------------------------------------- */
/* Hero                                                                  */
/* -------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% -10%, rgba(53, 232, 196, 0.12), transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(255, 63, 174, 0.10), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02;
  margin-bottom: 0.3em;
}

.hero h1 span {
  background: var(--gradient-swatch);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: swatch-shift 6s linear infinite;
  filter: drop-shadow(0 0 18px rgba(255, 43, 194, 0.35));
}

.hero-sub {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 2em;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  aspect-ratio: 4/5;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .placeholder-note {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.hero-visual.hero-video {
  aspect-ratio: 16/9;
  background: #000;
}

.hero-visual.hero-video::before {
  display: none;
}

.hero-visual.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-swatch);
  background-size: 300% 100%;
  opacity: 0.08;
  animation: swatch-shift 10s linear infinite;
}

.hero-specs {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-specs .spec {
  font-family: var(--font-mono);
}

.hero-specs .spec strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text);
}

.hero-specs .spec span {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------------------------------------------------------------------- */
/* Leistungen — Dropdown-Menü im Header                                  */
/* -------------------------------------------------------------------- */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible { color: var(--text); }

.nav-dropdown-toggle .caret {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  margin: 0;
  list-style: none;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.7);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.open {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-toggle .caret,
.nav-dropdown-toggle[aria-expanded="true"] .caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu li { margin: 0; }

.nav-dropdown-menu a {
  display: block;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.88rem;
  padding: 9px 14px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--surface-2);
  color: var(--cyan);
}

/* Sorgt dafür, dass der fixierte Header die Karte beim Hinspringen nicht überdeckt */
.service-card,
#ablauf, #warum-wir, #faq, #kontakt {
  scroll-margin-top: 110px;
}

@media (max-width: 640px) {
  .service-card,
  #ablauf, #warum-wir, #faq, #kontakt {
    scroll-margin-top: 16px;
  }
}

/* -------------------------------------------------------------------- */
/* Leistungen (Services)                                                 */
/* -------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 220px; height: 220px;
  background: var(--card-glow, var(--cyan));
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  border-color: var(--card-glow, var(--cyan));
  transform: translateY(-5px);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6);
}

.service-card:hover::before { opacity: 0.22; }

.service-image {
  width: calc(100% + 64px);
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin: -36px -32px 24px;
  display: block;
  border-bottom: 1px solid var(--border);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  color: var(--card-glow, var(--cyan));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  filter: drop-shadow(0 0 8px currentColor);
}

.service-card .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--card-glow, var(--magenta));
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 16px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 6px;
  width: fit-content;
}

.partner-badge .partner-logo {
  height: 22px;
  width: auto;
}

.ks-heading {
  font-family: Verdana, Geneva, sans-serif !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-dim);
  font-size: 0.96rem;
  margin: 0 0 16px;
}

.service-card ul.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-card ul.feature-list li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}

.service-card ul.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--card-glow, var(--cyan));
  box-shadow: 0 0 8px var(--card-glow, var(--cyan));
}

/* -------------------------------------------------------------------- */
/* Ablauf (Process)                                                      */
/* -------------------------------------------------------------------- */
.video-frame {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--glow-cyan);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

.process {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step { position: relative; padding-left: 8px; border-left: 2px solid var(--border); }

.process-step .num {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 0.92rem; margin: 0; }

/* -------------------------------------------------------------------- */
/* Warum wir (USPs)                                                      */
/* -------------------------------------------------------------------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* -------------------------------------------------------------------- */
/* FAQ                                                                   */
/* -------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 24px;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--font-display);
  font-stretch: condensed;
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.4rem;
  color: var(--cyan);
  transition: transform 0.2s ease;
}

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

.faq-item p {
  color: var(--text-dim);
  font-size: 0.94rem;
  padding-bottom: 18px;
  margin: 0;
}

.usp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.usp-item .mark {
  font-family: var(--font-mono);
  color: var(--amber);
  font-size: 1.1rem;
}

.usp-item h4 { margin: 0 0 4px; font-size: 1.05rem; text-transform: none; letter-spacing: normal; }
.usp-item p { margin: 0; color: var(--text-dim); font-size: 0.92rem; }

/* -------------------------------------------------------------------- */
/* Kontakt                                                               */
/* -------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.contact-info-card dl {
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}

.contact-info-card dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-info-card dd { margin: 4px 0 0; }
.contact-info-card dd.placeholder-text { color: var(--amber); font-size: 0.88rem; }

form.contact-form {
  display: grid;
  gap: 18px;
}

.form-row { display: grid; gap: 8px; }

.form-row label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.form-row input,
.form-row select,
.form-row textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.form-consent input { margin-top: 4px; }
.form-consent a { color: var(--cyan); }

/* -------------------------------------------------------------------- */
/* Footer                                                                */
/* -------------------------------------------------------------------- */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

.footer-social {
  display: flex;
  gap: 14px;
}

.social-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-badge svg { width: 20px; height: 20px; }

.social-badge.wa { background: #25d366; }
.social-badge.tel { background: var(--cyan); }
.social-badge.mail { background: var(--amber); }
.social-badge.fb { background: #1877f2; }
.social-badge.ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -4px rgba(0,0,0,0.5);
}

.footer-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* -------------------------------------------------------------------- */
/* Cookie-Banner                                                        */
/* -------------------------------------------------------------------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px;
  display: none;
}

#cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-text { flex: 1 1 380px; font-size: 0.9rem; color: var(--text-dim); }
.cookie-text a { color: var(--cyan); }

.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cookie-settings-panel {
  max-width: var(--container);
  margin: 16px auto 0;
  display: none;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cookie-settings-panel.visible { display: grid; }

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option strong { display: block; font-size: 0.9rem; }
.cookie-option p { margin: 2px 0 0; font-size: 0.82rem; color: var(--text-dim); }

/* -------------------------------------------------------------------- */
/* Legal pages (Impressum / Datenschutz)                                */
/* -------------------------------------------------------------------- */
.legal-page {
  padding: 64px 0 96px;
  max-width: 820px;
}

.legal-page h1 { font-size: 2.2rem; margin-bottom: 0.6em; }
.legal-page h2 { font-size: 1.3rem; margin-top: 2em; }
.legal-page p, .legal-page li { color: var(--text-dim); }
.legal-page a { color: var(--cyan); }
.legal-page .placeholder { color: var(--amber); }

/* -------------------------------------------------------------------- */
/* Shop                                                                  */
/* -------------------------------------------------------------------- */
.shop-grid { grid-template-columns: repeat(3, 1fr); }

.product-card { display: flex; flex-direction: column; }

.product-image-placeholder {
  width: calc(100% + 64px);
  margin: -36px -32px 20px;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

.product-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.product-options label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: grid;
  gap: 6px;
}

.product-options select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
}

.product-price {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--cyan);
}

.product-footer .add-btn { padding: 10px 16px; font-size: 0.85rem; }

/* Cart icon in header */
.header-icon-btn.cart { background: var(--surface-2); border: 1px solid var(--border); position: relative; }
.header-icon-btn.cart svg { stroke: var(--text); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--magenta);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Cart page */
.cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.cart-row-info { display: grid; gap: 4px; }
.cart-row-info span { color: var(--text-dim); font-size: 0.85rem; }

.cart-row-price { font-family: var(--font-mono); color: var(--cyan); white-space: nowrap; }

.cart-remove-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-dim);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}
.cart-remove-btn:hover { color: var(--magenta); border-color: var(--magenta); }

.cart-summary {
  margin-top: 32px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 420px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}

.cart-note { color: var(--text-dim); font-size: 0.8rem; margin-top: 8px; }
.cart-error { color: var(--magenta); font-size: 0.85rem; margin-top: 10px; }

@media (max-width: 900px) {
  .shop-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 1fr auto; }
  .cart-row-price { grid-column: 1/2; }
}

/* -------------------------------------------------------------------- */
/* Responsive                                                            */
/* -------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  header.site-header { position: static; }
  body { padding-top: 0; }
  nav.main-nav { position: static; width: 100%; background: var(--bg); padding: 0 24px; display: none; max-height: none; }
  nav.main-nav.open { display: block; padding: 16px 24px 24px; }
  nav.main-nav > ul { flex-direction: column; gap: 8px; }
  nav.main-nav a { display: block; padding: 11px 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 11px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .nav-dropdown-toggle .caret { display: inline-block; }
  .nav-dropdown-menu {
    display: none;
    position: static;
    transform: none;
    width: 100%;
    max-height: none;
    background: #000000;
    border: 1px solid var(--border);
    box-shadow: none;
    padding: 10px 14px;
    margin: 8px 0;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .nav-dropdown-menu.open { display: block; }
  .nav-dropdown-menu a { border-bottom: 1px solid var(--border); padding: 10px 0; font-size: 0.88rem; }
  .nav-dropdown-menu li:last-child a { border-bottom: none; }
  .header-actions { gap: 4px; flex-wrap: wrap; justify-content: flex-end; row-gap: 6px; }
  .header-icon-btn { width: 26px; height: 26px; }
  .header-icon-btn svg { width: 12px; height: 12px; }
  .nav-toggle { display: block; width: 32px; height: 32px; font-size: 1rem; }
  .container { padding: 0 14px; }
  .header-inner { flex-wrap: wrap; height: auto; min-height: 76px; padding: 10px 0; }
  body { padding-top: 0; }
  .brand-name { font-size: 1.1rem; }
  .site-logo { height: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}
