/* Gani Mobility — new sections: carousel + buy flow */
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap");

/* =========================================================
   SECTION : CARROUSEL VISUELS
   ========================================================= */
.gm-carousel {
  background: #f7f7f5;
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.gm-carousel__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.gm-carousel__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.gm-carousel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 1rem;
}
.gm-carousel__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 50%;
}
.gm-carousel__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 24ch;
  text-wrap: balance;
}
.gm-carousel__sub {
  margin: 0;
  max-width: 36rem;
  color: #757575;
  font-size: 0.975rem;
  line-height: 1.55;
}
.gm-carousel__nav {
  display: flex;
  gap: 0.6rem;
}
.gm-carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #1a1a1a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.gm-carousel__btn:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.gm-carousel__btn:active { transform: scale(0.95); }
.gm-carousel__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.gm-carousel__btn:disabled:hover { background: #fff; color: #1a1a1a; border-color: #d8d8d8; }
.gm-carousel__btn svg { width: 18px; height: 18px; }

.gm-carousel__stage {
  position: relative;
  margin: 0 -1.5rem;
  padding: 1.5rem 0 2.5rem;
}
.gm-carousel__viewport {
  overflow: hidden;
  padding: 0 1.5rem;
}
.gm-carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.gm-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  max-width: calc((100% - 3rem) / 3);
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, opacity 0.4s ease;
  transform: scale(0.92);
  opacity: 0.55;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.gm-slide.is-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(196, 162, 92, 0.4);
  cursor: default;
}
.gm-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gm-slide__index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  z-index: 2;
}
.gm-slide__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}
.gm-slide.is-active .gm-slide__caption { opacity: 1; transform: translateY(0); }
.gm-slide__caption-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: #c4a25c;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.gm-slide__caption-title { font-size: 0.95rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1.25; }

@media (max-width: 991px) {
  .gm-slide {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 639px) {
  /* Une seule slide pleine largeur */
  .gm-slide {
    flex: 0 0 calc(100% - 2rem);
    max-width: calc(100% - 2rem);
    aspect-ratio: 4 / 3;        /* moins carré, mieux adapté mobile */
    transform: scale(1);        /* pas de réduction sur mobile */
    opacity: 1;
    border-radius: 14px;
  }
  /* Caption toujours visible sur mobile */
  .gm-slide__caption {
    opacity: 1;
    transform: translateY(0);
    padding: 0.6rem 0.75rem;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }
  .gm-slide__caption-title { font-size: 0.85rem; }
  .gm-slide__caption-eyebrow { font-size: 0.6rem; }
  .gm-slide__index { font-size: 0.65rem; padding: 0.25rem 0.55rem; top: 0.6rem; right: 0.6rem; }

  /* Header : titre + boutons en colonne */
  .gm-carousel__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .gm-carousel__title { font-size: 1.5rem; }
  .gm-carousel__sub   { font-size: 0.875rem; }

  /* Stage : moins de marges négatives */
  .gm-carousel__stage { margin: 0 -0.75rem; padding: 1rem 0 1.5rem; }
  .gm-carousel__viewport { padding: 0 0.75rem; }

  /* Thumbnails : plus petits, centrés */
  .gm-thumb { width: 44px; height: 44px; border-radius: 8px; }
  .gm-carousel__thumbs { gap: 0.35rem; margin-top: 1rem; }

  /* Barre de progression */
  .gm-carousel__foot { gap: 0.75rem; margin-top: 1rem; }
  .gm-carousel__progress { min-width: 100px; }
}

.gm-carousel__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.gm-carousel__progress {
  flex: 1;
  min-width: 200px;
  height: 2px;
  background: #e2e2dd;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.gm-carousel__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14.28%;
  background: #1a1a1a;
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gm-carousel__counter {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.gm-carousel__counter span { color: #999; font-weight: 400; }
.gm-carousel__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.gm-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #1a1a1a;
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.gm-thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.gm-thumb.is-active { opacity: 1; border-color: #c4a25c; }
.gm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox */
.gm-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
  animation: gm-lb-fade 0.3s ease;
}
.gm-lightbox.is-open { display: flex; }
@keyframes gm-lb-fade { from { opacity: 0; } to { opacity: 1; } }
.gm-lightbox__img {
  max-width: min(85vw, 800px);
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.gm-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.gm-lightbox__close:hover { background: rgba(255, 255, 255, 0.18); }
.gm-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.gm-lightbox__nav:hover { background: rgba(255, 255, 255, 0.18); }
.gm-lightbox__nav--prev { left: 1.5rem; }
.gm-lightbox__nav--next { right: 1.5rem; }
.gm-lightbox__nav svg { width: 22px; height: 22px; }
.gm-lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* =========================================================
   SECTION : COMMENT ÇA MARCHE (achat)
   ========================================================= */
.buy-flow {
  background: #0d0d0d;
  color: #f5f5f5;
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.buy-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 45%);
  pointer-events: none;
}
.buy-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.buy-flow__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.buy-flow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8d8d8;
  margin-bottom: 1rem;
}
.buy-flow__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.buy-flow__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  max-width: 24ch;
  text-wrap: balance;
}
.buy-flow__sub {
  margin: 0;
  max-width: 36rem;
  color: #a8a8a8;
  font-size: 0.975rem;
  line-height: 1.55;
}
.buy-flow__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: #ffffff;
  color: #0d0d0d;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.buy-flow__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12); }
.buy-flow__cta-arrow { display: inline-block; transition: transform 0.2s ease; }
.buy-flow__cta:hover .buy-flow__cta-arrow { transform: translateX(3px); }

/* Timeline zigzag */
.buy-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.buy-steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.18) 12%,
    rgba(255, 255, 255, 0.18) 88%,
    rgba(255, 255, 255, 0.04)
  );
  transform: translateX(-50%);
}
@media (max-width: 767px) { .buy-steps::before { left: 1.5rem; } }

