:root {
  --orange: rgb(237 107 32);
  --orange-dark: rgb(199 78 14);
  --black: rgb(3 4 5);
  --ink: #151515;
  --muted: #676b73;
  --line: #e8e8e8;
  --soft: #f7f4ef;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 20px 50px rgba(3, 4, 5, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(3, 4, 5, 0.08);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 70px;
  height: 62px;
  padding: 6px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(3, 4, 5, 0.10);
  overflow: hidden;
}

.brand-logo-mark {
  font-weight: 950;
  letter-spacing: -0.08em;
  color: var(--black);
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:not(.nav-cta) {
  color: #272727;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--orange);
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--black);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--white);
}

.section {
  padding: 96px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(237, 107, 32, 0.32), transparent 32%),
    linear-gradient(135deg, #151515 0%, var(--black) 55%, #17100c 100%);
}

.section-soft {
  background: var(--soft);
}

.hero {
  padding: 90px 0 82px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 810px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(237, 107, 32, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-section .btn-secondary,
.section:not(.section-dark) .btn-secondary {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
}

.hero-checklist li {
  position: relative;
  padding-left: 28px;
}

.hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 950;
}

.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 190px;
  height: 190px;
  background: var(--orange);
  opacity: 0.2;
  filter: blur(34px);
  border-radius: 999px;
}

.hero-card-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #36d576;
  box-shadow: 0 0 0 6px rgba(54, 213, 118, 0.18);
}

.steps {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  gap: 4px;
  padding-left: 46px;
  position: relative;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 10px;
  font-weight: 950;
}

.steps span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 24px 22px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 1.02rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 4, 5, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--orange);
  background: rgba(237, 107, 32, 0.09);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-icon {
  width: 100%;
  min-height: 118px;
  margin-bottom: 22px;
  border-radius: 18px;
  border: 1px solid rgba(3, 4, 5, 0.08);
  background:
    linear-gradient(135deg, rgba(237, 107, 32, 0.95), rgba(237, 107, 32, 0.18)),
    #191919;
  position: relative;
  overflow: hidden;
}

.product-icon::before,
.product-icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.86);
}

.product-icon.brake::before {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 16px solid rgba(255, 255, 255, 0.86);
  background: transparent;
  left: 25px;
  top: 20px;
}

.product-icon.brake::after {
  width: 50px;
  height: 82px;
  right: 35px;
  top: 19px;
  border-radius: 12px;
  transform: rotate(-8deg);
}

.product-icon.oil::before {
  width: 80px;
  height: 64px;
  left: 35px;
  top: 34px;
  border-radius: 12px 12px 18px 18px;
  transform: skewX(-8deg);
}

.product-icon.oil::after {
  width: 32px;
  height: 24px;
  left: 88px;
  top: 18px;
  border-radius: 8px 8px 0 0;
}

.product-icon.battery::before {
  width: 126px;
  height: 62px;
  left: 33px;
  top: 34px;
  border-radius: 12px;
}

.product-icon.battery::after {
  width: 18px;
  height: 12px;
  left: 55px;
  top: 22px;
  border-radius: 4px 4px 0 0;
  box-shadow: 62px 0 0 rgba(255, 255, 255, 0.86);
}

.product-icon.filter::before {
  width: 72px;
  height: 88px;
  left: 38px;
  top: 16px;
  border-radius: 14px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.86) 5px, rgba(255,255,255,.45) 5px, rgba(255,255,255,.45) 11px);
}

.product-icon.filter::after {
  width: 66px;
  height: 66px;
  right: 38px;
  top: 28px;
  border-radius: 999px;
  border: 12px solid rgba(255, 255, 255, 0.86);
  background: transparent;
}

.product-card p {
  color: var(--muted);
}

.product-meta {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.product-meta span {
  font-size: 0.95rem;
}

.product-meta strong {
  font-size: 1.55rem;
  color: var(--black);
}

.product-meta small {
  color: var(--muted);
}

.product-card a {
  display: inline-flex;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 16px;
  /* border-radius: 999px; */
  color: var(--white);
  /* background: var(--black); */
  font-weight: 900;
}

.about-grid,
.pickup-grid,
.contact-grid,
.faq-grid,
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.about-grid > div:first-child p:not(.eyebrow),
.pickup-grid p,
.contact-grid p,
.faq-grid p,
.service-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.value-panel,
.opening-card,
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 4, 5, 0.04);
}

