@charset "UTF-8";
html {
  color-scheme: light !important;
  forced-color-adjust: none !important;
  -webkit-text-size-adjust: 100%;
}

* {
  forced-color-adjust: none !important;
}

:root {
  color-scheme: only light;
  supported-color-schemes: light;
}

html {
  -webkit-text-size-adjust: 100%;
  color-scheme: only light;
}

html, body {
  background-color: #060b12 !important; /* ta couleur */
}

html {
  color-scheme: light !important;
  forced-color-adjust: none !important;
}

* {
  forced-color-adjust: none !important;
}

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

html {
  font-size: clamp(15px, 1vw + 12px, 17px);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #f0f4fb;
  background: radial-gradient(circle at 20% 20%, #0a192b, #060b12 56%);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.site-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3.5rem);
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
.hero-inner {
  padding-top: 2.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.hero h1 {
  font-size: clamp(1.4rem, 4vw, 2.75rem);
  margin: 0;
  line-height: 1.25;
}
.hero p {
  margin: 0;
  color: rgba(240, 244, 251, 0.72);
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
}
.logo__name {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}
.logo__origin {
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.logo__flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

main {
  margin-top: clamp(2rem, 6vw, 4rem);
}

section {
  margin-bottom: clamp(2.5rem, 7vw, 4.5rem);
}

.offers-panel {
  margin-top: 35px;
}
.offers-panel > * + * {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.vehicle-picker {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 18px;
  background: rgba(6, 11, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.vehicle-picker[hidden] {
  display: none !important;
}
.vehicle-picker__title {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: rgba(240, 244, 251, 0.72);
}
.vehicle-picker .vehicle-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
  margin-top: 1.4rem;
}
@media (min-width: 768px) {
  .vehicle-picker .vehicle-grid {
    max-width: 50vh;
    margin: 1.4rem auto 0;
  }
}

.vehicle-choice {
  width: 100%;
  padding: 0.35rem;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: transparent;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 auto;
  min-height: 100px;
  color: inherit;
  font: inherit;
  line-height: 0;
  background-clip: padding-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.vehicle-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
}
.vehicle-choice:hover, .vehicle-choice:focus-visible {
  border-color: rgba(78, 200, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(78, 200, 255, 0.3);
}
.vehicle-choice:hover::after, .vehicle-choice:focus-visible::after {
  opacity: 1;
  border-color: rgba(78, 200, 255, 0.9);
  box-shadow: 10px 0 0 rgba(78, 200, 255, 0.3);
}
.vehicle-choice.is-selected::after {
  opacity: 1;
  border-color: rgba(78, 200, 255, 0.9);
  box-shadow: 10px 0 0 rgba(78, 200, 255, 0.3);
}
.vehicle-choice img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 600px) {
  .vehicle-choice {
    padding: 0.25rem;
    min-height: 80px;
  }
}
.offer-row.highlight {
  background: rgba(78, 200, 255, 0.03);
}

.offer-row-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.offer-details {
  flex: 1;
}
.offer-details strong {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.quinconce-gallery {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.offers-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: linear-gradient(160deg, rgba(10, 14, 24, 0.94), rgba(5, 7, 14, 0.9));
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(80, 140, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 25px 60px rgba(0, 0, 0, 0.55);
}
.offers-table thead {
  background: linear-gradient(135deg, rgba(36, 54, 90, 0.75), rgba(20, 28, 48, 0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.offers-table th,
.offers-table td {
  padding: 1rem;
  border-bottom: none;
  text-align: left;
}
.offers-table th {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  box-sizing: border-box;
}
.offers-table ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
  list-style: none;
}
.offers-table li {
  margin-bottom: 0.35rem;
  font-size: 0.95em;
}
.offers-table tbody tr:nth-child(3n+1) {
  background: rgba(9, 13, 23, 0.98);
}
.offers-table tbody tr:nth-child(3n+2) {
  background: rgba(12, 17, 28, 0.94);
}
.offers-table tbody tr:nth-child(3n) {
  background: rgba(15, 20, 33, 0.9);
}
@media (max-width: 767px) {
  .offers-table tr {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .offers-table td {
    display: block;
    border: none;
    padding: 0.85rem 1rem;
  }
  .offers-table td:first-child {
    padding-top: 1.4rem;
  }
  .offers-table td:last-child {
    padding-bottom: 1.4rem;
  }
}

#offres .offers-table:nth-of-type(2) > thead th:first-child {
  color: inherit;
}
#offres .offers-table:nth-of-type(2) > thead th:last-child {
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.45), rgba(255, 179, 71, 0.18));
  color: #24160a;
  font-weight: 700;
  border-left: 1px solid rgba(255, 179, 71, 0.4);
}
#offres .offers-table:nth-of-type(2) .offer-details strong {
  color: #f7c873;
}

.gallery__static {
  width: 100%;
}
.gallery__static table {
  width: 100%;
  border-collapse: collapse;
  padding: 0;
}
.gallery__static tr {
  padding: 0;
  border: none;
}
.gallery__static td {
  padding: 1% !important;
  border: none;
}

.quinconce-gallery__static,
.quinconce-gallery__js {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.quinconce-gallery__static[hidden],
.quinconce-gallery__js[hidden] {
  display: none !important;
}

@media (min-width: 768px) {
  .quinconce-gallery__js {
    max-width: 25vh;
  }
}

html.has-js .vehicle-gallery .quinconce-gallery__static {
  display: none;
}

html.has-js .vehicle-gallery {
  gap: 0;
}

.vehicle-card {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  z-index: 0;
  container-type: inline-size;
}

.vehicle-card__image,
.vehicle-card__badge,
.vehicle-card__price,
.vehicle-card__price__gold {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-card__image img,
.vehicle-card__badge img,
.vehicle-card__price img,
.vehicle-card__price__gold img {
  max-width: 100%;
}

.vehicle-card__image {
  top: calc(var(--top, 0%) + 50%);
  left: calc(var(--left, 0%) + 50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
}

.vehicle-card__badge {
  top: calc(var(--top, 0%) + 5%);
  left: calc(var(--left, 0%) + 4%);
  z-index: 1;
  width: 100%;
}

.vehicle-card__price {
  top: calc(var(--top, 0%) + 44%);
  left: calc(var(--left, 0%) + 79%);
  z-index: 2;
  transform: translate(calc(var(--left, 0%) - 50%), calc(var(--top, 0%) - 50%)) rotate(10deg);
  font-size: 9cqw;
  font-weight: 800;
  color: rgb(68, 68, 68);
}

.vehicle-card__price__gold {
  top: calc(var(--top, 0%) + 38%);
  left: calc(var(--left, 0%) + 81%);
  z-index: 2;
  transform: translate(calc(var(--left, 0%) - 50%), calc(var(--top, 0%) - 50%));
  font-size: 10cqw;
  font-weight: 800;
  background: linear-gradient(235deg, #eed57a 0%, #b3862c 100%);
  width: 100%;
  height: auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact {
  margin: clamp(2.5rem, 8vw, 5rem) auto 0;
  padding: 0 clamp(1rem, 6vw, 3rem);
  display: flex;
  justify-content: center;
}

.contact-inner {
  width: min(680px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 5vw, 2.5rem);
}

.contact-lead {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(240, 244, 251, 0.72);
  line-height: 1.5;
}

.contact-callout {
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 25, 40, 0.95), rgba(9, 15, 28, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.contact-callout__phone {
  font-size: clamp(1.4rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f0f4fb;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.1;
  padding: 0.25rem 0.4rem;
  transition: color 0.2s ease, transform 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.contact-callout__phone:hover,
.contact-callout__phone:focus-visible {
  color: #4ec8ff;
  transform: translateY(-2px);
}

.contact-bubble {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 5vw, 2.5rem);
  background: linear-gradient(145deg, #4ec8ff, #2f72ff);
  color: #03101c;
  padding: 0.65rem 1rem;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(5, 8, 15, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
}

.contact-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: inherit;
}

.contact-mobile,
.contact-desktop {
  display: none;
}

@media (max-width: 767px) {
  .contact-mobile {
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  .contact-desktop {
    display: inline-flex;
  }
}
footer {
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(240, 244, 251, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 380px) {
  body {
    font-size: 0.9rem;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
  .hero p {
    font-size: 0.92rem;
  }
}
@media (min-width: 768px) {
  .hero-inner {
    align-items: flex-start;
    max-width: 720px;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .offer-row-inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .offer-details,
  .quinconce-gallery {
    flex: 1;
  }
}
* {
  -webkit-tap-highlight-color: transparent;
}

.logo__flag {
  border-radius: 0 !important; /* enlève le rond */
  position: relative;
  overflow: hidden;
}

.hero-inner h2 {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: rgba(240, 244, 251, 0.75);
  margin-top: 0.8rem;
  margin-bottom: 0rem;
}/*# sourceMappingURL=styles.css.map */