/* ==========================================
   Car Line Detailing - global styles (loaded on every page)
   Page-specific styles live in their own file (home, about, ...).
   ========================================== */
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/heebo-hebrew.woff2") format("woff2");
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/heebo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/heebo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  background-color: #ffffff;
  font-family: "Heebo", sans-serif;
  cursor: default;
}

.fade-up,
.fade-in-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.fade-up.is-visible,
.fade-in-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.body img {
  width: 200px;
}
.body div {
  /* no background of its own: a div that holds text shows whatever is behind it (a light page, or a dark one when a browser forces dark mode) */
  background-color: transparent;
}
.body div div {
  margin: 10%;
}
.body div div h1,
.body div div p {
  color: #000000;
}

.main-title {
  --title-light: 230, 57, 70; /* colour of the light: red here, grey-blue on the home page (home.css) */
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(0deg, #0a0a0a 0%, #000000 100%);
  color: #ffffff !important;
  text-align: center;
  font-size: 3rem;
  -webkit-text-stroke: 2px #ffffff;
}
/* The light of a title band hangs from its TOP edge (the navbar's light rises from its bottom edge).
   Layer 1 switches on when the title comes into view; layer 2 then fades in and out, slowly, like breathing. */
.main-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 150% at 50% 0%, rgba(var(--title-light), 0.34), transparent 70%), linear-gradient(180deg, rgba(var(--title-light), 0.14) 0%, transparent 45%);
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 1.1s ease 0.25s, transform 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}
.main-title.is-visible::before {
  opacity: 1;
  transform: scaleX(1);
}
.main-title::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 75% 190% at 50% 0%, rgba(var(--title-light), 0.3), transparent 72%);
  opacity: 0;
  pointer-events: none;
}
/* the same 6s beat as the navbar; script.js gives --breath-delay so a title starts at the navbar's current moment of the beat */
.main-title.is-visible::after {
  animation: titleBreath 6s ease-in-out infinite;
  animation-delay: var(--breath-delay, 0s);
}
.main-title.fade-up {
  transform: translateX(var(--slide-from, 90px));
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.main-title.fade-up.from-left {
  --slide-from: -90px;
}
.main-title.fade-up.is-visible {
  transform: translateX(0);
}
/* the very top title of a page: slides down from under the navbar (the navbar sits above it) */
.main-title.fade-up.from-top {
  opacity: 1;
  transform: translateY(-100%);
  /* slow: about 2.6 seconds, easing out gently as it settles */
  transition: transform 2.6s cubic-bezier(0.16, 0.84, 0.3, 1) 0.25s;
}
.main-title.fade-up.from-top.is-visible {
  transform: translateY(0);
}

@keyframes titleBreath {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
body {
  overflow-x: hidden;
}

@media (max-width: 600px) {
  .main-title {
    padding: 14px 10px;
    font-size: 2rem;
    -webkit-text-stroke-width: 1px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 2px solid #000000;
  border-radius: 50px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
}
.btn-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.btn-outline:active {
  transform: scale(0.95);
  background-color: #424141;
}

.header {
  position: relative;
  z-index: 1000;
  width: 100%;
}

@keyframes navBreath {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
.navbar {
  --nav-light: 230, 57, 70; /* colour of the light, its strength and the tint of the bar's fade (the home page changes these, see home.css) */
  --nav-glow: 0.3;
  --nav-base: #1c0a0d;
  --nav-glow-h: 40%; /* how tall the light is, and how far up the bar's fade to black reaches */
  --nav-fade: 25%;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  height: 7rem;
  padding: 0 2rem;
  background: linear-gradient(0deg, var(--nav-base) 0%, #000000 var(--nav-fade));
}
/* the light along the bottom edge fades in and out, slowly, like breathing */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 70% var(--nav-glow-h) at 50% 100%, rgba(var(--nav-light), var(--nav-glow)), transparent 70%);
  pointer-events: none;
  animation: navBreath 6s ease-in-out infinite;
}.navbar__logo img {
  display: block;
  height: 5rem;
  width: auto;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.navbar__logo img:hover {
  transform: scale(1.15);
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-inline-start: auto;
}
.navbar__burger {
  display: none;
}
.navbar__links {
  display: flex;
  gap: 1.5rem;
  margin: 0 30px;
  list-style: none;
}
.navbar__links a {
  color: antiquewhite;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.5;
}
.navbar__links a:hover {
  padding: 5px 0;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-radius: 2px;
  -webkit-text-stroke: 1px #ffffff;
  opacity: 1;
}
.navbar__links a.active {
  padding: 5px 0;
  border-top: medium solid #ffffff;
  border-bottom: medium solid #ffffff;
  border-radius: 5px;
  color: #ffffff;
  opacity: 1;
}

.navbar__burger {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: antiquewhite;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.navbar__burger:hover {
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    position: relative;
    height: 4.5rem;
    padding: 0 1rem;
  }
  .navbar__logo img {
    height: 3.25rem;
  }
  .navbar__burger {
    display: grid;
    place-content: center;
    gap: 4px;
  }
  .navbar__burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    transition: transform 0.25s, opacity 0.25s;
  }
  .navbar.is-open .navbar__burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .navbar.is-open .navbar__burger span:nth-child(2) {
    opacity: 0;
  }
  .navbar.is-open .navbar__burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .navbar__links {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    z-index: 5;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: max-height 0.3s ease, visibility 0.3s;
  }
  .navbar__links li a {
    display: block;
    padding: 14px 4px;
    color: #ffffff;
    opacity: 1;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    font-size: 1.05rem;
    -webkit-text-stroke: 0;
  }
  .navbar__links li a:hover, .navbar__links li a.active {
    padding: 14px 4px;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    -webkit-text-stroke: 0;
    color: #ffffff;
  }
  .navbar__links li a.active {
    font-weight: 700;
  }
  .navbar.is-open .navbar__links {
    max-height: calc(100vh - 4.5rem);
    overflow-y: auto;
    visibility: visible;
  }
}
@media (prefers-reduced-motion: reduce) {
  .navbar::before {
    animation: none;
  }
  .main-title.is-visible::after {
    animation: none;
    opacity: 0.5;
  }
}
body:has(.booking, .legal-page) .navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer {
  position: relative;
  padding: 80px 5% 30px;
  --footer-light: 230, 57, 70; /* colour and strength of the light at the top edge (the home page changes them, see home.css) */
  --footer-glow: 0.2;
  background: linear-gradient(180deg, #0a0506 0%, #000000 340px);
  color: #ffffff;
  direction: rtl;
}
/* the light at the top edge beats like a heart: two quick pulses (lub-dub), then a rest */
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 340px;
  background: radial-gradient(ellipse 70% 260px at 50% 0%, rgba(var(--footer-light), var(--footer-glow)), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  transform-origin: top;
  animation: footerHeartbeat 2.6s ease-in-out infinite;
}
@keyframes footerHeartbeat {
  0% {
    opacity: 0.35;
    transform: scaleY(1);
  }
  9% {
    opacity: 1;
    transform: scaleY(1.1);
  }
  18% {
    opacity: 0.5;
    transform: scaleY(1.02);
  }
  28% {
    opacity: 0.85;
    transform: scaleY(1.06);
  }
  42%,
  100% {
    opacity: 0.35;
    transform: scaleY(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer::after {
    animation: none;
    opacity: 0.6;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
  opacity: 0.75;
}
.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
.footer__brand {
  margin-bottom: 70px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.footer__columns {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.footer__about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.footer__logo {
  width: 220px;
  max-width: 100%;
  margin: 0 auto;
}
.footer__logo img {
  display: block;
  width: 100%;
}
.footer__title {
  display: inline-block;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 2px solid #e63946;
  color: #aaaaaa;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.footer__text {
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.8;
}
.footer__list {
  margin-top: 16px;
  list-style: none;
}
.footer__list li {
  margin-bottom: 15px;
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.8;
}
.footer__link {
  display: inline-block;
  direction: rtl;
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #ffffff;
}
.footer__link--button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}
.footer__icon {
  display: inline-block;
  margin-left: 10px;
  vertical-align: -3px;
  transition: transform 0.3s ease;
}
.footer__link:hover .footer__icon {
  transform: scale(1.1);
}
.footer__cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 35px;
  border: 2px solid #d32f3b;
  border-radius: 999px;
  background-color: #d32f3b;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__cta:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000;
}
.footer__brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-top: 50px;
  padding: 35px 20px;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  list-style: none;
}
.footer__brands li {
  color: #808080;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
  transition: color 0.3s ease;
}
.footer__brands li:hover {
  color: #b5b5b5;
}
.footer__legal {
  margin-top: 28px;
  text-align: center;
  color: #8c8c8c;
  font-size: 13px;
  line-height: 1.7;
}
.footer__legal--todo {
  margin-top: 8px;
  color: #f0c040;
  font-weight: 700;
}
.footer__copy {
  margin-top: 40px;
  text-align: center;
  color: #8c8c8c;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .footer__columns {
    grid-template-columns: 1fr 1fr;
  }
  .footer__about {
    grid-column: 1/-1;
  }
  .footer__brands {
    gap: 32px;
  }
  .footer__brands li {
    font-size: clamp(12px, 2.4vw, 18px);
    letter-spacing: 1px;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 50px 5% 20px;
  }
  .footer__brand {
    width: 70%;
    margin: 0 auto 40px;
    font-size: 5.4vw;
    letter-spacing: 0.125em;
    text-indent: 0.125em;
    white-space: nowrap;
  }
  .footer__columns {
    grid-template-columns: 1fr;
    text-align: right;
  }
  .footer__about {
    grid-template-columns: 1fr;
  }
  .footer__logo {
    position: relative;
    width: 70%;
    max-width: none;
    margin: 0 auto 10px;
    aspect-ratio: 1.6/1;
    overflow: hidden;
  }
  .footer__logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    max-width: none;
    transform: translate(-50%, -56.6%);
  }
  .footer__title {
    padding-bottom: 10px;
    padding-left: 0;
    border-left: none;
    border-bottom: 2px solid #e63946;
  }
  .footer__cta {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
  }
  .footer__brands {
    gap: 22px;
    padding: 24px 0;
  }
  .footer__brands li {
    font-size: clamp(11px, 3.8vw, 15px);
    letter-spacing: 0.5px;
  }
}
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #333333;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
}
@media (hover: hover) {
  #backToTopBtn:hover {
    background-color: #555555;
  }
}
#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 576px) {
  #backToTopBtn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.consent-dialog {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 3000;
  width: 400px;
  max-width: calc(100vw - 32px);
  pointer-events: none;
}
.consent-dialog[hidden] {
  display: none;
}
.consent-dialog__box {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(16, 16, 18, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  color: #e9e9ec;
  direction: rtl;
  pointer-events: auto;
}
.consent-dialog__box h2 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}
.consent-dialog__box p {
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #c4c4cb;
}
.consent-dialog__box a {
  color: #ffffff;
  text-decoration: underline;
}
.consent-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-btn {
  flex: 1 1 auto;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.consent-btn--primary {
  background: #ffffff;
  color: #111111;
}
.consent-btn--primary:hover {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.consent-btn--ghost {
  background: transparent;
  color: #b9b9c0;
}
.consent-btn--ghost:hover {
  color: #ffffff;
}

@media (max-width: 600px) {
  .consent-dialog {
    right: 0;
    left: 0;
    bottom: 0;
    width: auto;
    max-width: none;
  }
  .consent-dialog__box {
    border-radius: 14px 14px 0 0;
  }
}
.skip-link {
  position: absolute;
  top: -100px;
  right: 12px;
  z-index: 5000;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid #e63946;
  outline-offset: 2px;
}

main:focus {
  outline: none;
}

.a11y {
  position: fixed;
  right: 0;
  bottom: 92px;
  z-index: 2900;
  width: 0;
  height: 0;
}

.a11y-tab {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 52px;
  padding: 0;
  border: 2px solid #ffffff;
  border-right: none;
  border-radius: 14px 0 0 14px;
  background: #1746a2;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.2s ease;
}
.a11y-tab svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.a11y-tab:hover {
  width: 30px;
  background: #123a8a;
}

.a11y.is-out .a11y-tab svg {
  transform: rotate(180deg);
}

.a11y-btn {
  position: absolute;
  right: 36px;
  bottom: 1px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #1746a2;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transform: translateX(70px);
  transition: transform 0.3s ease, opacity 0.25s ease, visibility 0s linear 0.3s, background-color 0.2s ease;
}
.a11y-btn svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.a11y-btn:hover {
  background: #123a8a;
}

.a11y.is-out .a11y-btn {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.a11y-panel {
  position: absolute;
  right: 20px;
  bottom: 66px;
  width: 300px;
  max-width: calc(100vw - 40px);
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  direction: rtl;
}
.a11y-panel[hidden] {
  display: none;
}
.a11y-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.a11y-panel__head h2 {
  font-size: 18px;
}
.a11y-panel__close {
  width: 32px;
  height: 32px;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  background: none;
  color: #111111;
  cursor: pointer;
}
.a11y-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.a11y-panel__grid button {
  min-height: 48px;
  padding: 8px;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  background: #f6f6f6;
  color: #111111;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}
.a11y-panel__grid button:hover {
  border-color: #111111;
}
.a11y-panel__grid button[aria-pressed=true] {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}
.a11y-panel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  font-size: 13.5px;
}
.a11y-panel__foot button {
  padding: 6px 4px;
  border: none;
  background: none;
  color: #111111;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.a11y-panel__foot a {
  color: #111111;
  font-weight: 700;
}

@media (max-width: 576px) {
  .a11y {
    bottom: 74px;
  }
  .a11y-tab {
    height: 46px;
  }
  .a11y-btn {
    right: 34px;
    width: 44px;
    height: 44px;
    bottom: 1px;
  }
  .a11y-panel {
    right: 12px;
    bottom: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .a11y-tab,
  .a11y-btn,
  .a11y-tab svg {
    transition: none;
  }
}
html {
  zoom: var(--a11y-zoom, 1);
}

html.a11y-contrast main,
html.a11y-contrast .header,
html.a11y-contrast .footer {
  filter: contrast(1.35);
}

html.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

html.a11y-font * {
  font-family: Arial, Helvetica, sans-serif !important;
}

html.a11y-still *,
html.a11y-still *::before,
html.a11y-still *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
html.a11y-still .fade-up,
html.a11y-still .fade-in-element {
  opacity: 1 !important;
  transform: none !important;
}

body .service-card,
body .service-card-nano,
body .addon-card,
body .value-card,
body .car-card,
body .benefit-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid #d32f3b;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body .service-card:hover,
body .service-card-nano:hover,
body .addon-card:hover,
body .value-card:hover,
body .car-card:hover,
body .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}
/* The bar that fills / slides along the bottom edge of a card on hover is dark. It is drawn as a BORDER, not a background:
   when a browser forces a dark version of the page it flips text and border colours to light, so on a dark page the
   bar turns white by itself (a dark background colour would stay dark and vanish). */
body .service-card::after,
body .service-card-nano::after,
body .addon-card::after,
body .value-card::after,
body .car-card::after,
body .benefit-card::after,
body .benefits-section .benefit-card::after {
  height: 0 !important;
  background: none !important;
  border-bottom: 4px solid #111111;
}
body .service-image-container {
  border-bottom: 0;
}
body .addon-image {
  border-left: 0;
}
body .intro-image,
body .car-image {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
body .intro-text {
  margin: 0 !important;
}
@media (min-width: 901px) {
  body .intro-block {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    margin: 0 0 64px !important;
  }
  body .intro-image,
  body #intro-image-one,
  body #intro-image-two {
    width: 100%;
    height: 380px;
    margin: 0 !important;
    aspect-ratio: auto;
  }
}
body .section-title::after {
  background-color: #d32f3b;
}
/* Buttons: a light button hovers dark, a dark button hovers light. Red buttons were made dark; the red ones that
   stay are the hero buttons on the home page, the footer button, the contact page, and the review links. */
body .btn,
body .btn-outline,
body .btn-custom,
body .btn-white {
  border-color: #111111;
}
body .btn:hover, body .btn:focus-visible,
body .btn-outline:hover,
body .btn-outline:focus-visible,
body .btn-custom:hover,
body .btn-custom:focus-visible,
body .btn-white:hover,
body .btn-white:focus-visible {
  border-color: #111111 !important;
  background: #111111 !important;
  color: #ffffff !important;
}
body .btn:hover .arrow, body .btn:focus-visible .arrow,
body .btn-outline:hover .arrow,
body .btn-outline:focus-visible .arrow,
body .btn-custom:hover .arrow,
body .btn-custom:focus-visible .arrow,
body .btn-white:hover .arrow,
body .btn-white:focus-visible .arrow {
  background: #ffffff;
}
body .btn:hover .arrow svg, body .btn:focus-visible .arrow svg,
body .btn-outline:hover .arrow svg,
body .btn-outline:focus-visible .arrow svg,
body .btn-custom:hover .arrow svg,
body .btn-custom:focus-visible .arrow svg,
body .btn-white:hover .arrow svg,
body .btn-white:focus-visible .arrow svg {
  stroke: #111111;
}
body .btn-dark,
body .btn-black {
  border-color: #111111;
  background: #111111;
  color: #ffffff !important;
}
body .btn-dark .arrow,
body .btn-black .arrow {
  background: #ffffff;
}
body .btn-dark .arrow svg,
body .btn-black .arrow svg {
  stroke: #111111;
}
body .btn-dark:hover, body .btn-dark:focus-visible,
body .btn-black:hover,
body .btn-black:focus-visible {
  border-color: #111111 !important;
  background: #ffffff !important;
  color: #111111 !important;
}
body .btn-dark:hover .arrow, body .btn-dark:focus-visible .arrow,
body .btn-black:hover .arrow,
body .btn-black:focus-visible .arrow {
  background: #111111;
}
body .btn-dark:hover .arrow svg, body .btn-dark:focus-visible .arrow svg,
body .btn-black:hover .arrow svg,
body .btn-black:focus-visible .arrow svg {
  stroke: #ffffff;
}
/* =========================================
   A little life: subtle hover motion on things that used to be static.
   Nothing moves by itself, everything is small (2-6px), and it is all switched off for visitors
   who asked their system for less motion (and by the accessibility widget's "stop animations").
========================================= */
/* the short line under a section title fills up to the full width of the title */
body .section-title::after {
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
body .section-title:hover::after {
  width: 100%;
}

@keyframes lifeBounce {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-7px);
  }
  65% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  /* pictures rise a little and their shadow deepens */
  body .intro-image,
  .how-it-works-img img {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  }
  body .intro-image:hover,
  .how-it-works-img img:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
  }
  /* buttons lift, press down when clicked, and the little arrow nudges forward (right-to-left: to the left) */
  body .btn,
  body .btn-custom,
  body .btn-outline {
    transition: all 0.3s ease;
  }
  body .btn:hover,
  body .btn-custom:hover,
  body .btn-outline:hover {
    transform: translateY(-2px);
  }
  body .btn:active,
  body .btn-custom:active,
  body .btn-outline:active {
    transform: translateY(0) scale(0.97);
  }
  body .btn:hover .arrow,
  body .btn-dark:hover .arrow {
    transform: translateX(-3px);
  }
  /* round icons and step numbers do one small hop */
  .value-card:hover .icon-circle,
  .benefit-card:hover .benefit-icon,
  .step-item:hover .step-number {
    animation: lifeBounce 0.6s ease;
  }
  /* footer: links slide a little towards the text, the logo grows a touch */
  .footer__list .footer__link {
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .footer__list .footer__link:hover {
    transform: translateX(-4px);
  }
  .footer__logo img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .footer__logo img:hover {
    transform: scale(1.04);
  }
  .footer__brands li {
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .footer__brands li:hover {
    transform: translateY(-2px);
  }
  /* rating box, video and partner logos */
  .rating-box,
  .img-container video {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  }
  .rating-box:hover,
  .img-container video:hover {
    transform: translateY(-4px);
  }
}

/* opening hours in the footer (javascript/site-info.js) */
.footer__hours {
  margin-top: 14px;
  list-style: none;
}
.footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 240px;
  padding: 3px 0;
  color: #aaaaaa;
  font-size: 13.5px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .footer__hours li {
    max-width: none;
  }
}
.footer__hours-note {
  max-width: 260px;
  margin: 8px 0 0;
  color: #8c8c8c;
  font-size: 12.5px;
  line-height: 1.6;
}
.footer__brands-note {
  margin-top: 14px;
  color: #6f6f6f;
  font-size: 12px;
  text-align: center;
}
/* the special notice at the very top (holiday, changed hours...): shown only when SITE_INFO.notice.text is filled in */
.site-notice {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  padding: 11px 16px;
  border-bottom: 2px solid #e63946;
  background: linear-gradient(90deg, #0d0d10 0%, #23232a 50%, #0d0d10 100%);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.site-notice::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e63946;
  box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
}
@media (prefers-reduced-motion: no-preference) {
  .site-notice::before {
    animation: noticePulse 1.8s ease-out infinite;
  }
}
@keyframes noticePulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
  100% { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
}
.site-notice a {
  padding: 3px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.site-notice a:active {
  transform: scale(0.96);
}
@media (hover: hover) {
  .site-notice a:hover {
    background: #e63946;
    color: #ffffff;
  }
}/* =========================================
   Phone first: comfortable touch targets and no accidental zoom.
   Tested at 360, 768 and 1024 px wide: no page scrolls sideways. On a screen with a finger (coarse pointer) or a narrow
   one, links and small buttons get a hit area of about 44px, and form fields are 16px so iOS does not zoom in on focus.
========================================= */
html {
  -webkit-text-size-adjust: 100%;
}
a,
button,
select,
summary,
[role="button"] {
  touch-action: manipulation;
}
@media (max-width: 900px), (pointer: coarse) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .footer__list .footer__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .footer__list li {
    margin-bottom: 0;
  }
  .footer__hours li {
    min-height: 0;
  }
  .review-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding-right: 16px;
    padding-left: 16px;
  }
  .consent-btn {
    min-height: 44px;
  }
  .navbar__burger {
    width: 44px;
    height: 44px;
  }
  /* small round buttons keep their look but get a bigger invisible touch area */
  .info-tip__btn,
  .addons-carousel__dots button {
    position: relative;
  }
  .info-tip__btn::after,
  .addons-carousel__dots button::after {
    content: "";
    position: absolute;
    inset: -12px;
  }
}

/* ---------- "next free appointment" pop-up, bottom left of every page (javascript/slot-popup.js) ---------- */
.slot-root {
  --slot-bottom: 16px;
  direction: rtl;
}
.slot-pop {
  position: fixed;
  left: 16px;
  bottom: var(--slot-bottom);
  z-index: 2500;
  width: 236px;
  padding: 16px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: radial-gradient(ellipse 90% 80% at 50% 0%, rgba(230, 57, 70, 0.32), transparent 72%), rgba(14, 14, 16, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  transition: bottom 0.3s ease;
  animation: slotPopIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.slot-pop[hidden],
.slot-tab[hidden] {
  display: none;
}
@keyframes slotPopIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: none; }
}
.slot-pop__close {
  position: absolute;
  top: 8px;
  left: 8px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #d6d6dc;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.slot-pop__close:hover { background: rgba(255, 255, 255, 0.18); color: #ffffff; }
.slot-pop__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7ff0b0;
  font-size: 13px;
  font-weight: 700;
}
.slot-pop__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  animation: slotPulse 2.4s ease-out infinite;
}
.slot-pop__label {
  margin: 10px 0 0;
  color: #bdbdc6;
  font-size: 13px;
}
.slot-pop__day {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
}
.slot-pop__btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b3242f, #e63946);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.slot-pop__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(230, 57, 70, 0.55); }
.slot-tab {
  position: fixed;
  left: 0;
  bottom: var(--slot-bottom);
  z-index: 2500;
  display: grid;
  place-items: center;
  width: 30px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  background: rgba(14, 14, 16, 0.92);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: width 0.2s ease, bottom 0.3s ease, background 0.2s;
}
.slot-tab::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84;
}
.slot-tab:hover { width: 38px; background: #e63946; }
.slot-pop__close:focus-visible, .slot-pop__btn:focus-visible, .slot-tab:focus-visible { outline: 3px solid #ffffff; outline-offset: 2px; }
@keyframes slotPulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(61, 220, 132, 0); }
}
@media (max-width: 600px) {
  .slot-pop { left: 10px; width: 210px; padding: 14px 14px 14px; }
  .slot-pop__day { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .slot-pop, .slot-pop__dot { animation: none; }
}
/* ---------- the site closed / bookings paused by the owner (javascript/content-apply.js, javascript/booking.js) ---------- */
.site-closed {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden auto;
  background: #08080a;
  color: #ffffff;
  direction: rtl;
  text-align: center;
}
html:has(.site-closed) {
  overflow: hidden;
}
.site-closed__glow {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}
.site-closed__glow--a {
  top: -25vmax;
  right: -15vmax;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.7), transparent 65%);
}
.site-closed__glow--b {
  bottom: -30vmax;
  left: -20vmax;
  background: radial-gradient(circle, rgba(70, 90, 170, 0.5), transparent 65%);
}
.site-closed__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  padding: 36px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(20, 20, 24, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.site-closed__logo {
  width: 96px;
  height: auto;
  margin-bottom: 2px;
}
.site-closed__badge {
  padding: 5px 16px;
  border: 1px solid rgba(230, 57, 70, 0.6);
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.16);
  color: #ff8f98;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.site-closed h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(180deg, #ffffff 30%, #b9b9c4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff;
}
.site-closed__message {
  width: 100%;
  margin: 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #e6e6ec;
  font-size: 1.1rem;
  line-height: 1.7;
}
.site-closed__hours {
  margin: 0;
  color: #cfcfd8;
  font-size: 0.95rem;
  line-height: 1.6;
}
.site-closed__hours small {
  color: #8f8f9b;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.site-closed__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}
.site-closed__actions a {
  display: inline-flex;
  flex: 1 1 180px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.site-closed__actions a.is-primary {
  border-color: #e63946;
  background: #e63946;
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.45);
}
.site-closed__actions a:active {
  transform: scale(0.97);
}
@media (hover: hover) {
  .site-closed__actions a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
  }
  .site-closed__actions a.is-primary:hover {
    background: #f04b58;
  }
}
.site-closed__links {
  margin: 4px 0 0;
  font-size: 0.9rem;
}
.site-closed__links a {
  margin: 0 10px;
  color: #a9a9b4;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.booking-paused {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 560px;
  margin: 48px auto;
  padding: 40px 28px 32px;
  border: 1px solid #ececf0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.booking-paused__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
}
.booking-paused__title {
  margin: 4px 0 0;
  color: #111111;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}
.booking-paused__message {
  width: 100%;
  margin: 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: #f6f6f8;
  color: #222222;
  font-size: 1.05rem;
  line-height: 1.7;
}
.booking-paused__text {
  margin: 0;
  color: #555555;
  font-size: 1rem;
  line-height: 1.7;
}
.booking-paused__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 6px;
}
.booking-paused__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 2px solid #111111;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.booking-paused__btn--primary {
  border-color: #e63946;
  background: #e63946;
  color: #ffffff;
}
.booking-paused__btn:active {
  transform: scale(0.97);
}
@media (hover: hover) {
  .booking-paused__btn:hover {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
  }
}
.booking-paused__link {
  margin-top: 4px;
  color: #555555;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 480px) {
  .booking-paused {
    margin: 24px 12px;
    padding: 32px 18px 26px;
  }
  .booking-paused__btn {
    flex: 1 1 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .site-closed { animation: closedFade 0.5s ease both; }
}
@keyframes closedFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* ---------- the offer pop-up and its tab (javascript/offer-popup.js) ---------- */
.offer-pop {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: radial-gradient(circle at 50% 45%, rgba(230, 57, 70, 0.28), rgba(6, 6, 8, 0.78) 70%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  direction: rtl;
}
.offer-pop[hidden] {
  display: none;
}
.offer-pop.is-open {
  opacity: 1;
}
.offer-pop__box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  padding: 44px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: linear-gradient(160deg, #e63946 0%, #a5212d 42%, #16161a 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(230, 57, 70, 0.4);
  color: #ffffff;
  text-align: center;
  transform: translateY(28px) scale(0.92);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.offer-pop.is-open .offer-pop__box {
  transform: none;
}
.offer-pop__box > * {
  position: relative;
  z-index: 1;
}
.offer-pop__glow {
  position: absolute !important;
  z-index: 0 !important;
  top: -30%;
  left: 50%;
  width: 120%;
  height: 70%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.35), transparent 65%);
  pointer-events: none;
}
.offer-pop__spark {
  position: absolute !important;
  z-index: 0 !important;
  width: 10px;
  height: 10px;
  background: #ffffff;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  opacity: 0.85;
  pointer-events: none;
}
.offer-pop__spark--a { top: 22%; right: 12%; width: 16px; height: 16px; }
.offer-pop__spark--b { top: 38%; left: 10%; }
.offer-pop__spark--c { bottom: 24%; right: 9%; width: 12px; height: 12px; }
.offer-pop__close {
  position: absolute !important;
  z-index: 2 !important;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.offer-pop__close:hover {
  background: rgba(0, 0, 0, 0.5);
}
.offer-pop__icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 2px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 0 22px rgba(255, 255, 255, 0.18);
}
.offer-pop__gift {
  width: 44px;
  height: 44px;
  color: #ffffff;
}
.offer-pop__badge {
  padding: 5px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #b3242f;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.offer-pop__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
}
.offer-pop__text {
  margin: 0;
  color: #ffeef0;
  font-size: 1.1rem;
  line-height: 1.65;
}
.offer-pop__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 8px;
  padding: 0 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #b3242f;
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-pop__btn:active {
  transform: scale(0.97);
}
@media (hover: hover) {
  .offer-pop__btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  }
}
.offer-pop__until {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 10px;
  color: #ffd9dd;
  font-size: 0.88rem;
}
.offer-pop__left {
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-weight: 800;
}
.offer-pop__shine {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
  transform: skewX(-18deg);
}
.offer-pop__close:focus-visible,
.offer-pop__btn:focus-visible,
.offer-tab:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: no-preference) {
  .offer-pop.is-open .offer-pop__shine {
    animation: offerShine 3.4s ease-in-out 0.6s infinite;
  }
  .offer-pop.is-open .offer-pop__gift {
    animation: offerWiggle 2.6s ease-in-out 0.8s infinite;
  }
  .offer-pop.is-open .offer-pop__spark {
    animation: offerTwinkle 2.2s ease-in-out infinite;
  }
  .offer-pop__spark--b { animation-delay: 0.7s !important; }
  .offer-pop__spark--c { animation-delay: 1.3s !important; }
  .offer-pop.is-open .offer-pop__btn {
    animation: offerBtn 2s ease-in-out 1s infinite;
  }
  .offer-tab {
    animation: offerTabIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .offer-tab::before {
    animation: offerRing 2.2s ease-out infinite;
  }
  .offer-tab__gift {
    animation: offerWiggle 3s ease-in-out infinite;
  }
}
@keyframes offerShine {
  0% { left: -60%; }
  55%, 100% { left: 130%; }
}
@keyframes offerWiggle {
  0%, 60%, 100% { transform: rotate(0); }
  68% { transform: rotate(-9deg); }
  76% { transform: rotate(8deg); }
  84% { transform: rotate(-5deg); }
  92% { transform: rotate(3deg); }
}
@keyframes offerTwinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes offerBtn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes offerTabIn {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: none; }
}
@keyframes offerRing {
  0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.55); }
  100% { box-shadow: 0 0 0 14px rgba(230, 57, 70, 0); }
}
body.offer-open {
  overflow: hidden;
}
/* the small pill that brings the offer back: bottom left, above the appointment pop-up */
.offer-tab {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 2500;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: linear-gradient(90deg, #b3242f, #e63946);
  box-shadow: 0 10px 26px rgba(230, 57, 70, 0.5);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  direction: rtl;
  transition: bottom 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.offer-tab[hidden] {
  display: none;
}
.offer-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(230, 57, 70, 0.65);
}
.offer-tab__gift {
  width: 22px;
  height: 22px;
  flex: none;
}
.offer-tab__dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #3ddc84;
}
@media (max-width: 600px) {
  .offer-tab {
    left: 10px;
  }
  .offer-pop__box {
    padding: 40px 20px 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .offer-pop, .offer-pop__box { transition: none; }
}