.value-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.value-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--orange);
  font-weight: 950;
}

.value-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.maker-card {
  min-height: 130px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fff, #fbfbfb);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.maker-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 107, 32, 0.4);
}

.maker-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.maker-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-dark {
  position: relative;
}

.service-dark .eyebrow {
  color: #ffb38a;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-list article {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-list span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(237, 107, 32, 0.14);
  font-size: 0.76rem;
  font-weight: 950;
}

.service-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.map-card {
  min-height: 390px;
  border-radius: var(--radius);
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(237, 107, 32, 0.32), transparent),
    var(--black);
  box-shadow: var(--shadow);
}

.map-placeholder {
  height: 100%;
  min-height: 366px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(3,4,5,0.06) 1px, transparent 1px),
    linear-gradient(rgba(3,4,5,0.06) 1px, transparent 1px),
    #f1f1f1;
  background-size: 28px 28px;
}

.map-placeholder span {
  justify-self: center;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-placeholder strong {
  display: block;
  font-size: 1.45rem;
}

.map-placeholder small {
  color: var(--muted);
}

.opening-card dl {
  margin: 18px 0 0;
}

.opening-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.opening-card dt {
  font-weight: 900;
}

.opening-card dd {
  margin: 0;
  color: var(--muted);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-grid article {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.audience-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(180deg, #fff 0%, #fff 52%, var(--soft) 52%, var(--soft) 100%);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fbfbfb;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(237, 107, 32, 0.12);
}

.contact-form small {
  color: var(--muted);
}

.site-footer {
  padding: 42px 0 86px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-grid div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-grid a {
  color: var(--white);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 40;
  display: none;
  align-items: center;
  gap: 14px;
  width: min(420px, calc(100% - 24px));
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 4, 5, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.sticky-cta span {
  font-weight: 900;
}

.sticky-cta a {
  margin-left: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--orange);
  font-weight: 950;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .about-grid,
  .pickup-grid,
  .contact-grid,
  .faq-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }

  .product-grid,
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .navbar {
    min-height: 70px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand small {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 58px 0 64px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-card,
  .value-panel,
  .opening-card,
  .contact-form {
    padding: 22px;
  }

  .product-grid,
  .brand-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .trust-grid > div,
  .trust-grid > div:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    flex-direction: column;
  }

  .hero-actions,
  .contact-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}


/* WhatsApp-first contact */
.whatsapp-nav,
.whatsapp-card,
.whatsapp-icon {
  --whatsapp: #25D366;
}

.whatsapp-card {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 430px;
  margin: 26px 0 0;
  padding: 16px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  border-radius: 22px;
  background: rgba(37, 211, 102, 0.08);
}

.whatsapp-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--whatsapp);
  border-radius: 18px;
  font-weight: 950;
  font-size: 1.25rem;
}

.whatsapp-card strong,
.whatsapp-card span {
  display: block;
}

.whatsapp-card span,
.privacy-note {
  color: var(--muted);
}

.privacy-note {
  max-width: 560px;
  font-size: 0.92rem;
}



.legal-page {
  background: var(--soft);
}

.legal-hero {
  padding: 74px 0 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(237, 107, 32, 0.35), transparent 32%),
    linear-gradient(135deg, #151515 0%, var(--black) 70%);
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-content {
  padding: 46px 0 96px;
}

.legal-card {
  max-width: 920px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(3, 4, 5, 0.06);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card strong {
  color: var(--ink);
}

.legal-card a {
  color: var(--orange);
  font-weight: 850;
}

.legal-warning {
  margin-bottom: 24px;
  padding: 16px;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  background: rgba(237, 107, 32, 0.08);
}

@media (max-width: 980px) {
  

  .legal-nav-static {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
}

@media (max-width: 760px) {
  .legal-nav-static {
    display: none;
  }
}

@media (max-width: 640px) {
  .legal-card {
    padding: 24px;
  }

  
}


/* Google Maps consent + opening status */
.opening-status,
.opening-status-large,
.whatsapp-open-panel {
  --open: #22c55e;
  --closed: #ef4444;
}

.opening-status.is-open .status-dot,
.opening-status-large.is-open .status-dot,
.whatsapp-open-panel.is-open .status-dot {
  background: var(--open);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.opening-status.is-closed .status-dot,
.opening-status-large.is-closed .status-dot,
.whatsapp-open-panel.is-closed .status-dot {
  background: var(--closed);
  box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.18);
}

.opening-status-large {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(3, 4, 5, 0.04);
}

.opening-status-large strong,
.opening-status-large small {
  display: block;
}

.opening-status-large small {
  color: var(--muted);
}

.opening-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-card {
  position: relative;
  overflow: hidden;
}

.google-map {
  width: 100%;
  height: 390px;
  display: none;
  border: 0;
  border-radius: 18px;
  background: #f1f1f1;
}

.map-card.map-loaded .google-map {
  display: block;
}

.map-card.map-loaded .map-consent {
  display: none;
}

.map-consent {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 15%, rgba(237, 107, 32, 0.25), transparent 32%),
    linear-gradient(135deg, #1b1b1b, var(--black));
  color: var(--white);
  text-align: center;
}

.map-consent-content {
  max-width: 430px;
}

.map-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(237, 107, 32, 0.12);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-consent strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.map-consent p {
  color: rgba(255, 255, 255, 0.76);
}

.map-consent a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.whatsapp-section {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 211, 102, 0.18), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(237, 107, 32, 0.28), transparent 32%),
    linear-gradient(135deg, #141414 0%, var(--black) 72%);
}

.whatsapp-section .eyebrow {
  color: #7cf0a4;
}

.whatsapp-section-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 52px;
  align-items: start;
}

.whatsapp-section h2 {
  max-width: 780px;
}

.whatsapp-section p {
  color: rgba(255, 255, 255, 0.74);
}

.whatsapp-open-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 30px 0 0;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
}

.whatsapp-open-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.12rem;
}

.whatsapp-open-panel p {
  margin: 0;
}

.whatsapp-section .contact-form {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
}

.whatsapp-section .privacy-note {
  color: rgba(255,255,255,0.64);
}

@media (max-width: 980px) {
  .whatsapp-section-grid {
    grid-template-columns: 1fr;
  }
}


/* Image-based offer cards */
.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.offer-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  /* background: var(--orange); */
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.offer-card:hover .product-image img {
  transform: scale(1.035);
}

.offer-card-body {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 22px;
}

.offer-card-body .product-badge {
  margin-bottom: 16px;
}

.offer-card-body p {
  color: var(--muted);
}

.offer-link {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .offer-card-body {
    min-height: 240px;
  }
}

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

  .offer-card-body {
    min-height: auto;
  }
}


