/* ==========================================================================
   IGNIS COACHING — design tokens
   Base noir chaud / ember rouge-orangé / bone (texte clair) / ash (muted)
   Display: Anton (impact, condensé) — Body: Archivo (net, technique)
   ========================================================================== */

:root {
  --black-deep:  #050403;
  --black:       #0A0908;
  --black-soft:  #14100E;
  --ember:       #E5341E;
  --ember-hot:   #FF6A1F;
  --bone:        #EFEAE3;
  --ash:         #948E86;
  --ash-dim:     #55504B;
  --line:        rgba(239, 234, 227, 0.12);

  --font-display: 'Anton', sans-serif;
  --font-body: 'Archivo', sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, video { max-width: 100%; display: block; }

::selection { background: var(--ember); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--ember-hot);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- particle canvas (three.js mount) ---------- */
#ember-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* content sits above the canvas */
.nav, header, section, footer { position: relative; z-index: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.btn--primary {
   background: #09f330;
  color: var(--black-deep);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn--ghost {
  background: red;
  border-color: var(--line);
  color: var(--bone);
}
.btn--ghost:hover { border-color: var(--ember-hot); color: var(--ember-hot); }
.btn--large { padding: 1.15rem 2.4rem; font-size: 1.05rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem clamp(1.25rem, 4vw, 3.5rem);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(14px);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.nav__links a:not(.nav__cta) { color: white; transition: color 0.3s var(--ease); background:black;padding:10px; }
.nav__links a:not(.nav__cta):hover { color: var(--bone); }
.nav__cta {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--ember-hot);
  color: var(--ember-hot);
  border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--ember-hot); color: var(--black-deep); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav__burger span { width: 22px; height: 2px; background: var(--bone); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) 6rem;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: grayscale(0.35) contrast(1.1);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, var(--black) 0%, rgba(10,9,8,0.55) 45%, rgba(10,9,8,0.35) 100%),
    radial-gradient(120% 90% at 20% 100%, rgba(229,52,30,0.28), transparent 60%);
}
.hero__kicker {
  color: var(--ember-hot);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  line-height: 0.92;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line--accent { color: red; }
.hero__text {
  max-width: 42ch;
  color: white;
  font-size: 1.3rem;
  margin: 0 0 2.2rem;
}
.hero__textt {
  max-width: 42ch;
  color: red;
  background: black;
 border-radius: 10px; 
  padding: 15px;
  font-size: 1.3rem;
  margin: 0 0 2.2rem;
}

.popUp {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);

    width: min(320px, 80vw);
    padding: 20px;

    background: #111;
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s;

    z-index: 9999;
}

.popUp.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popUp h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.popUp p {
    margin: 0 0 15px;
    line-height: 1.5;
    color: #ddd;
}

.popUp button {
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    background: white;
    color: #111;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.popUp button:hover {
    transform: scale(1.05);
}


.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  right: clamp(1.25rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ash);
  font-size: 0.8rem;
}
.hero__scroll span {
  width: 1px; height: 34px;
  background: linear-gradient(var(--ember-hot), transparent);
}

/* ---------- section shell ---------- */
section { padding: 8rem clamp(1.25rem, 4vw, 3.5rem); }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 2rem;
  max-width: 16ch;
}
.section-title--center { max-width: none; text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- info ---------- */
.info { background: #99151530; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.info__visual { position: relative; aspect-ratio: 4 / 5; height:800px; }
.info__frame {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(229, 53, 30, 0.171), rgba(10,9,8,0.1)),
    repeating-linear-gradient(135deg, rgba(239,234,227,0.05) 0 2px, transparent 2px 14px);
  border: 1px solid var(--line);
}
.info__text p { color: white; max-width: 52ch; font-size: 1.35rem; }
.stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.6rem; flex-wrap: wrap; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--ember-hot);
}
.stat__label { color: var(--ash); font-size: 0.85rem; }

/* ---------- services ---------- */
.services { max-width: var(--container); margin: 0 auto;  background: var(--black-deep);
  border-top: 1px solid var(--line);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 96%);}
.service {

  grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 3.2rem 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
 
}
.services .service:last-child { border-bottom: 1px solid var(--line); }
.service__num {
  font-family: var(--font-display);
  color: var(--ember);
  font-size: 1.1rem;
  text-transform: uppercase;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}
.service p { color: var(--ash); max-width: 58ch; margin: 0; }

