/* ============================================================
   CROQCITY — Sandwicherie Vitry-sur-Seine
   Style Bauhaus : géométrie pure, couleurs primaires, ombres dures
   ============================================================ */

:root {
  --bg: #F0F0F0;
  --ink: #121212;
  --red: #D02020;
  --blue: #1040C0;
  --yellow: #F0C020;
  --muted: #E0E0E0;
  /* Violet CroqCity (repris des supports du resto) */
  --violet: #7C10B5;
  --violet-grad: radial-gradient(circle at 22% 12%, #AC1BDE 0%, #8A14C6 45%, #6C0CA2 100%);
  --border-w: 2px;
  --shadow-sm: 3px 3px 0 0 var(--ink);
  --shadow-md: 5px 5px 0 0 var(--ink);
  --shadow-lg: 6px 6px 0 0 var(--ink);
}

@media (min-width: 1024px) {
  :root {
    --border-w: 4px;
    --shadow-sm: 4px 4px 0 0 var(--ink);
    --shadow-md: 6px 6px 0 0 var(--ink);
    --shadow-lg: 8px 8px 0 0 var(--ink);
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  background: var(--violet);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---------- Éléments géométriques partagés ---------- */

.logo-shapes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.logo-shapes__circle,
.logo-shapes__square,
.logo-shapes__triangle {
  width: 14px;
  height: 14px;
  display: inline-block;
}
.logo-shapes__circle { background: var(--red); border-radius: 9999px; }
.logo-shapes__square { background: var(--blue); }
.logo-shapes__triangle {
  background: var(--yellow);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  margin-right: 0.6rem;
  flex: none;
}
.dot--red { background: var(--red); border-radius: 9999px; }
.dot--yellow { background: var(--yellow); }
.dot--blue { background: var(--blue); transform: rotate(45deg); }

.chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.9rem;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.chip--yellow { background: var(--yellow); color: var(--ink); }
.chip--red { background: var(--red); color: #fff; }
.chip--blue { background: var(--blue); color: #fff; }
.chip--white { background: #fff; color: var(--ink); }

.section-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 2.5rem;
}
.section-title--light { color: #fff; }

/* ---------- Boutons ---------- */

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 1.6rem;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
  cursor: pointer;
  transition: background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: #b81c1c; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: #0d36a3; }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--yellow); }
.btn--outline { background: #fff; color: var(--ink); }
.btn--outline:hover { background: var(--yellow); }
.btn--dark { background: var(--ink); color: var(--yellow); box-shadow: 4px 4px 0 0 #fff; }
.btn--dark:hover { background: #000; }

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--violet);
  border-bottom: var(--border-w) solid var(--ink);
}

.nav__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
}

.nav__name {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.nav__name em { font-style: normal; color: var(--red); }

.nav__links {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
.nav__links a:not(.btn) {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #fff;
  transition: color 0.2s ease-out;
}
.nav__links a:not(.btn):hover { color: var(--yellow); }
.btn--nav { padding: 0.6rem 1.2rem; }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
  padding: 10px 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 22px;
  height: 3px;
  background: var(--ink);
}
.nav__burger:active { transform: translate(2px, 2px); box-shadow: none; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}

@media (max-width: 899px) {
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    background: var(--violet);
    border-bottom: var(--border-w) solid var(--ink);
    padding: 1.25rem;
    gap: 1.1rem;
  }
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  background: var(--violet-grad);
  border-bottom: var(--border-w) solid var(--ink);
}

@media (min-width: 1024px) {
  .hero { grid-template-columns: 1.1fr 1fr; min-height: 82vh; }
}

.hero__text {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 640px) { .hero__text { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .hero__text { padding: 5rem 3rem 5rem calc(max(2rem, (100vw - 80rem) / 2)); } }

.hero__title {
  font-size: clamp(2.8rem, 8.5vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__title-accent { color: var(--red); }

.hero__sub {
  font-size: 1.05rem;
  max-width: 34rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 0.9rem;
  margin-bottom: 2rem;
}
.hero__stars { color: var(--red); letter-spacing: 0.1em; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Panneau image : remplace l'aplat bleu du système par une photo (ciel bleu) */
.hero__panel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-top: var(--border-w) solid var(--ink);
}
@media (min-width: 1024px) {
  .hero__panel { border-top: none; border-left: var(--border-w) solid var(--ink); }
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__deco {
  position: absolute;
  z-index: 2;
  border: var(--border-w) solid var(--ink);
}
.hero__deco--circle {
  width: clamp(70px, 10vw, 130px);
  height: clamp(70px, 10vw, 130px);
  border-radius: 9999px;
  background: var(--yellow);
  bottom: -20px;
  left: -20px;
}
.hero__deco--square {
  width: clamp(50px, 7vw, 90px);
  height: clamp(50px, 7vw, 90px);
  background: var(--red);
  top: 8%;
  right: -18px;
  transform: rotate(45deg);
}

/* ---------- Bandeau défilant ---------- */

.marquee {
  background: var(--ink);
  color: var(--yellow);
  border-bottom: var(--border-w) solid var(--ink);
  overflow: hidden;
  padding: 0.7rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee__track span {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  white-space: nowrap;
  padding-right: 2rem;
}
.marquee__track i { font-style: normal; color: #fff; padding: 0 0.6rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Chiffres ---------- */

/* Sur mobile, la bande de chiffres descend juste avant les avis
   (note Google + avis clients y sont plus à leur place) */
@media (max-width: 639px) {
  main { display: flex; flex-direction: column; }
  main > .hero { order: 1; }
  main > .marquee { order: 2; }
  main > .offers { order: 3; }
  main > .menu { order: 4; }
  main > .dishes { order: 5; }
  main > .stats { order: 6; }
  main > .reviews { order: 7; }
  main > .infos { order: 8; }
  main > .cta { order: 9; }
}

.stats {
  background: var(--yellow);
  border-bottom: var(--border-w) solid var(--ink);
}

.stats__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stats__item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.6rem 1.5rem;
  border-bottom: 2px solid var(--ink);
}
.stats__item:last-child { border-bottom: none; }
@media (min-width: 640px) {
  .stats__item { border-right: 2px solid var(--ink); }
  .stats__item:nth-child(2n) { border-right: none; }
  .stats__item:nth-child(n+3) { border-bottom: none; }
}
@media (min-width: 1024px) {
  .stats__item { border-bottom: none; border-right: 2px solid var(--ink); }
  .stats__item:nth-child(2n) { border-right: 2px solid var(--ink); }
  .stats__item:last-child { border-right: none; }
}

.stats__item p {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.stats__shape {
  flex: none;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.stats__shape--circle { border-radius: 9999px; }
.stats__shape--diamond { transform: rotate(45deg); background: var(--red); color: #fff; }
.stats__shape--diamond span { transform: rotate(-45deg); }

/* ---------- Les stars (affiches en grand) ---------- */

.offers {
  background: var(--red);
  border-bottom: var(--border-w) solid var(--ink);
  padding: 3rem 0;
}
@media (min-width: 640px) { .offers { padding: 4rem 0; } }
@media (min-width: 1024px) { .offers { padding: 6rem 0; } }

.offers__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .offers__grid { grid-template-columns: repeat(3, 1fr); } }

.offers__card {
  background: #fff;
  border: var(--border-w) solid var(--ink);
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
  transition: transform 0.2s ease-out;
}
.offers__card:hover { transform: translateY(-8px); }
.offers__card:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.offers__card img { width: 100%; }

.offers__card figcaption {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.9rem 1rem;
  border-top: var(--border-w) solid var(--ink);
  background: #fff;
}

.offers__hint {
  margin-top: 1.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
}

/* ---------- La carte (planches en grand) ---------- */

.menu {
  background: var(--violet-grad);
  border-bottom: var(--border-w) solid var(--ink);
  padding: 3rem 0;
}
@media (min-width: 640px) { .menu { padding: 4rem 0; } }
@media (min-width: 1024px) { .menu { padding: 6rem 0; } }

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.menu__board {
  background: #fff;
  border: var(--border-w) solid var(--ink);
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
  transition: transform 0.2s ease-out;
}
.menu__board:hover { transform: translateY(-6px); }
.menu__board:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.menu__board figcaption {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 1rem 1.2rem;
  border-bottom: var(--border-w) solid var(--ink);
}
.menu__board figcaption small {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #555;
}

.menu__num {
  flex: none;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
  font-size: 0.95rem;
  font-weight: 900;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
}
.menu__num--red { background: var(--red); color: #fff; border-radius: 9999px; }
.menu__num--yellow { background: var(--yellow); color: var(--ink); }
.menu__num--blue { background: var(--blue); color: #fff; border-radius: 9999px; }

.menu__board img { width: 100%; }

/* ---------- Nos plats (photos en petit) ---------- */

.dishes {
  background-color: var(--violet);
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 2px, transparent 2px);
  background-size: 20px 20px;
  border-bottom: var(--border-w) solid var(--ink);
  padding: 3rem 0;
}
@media (min-width: 640px) { .dishes { padding: 4rem 0; } }
@media (min-width: 1024px) { .dishes { padding: 6rem 0; } }

.dishes__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .dishes__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.dishes__item {
  border: var(--border-w) solid var(--ink);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
  transition: transform 0.2s ease-out;
}
.dishes__item:hover { transform: translateY(-4px); }
.dishes__item--circle { border-radius: 9999px; }

.dishes__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}
.dishes__item:hover img { transform: scale(1.05); }

/* ---------- Avis ---------- */

.reviews {
  background: var(--blue);
  border-bottom: var(--border-w) solid var(--ink);
  padding: 3rem 0;
}
@media (min-width: 640px) { .reviews { padding: 4rem 0; } }
@media (min-width: 1024px) { .reviews { padding: 6rem 0; } }

.reviews__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.reviews__card {
  position: relative;
  background: #fff;
  border: var(--border-w) solid var(--ink);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  transition: transform 0.2s ease-out;
}
.reviews__card:hover { transform: translateY(-4px); }

.reviews__quote {
  position: absolute;
  top: -18px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.5;
  padding-top: 0.8rem;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 9999px;
}

.reviews__stars {
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

.reviews__card p:not(.reviews__stars) { font-size: 0.95rem; }

.reviews__card footer {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.reviews__more { margin-top: 2.5rem; text-align: center; }

/* ---------- Infos pratiques ---------- */

.infos {
  background: var(--violet-grad);
  border-bottom: var(--border-w) solid var(--ink);
  padding: 3rem 0;
}
@media (min-width: 640px) { .infos { padding: 4rem 0; } }
@media (min-width: 1024px) { .infos { padding: 6rem 0; } }

.infos__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .infos__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.infos__block {
  background: #fff;
  border: var(--border-w) solid var(--ink);
  box-shadow: var(--shadow-md);
  padding: 1.8rem;
}

.infos__block h3 {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.infos__hours { width: 100%; border-collapse: collapse; }
.infos__hours td {
  padding: 0.6rem 0;
  border-bottom: 2px solid var(--muted);
  font-weight: 700;
}
.infos__hours td:last-child { text-align: right; color: var(--red); }
.infos__hours tr:last-child td { border-bottom: none; }

.infos__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
}

.infos__big {
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.infos__tel {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
}
.infos__tel:hover { color: var(--red); }

.infos__list { list-style: none; }
.infos__list li {
  padding: 0.45rem 0;
  font-weight: 700;
  border-bottom: 2px solid var(--muted);
}
.infos__list li:last-child { border-bottom: none; }
.infos__list li::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--blue);
  margin-right: 0.7rem;
  transform: rotate(45deg);
}

/* ---------- CTA final ---------- */

.cta {
  position: relative;
  background: var(--yellow);
  border-bottom: var(--border-w) solid var(--ink);
  padding: 4rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .cta { padding: 7rem 0; } }

.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 1.2rem;
}

.cta__sub {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cta__deco {
  position: absolute;
  opacity: 0.5;
  border: var(--border-w) solid var(--ink);
}
.cta__deco--circle {
  width: 220px;
  height: 220px;
  border-radius: 9999px;
  background: var(--red);
  top: -80px;
  left: -80px;
}
.cta__deco--square {
  width: 180px;
  height: 180px;
  background: var(--blue);
  bottom: -70px;
  right: -50px;
  transform: rotate(45deg);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: #fff;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }

.footer__name {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 0.8rem;
}
.footer__name em { font-style: normal; color: var(--yellow); }

.footer__tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 0.8rem;
}

.footer a { color: #fff; text-decoration: none; font-weight: 700; }
.footer a:hover { color: var(--yellow); }

.footer__bottom {
  border-top: 2px solid #333;
  text-align: center;
  padding: 1.2rem 1rem;
  font-size: 0.8rem;
  color: #999;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  border: var(--border-w) solid #fff;
  box-shadow: 8px 8px 0 0 var(--red);
}

.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  font-weight: 900;
  font-family: inherit;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 9999px;
  box-shadow: 3px 3px 0 0 #fff;
  cursor: pointer;
}
.lightbox__close:active { transform: translate(2px, 2px); box-shadow: none; }

/* ---------- Apparition au scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