/* 2er-Angebotslayout */
.offer-grid {
  gap: 28px;
}

.offer-card {
  border-radius: 28px;
}

.offer-card-body {
  min-height: 220px;
}

.offer-link {
  width: max-content;
  min-width: 150px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
}

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


/* WhatsApp Collage Section */
.whatsapp-section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.whatsapp-section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.whatsapp-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: stretch;
}

.whatsapp-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.06);
}

.whatsapp-visual {
  min-height: 380px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 70px rgba(0,0,0,0.34);
  background: var(--black);
}

.whatsapp-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  object-fit: cover;
}

.whatsapp-benefits {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.whatsapp-benefits li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,0.80);
}

.whatsapp-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #25D366;
  font-weight: 950;
}





@media (max-width: 980px) {
  .whatsapp-hero-card {
    grid-template-columns: 1fr;
  }

  .whatsapp-visual,
  .whatsapp-visual img {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .whatsapp-copy {
    padding: 22px;
    border-radius: 24px;
  }

  .whatsapp-visual {
    border-radius: 24px;
  }

  
}


/* Fix: WhatsApp collage image always visible */
.whatsapp-visual {
  margin: 0;
  display: block;
}

.whatsapp-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.whatsapp-section .contact-buttons {
  margin-bottom: 18px;
}


/* Final: WhatsApp background wirklich auf kompletter Section */
section.whatsapp-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--black);
  background-image:
    linear-gradient(135deg, rgba(3, 4, 5, 0.88) 0%, rgba(3, 4, 5, 0.72) 45%, rgba(3, 4, 5, 0.90) 100%),
    url("./assets/whatsapp/whatsapp-anfragen-collage.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll;
}

/* Keine Hintergrundgrafik und kein dunkles Bild auf Unterelementen */
section.whatsapp-section .whatsapp-copy,
section.whatsapp-section .whatsapp-hero-card,
section.whatsapp-section .whatsapp-open-panel {
  background-image: none !important;
}

section.whatsapp-section .whatsapp-copy {
  background: rgba(3, 4, 5, 0.58) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

section.whatsapp-section .whatsapp-hero-card {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 760px);
}