.buy-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 767px) {
  .buy-step { grid-template-columns: 1fr; gap: 1rem; padding-left: 3.25rem; }
}
.buy-step__node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #0d0d0d, 0 0 0 6px rgba(255, 255, 255, 0.18);
  z-index: 2;
}
@media (max-width: 767px) {
  .buy-step__node { left: 1.5rem; top: 1.5rem; transform: translate(-50%, 0); }
}
.buy-step__copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.buy-step__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  margin-bottom: 0.25rem;
}
.buy-step__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.2;
}
.buy-step__text {
  margin: 0;
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 36ch;
}
.buy-step__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: #d4d4d4;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.buy-step__meta::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #6ed16e;
  border-radius: 50%;
}
.buy-step__visual {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
/* Alternating left/right */
.buy-step:nth-child(even) .buy-step__copy { order: 2; }
.buy-step:nth-child(even) .buy-step__visual { order: 1; }
@media (max-width: 767px) {
  .buy-step:nth-child(even) .buy-step__copy,
  .buy-step:nth-child(even) .buy-step__visual { order: initial; }
}

/* Visual 01 — vehicle carousel */
.v-pick-carousel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}
.v-pick-carousel__viewport {
  flex: 1;
  overflow: hidden;
}
.v-pick-carousel__track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.25rem 0 0.5rem;
}
.v-pick-carousel__track::-webkit-scrollbar { display: none; }

.v-pick-carousel__slide {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  scroll-snap-align: center;
  cursor: pointer;
  opacity: 0.4;
  transform: scale(0.88);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.v-pick-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.v-pick-carousel__slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 90px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: filter 0.35s ease;
}
.v-pick-carousel__slide.is-active img {
  filter: drop-shadow(0 6px 18px rgba(255,255,255,0.12));
}
.v-pick-carousel__name {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  color: #888;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s;
}
.v-pick-carousel__slide.is-active .v-pick-carousel__name {
  color: #ffffff;
  font-weight: 500;
}

/* Prev / Next arrows */
.v-pick-carousel__btn {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #aaa;
  font-size: 1rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  padding: 0;
}
.v-pick-carousel__btn:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Visual 02 — quote form */
.v-form { font-size: 0.82rem; }
.v-form__field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 0.4rem;
  color: #c8c8c8;
}
.v-form__field span:first-child { color: #888; font-size: 0.72rem; }
.v-form__field strong { font-weight: 500; color: #fff; }
.v-form__btn {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
  padding: 0.6rem;
  background: #fff;
  color: #000;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.82rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.v-form__btn:hover { opacity: 0.85; }

/* Visual 03 — availability */
.v-avail {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.v-avail__ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(110, 209, 110, 0.3);
  display: grid;
  place-items: center;
  position: relative;
}
.v-avail__ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(110, 209, 110, 0.2);
  animation: rotate-slow 18s linear infinite;
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }
.v-avail__check {
  width: 36px;
  height: 36px;
  background: #6ed16e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0d0d0d;
  font-size: 1.1rem;
  font-weight: 700;
}
.v-avail__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #b6f5b6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.v-avail__sub { font-size: 0.78rem; color: #888; }

/* Visual 04 — payment */
.v-pay__amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 0.65rem;
}
.v-pay__amount strong {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  font-family: "JetBrains Mono", monospace;
}
.v-pay__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.v-pay__bar span {
  display: block;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, #fff, #b8b8b8);
  border-radius: 999px;
}
.v-pay__legend {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: #888;
}
.v-pay__methods { display: flex; gap: 0.4rem; margin-top: 0.85rem; }
.v-pay__chip {
  padding: 0.32rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.7rem;
  color: #d0d0d0;
}

/* Visual 05 — admin docs */
.v-docs { display: flex; flex-direction: column; gap: 0.4rem; }
.v-docs__row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.78rem;
  color: #c8c8c8;
}
.v-docs__row::before {
  content: "";
  width: 22px;
  height: 26px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}
.v-docs__check {
  margin-left: auto;
  width: 16px;
  height: 16px;
  background: #6ed16e;
  color: #0d0d0d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
}
.v-docs__row--pending .v-docs__check { background: rgba(255, 255, 255, 0.1); color: #888; }

/* Visual 06 — delivery */
.v-deliver { display: flex; flex-direction: column; gap: 0.65rem; height: 100%; }
.v-deliver__toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.25rem;
  font-size: 0.78rem;
}
.v-deliver__opt { text-align: center; padding: 0.5rem 0.75rem; border-radius: 999px; color: #888; }
.v-deliver__opt--active { background: #fff; color: #000; font-weight: 500; }
.v-deliver__route {
  flex: 1;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  color: #b8b8b8;
}
.v-deliver__dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; flex-shrink: 0; }
.v-deliver__dot--end { background: transparent; border: 2px solid #fff; }
.v-deliver__line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0 4px, transparent 4px 8px);
}
.v-deliver__city strong { color: #fff; display: block; font-weight: 500; font-size: 0.82rem; letter-spacing: -0.01em; }
.v-deliver__city span { font-size: 0.68rem; color: #888; }