/* ---------- live section ---------- */
.live {
 background: #990d55;
  border-top: 1px solid var(--line);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 96%);
}
.live__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.live__badge {
display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 100px;
  font-size: 0.82rem;
  color: #000;
  margin-bottom: 1.6rem;
}
.live__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ash-dim); }
.live__badge--on { border-color: var(--ember); color: var(--ember-hot); }
.live__badge--on .dot { background: var(--ember); box-shadow: 0 0 0 0 rgba(229,52,30,0.6); animation: pulse-dot 1.6s infinite; }
.live .section-title { margin-left: auto; margin-right: auto; }
.live__text { color: black; max-width: 52ch; margin: 0 auto 3rem; }

.steps { display: grid; gap: 1.4rem; text-align: left; margin-bottom: 3.2rem; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.4rem; border: 3px solid black; }
.step__index {
  font-family: var(--font-display);
  color: var(--ember);
  font-size: 1.4rem;
  min-width: 2ch;
}
.step h4 { margin: 0 0 0.3rem; font-size: 1rem; }
.step p { margin: 0; color: white; font-size: 0.92rem; }

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(229,52,30,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(229,52,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,52,30,0); }
}

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 3.5rem clamp(1.25rem, 4vw, 3.5rem) 2rem; }
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-bottom: 2.4rem;
}
.footer__brand { font-family: var(--font-display); font-size: 1.3rem; }
.footer__brand span { color: var(--ash); font-family: var(--font-body); font-size: 0.7rem; display: block; letter-spacing: 0.08em; }
.footer__nav, .footer__social { display: flex; gap: 1.4rem; font-size: 0.9rem; color: var(--ash); }
.footer__nav a:hover, .footer__social a:hover { color: var(--bone); }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--ash-dim);
  font-size: 0.8rem;
}

/* ==========================================================================
   Payment page
   ========================================================================== */
.pay {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
}
.pay__card {
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 3rem 2.4rem;
  border: 1px solid var(--line);
  background: var(--black-soft);
}
.pay__kicker { color: var(--ember-hot); font-weight: 700; font-size: 0.85rem; margin: 0 0 0.6rem; }
.pay__price {
  font-family: var(--font-display);
  font-size: 4.5rem;
  margin: 0 0 1rem;
  color: var(--bone);
}
.pay__price span { font-size: 1.6rem; color: var(--ash); margin-left: 0.4rem; }
.pay__desc { color: var(--ash); margin-bottom: 2.2rem; }
.pay__note { color: var(--ash-dim); font-size: 0.82rem; margin-top: 1.4rem; }
.pay__error { color: var(--ember-hot); font-size: 0.85rem; margin-top: 1rem; }
.pay__card .btn { width: 100%; }

/* ==========================================================================
   Live viewer page
   ========================================================================== */
.viewer { padding: 0; }
.viewer__stage {
  position: relative;
  min-height: 100vh;
  background: var(--black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.viewer__video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background: var(--black-deep);
}
.viewer__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(80% 60% at 50% 40%, rgba(229,52,30,0.14), transparent 70%);
  transition: opacity 0.6s var(--ease);
}
.viewer__overlay.is-hidden { opacity: 0; pointer-events: none; }
.viewer__overlay h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 1.6rem 0 0.8rem;
}
.viewer__overlay p { color: var(--ash); max-width: 40ch; }
.pulse {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--ember);
  position: relative;
}
.pulse::before, .pulse::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--ember);
  animation: pulse-ring 2.2s var(--ease) infinite;
}
.pulse::after { animation-delay: 1.1s; }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}
.viewer__hud {
  position: absolute;
  top: 6.5rem; left: 2rem; right: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 2;
}
.viewer__live-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(5,4,3,0.6);
  border: 1px solid var(--ember);
  color: var(--ember-hot);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.viewer__live-pill.is-on { opacity: 1; }
.viewer__live-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); animation: pulse-dot 1.6s infinite; }
.viewer__count { color: var(--ash); font-size: 0.82rem; background: rgba(5,4,3,0.6); padding: 0.45rem 0.9rem; border-radius: 100px; }

/* ==========================================================================
   Coach dashboard
   ========================================================================== */
.coach-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem; }
.coach-login__card {
  max-width: 380px; width: 100%;
  padding: 2.8rem 2.2rem;
  border: 1px solid var(--line);
  background: var(--black-soft);
  text-align: center;
  display: flex; flex-direction: column; gap: 1rem;
}
.coach-login__card h1 { font-family: var(--font-display); font-weight: 400; margin: 0 0 0.6rem; }
.coach-login__card input {
  padding: 0.9rem 1rem;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--font-body);
}