/* Falls der alte Bildblock noch existiert, nicht anzeigen – das Bild ist jetzt Section-Hintergrund */
section.whatsapp-section .whatsapp-visual {
  display: none !important;
}

/* Pseudo-Elemente deaktiviert, damit der Hintergrund wirklich nur auf section.whatsapp-section liegt */
section.whatsapp-section::before,
section.whatsapp-section::after {
  content: none !important;
  display: none !important;
}

section.whatsapp-section > .container {
  position: relative;
  z-index: 1;
}


.whatsapp-direct-note {
  margin: -4px 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}


/* WhatsApp input message box */
.whatsapp-message-box {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-message-box label {
  color: var(--white);
  font-weight: 950;
}

.whatsapp-message-box textarea {
  min-height: 142px;
  resize: vertical;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.whatsapp-message-box small {
  color: rgba(255, 255, 255, 0.66);
}

.whatsapp-template-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.whatsapp-template-buttons button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
}

.whatsapp-template-buttons button:hover {
  background: rgba(37, 211, 102, 0.20);
  border-color: rgba(37, 211, 102, 0.36);
}

.whatsapp-message-box .btn {
  width: 100%;
}


/* Hero Hintergrundbild */
.hero {
  position: relative;
  padding: 90px 0 82px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.68) 38%, rgba(0, 0, 0, 0.42) 68%, rgba(0, 0, 0, 0.30) 100%),
    url("./assets/hero/banner.jpg") center / cover no-repeat !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 68px;
    background-position: 18% center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 58px 0 64px;
    background-position: 24% center;
  }
}

/* Logo image in navigation */
.brand-logo {
  width: 70px;
  height: 62px;
  padding: 6px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(3, 4, 5, 0.10);
  overflow: hidden;
  box-shadow: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-logo-mark {
  display: none;
}


/* Google Maps direkt anzeigen, ohne Klick */
#abholung .map-card {
  padding: 0;
}

#abholung .google-map {
  display: block !important;
}

#abholung .map-consent {
  display: none !important;
}


/* Fix: Abholung/Google-Maps Layout sauber ausrichten */
#abholung .pickup-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 42px;
}

#abholung .map-card,
#abholung .google-map {
  min-height: 520px;
}

#abholung .opening-card {
  height: auto !important;
  min-height: 0;
  justify-content: flex-start !important;
  margin-top: 22px;
}

#abholung .opening-status-large {
  margin-bottom: 22px;
}

@media (max-width: 980px) {
  #abholung .pickup-grid {
    grid-template-columns: 1fr;
  }

  #abholung .map-card,
  #abholung .google-map {
    min-height: 380px;
  }

  #abholung .opening-card {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  #abholung .map-card,
  #abholung .google-map {
    min-height: 320px;
  }
}


/* Final Fix: Öffnungsstatus sauber zweizeilig darstellen */
#abholung .opening-status-large {
  display: grid !important;
  grid-template-columns: 12px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 0 24px !important;
  padding: 18px 20px;
  border-radius: 20px;
  background: #f3f3f3;
}

#abholung .opening-status-large .status-dot {
  width: 10px;
  height: 10px;
  align-self: start;
  margin-top: 7px;
}

#abholung .opening-status-large > div {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 3px;
  min-width: 0;
}

#abholung .opening-status-large [data-opening-label] {
  display: block !important;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.2;
  white-space: normal;
}

#abholung .opening-status-large [data-opening-detail] {
  display: block !important;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
  white-space: normal;
}

#abholung .opening-card {
  margin-top: 28px;
  padding: 28px;
}

#abholung .pickup-grid {
  align-items: start !important;
}

@media (max-width: 640px) {
  #abholung .opening-status-large {
    grid-template-columns: 10px minmax(0, 1fr);
    padding: 16px;
  }

  #abholung .opening-status-large [data-opening-label] {
    font-size: 0.98rem;
  }

  #abholung .opening-status-large [data-opening-detail] {
    font-size: 0.88rem;
  }
}


/* Final Fix: Öffnungsstatus-Punkt und Text sauber ausrichten */
#abholung .opening-status-large {
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  width: 100%;
  margin: 0 0 24px !important;
  padding: 17px 20px !important;
  border-radius: 20px !important;
  background: #f3f3f3 !important;
  overflow: hidden;
}

#abholung .opening-status-large .status-dot {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  flex: 0 0 12px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  transform: none !important;
}

#abholung .opening-status-large.is-open .status-dot {
  background: #22c55e !important;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.15) !important;
}

#abholung .opening-status-large.is-closed .status-dot {
  background: #ef4444 !important;
  box-shadow: 0 0 0 7px rgba(239, 68, 68, 0.15) !important;
}

#abholung .opening-status-large > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 2px !important;
  min-width: 0 !important;
  width: 100% !important;
}

#abholung .opening-status-large [data-opening-label] {
  display: block !important;
  width: 100% !important;
  color: var(--ink) !important;
  font-size: 1.02rem !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  text-align: left !important;
}

#abholung .opening-status-large [data-opening-detail] {
  display: block !important;
  width: 100% !important;
  color: var(--muted) !important;
  font-size: 0.92rem !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  text-align: left !important;
}

@media (max-width: 640px) {
  #abholung .opening-status-large {
    padding: 15px 16px !important;
    gap: 12px !important;
  }

  #abholung .opening-status-large [data-opening-label] {
    font-size: 0.98rem !important;
  }

  #abholung .opening-status-large [data-opening-detail] {
    font-size: 0.88rem !important;
  }
}


/* Clean Fix: Öffnungsstatus ohne alte status-dot Konflikte */
#abholung .opening-status-box {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  width: 100%;
  margin: 0 0 24px !important;
  padding: 18px 20px !important;
  border-radius: 20px !important;
  background: #f3f3f3 !important;
  border: 1px solid rgba(3, 4, 5, 0.06);
}

#abholung .opening-status-dot {
  display: block !important;
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  flex: 0 0 12px !important;
  border-radius: 999px !important;
  background: #9ca3af;
}

#abholung .opening-status-box.is-open .opening-status-dot {
  background: #22c55e !important;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.15) !important;
}

#abholung .opening-status-box.is-closed .opening-status-dot {
  background: #ef4444 !important;
  box-shadow: 0 0 0 7px rgba(239, 68, 68, 0.15) !important;
}

#abholung .opening-status-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 3px !important;
  min-width: 0 !important;
}

#abholung .opening-status-content strong {
  display: block !important;
  color: var(--ink) !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
  text-align: left !important;
  white-space: normal !important;
}

#abholung .opening-status-content small {
  display: block !important;
  color: var(--muted) !important;
  font-size: 0.92rem !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  text-align: left !important;
  white-space: normal !important;
}

@media (max-width: 640px) {
  #abholung .opening-status-box {
    padding: 16px !important;
    gap: 12px !important;
  }
}


/* Statuswort farbig statt Punkt */
#abholung .opening-status-box {
  display: block !important;
  padding: 18px 20px !important;
  border-radius: 20px !important;
  background: #f3f3f3 !important;
  border: 1px solid rgba(3, 4, 5, 0.06);
}

#abholung .opening-status-dot {
  display: none !important;
}

#abholung .opening-status-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
}

#abholung .opening-status-content [data-opening-label] {
  display: block !important;
  font-size: 1.05rem !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
}

#abholung .opening-status-box.is-open [data-opening-label] {
  color: #16a34a !important;
}

#abholung .opening-status-box.is-closed [data-opening-label] {
  color: #dc2626 !important;
}

#abholung .opening-status-content [data-opening-detail] {
  display: block !important;
  color: var(--muted) !important;
  font-size: 0.92rem !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
}


/* Final Fix: Google-Maps-Karte nutzt die volle linke Höhe */
#abholung .pickup-grid {
  align-items: stretch !important;
}

#abholung .map-card {
  height: 100% !important;
  min-height: 660px !important;
  padding: 0 !important;
  border-radius: 28px !important;
  overflow: hidden !important;
}

#abholung .google-map {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 660px !important;
  border: 0 !important;
  border-radius: 28px !important;
}

#abholung .pickup-grid > div:last-child {
  display: flex;
  flex-direction: column;
}

#abholung .opening-card {
  flex: 1 1 auto;
}

@media (max-width: 980px) {
  #abholung .pickup-grid {
    align-items: start !important;
  }

  #abholung .map-card,
  #abholung .google-map {
    min-height: 430px !important;
    height: auto !important;
  }

  #abholung .opening-card {
    flex: initial;
  }
}

@media (max-width: 640px) {
  #abholung .map-card,
  #abholung .google-map {
    min-height: 360px !important;
    border-radius: 22px !important;
  }
}