.dashboard { max-width: var(--container); margin: 0 auto; padding-top: 8rem; }
.dashboard__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.4rem; }
.dashboard__head h1 { font-family: var(--font-display); font-weight: 400; margin: 0.2rem 0 0; text-transform: uppercase; }
.dashboard__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; }
.dashboard__preview { position: relative; background: var(--black-soft); border: 1px solid var(--line); aspect-ratio: 16/10; }
.dashboard__video { width: 100%; height: 100%; object-fit: cover; }
.dashboard__status {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(5,4,3,0.7);
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  color: var(--ash);
  border-radius: 100px;
}
.dashboard__panel { border: 1px solid var(--line); padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.dashboard__row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--ash); padding-bottom: 0.9rem; border-bottom: 1px solid var(--line); }
.dashboard__row strong { color: var(--bone); }
.dashboard__hint { color: var(--ash-dim); font-size: 0.82rem; margin-top: 0.5rem; }

/* ==========================================================================
   Tchat en direct (MongoDB pour l'historique côté serveur)
   ========================================================================== */
.chat {
  display: flex;
  flex-direction: column;
  background: rgba(5, 4, 3, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.chat__head {
  padding: 0.9rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  color: var(--ash);
}
.chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.chat__msg { font-size: 0.86rem; line-height: 1.45; }
.chat__msg .chat__author { color: var(--ember-hot); font-weight: 700; margin-right: 0.4rem; }
.chat__msg--coach .chat__author { color: var(--ember); }
.chat__msg .chat__text { color: var(--bone); }
.chat__empty { color: var(--ash-dim); font-size: 0.82rem; }

.chat__name-gate, .chat__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem;
  border-top: 1px solid var(--line);
}
.chat__form.is-hidden, .chat__name-gate.is-hidden { display: none; }
.chat__name-gate input, .chat__form input {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 0.65rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
}
.chat__send {
  background: var(--ember);
  color: var(--black-deep);
  border: none;
  padding: 0 1.1rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: filter 0.3s var(--ease);
}
.chat__send:hover { filter: brightness(1.1); }

/* Positionnement sur la page spectateur : panneau flottant à droite */
.viewer .chat {
  position: absolute;
  z-index: 3;
  right: 2rem;
  top: 9.5rem;
  bottom: 2rem;
  width: 320px;
  max-width: calc(100vw - 2.5rem);
}
/* =========================
   HERO CARROUSEL
========================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
}

/* Conteneur des images */
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Chaque slide */
.hero__bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 150%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1.05);

    animation: heroCarousel 15s infinite;
}

/* 1ère image */
.hero__bg-slide:nth-child(1) {
    animation-delay: 0s;
}

/* 2ème image */
.hero__bg-slide:nth-child(2) {
    animation-delay: 5s;
}

/* 3ème image */
.hero__bg-slide:nth-child(3) {
    animation-delay: 10s;
}

/* Animation */
@keyframes heroCarousel {

    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    5% {
        opacity: 1;
        transform: scale(1);
    }

    30% {
        opacity: 1;
        transform: scale(1.03);
    }

    35% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}
/* Positionnement dans le dashboard coach : bloc pleine largeur sous la grille */
.dashboard__grid { grid-template-rows: auto auto; }
.chat--dashboard { grid-column: 1 / -1; height: 340px; }

/* ==========================================================================
   Scroll-reveal utility (driven by GSAP in main.js)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .info__grid { grid-template-columns: 1fr; }
  .info__visual { aspect-ratio: 16/9; }
  .service { grid-template-columns: 1fr; gap: 0.6rem; }
  .dashboard__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--black-soft); border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 2rem; gap: 1.6rem;
    transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .nav__links.is-open { transform: translateX(0); }
  .nav__burger { display: flex; z-index: 41; }
  section { padding: 5.5rem 1.25rem; }
  .viewer__hud { top: 5.5rem; left: 1rem; right: 1rem; }
  .viewer .chat { left: 1rem; right: 1rem; width: auto; top: auto; bottom: 0; height: 46vh; }
}
.info__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
width: 500px;
  height: 300px;
}
.info__visuall {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;

}
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.carousel__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.carousel__dots button.active {
    background: var(--ember-hot);
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .info__visual {
        aspect-ratio: 16 / 9;
        height: 200px;
    width: 350px;
  
      }

      .carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

}