/* ═══════════════════════════════════════════════
   Tesla Service Georgia — tesla-service.ge
   Designed & developed by @codewix
   t.me/codewix
   ═══════════════════════════════════════════════ */

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600&family=Noto+Sans+Georgian:wght@400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(219, 69%, 56%);
  --first-color-alt: hsl(219, 69%, 52%);
  --title-color: hsl(219, 8%, 95%);
  --text-color: hsl(219, 8%, 75%);
  --text-color-light: hsl(219, 4%, 55%);
  --white-color: #fff;
  --body-color: hsl(219, 4%, 4%);
  --container-color: hsl(219, 4%, 7%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Exo', 'Noto Sans Georgian', sans-serif;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: 2.5rem;
}

.main {
  overflow: hidden;
}

.shape {
  background-color: rgba(55, 74, 109, 0.5);
  filter: blur(112px);
  border-radius: 50%;
}

.shape__big {
  width: 400px;
  height: 400px;
}

.shape__small {
  width: 300px;
  height: 300px;
}

.shape__smaller {
  width: 180px;
  height: 180px;
  filter: blur(64px);
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 0 1rem;
}


.nav__toggle {
  color: var(--title-color);
  display: inline-flex;
}


.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}
.tsglogo {
  width: auto;
  height: 45px;
  display: flex;
  align-items: center;
  cursor: pointer;
  animation: logoEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s, filter 0.3s;
}

.tsglogo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(99,161,255,.4));
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

#refreshButton {
  cursor: pointer;
}

.nav__menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(96px);
    transition: .3s;
    flex-direction: column;
    justify-content: center;
  }
}

.nav__list {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .nav__list {
    flex-direction: column;
    gap: 3rem;
  }
}

.nav__link {
  font-family: bpg_nino_mtavruli_bold, 'Noto Sans Georgian', sans-serif;
  text-transform: uppercase;
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  transition: .3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  font-size: 2rem;
  color: var(--white-color);
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  border-radius: 0 0 1rem 1rem;
  background-color: var(--body-color);
  box-shadow: 0 2px 4px #030303;
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
  position: relative;
  overflow: hidden;
}

.home__container {
  position: relative;
  padding-top: 4rem;
  row-gap: 3rem;
}

.home__data {
  text-align: center;
}

.home__title {
  font-family: TSG-font;
  font-size: var(--h1-font-size);
  margin-bottom: 1rem;
}

.home__elec {
  font-size: var(--small-font-size);
  font-weight: 400;
  color: var(--text-color);
  display: inline-flex;
  align-items: center;
  font-family: bpg_nino_mtavruli_bold, 'Noto Sans Georgian', sans-serif;
  column-gap: .25rem;
}

.home__elec i {
  color: var(--first-color);
}

.home__img {
  width: 280px;
  justify-self: center;
}

.home__car {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4rem;
  margin-bottom: 2rem;
}

.home__car-name {
  font-size: .625rem;
  font-weight: 400;
  color: var(--text-color-light);
}

.home__car-data {
  text-align: center;
}

.home__car-number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  margin-bottom: .25rem;
}

.home__car-icon {
  background-color: var(--container-color);
  border-radius: 50%;
  padding: .376rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: .875rem;
  margin-bottom: .75rem;
}

.home__button {
  font-family: bpg_nino_mtavruli_bold, 'Noto Sans Georgian', sans-serif;
  text-align: center;
  font-size: 8px;
  position: relative;
  border: 2px solid #08915f;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  font-size: var(--small-font-size);
  color: var(--white-color);
  font-weight: var(--font-medium);
}

.home__button::before {
  content: '';
  border: 2px solid #02d98a;
  width: 90px;
  height: 90px;
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 12px #02d98a;
  transition: .3s;
  animation: button 3s infinite;
}

.home .shape__big,
.home .shape__small {
  position: absolute;
}

.home .shape__big {
  left: -9rem;
  top: -4rem;
}

.home .shape__small {
  right: -10rem;
  bottom: 3rem;
}

/* Button animate */
@keyframes button {
  0% {
    box-shadow: 0 0 12px #02d98a;
  }
  50% {
    box-shadow: 0 0 24px #02d98a;
  }
}

/*=============== BUTTON ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: .25rem;
  font-size: var(--normal-font-size);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 6rem;
}

.about__group {
  position: relative;
}

.about__img {
  width: 310px;
  border-radius: .5rem;
}

.about__card {
  width: 180px;
  position: absolute;
  right: 0;
  bottom: -2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  padding: 1rem .75rem;
  text-align: center;
  border-radius: 1.25rem;
}

.about__card-title {
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
}

.about__card-description {
  font-size: var(--smaller-font-size);
}

.about__title {
  text-align: initial;
  margin-bottom: 2rem;
}

.about__description {
  margin-bottom: 2rem;
}

/*=============== POPULAR ===============*/
.popular__container {
  padding-top: 1rem;
}

.popular__card {
  position: relative;
  width: 228px;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.popular__card:hover .popular__img {
  transform: translateY(-0.25rem);
}

.popular__card .shape__smaller {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
}

.popular__title, .popular__subtitle, .popular__img {
  position: relative;
}

.popular__title {
  font-family: bpg_nino_mtavruli_bold;
  text-align: center;
  font-size: var(--h2-font-size);
  margin-bottom: .25rem;
}

.popular__subtitle {
  font-family: bpg_nino_mtavruli_normal;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: 200;
}

.popular__img {
  width: 150px;
  height: 130px;
  margin: .75rem 0 1.25rem 1.5rem;
  transition: .3s;
}

.popular__data {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: .5rem 1.25rem;
  margin-bottom: 2rem;
}

.popular__data-group {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  font-size: var(--smaller-font-size);
  color: var(--white-color);
}

.popular__data i {
  font-size: 1rem;
}

.popular__price {
  font-size: var(--h3-font-size);
}

.popular__button {
  font-family: bpg_nino_mtavruli_bold, 'Noto Sans Georgian', sans-serif;
  border: none;
  outline: none;
  padding: .25rem 5rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0rem 0 0rem 0;
  cursor: pointer;
}
.popular__button i {
  text-align: center;
}

/* Swiper class */
.swiper-pagination-bullet {
  background: var(--text-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
}

/*=============== FEATURES ===============*/
.features {
  overflow: hidden;
  position: relative;
}

.features__container {
  padding-top: 2rem;
  grid-template-columns: 285px;
  justify-content: center;
}

.features__group {
  display: grid;
  position: relative;
  z-index: 10;
}

.features__img {
  width: 150px;
  justify-self: center;
}

.features__card {
  width: 40%;
  height: 30%;
  background-color:#0a0a0b;
  border-radius: 1.25rem;
  padding: .75rem 2rem;
  text-align:left;
  color: var(--title-color);
  position: absolute;
}

.features__card-1 {
  top: 4rem;
  left: 1.5rem;
}

.features__card-2 {
  top: 20rem;
  right: 10rem;
}

.features__card-3 {
  left: 1.5rem;
  bottom: 2rem;
}

.features__card-title {
  font-size: var(--h3-font-size);
  margin-bottom: .25rem;
}

.features__card-description {
  font-size: var(--smaller-font-size);
}

.features__map {
  max-width: initial;
  max-height: 60%;
  width: 100%;
  position: absolute;
  top: 8rem;
  left: -3rem;
  margin: auto;
}
/*=============== FEATURED ===============*/
.featured__container {
  padding-top: 1rem;
}

.featured__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  margin-bottom: 3.5rem;
}

.featured__item {
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  padding: .75rem;
  border-radius: .75rem;
  background-color: var(--container-color);
  color: var(--white-color);
  font-size: var(--normal-font-size);
  cursor: pointer;
  transition: .3s;
}

.featured__item img {
  width: 1.5rem;
}

.featured__item span,
.featured__item img {
  opacity: .3;
  transition: .3s;
}

.featured__item:hover {
  background-color: var(--first-color);
}

.featured__item:hover span,
.featured__item:hover img {
  opacity: 1;
}

.featured__content {
  grid-template-columns: 228px;
  row-gap: 2.5rem;
  justify-content: center;
}

.featured__card {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1rem;
}

.featured__card:hover .featured__img {
  transform: translateX(-0.25rem);
}

.featured__card .shape__smaller {
  position: absolute;
  inset: 0;
  margin: auto;
}

.featured__title, .featured__subtitle, .featured__img {
  position: relative;
}

.featured__title {
  font-size: var(--h2-font-size);
  margin-bottom: .25rem;
}

.featured__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: 400;
}

.featured__img {
  width: 180px;
  margin: 1.5rem 0;
  transition: .3s;
}

.featured__price {
  font-size: var(--h3-font-size);
}

.featured__button {
  border: none;
  outline: none;
  padding: .75rem 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 1rem 0;
  cursor: pointer;
}

.featured__button i {
  font-size: 1.25rem;
}

/* Active link featured */
.active-featured {
  background-color: var(--first-color);
}

.active-featured span,
.active-featured img {
  opacity: 1;
}
/*=============== OFFER ===============*/
.offer {
  position: relative;
}

.offer__container {
  grid-template-rows: max-content 224px;
}

.offer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.offer__data {
  position: relative;
  text-align: center;
}

.offer__title {
  margin-bottom: 2rem;
}

.offer__description {
  margin-bottom: 3rem;
}

.offer__img {
  position: absolute;
  max-width: initial;
  width: 400px;
  bottom: 2rem;
  right: -5.5rem;
}

/*=============== LOGOS ===============*/
.logos__img {
  width: 40px;
  opacity: .4;
  transition: .3s;
}

.logos__img:hover {
  opacity: 1;
}

.logos__container {
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding-bottom: 2rem;
}

/*=============== FOOTER — @codewix ===============*/
.footer {
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important;
}

.footer .shape__big,
.footer .shape__small {
  position: absolute;
}

.footer .shape__big {
  width: 300px;
  height: 300px;
  left: -12rem;
  top: 6rem;
}

.footer .shape__small {
  right: -13rem;
  bottom: -6rem;
}

.footer__container {
  row-gap: 2.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.footer__brand .footer__description {
  font-size: .87rem;
  line-height: 1.7;
  color: var(--text-color);
  margin: .9rem 0 1.2rem;
  max-width: 300px;
}

.footer__socials {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.footer__social-link {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1.05rem;
  transition: background .2s, color .2s, transform .2s;
}
.footer__social-link:hover {
  background: var(--first-color);
  color: #fff;
  border-color: var(--first-color);
  transform: translateY(-2px);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1.25rem;
  transition: .3s;
}

.footer__logo i {
  font-size: 1.5rem;
  font-weight: 500;
}

.footer__logo:hover {
  color: var(--first-color);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: .55rem;
}

.footer__link {
  color: var(--text-color);
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  transition: color .2s, gap .2s;
}
.footer__link i { font-size: .95rem; color: var(--first-color); opacity: .7; flex-shrink: 0; }
.footer__link:hover { color: var(--title-color); gap: .65rem; }
.footer__link:hover i { opacity: 1; }

.footer__info {
  color: var(--text-color-light);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.footer__info i { font-size: .95rem; color: var(--first-color); opacity: .6; flex-shrink: 0; }

.footer__copy {
  display: block;
  margin-top: 0;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

/* ── Footer bottom bar ───────────────────────────────── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative;
  z-index: 1;
}
.footer__dev {
  font-size: .78rem;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.footer__dev i { color: var(--first-color); font-size: .8rem; }
.footer__dev a {
  color: var(--text-color-light);
  font-weight: 600;
  transition: color .2s;
}
.footer__dev a:hover { color: var(--first-color); }

/* ── Mini footer (sub-pages) — @codewix ─────── */
.footer-mini {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 2.5rem;
  padding: 1.5rem 0 1rem;
}
.footer-mini__inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.footer-mini__links {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
}
.footer-mini__links a {
  color: var(--text-color);
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color .2s;
}
.footer-mini__links a i { color: var(--first-color); opacity: .7; font-size: .9rem; }
.footer-mini__links a:hover { color: var(--title-color); }
.footer-mini__links a:hover i { opacity: 1; }
.footer-mini__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .4rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background-color: #27282a;
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
  background-color: #3b3c40;
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #4e5155;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  display: inline-flex;
  padding: .45rem;
  border-radius: .5rem;
  font-size: 1.15rem;
  color: var(--white-color);
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  transform: translateY(-0.25rem);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
} 
/*=============== WEB FONTS ================*/
@font-face {
  font-family: "TSG-font"; 
  src: url("../fonts/TSG-font.ttf") format("truetype");
}
@font-face {
  font-family: "bpg_nino_mtavruli_bold";
  src: url("../fonts/bpg_nino_mtavruli_bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "bpg_nino_mtavruli_normal";
  src: url("../fonts/bpg_nino_mtavruli_normal.ttf") format("truetype");
  font-display: swap;
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .home-shop__scroll {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .home__car {
    column-gap: 2rem;
  }
  .about__card {
    width: 150px;
  }
  .offer__container {
    grid-template-rows: max-content 180px;
  }
  .offer__img {
    width: 340px;
  }
  .logos__container {
    gap: 2.5rem;
  }
}
/*Hide Mobile Device*/
@media (max-width: 767px) {
  .features {
      display: none; /* Hide the section on mobile devices */
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .about__group {
    width: 350px;
    justify-self: center;
  }
  .features__map {
    left: 0;
    right: 0;
  }
  .featured__content {
    grid-template-columns: repeat(2, 228px);
  }
  .offer__container {
    grid-template-rows: initial;
    grid-template-columns: .5fr;
    justify-content: center;
  }
  .offer__img {
    position: relative;
    bottom: initial;
    right: initial;
  }
  .offer__data {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 767px) {
  .section {
    padding: 7rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .nav__list {
    gap: 2.5rem;
  }
  .nav__link {
    font-size: var(--normal-font-size);
    text-transform: initial;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .logos__container {
    gap: 4rem 8rem;
  }
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For large devices */
@media screen and (min-width: 1040px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .shape__big {
    width: 500px;
    height: 500px;
  }
  .shape__small {
    width: 400px;
    height: 400px;
  }
  .home__container {
    padding-top: 2rem;
  }
  .home__img {
    width: 55%;
  }
  .home__svc-anim {
    width: 55%;
    max-width: 380px;
  }
  .home__car {
    column-gap: 7rem;
  }
  .home__car-icon {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .about__container {
    column-gap: 6rem;
    align-items: center;
  }
  .about__group, .about__img {
    width: 480px;
  }
  .about__card {
    width: 198px;
    padding: 1rem 1.25rem;
  }
  .about__description {
    padding-right: 4rem;
    margin-bottom: 3rem;
  }
  .popular__container {
    width: 875px;
    padding-top: 3rem;
  }
  .popular__card {
    width: 258px;
    border-radius: 1.25rem;
    margin-bottom: 5rem;
  }
  .popular__img {
    width: 150px;
    height: 130px;
    position: center;
    /*margin: .75rem 0 1.25rem 2rem;*/
  }
  .features__container {
    padding: 2rem 0 3rem;
  }
  .features__img {
    width: 200px;
    height: 600px;
  }
  .features__card {
    width: 350px;
    padding: .75rem 2.5rem;
  }
  .features__card-1 {
    position: center;
  }
  .features__card-2 {
    right: -40rem;
  }
  .features__card-3 {
    bottom: 1rem;
    left: -40rem;
  }
  .features__map {
    width: 100%;
    max-height: 80%;
    top: 11rem;
  }
  .featured__container {
    padding-bottom: 2.5rem;
  }
  .featured__filters {
    column-gap: 2rem;
    margin-bottom: 4.5rem;
  }
  .featured__item {
    width: 52px;
    height: 52px;
  }
  .featured__item img {
    width: 2rem;
  }
  .featured__content {
    grid-template-columns: repeat(3, 248px);
    gap: 4rem;
  }
  .offer__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
    align-items: center;
    padding-bottom: 2rem;
  }
  .offer__data, .offer__title {
    text-align: initial;
  }
  .offer__data {
    margin-bottom: 0;
  }
  .offer__description {
    padding-right: 6rem;
  }
  .offer__img {
    width: 450px;
  }
  .logos__container {
    grid-template-columns: repeat(6, max-content);
  }
  .logos__img {
    width: 50px;
  }
  .footer__container {
    grid-template-columns: 1.4fr 1fr 1fr;
    column-gap: 3rem;
    justify-content: unset;
  }
  .footer__logo {
    column-gap: .5rem;
  }
  .footer__logo i {
    font-size: 2rem;
  }
  .footer__title {
    margin-bottom: 1.5rem;
  }
  .footer__links {
    row-gap: .75rem;
  }
  .footer__social-link {
    font-size: 1.5rem;
  }
  .footer__copy {
    margin-top: 8rem;
    padding-bottom: 1rem;
  }
  .scrollup {
    right: 3rem;
  }
}
/* ... თქვენი არსებული styles.css-ის ყველა კოდი ... */

/* Parts Page Specific Styles */
.parts__container {
  padding-top: 2rem;
}

.parts__list {
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 2rem;
}

.parts__item {
  background-color: var(--container-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.parts__item h3 {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
}

.parts__item p {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.parts__item .button {
  padding: 0.75rem 1.5rem;
  font-size: var(--small-font-size);
}

/* Order Form Styles */
.order-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: var(--z-fixed);
  width: 90%;
  max-width: 400px;
}

.order-form.active {
  display: block;
}

.order-form h3 {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}

.order-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--text-color-light);
  border-radius: 0.25rem;
  background-color: var(--body-color);
  color: var(--white-color);
  font-size: var(--normal-font-size);
}

.order-form button {
  width: 100%;
  padding: 1rem;
}

/* Admin Page Specific Styles */
.admin-container {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  grid-template-areas:
    "topbar topbar"
    "topbar topbar"
    "tabs main";
}

.admin-topbar {
  grid-area: topbar;
}

.admin-tabs-nav {
  grid-area: tabs;
}

.admin-main {
  grid-area: main;
}

.admin-form {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.admin-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--text-color-light);
  border-radius: 0.25rem;
  background-color: var(--body-color);
  color: var(--white-color);
  font-size: var(--normal-font-size);
}

.admin-form button {
  width: 100%;
  padding: 1rem;
}

.admin-list {
  display: grid;
  gap: 1rem;
}

.admin-item {
  background-color: var(--container-color);
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-item span {
  font-size: var(--normal-font-size);
}

.admin-item button {
  background-color: #ff4d4d;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

/* Responsive Adjustments */
@media screen and (max-width: 576px) {
  .admin-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "topbar"
      "stats"
      "tabs"
      "main";
  }
  .admin-tabs-nav {
    border-right: none;
    border-bottom: 1px solid hsl(219,4%,12%);
    flex-direction: row;
    flex-wrap: wrap;
    padding-right: 0;
    padding-bottom: .75rem;
  }
  [id$="Panel"] {
    grid-column: 1;
    grid-row: auto;
  }
}

@media screen and (min-width: 767px) {
  .parts__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .admin-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ... თქვენი არსებული styles.css-ის ყველა კოდი ... */

/* Parts Page Specific Styles */
.parts__item .button {
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  background-color: var(--first-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  transition: background-color 0.3s, transform 0.3s;
}

.parts__item .button:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-0.25rem);
}

.parts__item img {
  width: 150px;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.5rem;
}

/* Admin Page Specific Styles */
.admin-form input[type="file"] {
  padding: 0.5rem;
  background-color: var(--body-color);
  color: var(--text-color);
  border: 1px solid var(--text-color-light);
  border-radius: 0.25rem;
}
/* ... თქვენი არსებული styles.css-ის ყველა კოდი ... */

/* Login Form Styles */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--body-color);
}

.login-form {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.login-form .tsglogo {
  display: block;
  margin: 0 auto 1.5rem;
  width: 150px;
  height: auto;
}

.login-form h2 {
  text-align: center;
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}

.login-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: hsl(219, 4%, 10%);
  color: var(--text-color);
  font-size: var(--normal-font-size);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}

.login-form input:focus {
  outline: none;
  box-shadow: 0 0 5px var(--first-color);
}

.login-form button {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
}

/* Parts Page Specific Styles */
.parts__item {
  transition: transform 0.3s;
}

.parts__item:hover {
  transform: translateY(-0.25rem);
}

.parts__item img {
  width: 150px;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* ... თქვენი არსებული styles.css-ის ყველა კოდი ... */

/* ... თქვენი არსებული styles.css-ის ყველა კოდი ... */

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: var(--z-fixed);
}

.modal-content {
  position: relative;
  background-color: var(--body-color);
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  min-height: 80vh;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
}

.modal-content .tsglogo {
  display: block;
  margin: 0 auto 1.5rem;
  width: 150px;
  height: auto;
}

.booking-form {
  text-align: center;
}

.booking-form label {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-bottom: 0.5rem;
  display: block;
}

.booking-form select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: hsl(219, 4%, 10%);
  color: var(--white-color);
  font-size: var(--normal-font-size);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.booking-form select:focus {
  outline: none;
  box-shadow: 0 0 5px var(--first-color);
}

.booking-form button {
  width: 100%;
  padding: 1rem;
}

.map-container {
  margin-top: 1rem;
}

.map-container p {
  font-size: var(--small-font-size);
  color: var(--text-color);
  text-align: center;
  margin-bottom: 1rem;
}

.map-container iframe {
  border-radius: 0.5rem;
}
/* ... თქვენი არსებული styles.css-ის ყველა კოდი ... */
/* ... თქვენი არსებული styles.css-ის ყველა კოდი ... */

/* Header Styles */
.header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: background-color 0.3s; /* დავამატე გლუვი გადასვლა */
}

.nav {
  height: var(--header-height);
  display: flex;
  flex-wrap: wrap;
  row-gap: .5rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Top Bar Styles */
.top-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%; /* ჰედერის სიმაღლესთან გასწორება */
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, opacity 0.2s;
}

.language-btn img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.language-btn:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.language-btn.active {
  border: 1px solid var(--first-color);
  border-radius: 3px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--container-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  z-index: 1;
  padding: 5px 0;
  min-width: 40px;
}

.dropdown-content button {
  display: block;
  padding: 5px;
}

.phone-number {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: color 0.3s;
}

.phone-number i {
  margin-right: 5px;
  font-size: 1rem;
  color: var(--first-color);
}

.phone-number:hover {
  color: var(--first-color);
}

.phone-number #headerPhoneText {
  transition: opacity 0.3s;
}

.phone-number--fade #headerPhoneText {
  opacity: 0;
}

/* Scroll Header */
.scroll-header {
  background-color: var(--body-color);
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 2px 4px #030303;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: var(--z-tooltip);
  width: 40px;
  height: 40px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* ... თქვენი არსებული styles.css-ის ყველა კოდი ... */

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: var(--z-fixed);
}

.modal-content {
  position: relative;
  background-color: var(--body-color);
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  min-height: 80vh;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
}

.modal-content .tsglogo {
  display: block;
  margin: 0 auto 1.5rem;
  width: 150px;
  height: auto;
}

.booking-form {
  text-align: center;
}

.modal-title {
  font-size: var(--h3-font-size);
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-weight: var(--font-medium);
}

.booking-form label {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-bottom: 0.5rem;
  display: block;
}

.booking-form select,
.booking-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: hsl(219, 4%, 10%);
  color: var(--white-color);
  font-size: var(--normal-font-size);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.booking-form select:focus,
.booking-form input:focus {
  outline: none;
  box-shadow: 0 0 5px var(--first-color);
}

.booking-form button {
  width: 100%;
  padding: 1rem;
}

.confirm-button {
  background-color: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-medium);
  transition: background-color 0.3s;
}

.confirm-button:hover {
  background-color: hsl(var(--first-hue), 80%, 50%);
}

.map-container {
  margin-top: 1rem;
}

.map-container p {
  font-size: var(--small-font-size);
  color: var(--text-color);
  text-align: center;
  margin-bottom: 1rem;
}

.map-container iframe {
  border-radius: 0.5rem;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: var(--z-tooltip);
  width: 40px;
  height: 40px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}

/* =============== MOBILE FIXES =============== */

/* Modal: scroll content on small screens instead of overflowing */
.modal-content {
  overflow-y: auto;
  max-height: 92vh;
  min-height: unset;
}

@media screen and (max-width: 767px) {
  .nav__toggle {
    display: inline-flex;
    font-size: 1.5rem;
    z-index: calc(var(--z-fixed) + 1);
  }
  .top-bar {
    gap: 8px;
  }
  .phone-number {
    display: none;
  }
  .home__img {
    width: 220px;
  }
  .about__img {
    width: 100%;
    max-width: 340px;
  }
  .featured__content {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured__card {
    padding: 1.25rem 1rem 1rem;
  }
  .featured__img {
    width: 130px;
  }
}

@media screen and (max-width: 380px) {
  .featured__content {
    grid-template-columns: 1fr;
  }
}

/* =============== HEADER AUTH LINK =============== */
.header-auth-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  transition: color .3s;
  white-space: nowrap;
}
.header-auth-link i {
  font-size: 1rem;
  color: var(--first-color);
}
.header-auth-link:hover {
  color: var(--first-color);
}

/* =============== AUTH PAGE =============== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.auth-container {
  max-width: 440px;
  margin: 0 auto;
  padding-top: 2rem;
}
.auth-tabs {
  display: flex;
  border-bottom: 1px solid hsl(219, 4%, 14%);
  margin-bottom: 2rem;
}
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: .75rem 0;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: .3s;
}
.auth-tab.active {
  color: var(--first-color);
  border-bottom-color: var(--first-color);
}
.auth-form-wrap {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.auth-form-wrap.hidden {
  display: none;
}
.auth-logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 1.5rem;
}
.auth-title {
  text-align: center;
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}
.auth-form-wrap label {
  display: block;
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-bottom: .35rem;
}
.auth-form-wrap input {
  width: 100%;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: .5rem;
  background-color: hsl(219, 4%, 10%);
  color: var(--white-color);
  font-size: var(--normal-font-size);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.2);
  transition: box-shadow .3s;
}
.auth-form-wrap input:focus {
  outline: none;
  box-shadow: 0 0 5px var(--first-color);
}
.input-wrap {
  position: relative;
}
.input-wrap input {
  padding-right: 2.75rem;
}
.toggle-pass {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-60%);
  background: none;
  border: none;
  color: var(--text-color-light);
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
}
.auth-submit {
  width: 100%;
  padding: .875rem;
  margin-top: .25rem;
  border: none;
  cursor: pointer;
}
.auth-error {
  color: #ff5c5c;
  font-size: var(--small-font-size);
  min-height: 1.2rem;
  margin-bottom: .5rem;
  text-align: center;
}
.auth-switch {
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 1.25rem;
}
.auth-switch a {
  color: var(--first-color);
}

/* =============== DASHBOARD =============== */
.dashboard {
  min-height: 100vh;
}
.dash-header {
  margin-bottom: 2rem;
}
.dash-welcome {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: .25rem;
}
.dash-email {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}
.dash-logout {
  padding: .5rem 1.25rem;
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  border: none;
}
.bookings-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.booking-card {
  background-color: var(--container-color);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform .3s;
}
.booking-card:hover {
  transform: translateY(-.2rem);
}
.booking-card__icon {
  font-size: 1.75rem;
  color: var(--first-color);
  flex-shrink: 0;
}
.booking-card__model {
  font-size: var(--h3-font-size);
  margin-bottom: .25rem;
}
.booking-card__problem {
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-bottom: .4rem;
}
.booking-card__date {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}
.cars-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.car-card {
  background-color: var(--container-color);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform .3s;
}
.car-card:hover { transform: translateY(-.2rem); }
.car-card__icon {
  font-size: 1.75rem;
  color: var(--first-color);
  flex-shrink: 0;
}
.car-card__model {
  font-size: var(--h3-font-size);
  flex: 1;
}
.car-card__del-btn {
  background: none;
  border: none;
  color: var(--text-color-light);
  font-size: 1.2rem;
  cursor: pointer;
  padding: .3rem;
  flex-shrink: 0;
  transition: color .2s;
}
.car-card__del-btn:hover { color: #e53935; }
.add-car-form {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: flex-end;
  background-color: var(--container-color);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.add-car-form .wf-field { flex: 1; min-width: 160px; }
@media screen and (max-width: 500px) {
  .add-car-form { flex-direction: column; align-items: stretch; }
  .add-car-form .wf-field { min-width: 0; }
}
.dash-loading,
.dash-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-color-light);
  font-size: var(--normal-font-size);
}
.dash-empty i {
  display: block;
  font-size: 2rem;
  margin-bottom: .75rem;
  color: var(--first-color);
}
.hidden {
  display: none !important;
}

/* Popular section icons */
.popular__title i {
  font-size: 2rem;
  color: var(--first-color);
}

/* ════════════════════════════════════════════════════════════════
   WARRANTY SYSTEM
   ════════════════════════════════════════════════════════════════ */

/* ── Spinning loader ──────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { display: inline-block; animation: spin .8s linear infinite; }

/* ── Shared form inputs (warranty / admin decision forms) ─────── */
.wf-field label,
.wf-block label {
  display: block;
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-bottom: .35rem;
}
.wf-field input,
.wf-field select,
.wf-field textarea,
.wf-block input,
.wf-block select,
.wf-block textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: none;
  border-radius: .5rem;
  background-color: hsl(219, 4%, 10%);
  color: var(--white-color);
  font-size: var(--normal-font-size);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.25);
  transition: box-shadow .3s;
  font-family: var(--body-font);
  resize: vertical;
}
.wf-field input:focus,
.wf-field select:focus,
.wf-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--first-color);
}
.wf-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.wf-field--full { grid-column: 1 / -1; }
.req { color: #ff5c5c; }
.wf-hint {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin-top: .4rem;
  line-height: 1.5;
}
.wf-hint i { color: var(--first-color); }
.wf-error {
  background: rgba(255,77,77,.1);
  border: 1px solid rgba(255,77,77,.4);
  color: #ff6b6b;
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: var(--small-font-size);
  margin-bottom: 1rem;
}

/* ── WARRANTY HERO ────────────────────────────────────────────── */
.warranty-page-strip {
  padding: 5.5rem 0 1.2rem;
  background: linear-gradient(160deg, hsl(219,4%,5%) 0%, hsl(219,15%,8%) 100%);
}
.warranty-page-strip__inner {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.warranty-page-strip__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title-color);
  margin: 0;
}

.warranty-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background: linear-gradient(160deg, hsl(219,4%,5%) 0%, hsl(219,15%,8%) 100%);
}
.warranty-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.warranty-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(2,217,138,.12);
  border: 1px solid rgba(2,217,138,.3);
  color: #02d98a;
  padding: .35rem .9rem;
  border-radius: 2rem;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.warranty-hero__title {
  font-family: TSG-font;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--title-color);
  margin-bottom: 1.25rem;
}
.warranty-hero__desc {
  color: var(--text-color);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.warranty-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.w-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: hsl(219,4%,10%);
  border: 1px solid hsl(219,4%,16%);
  color: var(--text-color);
  padding: .35rem .8rem;
  border-radius: 2rem;
  font-size: var(--smaller-font-size);
}
.w-pill i { color: var(--first-color); }

/* Certificate preview card (hero) */
.wcert-preview {
  background: hsl(219,4%,8%);
  border: 1px solid hsl(219,4%,14%);
  border-radius: 1.25rem;
  padding: 1.5rem;
  width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.wcert-preview__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.wcert-preview__logo { height: 28px; }
.wcert-preview__num {
  font-size: .6rem;
  color: var(--text-color-light);
  letter-spacing: .06em;
}
.wcert-preview__shield {
  text-align: center;
  font-size: 3.5rem;
  color: #02d98a;
  line-height: 1;
  margin-bottom: .5rem;
  filter: drop-shadow(0 0 12px rgba(2,217,138,.4));
}
.wcert-preview__label {
  font-family: TSG-font;
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--title-color);
  text-align: center;
}
.wcert-preview__sub {
  font-size: .65rem;
  color: var(--text-color-light);
  text-align: center;
  margin-bottom: 1rem;
}
.wcert-preview__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: hsl(219,4%,12%);
  border-radius: .5rem;
  padding: .5rem .75rem;
  font-size: .7rem;
  color: var(--text-color);
}

@media screen and (max-width: 767px) {
  .warranty-hero__inner { grid-template-columns: 1fr; }
  .wcert-preview { display: none; }
}

/* ── SUCCESS CARD ─────────────────────────────────────────────── */
.wsuccess-card {
  background: hsl(219,4%,8%);
  border: 1px solid rgba(2,217,138,.3);
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 560px;
  margin: 3rem auto;
  box-shadow: 0 0 32px rgba(2,217,138,.1);
}
.wsuccess-card__icon {
  font-size: 4rem;
  color: #02d98a;
  line-height: 1;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(2,217,138,.5));
}
.wsuccess-card h2 { margin-bottom: 1rem; }
.wsuccess-card p  { color: var(--text-color); margin-bottom: .5rem; }
.wsuccess-card__note { font-size: var(--small-font-size); color: var(--text-color-light); margin-top: .5rem; }
.wsuccess-card__actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.75rem; flex-wrap: wrap; }
.button--ghost {
  background: transparent;
  border: 1px solid var(--text-color-light);
  color: var(--text-color);
}
.button--ghost:hover { background: hsl(219,4%,14%); }

/* ── WARRANTY FORM ────────────────────────────────────────────── */
.warranty-form-wrap { padding-bottom: 4rem; }
.warranty-form { display: flex; flex-direction: column; gap: 2rem; }

.wf-block {
  background: var(--container-color);
  border: 1px solid hsl(219,4%,12%);
  border-radius: 1.25rem;
  padding: 2rem;
}
.wf-block__head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid hsl(219,4%,12%);
}
.wf-block__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--first-color);
  color: #fff;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  border-radius: .5rem;
  letter-spacing: .04em;
}
.wf-block__head h3 { font-size: var(--h3-font-size); margin-bottom: .25rem; }
.wf-block__head p  { font-size: var(--small-font-size); color: var(--text-color-light); }

/* VIN counter */
.vin-counter {
  float: right;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  font-weight: var(--font-medium);
  transition: color .2s;
}
.vin-counter.vin-ok  { color: #02d98a; }
.vin-counter.vin-bad { color: #ff9f40; }

/* Service chips */
.wf-services {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.svc-chip { cursor: pointer; }
.svc-chip input { display: none; }
.svc-chip span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border: 1px solid hsl(219,4%,16%);
  border-radius: 2rem;
  background: hsl(219,4%,10%);
  color: var(--text-color);
  font-size: var(--small-font-size);
  transition: background .2s, border-color .2s, color .2s;
  user-select: none;
}
.svc-chip span i { font-size: .9rem; }
.svc-chip:hover span { border-color: var(--first-color); color: var(--title-color); }
.svc-chip input:checked + span {
  background: var(--first-color);
  border-color: var(--first-color);
  color: #fff;
}

/* Form footer */
.wf-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.wf-footer__info {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
  line-height: 1.5;
}
.wf-footer__info i { color: var(--first-color); font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.wf-submit-btn { padding: .875rem 2rem; white-space: nowrap; border: none; cursor: pointer; }
.wf-submit-btn i { margin-right: .35rem; }

/* ── DASHBOARD TABS ────────────────────────────────────────────── */
.dash-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid hsl(219,4%,12%);
  padding-bottom: .5rem;
}
@media screen and (max-width: 480px) {
  .dash-tab {
    font-size: .82rem;
    padding: .5rem .75rem;
  }
}
.dash-tab {
  background: none;
  border: none;
  color: var(--text-color-light);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  padding: .6rem 1rem;
  border-radius: .5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: background .2s, color .2s;
}
.dash-tab:hover  { background: hsl(219,4%,10%); color: var(--title-color); }
.dash-tab.active { background: var(--first-color); color: #fff; }
.tab-badge {
  background: #ff5c5c;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: 1rem;
  min-width: 1.1rem;
  text-align: center;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.dash-new-warranty { padding: .6rem 1.25rem; font-size: var(--small-font-size); }

/* ── WARRANTY CERTIFICATE CARD (dashboard) ────────────────────── */
.warranties-grid {
  display: grid;
  gap: 1.5rem;
}
.warranty-cert {
  background: var(--container-color);
  border: 1px solid hsl(219,4%,12%);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.warranty-cert:hover { transform: translateY(-.2rem); }
.warranty-cert--approved {
  border-color: rgba(2,217,138,.25);
  box-shadow: 0 4px 20px rgba(2,217,138,.08);
}
.warranty-cert--pending  { border-color: rgba(255,165,0,.25); }
.warranty-cert--rejected { border-color: rgba(255,77,77,.2); opacity: .75; }

.cert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: hsl(219,4%,8%);
}
.cert-logo { height: 28px; }
.cert-header__right { text-align: right; }
.cert-number {
  display: block;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  letter-spacing: .06em;
  margin-bottom: .25rem;
}
.cert-status {
  font-size: var(--smaller-font-size);
  padding: .2rem .6rem;
  border-radius: 1rem;
  font-weight: var(--font-medium);
}
.cert-status--approved { background: rgba(2,217,138,.15); color: #02d98a; }
.cert-status--pending  { background: rgba(255,165,0,.15);  color: #ffa500; }
.cert-status--rejected { background: rgba(255,77,77,.15);  color: #ff5c5c; }

.cert-divider { height: 1px; background: hsl(219,4%,12%); }

.cert-body { padding: 1.25rem 1.5rem; }
.cert-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}
.cert-field { display: flex; flex-direction: column; gap: .15rem; }
.cert-field__label {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.cert-field__val { font-size: var(--small-font-size); color: var(--title-color); font-weight: var(--font-medium); }
.cert-vin { font-family: monospace; letter-spacing: .1em; font-size: .78rem; }

.cert-services {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .75rem;
}
.cert-svc {
  background: hsl(219,69%,56%,.15);
  border: 1px solid hsl(219,69%,56%,.25);
  color: var(--first-color);
  padding: .2rem .65rem;
  border-radius: 1rem;
  font-size: var(--smaller-font-size);
}

.cert-validity {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(2,217,138,.06);
  border: 1px solid rgba(2,217,138,.15);
  border-radius: .75rem;
  padding: .75rem 1rem;
  margin-bottom: .75rem;
}
.cert-validity > div { display: flex; flex-direction: column; gap: .15rem; }
.cert-validity__label { font-size: var(--smaller-font-size); color: var(--text-color-light); }
.cert-validity__val   { font-size: var(--small-font-size); color: #02d98a; font-weight: var(--font-semi-bold); }

.cert-note {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.cert-note i { color: var(--first-color); }

.cert-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1.5rem;
  background: hsl(219,4%,7%);
  border-top: 1px solid hsl(219,4%,12%);
}
.cert-footer__date  { font-size: var(--smaller-font-size); color: var(--text-color-light); }
.cert-footer__brand { font-size: var(--smaller-font-size); color: var(--text-color-light); font-style: italic; }

/* ── ADMIN PANEL: tabs + warranty rows ────────────────────────── */
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.admin-stats {
  grid-column: 1 / -1;
  margin-bottom: 1.6rem;
}

.admin-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  width: 90px;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid hsl(219,4%,12%);
  padding-bottom: 0;
  padding-right: 0;
  margin-bottom: 0;
  background: rgba(255,255,255,.02);
  border-radius: 0;
}

.admin-tab-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--text-color-light);
  padding: .7rem 1.2rem;
  border-radius: .5rem;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  white-space: nowrap;
  transition: all .2s;
  font-weight: 500;
}
.admin-tab-btn i {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.admin-tab-btn span {
  display: inline;
}
.admin-tab-btn:hover {
  background: rgba(99,161,255,.12);
  color: var(--title-color);
  border-color: rgba(99,161,255,.3);
  transform: translateY(-2px);
}
.admin-tab-btn.active {
  background: var(--first-color);
  color: #fff;
  border-color: var(--first-color);
  box-shadow: 0 4px 16px rgba(99,161,255,.35);
}

[id$="Panel"] {
  grid-column: 2;
  grid-row: 3;
}

@media (max-width: 768px) {
  .admin-tab-btn { font-size: .82rem; padding: .6rem 1rem; gap: .5rem; }
  .admin-tab-btn i { font-size: 1.2rem; }
}

@media (max-width: 576px) {
  .admin-tab-btn { font-size: .78rem; padding: .5rem .8rem; gap: .4rem; }
  .admin-tab-btn i { font-size: 1.1rem; }
}
.admin-badge {
  background: #ff5c5c;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: 1rem;
  min-width: 1.1rem;
  text-align: center;
}

/* Warranty filter row (filters + export button) */
.w-filters-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.w-export-btn {
  padding: .45rem 1rem !important;
  font-size: .82rem !important;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .35rem;
  background: rgba(34,197,94,.15) !important;
  color: #22c55e !important;
  border: 1px solid rgba(34,197,94,.3) !important;
}
.w-export-btn:hover {
  background: rgba(34,197,94,.25) !important;
}
/* Warranty filter buttons */
.w-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.w-filter {
  background: hsl(219,4%,10%);
  border: 1px solid hsl(219,4%,16%);
  color: var(--text-color);
  padding: .45rem 1rem;
  border-radius: 2rem;
  font-size: var(--small-font-size);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: .2s;
}
.w-filter:hover  { border-color: var(--first-color); color: var(--title-color); }
.w-filter.active { background: var(--first-color); border-color: var(--first-color); color: #fff; }

/* Admin warranty row */
.admin-warranty-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--container-color);
  border: 1px solid hsl(219,4%,12%);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: .75rem;
  transition: border-color .2s;
}
.admin-warranty-row:hover { border-color: var(--first-color); }
.awr-left { display: flex; flex-direction: column; gap: .4rem; min-width: 160px; }
.awr-num  { font-size: var(--small-font-size); font-weight: var(--font-semi-bold); color: var(--title-color); letter-spacing: .05em; }
.awr-status {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 1rem;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  width: fit-content;
}
.awr-status--approved { background: rgba(2,217,138,.15); color: #02d98a; }
.awr-status--pending  { background: rgba(255,165,0,.15);  color: #ffa500; }
.awr-status--rejected { background: rgba(255,77,77,.15);  color: #ff5c5c; }

.awr-mid { display: flex; flex-wrap: wrap; gap: .35rem .75rem; }
.awr-field { font-size: var(--smaller-font-size); color: var(--text-color); display: flex; align-items: center; gap: .25rem; }
.awr-field i { color: var(--first-color); }
.awr-svc { width: 100%; color: var(--text-color-light); }

.awr-right { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.awr-date { font-size: var(--smaller-font-size); color: var(--text-color-light); }
.awr-detail-btn { padding: .45rem 1rem; font-size: var(--smaller-font-size); }

@media screen and (max-width: 767px) {
  .admin-warranty-row { grid-template-columns: 1fr; }
  .awr-right { align-items: flex-start; }
}

/* Admin warranty detail modal sections */
.awd-section { margin-bottom: 1.5rem; }
.awd-section h4 {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.awd-section h4 i { color: var(--first-color); }
.awd-grid { display: grid; gap: .5rem; }
.awd-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  padding: .4rem 0;
  border-bottom: 1px solid hsl(219,4%,10%);
  font-size: var(--small-font-size);
}
.awd-row span { color: var(--text-color-light); flex-shrink: 0; }
.awd-row strong { color: var(--title-color); text-align: right; }
.awd-vin strong, .vin-mono { font-family: monospace; letter-spacing: .1em; font-size: .8rem; }
.awd-notes {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin-top: .75rem;
  display: flex;
  align-items: flex-start;
  gap: .35rem;
}
.awd-admin-note {
  background: rgba(91,143,249,.08);
  border: 1px solid rgba(91,143,249,.2);
  border-radius: .5rem;
  padding: .6rem .85rem;
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  display: flex;
  gap: .4rem;
  margin-top: .5rem;
}

/* Decision section */
.modal-section-title { font-size: var(--h3-font-size); display: flex; align-items: center; gap: .5rem; }
.modal-section-title i { color: var(--first-color); }
.w-decision__divider {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 1.25rem 0 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.w-decision__divider::before,
.w-decision__divider::after { content:''; flex:1; height:1px; background:hsl(219,4%,12%); }
.w-decision__btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.w-approve-btn { background: #02d98a; color: #000; }
.w-approve-btn:hover { background: #01c47b; }
.w-reject-btn  { background: #ff5c5c; }
.w-reject-btn:hover { background: #e54e4e; }
.w-complete-btn { background: #3778e6; color: #fff; }
.w-complete-btn:hover { background: #2d64c4; }
.w-processed {
  background: hsl(219,4%,10%);
  border-radius: .5rem;
  padding: .75rem 1rem;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
}
.w-processed i { color: var(--first-color); }

/* Admin item improvements */
.admin-item__info { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.admin-item__price { color: var(--first-color); font-size: var(--small-font-size); }
.del-btn { background: #ff5c5c; padding: .4rem .9rem; font-size: var(--smaller-font-size); border:none; cursor:pointer; border-radius:.25rem; color:#fff; display:flex; align-items:center; gap:.3rem; }
.del-btn:hover { background: #e54e4e; }

/* Approved status badge in hero preview */
.wcert-preview__status { font-size: .62rem; font-weight: 600; padding: .15rem .5rem; border-radius: 1rem; }
.wcert-preview__status.approved { background: rgba(2,217,138,.15); color: #02d98a; }

/* Toast notification */
.admin-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--container-color);
  border: 1px solid rgba(2,217,138,.3);
  color: var(--title-color);
  padding: .85rem 1.5rem;
  border-radius: .75rem;
  font-size: var(--small-font-size);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  z-index: 9999;
  transform: translateY(3rem);
  opacity: 0;
  transition: transform .3s, opacity .3s;
  pointer-events: none;
}
.admin-toast.show { transform: translateY(0); opacity: 1; }

/* nav-logo size cap */
.nav-logo { max-height: 36px; width: auto; }

/* ══════════════════════════════════════════════════════════════════════════
   DESIGN v2 — Premium Visual Overhaul
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 1. New Design Tokens ─────────────────────────────────────────────────── */
:root {
  --gradient-brand: linear-gradient(135deg, hsl(219,72%,60%) 0%, hsl(219,80%,46%) 100%);
  --glow-brand:     rgba(66,130,244,0.38);
  --glow-green:     rgba(2,217,138,0.32);
  --surface-1:      hsl(219,4%,7%);
  --surface-2:      hsl(219,4%,10%);
  --surface-3:      hsl(219,4%,13%);
  --border-subtle:  hsl(219,4%,13%);
  --radius-card:    1.25rem;
  --ease-out:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── 2. Custom scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar             { width: 5px; height: 5px; }
::-webkit-scrollbar-track       { background: hsl(219,4%,5%); }
::-webkit-scrollbar-thumb       { background: hsl(219,4%,22%); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: hsl(219,69%,45%); }

/* ── 3. Selection highlight ───────────────────────────────────────────────── */
::selection { background: hsl(219,69%,56%,.32); color: #fff; }

/* ── 4. Header glassmorphism when scrolled ────────────────────────────────── */
.scroll-header {
  background: rgba(7,8,10,0.88) !important;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

/* ── 5. Logo size ─────────────────────────────────────────────────────────── */
.tsglogo { height: 36px !important; width: auto !important; }

/* ── 6. Nav link hover underline animation ────────────────────────────────── */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--first-color);
  border-radius: 2px;
  transition: width 0.28s var(--ease-out);
}
.nav__link:hover::after,
.nav__link.active-link::after { width: 100%; }

/* ── 7. Buttons — gradient + shimmer ─────────────────────────────────────── */
.button {
  background: var(--gradient-brand) !important;
  box-shadow: 0 4px 18px var(--glow-brand);
  position: relative;
  overflow: hidden;
  border: none;
  transition: transform 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out),
              filter 0.2s var(--ease-out) !important;
  will-change: transform;
}
.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    transparent 20%, rgba(255,255,255,0.13) 50%, transparent 80%);
  transform: translateX(-120%) skewX(-16deg);
  transition: transform 0.58s var(--ease-out);
  pointer-events: none;
}
.button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 32px var(--glow-brand), 0 2px 8px rgba(0,0,0,0.28) !important;
  filter: brightness(1.1);
}
.button:hover::before { transform: translateX(180%) skewX(-16deg); }
.button:active        { transform: translateY(-1px) !important; }

/* Preserve ghost / inverse buttons */
.button--ghost {
  background: transparent !important;
  border: 1px solid var(--text-color-light) !important;
  color: var(--text-color) !important;
  box-shadow: none !important;
}
.button--ghost:hover {
  background: hsl(219,4%,14%) !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}
/* Preserve approve / reject */
.w-approve-btn {
  background: linear-gradient(135deg,#02d98a,#01b371) !important;
  box-shadow: 0 4px 18px rgba(2,217,138,0.38) !important;
  color: #000 !important;
}
.w-approve-btn:hover { filter: brightness(1.08) !important; }
.w-reject-btn {
  background: linear-gradient(135deg,#ff5c5c,#d93b3b) !important;
  box-shadow: 0 4px 18px rgba(255,92,92,0.35) !important;
}
.w-complete-btn {
  background: linear-gradient(135deg,#3778e6,#2d64c4) !important;
  box-shadow: 0 4px 18px rgba(55,120,230,0.35) !important;
  color: #fff !important;
}
.w-complete-btn:hover { filter: brightness(1.08) !important; }
.del-btn {
  background: linear-gradient(135deg,#ff5c5c,#d93b3b) !important;
  box-shadow: none !important;
}

/* ── 8. Section title — gradient underline ────────────────────────────────── */
.section__title {
  position: relative;
  display: inline-block;
}
.section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--first-color) 0%, transparent 100%);
  margin: 0.55rem auto 0;
  border-radius: 999px;
  transition: width 0.35s var(--ease-out);
}
/* widen underline on section scroll-into-view */
.section__title:hover::after { width: 80px; }

/* ── 9. Shapes — enhanced ambient glow ────────────────────────────────────── */
.shape {
  background: radial-gradient(circle, rgba(55,100,230,0.55) 0%, rgba(30,55,130,0.25) 60%, transparent 100%);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.shape__big    { width: 480px; height: 480px; }
.shape__small  { width: 320px; height: 320px; }
.shape__smaller { width: 200px; height: 200px; filter: blur(60px); }

/* ── 10. Home section — gradient title + car glow ─────────────────────────── */
.home__title {
  background: linear-gradient(135deg, #ffffff 0%, hsl(219,80%,82%) 55%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.01em;
}
.home__elec { letter-spacing: .02em; }

.home__img {
  filter: drop-shadow(0 0 42px rgba(55,120,230,0.38));
  transition: filter 0.5s ease;
}
.home__img:hover { filter: drop-shadow(0 0 60px rgba(55,120,230,0.55)); }

/* Book-visit button — glowing ring pulse */
.home__button {
  background: rgba(7,8,10,0.6) !important;
  border: 2px solid var(--first-color) !important;
  box-shadow: 0 0 22px var(--glow-brand), inset 0 0 16px rgba(55,120,230,0.08) !important;
  animation: btn-pulse 3.2s ease-in-out infinite;
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease-spring), background 0.3s ease !important;
}
.home__button:hover {
  background: rgba(55,120,230,0.16) !important;
  box-shadow: 0 0 40px var(--glow-brand), 0 0 0 8px rgba(55,120,230,0.1) !important;
  transform: scale(1.08) !important;
}
@keyframes btn-pulse {
  0%,100% { box-shadow: 0 0 22px var(--glow-brand), inset 0 0 16px rgba(55,120,230,0.08); }
  50%      { box-shadow: 0 0 38px rgba(55,120,230,0.6), inset 0 0 20px rgba(55,120,230,0.14); }
}

/* ── 11. About section ────────────────────────────────────────────────────── */
.about__card {
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45), 0 0 0 1px rgba(55,120,230,0.15);
}
.about__img {
  border-radius: var(--radius-card);
  box-shadow: 0 12px 44px rgba(0,0,0,0.55);
}
.about__description { line-height: 1.75; }

/* ── 12. Popular / service cards ─────────────────────────────────────────── */
.popular__card {
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.popular__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(55,120,230,0.28);
  border: 1px solid rgba(55,120,230,0.28);
}
.popular__title {
  font-size: 2.8rem;
  transition: transform 0.32s var(--ease-spring), filter 0.32s ease, color 0.25s ease;
}
.popular__card:hover .popular__title {
  transform: scale(1.22) translateY(-4px);
  filter: drop-shadow(0 0 10px var(--glow-brand));
  color: var(--first-color);
}
.popular__subtitle {
  font-weight: var(--font-semi-bold);
  text-align: center;
  transition: color 0.25s ease;
}
.popular__card:hover .popular__subtitle { color: var(--title-color); }

/* ── 13. Featured / parts cards ──────────────────────────────────────────── */
.featured__card {
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
  will-change: transform;
}
.featured__card:hover {
  transform: translateY(-16px) scale(1.025);
  box-shadow: 0 32px 80px rgba(0,0,0,0.68),
              0 0 0 1px rgba(55,120,230,0.22),
              0 0 32px rgba(55,120,230,0.1);
}
.featured__img {
  transition: transform 0.4s var(--ease-out);
}
.featured__card:hover .featured__img { transform: scale(1.07) translateY(-5px); }

/* ── 14. Form inputs — enhanced focus ────────────────────────────────────── */
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
select,
textarea {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease !important;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
select:focus,
textarea:focus {
  border-color: var(--first-color) !important;
  box-shadow: 0 0 0 3px rgba(55,120,230,0.2) !important;
  outline: none !important;
}

/* ── 15. Modal — flexbox centering + modern design ───────────────────────── */

/* Overlay: flex centering so modal-content doesn't need top/transform hacks */
.modal {
  display: none;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
  background: rgba(0,0,0,0.80) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Content card: no top/transform centering — flex parent handles it */
.modal-content {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  margin: 0 !important;
  min-height: unset !important;
  width: 100% !important;
  max-width: 460px !important;
  max-height: 92dvh !important;
  overflow-y: auto !important;
  background: linear-gradient(160deg, hsl(219,18%,13%) 0%, hsl(219,14%,10%) 100%) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 1.5rem !important;
  padding: 2rem 2rem 2.5rem !important;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 0 0 1px rgba(55,120,230,0.10) !important;
  animation: modal-in 0.28s cubic-bezier(0.34,1.2,0.64,1) both;
}

/* Animation only moves/scales — no translateY(-50%) conflict */
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Modern booking form inputs */
.booking-form {
  text-align: left !important;
}
.booking-form label {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 0.35rem !important;
  display: block !important;
}
.booking-form select,
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"] {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  margin-bottom: 1rem !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1.5px solid rgba(255,255,255,0.12) !important;
  border-radius: 0.75rem !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  font-family: inherit !important;
  box-shadow: none !important;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.booking-form select:focus,
.booking-form input[type="text"]:focus,
.booking-form input[type="email"]:focus,
.booking-form input[type="tel"]:focus,
.booking-form input[type="date"]:focus {
  outline: none !important;
  border-color: rgba(55,120,230,0.8) !important;
  background: rgba(255,255,255,0.11) !important;
  box-shadow: 0 0 0 3px rgba(55,120,230,0.18) !important;
}
.booking-form select option {
  background: hsl(219,18%,13%);
  color: #fff;
}

/* Date input calendar icon color fix */
.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}

/* Modal title */
.modal-title {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 1.5rem !important;
  text-align: center !important;
  letter-spacing: 0.01em;
}

/* Close button */
.modal-close {
  color: rgba(255,255,255,0.45) !important;
  transition: color 0.2s;
}
.modal-close:hover { color: #fff !important; }

/* Submit button full width */
.booking-form button[type="submit"],
.booking-form .confirm-button {
  width: 100% !important;
  margin-top: 0.5rem !important;
}

/* Logo inside modal */
.modal-content .tsglogo {
  width: 120px !important;
  margin: 0 auto 1.75rem !important;
}

/* Booking summary card in step 2 */
.booking-summary-card {
  background: rgba(55,120,230,0.09) !important;
  border: 1px solid rgba(55,120,230,0.22) !important;
  border-radius: 1rem !important;
  padding: 1rem 1.25rem !important;
  margin-bottom: 1.5rem !important;
}
.bsc-row {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.88rem !important;
  padding: 0.25rem 0 !important;
}
.bsc-row strong { color: #fff !important; }
.bsc-row i { color: rgba(55,120,230,0.8); }

/* Slot hint text */
.slot-hint {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.78rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* Slot loading */
#slotLoading {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
#slotLoading.hidden { display: none !important; }

/* ── 16. Warranty hero — stronger visuals ─────────────────────────────────── */
.warranty-hero {
  position: relative;
  overflow: hidden;
}
.warranty-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(2,217,138,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(55,120,230,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.warranty-hero__title {
  background: linear-gradient(135deg, #ffffff 0%, hsl(160,80%,72%) 55%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.warranty-hero__badge {
  background: rgba(2,217,138,0.1) !important;
  border: 1px solid rgba(2,217,138,0.28) !important;
  box-shadow: 0 0 18px rgba(2,217,138,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.wcert-preview {
  border: 1px solid hsl(219,4%,16%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(2,217,138,0.1);
  transition: transform 0.42s var(--ease-spring), box-shadow 0.42s ease;
}
.wcert-preview:hover {
  transform: translateY(-10px) rotate(-1.5deg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.75), 0 0 0 1px rgba(2,217,138,0.22);
}

/* ── 17. Warranty form blocks ─────────────────────────────────────────────── */
.wf-block {
  border: 1px solid hsl(219,4%,14%);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}
.wf-block:focus-within {
  border-color: rgba(55,120,230,0.35);
  box-shadow: 0 0 0 1px rgba(55,120,230,0.12), 0 8px 24px rgba(0,0,0,0.3);
}
.wf-block__num {
  background: var(--gradient-brand) !important;
  box-shadow: 0 4px 14px var(--glow-brand);
}

/* ── 18. Service chips ────────────────────────────────────────────────────── */
.svc-chip span {
  transition: background 0.22s ease, border-color 0.22s ease,
              color 0.22s ease, transform 0.22s var(--ease-spring),
              box-shadow 0.22s ease;
}
.svc-chip:hover span {
  border-color: var(--first-color);
  color: var(--title-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(55,120,230,0.2);
}
.svc-chip input:checked + span {
  background: var(--gradient-brand) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px var(--glow-brand) !important;
  color: #fff !important;
}

/* ── 19. Dashboard booking cards ─────────────────────────────────────────── */
.booking-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              border-color 0.25s ease;
}
.booking-card:hover {
  transform: translateY(-5px);
  border-color: rgba(55,120,230,0.32);
  box-shadow: 0 14px 36px rgba(0,0,0,0.42);
}
.booking-card__icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-brand);
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--glow-brand);
}

/* ── 20. Dashboard welcome text ───────────────────────────────────────────── */
.dash-welcome {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  background: linear-gradient(135deg, #ffffff 0%, hsl(219,69%,80%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .25rem;
}
.dash-email { font-size: var(--small-font-size); color: var(--text-color-light); }

/* ── 21. Dashboard tabs ───────────────────────────────────────────────────── */
.dash-tab.active {
  background: var(--gradient-brand) !important;
  box-shadow: 0 4px 14px var(--glow-brand);
}

/* ── 22. Dashboard empty states ───────────────────────────────────────────── */
.dash-empty {
  background: hsl(219,4%,7%);
  border: 1px dashed hsl(219,4%,14%);
  border-radius: var(--radius-card);
  padding: 3.5rem 2rem;
  text-align: center;
}
.dash-empty i { font-size: 2.5rem; color: var(--text-color-light); opacity: .5; margin-bottom: .75rem; display: block; }

/* ── 23. Dashboard loading ────────────────────────────────────────────────── */
.dash-loading {
  display: flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
  padding: 3rem;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}
.dash-loading i { font-size: 1.4rem; }

/* ── 24. Auth page — glass card ───────────────────────────────────────────── */
.auth-page {
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,120,230,0.09) 0%, transparent 65%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.auth-container {
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,0.55) !important;
  transition: box-shadow 0.4s ease;
}
.auth-tab.active {
  background: var(--gradient-brand) !important;
  box-shadow: 0 4px 16px var(--glow-brand) !important;
}
.auth-title {
  background: linear-gradient(135deg, #fff 0%, hsl(219,69%,82%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.auth-logo { height: 44px; width: auto; }
.auth-switch a {
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.2s ease;
}
.auth-switch a:hover { color: hsl(219,69%,72%); }

/* ── 25. Admin login form ─────────────────────────────────────────────────── */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(55,120,230,0.1) 0%, transparent 65%),
    var(--body-color);
}
.login-form {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  width: min(460px, 94vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: modal-in 0.4s var(--ease-out) both;
}
.login-form h2 {
  background: linear-gradient(135deg, #fff 0%, hsl(219,69%,82%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: var(--h2-font-size);
  margin-bottom: .25rem;
}
.login-form .tsglogo {
  display: block;
  margin: 0 auto .5rem;
  height: 44px !important;
}
.login-form input {
  background: hsl(219,4%,9%);
  border: 1px solid hsl(219,4%,15%);
  color: var(--title-color);
  border-radius: .75rem;
  padding: .85rem 1rem;
  width: 100%;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

/* ── 26. Admin panel ──────────────────────────────────────────────────────── */
.admin-container {
  padding-top: 6rem;
}
.admin-tab-btn.active {
  background: var(--gradient-brand) !important;
  box-shadow: 0 4px 14px var(--glow-brand) !important;
}
.admin-form {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.admin-form h3 { font-size: var(--h3-font-size); margin-bottom: 1rem; }
.admin-form input,
.admin-form select {
  background: hsl(219,4%,9%);
  border: 1px solid hsl(219,4%,15%);
  color: var(--title-color);
  border-radius: .75rem;
  padding: .8rem 1rem;
  width: 100%;
  margin-bottom: .75rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}
.admin-item {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.admin-item:hover {
  border-color: rgba(55,120,230,0.28);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* ── 27. Admin warranty row hover ─────────────────────────────────────────── */
.admin-warranty-row {
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.admin-warranty-row:hover {
  border-color: rgba(55,120,230,0.28);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── 28. Warranty certificate cards ──────────────────────────────────────── */
.warranty-cert {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.warranty-cert:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.52);
}
.warranty-cert--approved:hover {
  box-shadow: 0 22px 55px rgba(0,0,0,0.52), 0 0 0 1px rgba(2,217,138,0.2);
}
.cert-header { background: hsl(219,4%,9%); }

/* ── 29. Success card entrance animation ─────────────────────────────────── */
.wsuccess-card {
  background: linear-gradient(160deg, hsl(219,4%,8%) 0%, hsl(160,18%,6%) 100%) !important;
  border: 1px solid rgba(2,217,138,0.2) !important;
  box-shadow: 0 0 50px rgba(2,217,138,0.07), 0 28px 70px rgba(0,0,0,0.45) !important;
  animation: modal-in 0.42s var(--ease-out) both;
}
.wsuccess-card__icon {
  animation: success-bounce 0.6s var(--ease-spring) 0.2s both;
}
@keyframes success-bounce {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── 30. Footer ───────────────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, var(--body-color) 0%, hsl(219,5%,3%) 100%);
  border-top: 1px solid hsl(219,4%,9%);
}
.footer__link {
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.footer__link:hover {
  color: var(--first-color);
  transform: translateX(3px);
}

/* ── 31. Auth link in header ──────────────────────────────────────────────── */
.header-auth-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  background: hsl(219,4%,11%);
  border: 1px solid hsl(219,4%,17%);
  padding: .4rem .9rem;
  border-radius: 999px;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}
.header-auth-link:hover {
  background: hsl(219,4%,15%);
  border-color: var(--first-color);
  color: var(--title-color);
  box-shadow: 0 4px 14px var(--glow-brand);
}

/* ── 32. WhatsApp button ──────────────────────────────────────────────────── */
.whatsapp-btn {
  box-shadow: 0 8px 28px rgba(37,211,102,0.38) !important;
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease !important;
}
.whatsapp-btn:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 14px 38px rgba(37,211,102,0.55) !important;
}

/* ── 33. Toast ────────────────────────────────────────────────────────────── */
.admin-toast {
  background: hsl(219,4%,9%);
  border: 1px solid rgba(2,217,138,0.28);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(2,217,138,0.08);
}

/* ── 34. W-filter buttons ─────────────────────────────────────────────────── */
.w-filter.active {
  background: var(--gradient-brand) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px var(--glow-brand);
}

/* ── 35. Warranty hero pills ──────────────────────────────────────────────── */
.w-pill {
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.w-pill:hover {
  border-color: rgba(2,217,138,0.4);
  color: var(--title-color);
  transform: translateY(-1px);
}

/* ── 36. Dash logout button in nav ───────────────────────────────────────── */
.dash-logout {
  padding: .45rem 1rem !important;
  font-size: var(--small-font-size) !important;
}

/* ── 37. Mobile fine-tuning ────────────────────────────────────────────────  */
@media screen and (max-width: 767px) {
  .auth-container { border-radius: 1.25rem; padding: 2rem 1.5rem; }
  .login-form { padding: 2rem 1.5rem; border-radius: 1.25rem; }
  .dash-welcome { font-size: 1.4rem; }
  .wsuccess-card { padding: 2.5rem 1.5rem; border-radius: 1.25rem; }
  .wf-block { padding: 1.5rem 1.25rem; }
}

@media screen and (min-width: 1024px) {
  .auth-container { padding: 3.5rem 3rem; }
}

/* ── 38. Home section — subtle dot-grid overlay ────────────────────────────── */
.home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.home .home__container { position: relative; z-index: 1; }
.home .shape { position: absolute; z-index: 0; }

/* ── 39. home__elec subtitle shimmer ────────────────────────────────────────── */
.home__elec {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}
.home__elec i {
  color: var(--first-color);
  filter: drop-shadow(0 0 6px var(--glow-brand));
}

/* ── 40. Popular section — container grid on desktop ──────────────────────── */
@media screen and (min-width: 968px) {
  .popular__title { font-size: 3rem; }
}

/* ── 41. Featured card title style ────────────────────────────────────────── */
.featured__title {
  background: linear-gradient(135deg, #fff 0%, hsl(219,50%,80%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: .04em;
}

/* ── 42. Booking form steps — better inputs ────────────────────────────────── */
.booking-form label,
.personal-info-form label {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin-bottom: .35rem;
  display: block;
  font-weight: var(--font-medium);
  letter-spacing: .03em;
}
.booking-form select,
.personal-info-form input,
.personal-info-form select {
  background: hsl(219,4%,9%);
  border: 1px solid hsl(219,4%,15%);
  color: var(--title-color);
  border-radius: .75rem;
  padding: .8rem 1rem;
  width: 100%;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  margin-bottom: .75rem;
}

/* ── 43. Map container in booking modal ───────────────────────────────────── */
.map-container {
  border-radius: .875rem;
  overflow: hidden;
  border: 1px solid hsl(219,4%,14%);
  margin-top: .5rem;
}
.map-container p {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  padding: .4rem 0 .5rem;
}
.map-container iframe { display: block; border-radius: 0 0 .875rem .875rem; }

.map-review-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin: .6rem auto 0;
  padding: .5rem 1rem;
  width: fit-content;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: #ffc107;
  border: 1px solid rgba(255,193,7,.35);
  border-radius: 2rem;
  text-decoration: none;
  transition: background .3s;
}
.map-review-btn:hover { background: rgba(255,193,7,.1); }

/* ── 44. Scroll-reveal fade-up helper ─────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 45. Parts page — enhanced item cards ─────────────────────────────────── */
.parts__item {
  background: var(--surface-1) !important;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              border-color 0.3s ease !important;
}
.parts__item:hover {
  transform: translateY(-12px) scale(1.02) !important;
  border-color: rgba(55,120,230,0.28);
  box-shadow: 0 28px 70px rgba(0,0,0,0.6),
              0 0 0 1px rgba(55,120,230,0.18),
              0 0 30px rgba(55,120,230,0.08) !important;
}
.parts__item img {
  transition: transform 0.4s var(--ease-out);
}
.parts__item:hover img { transform: scale(1.08) translateY(-4px) !important; }

/* ── 46. Parts order form — glass card ────────────────────────────────────── */
.order-form {
  background: rgba(7,8,10,0.92) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 28px 80px rgba(0,0,0,0.6) !important;
  border-radius: 1.5rem !important;
  padding: 2.5rem 2rem !important;
}
.order-form h3 {
  background: linear-gradient(135deg, #fff 0%, hsl(219,69%,82%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 1.5rem;
}
.order-form input {
  background: hsl(219,4%,9%);
  border: 1px solid hsl(219,4%,15%);
  color: var(--title-color);
  border-radius: .75rem;
  padding: .8rem 1rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.order-form input:focus {
  border-color: var(--first-color) !important;
  box-shadow: 0 0 0 3px rgba(55,120,230,0.2) !important;
}

/* ── 47. Wf-grid layout ───────────────────────────────────────────────────── */
.wf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

/* ── 48. wf-field inputs ─────────────────────────────────────────────────── */
.wf-field input,
.wf-field select,
.wf-field textarea {
  background: hsl(219,4%,9%);
  border: 1px solid hsl(219,4%,15%);
  color: var(--title-color);
  border-radius: .75rem;
  padding: .8rem 1rem;
  width: 100%;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}
.wf-field label {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin-bottom: .35rem;
  display: block;
  font-weight: var(--font-medium);
  letter-spacing: .03em;
}
.wf-field label .req { color: var(--first-color); }

/* ── 49. wf-submit button ─────────────────────────────────────────────────── */
.wf-submit-btn {
  font-size: var(--normal-font-size) !important;
  padding: 1rem 2.25rem !important;
  border-radius: .5rem !important;
  font-weight: var(--font-semi-bold) !important;
  letter-spacing: .03em;
}

/* ── 50. Admin container header ──────────────────────────────────────────── */
.admin-topbar {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

/* ── 51. Section headings on inner pages ─────────────────────────────────── */
.dashboard .section__title,
.warranty-form-wrap .section__title,
.parts__container .section__title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  text-align: left;
}
.dashboard .section__title::after,
.warranty-form-wrap .section__title::after,
.parts__container .section__title::after {
  margin-left: 0;
}

/* ── 52. Reservation CTA section ─────────────────────────────────────────── */
.reservation {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(66,130,244,0.14) 0%, transparent 70%);
}
.reservation::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; z-index: 0;
}
.reservation__container {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reservation__badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(66,130,244,0.1);
  border: 1px solid rgba(66,130,244,0.28);
  color: var(--first-color);
  border-radius: 2rem;
  padding: .4rem 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.reservation__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 0%, hsl(219,72%,70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.reservation__desc {
  color: var(--text-color-light);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.reservation__btn {
  font-size: 1.1rem !important;
  padding: .9rem 2.5rem !important;
  border-radius: 3rem !important;
  box-shadow: 0 8px 32px var(--glow-brand) !important;
  letter-spacing: .02em;
}
.reservation__features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.res-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: var(--text-color-light);
  font-size: .85rem;
}
.res-feat i {
  font-size: 1.4rem;
  color: var(--first-color);
  background: rgba(66,130,244,0.1);
  border: 1px solid rgba(66,130,244,0.2);
  border-radius: 50%;
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.res-feat:hover i {
  background: rgba(66,130,244,0.18);
  box-shadow: 0 0 16px var(--glow-brand);
}

/* ── 53. Admin booking row ────────────────────────────────────────────────── */
.admin-booking-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  transition: border-color 0.2s;
}
.admin-booking-row:hover { border-color: rgba(66,130,244,0.3); }
.abr-left { display: flex; flex-direction: column; gap: .3rem; }
.abr-date {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  color: var(--text-color-light);
  background: var(--surface-3);
  border-radius: .4rem;
  padding: .3rem .6rem;
}
.abr-mid, .abr-right { display: flex; flex-direction: column; gap: .35rem; }

/* ── 53b. Mobile Service CTA Section ─────────────────────────────────────── */
.mobile-svc-cta {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(99,161,255,.06) 0%, rgba(34,197,94,.04) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-svc-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.mobile-svc-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(99,161,255,.15);
  color: #63a1ff;
  border: 1px solid rgba(99,161,255,.25);
  border-radius: 2rem;
  padding: .3rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.mobile-svc-cta__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: .6rem;
  color: var(--title-color);
}
.mobile-svc-cta__desc {
  color: var(--text-color-light);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.mobile-svc-cta__btn {
  padding: .75rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 2rem !important;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* ── Mobile Service Modal Form ────────────────────────────────────────────── */
.msv-field { margin-bottom: 1rem; }
.msv-label { display: block; font-size: .85rem; font-weight: 600; color: var(--title-color); margin-bottom: .4rem; }
.msv-service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .6rem;
}
.msv-svc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .8rem .5rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  color: var(--text-color-light);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  font-size: .75rem;
  text-align: center;
  line-height: 1.3;
}
.msv-svc-btn i { font-size: 1.5rem; }
.msv-svc-btn.active {
  border-color: var(--first-color);
  background: rgba(99,161,255,.1);
  color: var(--first-color);
}
.msv-loc-btn {
  width: 100%;
  justify-content: center;
  gap: .5rem;
  padding: .6rem 1rem !important;
}
.msv-loc-status {
  margin-top: .5rem;
  font-size: .82rem;
  padding: .4rem .7rem;
  border-radius: .5rem;
}
.msv-loc-ok  { background: rgba(34,197,94,.1);  color: #22c55e; }
.msv-loc-err { background: rgba(239,68,68,.1);  color: #ef4444; }
.msv-photos-row { display: flex; gap: .6rem; }
.msv-photo-slot {
  width: 80px;
  height: 70px;
  background: rgba(255,255,255,.05);
  border: 1.5px dashed rgba(255,255,255,.15);
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-color-light);
  font-size: 1.4rem;
  transition: border-color .2s;
  flex-shrink: 0;
  overflow: hidden;
}
.msv-photo-slot:hover { border-color: var(--first-color); }
.msv-err { color: #ef4444; font-size: .85rem; margin-top: .3rem; }

/* Admin mobile service row */
.msv-row .msv-status-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 1rem;
}
.msv-pending   { background: rgba(251,191,36,.15); color: #fbbf24; }
.msv-confirmed { background: rgba(34,197,94,.15);  color: #22c55e; }
.msv-completed { background: rgba(99,161,255,.15); color: #63a1ff; }
.msv-rejected  { background: rgba(239,68,68,.15);  color: #ef4444; }

@media (max-width:600px) {
  .msv-service-grid { grid-template-columns: 1fr; }
  .mobile-svc-cta { padding: 2rem 0; }
}

/* ── 54. Admin management styles ─────────────────────────────────────────── */
.adm-super-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-brand);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .15rem .55rem;
  border-radius: 1rem;
  margin-left: .5rem;
  vertical-align: middle;
}
.adm-tg-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .68rem;
  font-weight: 600;
  padding: .15rem .5rem;
  border-radius: 1rem;
  vertical-align: middle;
}
.adm-tg-on  { background: rgba(41,182,246,.18); color: #29b6f6; }
.adm-tg-off { background: rgba(150,150,150,.12); color: var(--text-color-light); }
.admin-item__actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.button--sm { padding: .35rem .75rem !important; font-size: .78rem !important; }
#newAdminTgId { margin-top: .4rem; }

/* Mobile adjustments */
@media (max-width: 600px) {
  .admin-booking-row { grid-template-columns: 1fr; }
  .reservation__features { gap: 1.5rem; }
  .reservation__btn { width: 90% !important; text-align: center; }
}

/* ── 55. Swiper active card highlight + reserve card ─────────────────────── */
.popular__card.swiper-slide-active {
  border-color: var(--first-color) !important;
  box-shadow: 0 6px 28px var(--glow-brand) !important;
  transform: translateY(-4px) scale(1.04) !important;
}
/* ── 56. About section feature list ──────────────────────────────────────── */
.about__title-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--first-color) 0%, hsl(219,60%,78%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1.5rem 0 2rem;
}
.about__feature-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: .9rem;
  padding: .8rem 1rem;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.about__feature-item:hover {
  border-color: rgba(66,130,244,0.32);
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transform: translateX(4px);
}
.about__feature-item > i {
  font-size: 1.25rem;
  color: var(--first-color);
  flex-shrink: 0;
  background: rgba(66,130,244,0.1);
  border: 1px solid rgba(66,130,244,0.2);
  border-radius: .5rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .05rem;
}
.about__feature-title {
  display: block;
  font-weight: 700;
  font-size: .875rem;
  color: var(--title-color);
  line-height: 1.3;
  margin-bottom: .18rem;
}
.about__feature-sub {
  display: block;
  font-size: .75rem;
  color: var(--text-color-light);
  line-height: 1.45;
}

/* ── 57. Swiper active card + reserve card ───────────────────────────────── */
.popular__card--reserve {
  cursor: pointer;
}
.popular__book-hint {
  font-size: .7rem;
  font-weight: 700;
  color: var(--first-color);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .5rem;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.popular__card--reserve.swiper-slide-active .popular__book-hint,
.popular__card--reserve:hover .popular__book-hint {
  opacity: 1;
}

/* ── 58. Booking slot selector ───────────────────────────────────────────── */
.slot-hint {
  color: var(--text-color-light);
  font-size: .75rem;
  font-weight: 400;
}
.slot-status {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-color-light);
  margin: -.2rem 0 .2rem;
}
#appointmentDate, #appointmentTime {
  background: var(--surface-2);
  border: 1.5px solid var(--border-subtle);
  border-radius: .75rem;
  color: var(--text-color);
  padding: .65rem .9rem;
  font-family: inherit;
  font-size: .9rem;
  width: 100%;
  outline: none;
  transition: border-color .2s;
}
#appointmentDate:focus, #appointmentTime:focus {
  border-color: var(--first-color);
}
#appointmentTime:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* ── 59. Booking summary card (Step 2) ───────────────────────────────────── */
.booking-summary-card {
  background: var(--surface-2);
  border: 1.5px solid rgba(66,130,244,0.22);
  border-radius: .9rem;
  padding: .75rem 1rem;
  margin-bottom: .6rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.booking-summary-card .bsc-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .86rem;
  color: var(--text-color);
}
.booking-summary-card .bsc-row i {
  color: var(--first-color);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── 60. Admin booking row — status + actions ────────────────────────────── */
.abr-status {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 1rem;
  margin-bottom: .25rem;
  width: fit-content;
}
.abr-status--pending   { background: rgba(234,179,8,.15);  color: #ca8a04; border: 1px solid rgba(234,179,8,.3);   }
.abr-status--confirmed { background: rgba(34,197,94,.15);  color: #16a34a; border: 1px solid rgba(34,197,94,.3);   }
.abr-status--cancelled { background: rgba(239,68,68,.15);  color: #dc2626; border: 1px solid rgba(239,68,68,.3);   }
.abr-status--completed { background: rgba(55,120,230,.15); color: #3778e6; border: 1px solid rgba(55,120,230,.3);  }

.abr-appt {
  font-size: .85rem;
  color: var(--title-color);
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}
.abr-appt i { color: var(--first-color); }
.abr-created {
  font-size: .72rem;
  color: var(--text-color-light);
}
.abr-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}
.abr-actions .button {
  padding: .35rem .85rem;
  font-size: .78rem;
  border-radius: .65rem;
}

/* ── 61. Notification emails panel ──────────────────────────────────────── */
#adminNotifEmailsPanel .admin-form {
  max-width: 560px;
}
#adminNotifEmailsPanel .admin-form input[type="email"] {
  width: 100%;
  margin-bottom: .75rem;
}


/* ══════════════════════════════════════════════════════════════════════════
   VISUAL & RESPONSIVE OVERHAUL — Language Switcher + Global Improvements
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Language Dropdown (full redesign) ──────────────────────────────────── */
.language-dropdown {
  position: relative;
}

#currentLang {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
  padding: 5px 8px !important;
  cursor: pointer !important;
  transition: background 0.2s, border-color 0.2s !important;
}
#currentLang:hover {
  background: rgba(255,255,255,0.11) !important;
  border-color: rgba(55,120,230,0.5) !important;
}
#currentLang .lang-code {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: rgba(255,255,255,0.9) !important;
  line-height: 1 !important;
}
.lang-arrow {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  transition: transform 0.2s;
  line-height: 1;
}
#langDropdown.lang-open ~ * .lang-arrow,
#currentLang .lang-arrow { /* always show */
}

/* Dropdown panel */
#langDropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(18,22,32,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 10px !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55) !important;
  z-index: var(--z-fixed) !important;
  min-width: 52px;
  overflow: hidden;
  padding: 4px !important;
}
#langDropdown.lang-open {
  display: block !important;  /* !important beats .dropdown-content.lang-open flex override */
  animation: dropdown-in 0.18s cubic-bezier(0.34,1.2,0.64,1) both;
}
@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Dropdown language buttons — buttons only, NOT the container */
#langDropdown button,
#langDropdown .language-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 7px 10px !important;
  border-radius: 6px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
  width: 100% !important;
}
#langDropdown .language-btn:hover {
  background: rgba(255,255,255,0.08) !important;
  transform: none !important;
  opacity: 1 !important;
}
#langDropdown .language-btn.active {
  background: rgba(55,120,230,0.15) !important;
  border: 1px solid rgba(55,120,230,0.3) !important;
}
#langDropdown .language-btn .lang-code {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: rgba(255,255,255,0.9) !important;
}

/* ── Header auth link — pill style ─────────────────────────────────────── */
.header-auth-link {
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  background: rgba(55,120,230,0.12) !important;
  border: 1px solid rgba(55,120,230,0.25) !important;
  color: rgba(255,255,255,0.85) !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}
.header-auth-link:hover {
  background: rgba(55,120,230,0.25) !important;
  border-color: rgba(55,120,230,0.6) !important;
  color: #fff !important;
}
.header-auth-link i {
  font-size: 0.9rem !important;
  color: inherit !important;
}

/* ── Popular cards — modern hover + icon sizing ──────────────────────────── */
.popular__card {
  transition: transform 0.25s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.25s ease !important;
}
.popular__card:hover {
  transform: translateY(-4px) scale(1.025) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(55,120,230,0.18) !important;
}
.popular__card--reserve:hover {
  box-shadow: 0 12px 40px rgba(55,120,230,0.25), 0 0 0 1px rgba(55,120,230,0.35) !important;
}
.popular__title i {
  font-size: 2.2rem;
  color: var(--first-color);
  opacity: 0.9;
}

/* ── About section — feature items spacing ──────────────────────────────── */
.about__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about__feature-item:last-child { border-bottom: none; }
.about__feature-item > i {
  font-size: 1.4rem;
  color: var(--first-color);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.about__feature-title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--title-color);
  margin-bottom: 0.15rem;
}
.about__feature-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ── Section titles — consistent accent underline ─────────────────────── */
.section__title {
  position: relative;
  display: inline-block;
}
.section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--gradient-brand, linear-gradient(90deg, hsl(219,69%,61%), hsl(219,69%,45%)));
  margin: 0.4rem auto 0;
}

/* ── Phone number — responsive ─────────────────────────────────── */
@media screen and (max-width: 900px) {
  .phone-number {
    display: flex !important;
  }
  .phone-number #headerPhoneText {
    display: none;
  }
}

/* ── Responsive: nav overflow fix (tablet / narrow desktop, 767–1039px) ──
   .nav__list switches to a row at 767px but keeps a fixed 3rem gap and
   full-size links, so at these widths it collides with the logo + top-bar
   (lang dropdown/phone/auth) all sharing one space-between row. */
@media screen and (min-width: 767px) and (max-width: 1039px) {
  .nav {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
  .nav__list {
    column-gap: 1.25rem;
  }
  .nav__link {
    font-size: 0.85rem;
  }
  .top-bar {
    gap: 8px;
  }
  .header-auth-link {
    padding: 4px 9px;
    font-size: 0.75rem;
  }
}

/* ── Responsive: nav + topbar on mobile ─────────────────────────────── */
@media screen and (max-width: 767px) {
  .top-bar { gap: 8px !important; }

  .header-auth-link {
    padding: 4px 9px !important;
    font-size: 0.75rem !important;
  }

  /* Home hero */
  .home__container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .home__img {
    width: 240px !important;
    margin: 0 auto;
    order: -1;
  }
  .home__button {
    margin: 0 auto;
  }
  .home__title {
    font-size: clamp(1.4rem, 6vw, 2rem) !important;
  }
  .home__elec {
    font-size: clamp(0.8rem, 3vw, 1rem) !important;
  }

  /* About section */
  .about__container {
    grid-template-columns: 1fr !important;
  }
  .about__group { margin-bottom: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOME — Products horizontal scroller (redesigned)
   ═══════════════════════════════════════════════════════════════════════════ */
.home-shop {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(99,161,255,.03) 50%, transparent 100%);
}
.home-news {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(229,57,53,.03) 50%, transparent 100%);
}
.home-shop__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.home-shop__all {
  white-space: nowrap;
  padding: .45rem 1.2rem;
  font-size: .84rem;
}
.home-shop__scroll-wrap {
  overflow-x: auto;
  padding-bottom: .8rem;
  scrollbar-width: thin;
  scrollbar-color: var(--first-color) transparent;
}
.home-shop__scroll-wrap::-webkit-scrollbar { height: 4px; }
.home-shop__scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.home-shop__scroll-wrap::-webkit-scrollbar-thumb { background: var(--first-color); border-radius: 4px; }
.home-shop__scroll {
  display: flex;
  gap: 1.1rem;
  /* align the row's start/end with .container's own centered margin (max-width:1024px)
     instead of a flat 1.5rem — otherwise on wide screens the row starts far left
     of the section title above it, which lives inside .container */
  padding-top: .4rem;
  padding-bottom: .4rem;
  padding-left: max(1.5rem, calc((100vw - 1024px) / 2));
  padding-right: max(1.5rem, calc((100vw - 1024px) / 2));
  min-width: max-content;
}
.home-shop__scroll .news-card {
  width: 220px;
  flex-shrink: 0;
}
.home-shop__scroll .news-card-img {
  height: 165px;
}
.home-shop__loading {
  padding: 2rem;
  color: var(--text-color-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ── Home shop card ─────────────────────────────────────────────────────── */
.home-shop-card {
  background: linear-gradient(160deg, hsl(219,18%,11%) 0%, hsl(219,14%,8%) 100%);
  border-radius: 16px;
  overflow: hidden;
  width: 220px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: transform .25s cubic-bezier(.34,1.2,.64,1), box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.home-shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(99,161,255,.15);
}

/* Image area */
.hsc-img-link {
  display: block;
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.03);
}
.hsc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.home-shop-card:hover .hsc-img { transform: scale(1.05); }
.hsc-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsc-no-img i { font-size: 3rem; color: rgba(255,255,255,0.1); }

/* Category badge on image */
.hsc-cat {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .22rem .6rem;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hsc-cat--charger   { background: rgba(99,231,209,.2);  color: #63e7d1; }
.hsc-cat--accessory { background: rgba(54,162,235,.2);  color: #36a2eb; }
.hsc-cat--model3    { background: rgba(255,99,132,.2);  color: #ff6384; }
.hsc-cat--modely    { background: rgba(153,102,255,.2); color: #9966ff; }
.hsc-cat--modelx    { background: rgba(255,159,64,.2);  color: #ff9f40; }
.hsc-cat--models    { background: rgba(75,192,192,.2);  color: #4bc0c0; }

/* Card body */
.hsc-body {
  padding: .85rem .9rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.hsc-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--title-color);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  transition: color .2s;
}
.hsc-name:hover { color: var(--first-color); }
.hsc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  margin-top: auto;
}
.hsc-price {
  font-size: .98rem;
  font-weight: 700;
  color: var(--first-color);
  white-space: nowrap;
}
.hsc-gel { font-size: .8rem; }
.hsc-order-btn {
  padding: .35rem .8rem;
  font-size: .75rem;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.shop-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.shop-search-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--container-color);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: .45rem .85rem;
  flex: 1;
  min-width: 180px;
}
.shop-search-wrap i { color: var(--text-color-light); font-size: 1rem; }
.shop-search {
  background: transparent;
  border: none;
  outline: none;
  color: var(--title-color);
  font-family: inherit;
  font-size: .9rem;
  width: 100%;
}
.shop-search::placeholder { color: var(--text-color-light); }
.shop-cats {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.shop-cats::-webkit-scrollbar { display: none; }
.shop-cat {
  background: var(--container-color);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-color);
  border-radius: 8px;
  padding: .4rem .9rem;
  font-family: inherit;
  font-size: .84rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.shop-cat:hover,
.shop-cat.active {
  background: var(--first-color);
  border-color: var(--first-color);
  color: #fff;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
  padding-bottom: 3rem;
}
.shop-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-color-light);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.shop-state i { font-size: 2rem; }
.shop-state.hidden { display: none; }
/* Product card */
.shop-card {
  background: var(--container-color);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.4); }
/* Image gallery */
.sc-gallery {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
}
.sc-gallery--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-gallery--empty i { font-size: 3rem; color: rgba(255,255,255,0.1); }
.sc-img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-img-slide.active { opacity: 1; }
.sc-img-slide img { width: 100%; height: 100%; object-fit: cover; }
.sc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
  opacity: 0;
  transition: opacity .2s;
}
.sc-gallery:hover .sc-arrow { opacity: 1; }
/* Touch devices never trigger :hover, so the arrows would otherwise stay
   invisible forever there — show them permanently on touch (dots still work
   either way, but arrows are the more discoverable control). */
@media (hover: none) {
  .sc-arrow { opacity: 1; }
}
.sc-prev { left: 6px; }
.sc-next { right: 6px; }
.sc-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}
.sc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .2s;
}
.sc-dot.active { background: var(--first-color); }
/* Card body */
.sc-body {
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sc-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  padding: .22rem .6rem;
  border-radius: 20px;
  margin-bottom: .55rem;
  font-weight: 600;
  letter-spacing: .02em;
  width: fit-content;
}
.sc-badge--charger   { background: rgba(99,231,209,.15);  color: #63e7d1; }
.sc-badge--accessory { background: rgba(54,162,235,.15);  color: #36a2eb; }
.sc-badge--model3    { background: rgba(255,99,132,.15);  color: #ff6384; }
.sc-badge--modely    { background: rgba(153,102,255,.15); color: #9966ff; }
.sc-badge--modelx    { background: rgba(255,159,64,.15);  color: #ff9f40; }
.sc-badge--models    { background: rgba(75,192,192,.15);  color: #4bc0c0; }
.sc-name {
  font-size: .94rem;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: .4rem;
  line-height: 1.35;
}
.sc-desc {
  font-size: .8rem;
  color: var(--text-color-light);
  line-height: 1.4;
  margin-bottom: .6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: 1;
}
.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .6rem;
}
.sc-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--first-color);
}
.sc-currency { font-size: .85rem; font-weight: 600; }
.sc-order-btn {
  padding: .38rem .9rem;
  font-size: .8rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ORDER MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.order-modal-content {
  max-width: 480px;
  min-height: unset;
  overflow-y: auto;
  max-height: 90vh;
}
.order-prod-preview {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.order-prod-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.order-prod-info {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.order-prod-info strong {
  font-size: .9rem;
  color: var(--title-color);
}
.order-prod-price {
  color: var(--first-color);
  font-size: .95rem;
  font-weight: 700;
}
.order-modal-title {
  font-size: 1.05rem;
  color: var(--title-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.shop-order-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.order-field {
  margin-bottom: .9rem;
}
.order-field label {
  display: block;
  font-size: .82rem;
  color: var(--text-color-light);
  margin-bottom: .35rem;
}
.order-field input,
.order-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: .6rem .85rem;
  color: var(--title-color);
  font-family: inherit;
  font-size: .88rem;
  transition: border-color .2s;
}
.order-field input:focus,
.order-field textarea:focus {
  outline: none;
  border-color: var(--first-color);
}
.order-field textarea { resize: vertical; min-height: 60px; }
.order-notice {
  font-size: .78rem;
  color: var(--text-color-light);
  background: rgba(99,161,255,.07);
  border-left: 3px solid var(--first-color);
  border-radius: 0 6px 6px 0;
  padding: .55rem .75rem;
  margin-bottom: 1rem;
  display: flex;
  gap: .4rem;
  align-items: flex-start;
}
.order-submit-btn {
  width: 100%;
  justify-content: center;
  padding: .65rem;
}
/* Success modal */
.order-success-content {
  max-width: 400px;
  text-align: center;
  padding: 2.5rem 2rem;
  min-height: unset;
}
.order-success-icon {
  font-size: 3.5rem;
  color: #4caf50;
  margin-bottom: .5rem;
  line-height: 1;
}
.order-success-title {
  font-size: 1.3rem;
  color: var(--title-color);
  margin-bottom: .4rem;
}
.order-success-sub {
  font-size: .86rem;
  color: var(--text-color-light);
  margin-bottom: 1.2rem;
}
.order-success-details {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: .8rem 1rem;
  margin-bottom: 1.2rem;
  text-align: left;
}
.osd-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: var(--text-color);
  margin-bottom: .35rem;
}
.osd-row:last-child { margin-bottom: 0; }
.osd-row i { color: var(--first-color); flex-shrink: 0; }
.order-success-btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   ADMIN — Products section
   ═══════════════════════════════════════════════════════════════════════════ */
.aprod-add-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 2rem;
}
.aprod-section-title {
  font-size: 1rem;
  color: var(--title-color);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.aprod-list-head { margin-bottom: .8rem; margin-top: .5rem; }
.aprod-form { display: flex; flex-direction: column; gap: .1rem; }
.aprod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-bottom: .9rem;
}
@media screen and (max-width: 560px) { .aprod-grid { grid-template-columns: 1fr; } }
.aprod-stock-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.aprod-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-size: .85rem;
  color: var(--text-color);
}
.aprod-toggle input { width: 16px; height: 16px; accent-color: var(--first-color); cursor: pointer; }
.aprod-toggle-label { user-select: none; }
.aprod-upload-area {
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
  overflow: hidden;
  margin-bottom: .7rem;
}
.aprod-upload-area--sm { padding: .9rem .8rem; }
.aprod-upload-area:hover,
.aprod-upload-area.drag-over {
  border-color: var(--first-color);
  background: rgba(99,161,255,0.05);
}
.aprod-upload-area i { font-size: 2rem; color: var(--first-color); display: block; margin-bottom: .4rem; }
.aprod-upload-area p { font-size: .84rem; color: var(--text-color-light); }
.aprod-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.aprod-img-preview {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .7rem;
}
.aprod-thumb-preview {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.1);
}
/* Product list row */
.aprod-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: .85rem 1rem;
  margin-bottom: .7rem;
  transition: background .2s;
}
.aprod-row:hover { background: rgba(255,255,255,0.04); }
.aprod-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 9px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
}
.aprod-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
}
.aprod-thumb--empty i { font-size: 1.4rem; color: rgba(255,255,255,0.15); }
.aprod-row-info { flex: 1; min-width: 0; }
.aprod-row-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: .3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aprod-row-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .2rem;
}
.aprod-cat-badge {
  font-size: .72rem;
  padding: .15rem .55rem;
  border-radius: 20px;
  background: rgba(99,161,255,.13);
  color: var(--first-color);
  font-weight: 600;
}
.aprod-stock {
  font-size: .72rem;
  padding: .15rem .55rem;
  border-radius: 20px;
  font-weight: 600;
}
.aprod-stock--in  { background: rgba(76,175,80,.12);  color: #4caf50; }
.aprod-stock--out { background: rgba(255,82,82,.12);  color: #ff5252; }
.aprod-row-price {
  font-size: .84rem;
  font-weight: 700;
  color: var(--first-color);
}
.aprod-row-desc {
  font-size: .78rem;
  color: var(--text-color-light);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: .1rem;
}
.aprod-row-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.aprod-img-count {
  font-size: .78rem;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .2rem;
}
/* Edit product modal – existing images */
.aprod-existing-img {
  position: relative;
  display: inline-block;
}
.aprod-existing-img img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.1);
  display: block;
}
.aprod-del-img {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #ff5252;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: .85rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.aprod-del-img:hover { background: #e53935; }

/* ── Admin orders ─────────────────────────────────────────────────────────── */
.aord-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  margin-bottom: .5rem;
}
.aord-row:hover { background: rgba(255,255,255,.04); }
.aord-main { flex: 1; min-width: 0; }
.aord-product {
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: .4rem;
  font-size: .95rem;
}
.aord-client {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .8rem;
  font-size: .84rem;
  color: var(--text-color);
  margin-bottom: .3rem;
}
.aord-client span { display: flex; align-items: center; gap: .25rem; }
.aord-notes {
  font-size: .82rem;
  color: var(--text-color-light);
  margin-bottom: .3rem;
  font-style: italic;
}
.aord-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .3rem;
}
.aord-date {
  font-size: .78rem;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.aord-status {
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.aord-status--new        { background: rgba(99,231,209,.12); color: #63e7d1; }
.aord-status--processing { background: rgba(255,193,7,.12);  color: #ffc107; }
.aord-status--shipped    { background: rgba(54,162,235,.12); color: #36a2eb; }
.aord-status--delivered  { background: rgba(76,175,80,.12);  color: #4caf50; }
.aord-status--cancelled  { background: rgba(229,57,53,.12);  color: #e53935; }
.aord-actions {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  min-width: 140px;
}
.aord-status-sel {
  background: var(--container-color);
  color: var(--text-color);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: .4rem .6rem;
  font-size: .82rem;
  width: 100%;
  cursor: pointer;
}
.aord-save-btn {
  padding: .4rem .7rem !important;
  font-size: .8rem !important;
}
.aprod-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .aord-row { flex-direction: column; }
  .aord-actions { flex-direction: row; width: 100%; min-width: unset; }
  .aord-status-sel { flex: 1; }
}

/* ── Admin users ──────────────────────────────────────────────────────────── */
.auser-total {
  display: inline-block;
  margin-left: .5rem;
  font-size: .75rem;
  font-weight: 500;
  color: var(--first-color);
  background: rgba(99,231,209,.1);
  padding: .1rem .5rem;
  border-radius: 20px;
}
.auser-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  margin-bottom: .4rem;
  flex-wrap: wrap;
}
.auser-row:hover { background: rgba(255,255,255,.04); }
.auser-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(99,231,209,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--first-color);
  flex-shrink: 0;
}
.auser-main { flex: 1; min-width: 0; }
.auser-name {
  font-weight: 600;
  color: var(--title-color);
  font-size: .95rem;
  margin-bottom: .2rem;
}
.auser-email {
  font-size: .83rem;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .4rem;
}
.auser-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
}
.auser-reg {
  font-size: .78rem;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.auser-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .15rem .55rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.auser-tag--booking  { background: rgba(54,162,235,.12);  color: #36a2eb; }
.auser-tag--warranty { background: rgba(99,231,209,.12);  color: #63e7d1; }
.auser-actions {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}
.auser-detail-btn {
  padding: .35rem .75rem !important;
  font-size: .8rem !important;
}
.auser-del-btn {
  padding: .35rem .6rem !important;
  font-size: .85rem !important;
}
.auser-detail {
  width: 100%;
  margin-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: .8rem;
}
.auser-detail-loading {
  font-size: .85rem;
  color: var(--text-color-light);
  padding: .3rem 0;
}
.auser-section-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--first-color);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.auser-activity-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .8rem;
  padding: .4rem .5rem;
  background: rgba(255,255,255,.03);
  border-radius: 6px;
  margin-bottom: .3rem;
  font-size: .82rem;
}
.auser-act-title {
  font-weight: 500;
  color: var(--title-color);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.auser-act-sub { color: var(--text-color-light); }
.auser-act-dt  { color: var(--text-color-light); font-size: .78rem; }
.auser-act-status {
  font-size: .73rem;
  font-weight: 600;
  padding: .1rem .45rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.auser-act-status--pending   { background: rgba(255,193,7,.12);  color: #ffc107; }
.auser-act-status--confirmed,
.auser-act-status--approved  { background: rgba(76,175,80,.12);  color: #4caf50; }
.auser-act-status--cancelled,
.auser-act-status--rejected  { background: rgba(229,57,53,.12);  color: #e53935; }
@media (max-width: 500px) {
  .auser-row { gap: .7rem; }
  .auser-actions { width: 100%; justify-content: flex-end; }
}

/* ── Updates page ─────────────────────────────────────────────────────────── */
.upd-strip-sub {
  color: var(--text-color-light);
  font-size: .9rem;
  margin-top: .4rem;
}
.upd-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-color-light);
  font-size: 1rem;
}
.upd-state i { font-size: 2.5rem; display: block; margin-bottom: .8rem; }

/* Category badges */
.upd-cat {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.upd-cat--sm { font-size: .72rem; padding: .15rem .5rem; }
.upd-cat--new   { background: rgba(99,231,209,.12); color: #63e7d1; }
.upd-cat--fix   { background: rgba(255,193,7,.12);  color: #ffc107; }
.upd-cat--fsd   { background: rgba(153,102,255,.12);color: #9966ff; }
.upd-cat--other { background: rgba(255,255,255,.08); color: var(--text-color-light); }

/* Accordion */
.upd-accordion { display: flex; flex-direction: column; gap: .5rem; }

.upd-item {
  background: var(--container-color);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.upd-item--open  { border-color: rgba(99,231,209,.3); }

.upd-item-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-color);
}
.upd-item-head:hover { background: rgba(255,255,255,.03); }

.upd-item-left  { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.upd-item-right { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-left: auto; }

.upd-badge-new {
  background: var(--first-color);
  color: #000;
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.upd-item-ver {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--title-color);
}
.upd-item-date, .upd-item-fleet {
  font-size: .78rem;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.upd-chevron {
  font-size: 1.2rem;
  color: var(--text-color-light);
  transition: transform .25s;
  line-height: 1;
}
.upd-item--open .upd-chevron { transform: rotate(180deg); }

/* Body (collapsed by default) */
.upd-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  padding: 0 1.2rem;
}
.upd-item--open .upd-item-body {
  max-height: 1200px;
  padding: 0 1.2rem 1.2rem;
}

/* Feature section */
.upd-feat-wrap { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1rem; }
.upd-feat-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--first-color);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.upd-feat-list { display: flex; flex-direction: column; gap: .8rem; }
.upd-feat-item {
  padding-left: .7rem;
  border-left: 2px solid rgba(99,231,209,.3);
}
.upd-feat-name {
  font-weight: 600;
  color: var(--title-color);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .2rem;
}
.upd-feat-name i { color: var(--first-color); flex-shrink: 0; }
.upd-feat-desc {
  font-size: .83rem;
  color: var(--text-color);
  line-height: 1.55;
  margin: 0;
}
.upd-loading-feats {
  font-size: .85rem;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 0;
}
.upd-no-feat {
  font-size: .83rem;
  color: var(--text-color-light);
  margin: 0;
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* Category badges */
.upd-cat {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  font-weight: 600;
  padding: .15rem .55rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.upd-cat--new   { background: rgba(99,231,209,.12); color: #63e7d1; }
.upd-cat--fix   { background: rgba(255,193,7,.12);  color: #ffc107; }
.upd-cat--fsd   { background: rgba(153,102,255,.12);color: #9966ff; }
.upd-cat--other { background: rgba(255,255,255,.07);color: var(--text-color-light); }

/* Credit */
.upd-credit {
  text-align: center;
  font-size: .78rem;
  color: var(--text-color-light);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.upd-credit a { color: var(--first-color); }

@media (max-width: 500px) {
  .upd-item-head { padding: .8rem 1rem; }
  .upd-item-right { gap: .4rem; }
  .upd-item-fleet { display: none; }
}

  /* Popular swiper */
  .popular__container { padding-bottom: 2.5rem; }

  /* Footer */
  .footer__container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ── TSG News cards (updates.html + index.html) ─────────────────────── */
.news-section { margin-bottom: 2rem; }
.news-section-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.news-tsg-badge {
  background: var(--first-color);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .22rem .7rem;
  border-radius: 20px;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  text-transform: uppercase;
  opacity: .92;
}
.news-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--title-color);
  margin: 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.2rem;
}
.news-card {
  background: var(--container-color);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--first-color);
  box-shadow: 0 2px 14px rgba(0,0,0,.2);
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(99,161,255,.18);
}
.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.news-card-body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.news-card-date {
  font-size: .72rem;
  color: var(--first-color);
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  font-weight: 600;
  opacity: .8;
}
.news-card-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.45;
  margin-bottom: .55rem;
  text-decoration: none;
}
.news-card-link { display: block; text-decoration: none; }
.news-card-text {
  font-size: .85rem;
  color: var(--text-color);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-card-more {
  font-size: .8rem;
  color: var(--first-color);
  font-weight: 700;
  cursor: pointer;
  margin-top: .55rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: opacity .15s;
  align-self: flex-start;
  text-decoration: none;
}
.news-card-more:hover { opacity: .75; }
.news-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.2rem 0 1.6rem;
  color: var(--text-color-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-divider::before, .news-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
}

/* ── News article page (news-post.html) ────────────────────────────────── */
.news-article {
  max-width: 800px;
  margin: 0 auto;
}
.news-article-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--first-color);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.news-article-back:hover { opacity: .75; }
.news-article-date {
  font-size: .8rem;
  color: var(--first-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .6rem;
}
.news-article-title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--title-color);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.sc-gallery--article {
  height: 400px;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
/* Hero-size display: show the whole uploaded photo (no cropping), regardless
   of its dimensions/aspect ratio — card thumbnails elsewhere keep object-fit:
   cover since cropping to a uniform grid is expected there, but a full-size
   article photo shouldn't have its content cut off. */
.sc-gallery--article .sc-img-slide {
  background: linear-gradient(160deg, hsl(219,18%,11%) 0%, hsl(219,14%,6%) 100%);
}
.sc-gallery--article .sc-img-slide img {
  object-fit: contain;
}
.news-article-video {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  display: block;
  background: #000;
}
.news-article-body {
  max-width: 68ch;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.85;
}
.news-article-body p { margin: 0 0 1.3em; }
.news-article-body p:last-child { margin-bottom: 0; }
@media screen and (max-width: 600px) {
  .sc-gallery--article { height: 240px; }
}

/* ── Admin news form ────────────────────────────────────────────────── */
.anews-form-wrap { margin-bottom: .5rem; }
.anews-form {
  background: var(--body-color);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .8rem;
  padding: 1.4rem 1.5rem;
  margin-top: .7rem;
}
.anews-row { display: flex; flex-direction: column; gap: 1rem; }
.anews-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--body-color);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .65rem;
  padding: .85rem 1rem;
  margin-bottom: .55rem;
  transition: background .2s;
}
.anews-list-item:hover { background: var(--container-color); }
.anews-list-thumb {
  width: 60px;
  height: 60px;
  border-radius: .45rem;
  object-fit: cover;
  flex-shrink: 0;
}
.anews-list-thumb-placeholder {
  width: 60px;
  height: 60px;
  border-radius: .45rem;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.anews-list-info { flex: 1; min-width: 0; }
.anews-list-title {
  font-weight: 700;
  font-size: .92rem;
  color: var(--title-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.anews-list-date {
  font-size: .74rem;
  color: var(--text-color-light);
  margin: .15rem 0 .3rem;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.anews-list-excerpt {
  font-size: .8rem;
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.anews-del-btn {
  background: rgba(229,57,53,.1);
  color: #e53935;
  border: 1px solid rgba(229,57,53,.28);
  border-radius: .4rem;
  padding: .38rem .75rem;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.anews-del-btn:hover { background: rgba(229,57,53,.22); }

/* ── Messenger float button ─────────────────────────────────────────── */
.msng-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff 0%, #0078ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,120,255,.45);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.msng-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(0,120,255,.65);
}
.msng-float i {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}
.msng-tooltip {
  position: absolute;
  right: 4rem;
  background: var(--container-color);
  color: var(--title-color);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: .4rem;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.msng-tooltip::after {
  content: '';
  position: absolute;
  right: -.42rem;
  top: 50%;
  transform: translateY(-50%);
  border: .42rem solid transparent;
  border-left-color: var(--container-color);
}
.msng-float:hover .msng-tooltip { opacity: 1; }

/* ── Responsive: tablet (768-1024px) ───────────────────────────────── */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .home__container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .about__container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ── Booking modal — mobile full-screen ─────────────────────────────── */
@media screen and (max-width: 480px) {
  .modal { padding: 0.5rem !important; }
  .modal-content {
    max-width: 100% !important;
    border-radius: 1rem !important;
    padding: 1.5rem 1.25rem 2rem !important;
    max-height: 96dvh !important;
  }
}

/* ── WhatsApp button — don't overlap modals ─────────────────────────── */
.modal[style*="flex"] ~ .whatsapp-btn,
.modal[style*="block"] ~ .whatsapp-btn {
  z-index: 0;
}

/* ── Language arrow rotation when open ─────────────────────────────────── */
#langDropdown.lang-open + * .lang-arrow { transform: rotate(180deg); }
/* The arrow is inside #currentLang, not a sibling. Use JS class on parent: */
.language-dropdown.lang-active #currentLang .lang-arrow {
  transform: rotate(180deg);
}

/* ══════════════════════════════════════════════════════════════════════════
   BOOKING SUCCESS MODAL
   ══════════════════════════════════════════════════════════════════════════ */
.bsm-content {
  text-align: center !important;
  padding: 2.5rem 2rem !important;
  max-width: 400px !important;
  min-height: unset !important;
}
.bsm-icon {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: .75rem;
  line-height: 1;
}
.bsm-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}
.bsm-subtitle {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
}
.bsm-details {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: .85rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.bsm-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  padding: .3rem 0;
}
.bsm-row i { color: var(--first-color); flex-shrink: 0; }
.bsm-row strong { color: #fff; }
.bsm-qr-section { margin-bottom: 1.5rem; }
.bsm-qr-label {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}
.bsm-qr-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  border: 1.5px solid rgba(55,120,230,.3);
  border-radius: 1rem;
  padding: .75rem;
  transition: border-color .2s, background .2s;
  background: rgba(55,120,230,.06);
}
.bsm-qr-wrap:hover { border-color: rgba(55,120,230,.6); background: rgba(55,120,230,.12); }
.bsm-qr-img {
  width: 160px;
  height: 160px;
  border-radius: .5rem;
  display: block;
}
.bsm-qr-hint { font-size: .75rem; color: rgba(255,255,255,.45); }
.bsm-address {
  margin-top: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.bsm-btn { width: 100% !important; margin-top: 0 !important; }

/* ══════════════════════════════════════════════════════════════════════════
   PHONE INPUT (intl-tel-input) — dark theme fix
   ══════════════════════════════════════════════════════════════════════════ */
.iti { width: 100% !important; margin-bottom: 1rem !important; }
.iti__flag-container { border-right: 1px solid rgba(255,255,255,.15); }
.iti__selected-flag {
  background: transparent !important;
  padding: 0 8px !important;
}
.iti__selected-flag:hover,
.iti__selected-flag:focus { background: rgba(255,255,255,.08) !important; }
.iti__country-list {
  background: hsl(219,18%,12%) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.6) !important;
}
.iti__country:hover,
.iti__country.iti__highlight { background: rgba(55,120,230,.2) !important; }
.iti__divider { border-bottom: 1px solid rgba(255,255,255,.08) !important; }
#phone {
  padding-left: 50px !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}
.iti--separate-dial-code .iti__selected-dial-code { color: rgba(255,255,255,.7) !important; }
.iti--separate-dial-code #phone { padding-left: 90px !important; }

/* ══════════════════════════════════════════════════════════════════════════
   AUTH PAGE — complete redesign
   ══════════════════════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(55,120,230,.18) 0%, transparent 65%),
    var(--body-color) !important;
  padding: 2rem 1rem !important;
}
.auth-container {
  width: 100% !important;
  max-width: 420px !important;
  background: rgba(255,255,255,.04) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 40px 100px rgba(0,0,0,.6) !important;
  padding: 2rem 2rem 2.5rem !important;
  overflow: hidden;
}
.auth-tabs {
  display: flex;
  background: rgba(255,255,255,.05) !important;
  border-radius: .85rem !important;
  padding: 4px !important;
  margin-bottom: 1.75rem !important;
  gap: 4px;
}
.auth-tab {
  flex: 1;
  padding: .6rem 1rem !important;
  border: none !important;
  border-radius: .65rem !important;
  background: transparent !important;
  color: rgba(255,255,255,.45) !important;
  font-size: .88rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
}
.auth-tab.active {
  background: var(--gradient-brand, linear-gradient(135deg,hsl(219,69%,55%),hsl(219,69%,40%))) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(55,120,230,.35) !important;
}
.auth-logo {
  display: block !important;
  margin: 0 auto 1rem !important;
  height: 40px !important;
  width: auto !important;
}
.auth-title {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(135deg,#fff 0%,hsl(219,69%,80%) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.auth-form-wrap label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .35rem;
  margin-top: .9rem;
}
.auth-form-wrap label:first-of-type { margin-top: 0; }
.auth-form-wrap input,
.auth-form-wrap .input-wrap input {
  width: 100% !important;
  padding: .75rem 1rem !important;
  background: rgba(255,255,255,.06) !important;
  border: 1.5px solid rgba(255,255,255,.11) !important;
  border-radius: .75rem !important;
  color: #fff !important;
  font-size: .95rem !important;
  font-family: inherit !important;
  transition: border-color .2s, background .2s;
  box-shadow: none !important;
}
.auth-form-wrap input:focus,
.auth-form-wrap .input-wrap input:focus {
  outline: none !important;
  border-color: rgba(55,120,230,.8) !important;
  background: rgba(255,255,255,.10) !important;
  box-shadow: 0 0 0 3px rgba(55,120,230,.18) !important;
}
.auth-form-wrap input::placeholder { color: rgba(255,255,255,.25) !important; }
.input-wrap {
  position: relative;
}
.input-wrap input { padding-right: 2.8rem !important; }
.toggle-pass {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  transition: color .2s;
}
.toggle-pass:hover { color: rgba(255,255,255,.7); }
.auth-submit {
  width: 100% !important;
  margin-top: 1.25rem !important;
  padding: .9rem !important;
  font-size: .95rem !important;
}
.auth-error {
  font-size: .8rem;
  color: #f87171;
  min-height: 1.2em;
  margin-top: .5rem;
  text-align: center;
}
.auth-switch {
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-top: 1.25rem !important;
}
.auth-switch a { color: var(--first-color) !important; font-weight: 600; }
.auth-switch a:hover { color: hsl(219,69%,72%) !important; }

/* ── Admin booking action buttons ──────────────────────────────────────── */
.abr-reschedule-btn {
  font-size: .75rem !important;
  padding: .3rem .7rem !important;
  background: rgba(55,120,230,0.12) !important;
  border: 1px solid rgba(55,120,230,0.3) !important;
  color: rgba(255,255,255,0.8) !important;
}
.abr-reschedule-btn:hover {
  background: rgba(55,120,230,0.25) !important;
  border-color: rgba(55,120,230,0.6) !important;
}
.awr-edit-btn {
  font-size: .75rem !important;
  padding: .3rem .7rem !important;
  margin-top: .35rem !important;
}
.awr-del-btn {
  margin-top: .35rem !important;
}
.abr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}

/* ── Warranty countdown (dashboard) ────────────────────────────────────── */
.cert-countdown {
  margin-top: .75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.cert-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.cert-bar {
  height: 100%;
  border-radius: 99px;
  transition: width .4s ease;
}
.cert-bar--green  { background: linear-gradient(90deg,#22c55e,#16a34a); }
.cert-bar--yellow { background: linear-gradient(90deg,#f59e0b,#d97706); }
.cert-bar--red    { background: linear-gradient(90deg,#ef4444,#dc2626); }
.cert-days-left {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.cert-expired-badge {
  font-size: .75rem;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 99px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* ── Admin warranty expiry indicator ───────────────────────────────────── */
.awr-exp { font-size: .8rem !important; margin-top: .35rem !important; }
.awr-exp--green  { color: #4ade80 !important; }
.awr-exp--yellow { color: #fbbf24 !important; }
.awr-exp--red    { color: #f87171 !important; }

/* ══════════════════════════════════════════════════════════════════════════
   TELEGRAM OTP LOGIN
   ══════════════════════════════════════════════════════════════════════════ */
.otp-form {
  background: hsl(219,18%,10%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  max-width: 380px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.otp-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(41,182,246,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: .25rem auto 0;
}
.otp-icon i {
  font-size: 1.8rem;
  color: #29b6f6;
}
.otp-form h2 {
  font-size: 1.2rem;
  color: var(--title-color);
  margin: 0;
}
.otp-hint {
  font-size: .82rem;
  color: var(--text-color-light);
  margin: 0;
}

/* 6-box digit input */
.otp-inputs {
  display: flex;
  gap: .55rem;
  justify-content: center;
  margin: .4rem 0;
}
.otp-digit {
  width: 3rem;
  height: 3.4rem;
  background: hsl(219,14%,8%);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: .65rem;
  color: var(--title-color);
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color .2s;
  font-family: monospace;
}
.otp-digit:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px rgba(99,161,255,.18);
}

.otp-login-err {
  font-size: .8rem;
  color: #f87171;
  margin: 0;
  width: 100%;
  text-align: center;
}

.otp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  margin-top: .25rem;
}
.otp-resend-btn,
.otp-back-btn {
  background: none;
  border: none;
  color: var(--text-color-light);
  font-size: .8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .5rem;
  border-radius: .4rem;
  transition: color .2s;
  font-family: var(--body-font);
}
.otp-resend-btn:hover:not(:disabled),
.otp-back-btn:hover { color: var(--title-color); }
.otp-resend-btn:disabled { opacity: .45; cursor: default; }
.otp-resend-btn i { color: var(--first-color); }
.otp-back-btn i   { color: var(--text-color-light); }

@media screen and (max-width: 400px) {
  .otp-digit { width: 2.5rem; height: 3rem; font-size: 1.2rem; }
  .otp-inputs { gap: .35rem; }
  .otp-form { padding: 2rem 1.25rem; }
}

/* ══════════════════════════════════════════════════════════════════════════
   ADMIN STATS DASHBOARD
   ══════════════════════════════════════════════════════════════════════════ */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .75rem;
  margin-bottom: 1.6rem;
}
.astat-card {
  background: var(--container-color);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
  min-width: 0;
  text-align: center;
}
.astat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,161,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.astat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  border-color: rgba(99,161,255,.25);
}

.astat-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.astat-icon--users      { background: rgba(99,161,255,.15); color: #63a1ff; }
.astat-icon--products   { background: rgba(99,231,209,.15); color: #63e7d1; }
.astat-icon--bookings   { background: rgba(255,193,7,.15);  color: #ffc107; }
.astat-icon--warranties { background: rgba(34,197,94,.15);  color: #22c55e; }
.astat-icon--orders     { background: rgba(168,85,247,.15); color: #a855f7; }
.astat-icon--news       { background: rgba(249,115,22,.15); color: #f97316; }
.astat-icon--mobilesvc  { background: rgba(20,184,166,.15);  color: #14b8a6; }

.astat-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  align-items: center;
}
.astat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1;
  transition: color .3s;
  margin: 0;
}
.astat-num.astat-loaded { color: #fff; }
.astat-label {
  font-size: .75rem;
  color: var(--text-color-light);
  font-weight: 500;
  margin-top: .15rem;
  line-height: 1.3;
  word-break: break-word;
}
.astat-sub {
  font-size: .68rem;
  font-weight: 600;
  color: #fbbf24;
  margin-top: .15rem;
  display: none;
}

@media screen and (max-width: 700px) {
  .admin-stats { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .5rem; }
  .astat-card  { padding: .9rem; gap: .5rem; }
  .astat-num   { font-size: 1.4rem; }
  .astat-icon  { width: 2rem; height: 2rem; font-size: .9rem; }
  .astat-label { font-size: .7rem; }
}

/* ══════════════════════════════════════════════════════════════════════════
   POPULAR SECTION — "რატომ ჩვენ?" title centering fix
   ══════════════════════════════════════════════════════════════════════════ */
.popular__title-wrap {
  text-align: center;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   HOME SECTIONS — unified products + news header (index.html)
   ══════════════════════════════════════════════════════════════════════════ */
.home-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(99,161,255,.03) 50%, transparent 100%);
}

.home-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.home-section__title-group {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.home-section__icon {
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(99,161,255,.12);
  border: 1px solid rgba(99,161,255,.2);
  border-radius: .65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-section__icon i {
  color: var(--first-color);
  font-size: 1.1rem;
}

.home-section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin: 0;
}

.home-section__all {
  white-space: nowrap;
  padding: .45rem 1.2rem;
  font-size: .84rem;
  flex-shrink: 0;
}

@media screen and (max-width: 480px) {
  .home-section__title { font-size: 1rem; }
  .home-section__icon  { width: 2rem; height: 2rem; border-radius: .5rem; }
  .home-section__icon i { font-size: .95rem; }
  .home-section__all { padding: .38rem .9rem; font-size: .78rem; }
}

/* ══════════════════════════════════════════════════════════════════════════
   COMPACT FOOTER (index.html)
   ══════════════════════════════════════════════════════════════════════════ */
.footer-compact {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 0 1rem;
  margin-top: 2rem;
}
.footer-compact__inner {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

/* Row 1 */
.footer-compact__top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-compact__logo img {
  height: 32px;
  width: auto;
  display: block;
  opacity: .9;
  transition: opacity .2s;
}
.footer-compact__logo:hover img { opacity: 1; }

.footer-compact__nav {
  display: flex;
  align-items: center;
  gap: .15rem 1rem;
  flex-wrap: wrap;
  flex: 1;
}
.footer-compact__nav a {
  color: var(--text-color);
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s;
  white-space: nowrap;
}
.footer-compact__nav a i { color: var(--first-color); font-size: .85rem; opacity: .7; }
.footer-compact__nav a:hover { color: var(--title-color); }
.footer-compact__nav a:hover i { opacity: 1; }

.footer-compact__socials {
  display: flex;
  gap: .45rem;
  flex-shrink: 0;
}
.footer-compact__socials a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1rem;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-compact__socials a:hover {
  background: var(--first-color);
  border-color: var(--first-color);
  color: #fff;
}

/* Row 2 */
.footer-compact__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem 1.5rem;
  flex-wrap: wrap;
  padding-top: .7rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-compact__copy {
  font-size: .75rem;
  color: var(--text-color-light);
  white-space: nowrap;
}
.footer-compact__contact {
  display: flex;
  align-items: center;
  gap: .4rem 1rem;
  flex-wrap: wrap;
  flex: 1;
}
.footer-compact__contact a,
.footer-compact__contact span {
  font-size: .75rem;
  color: var(--text-color-light);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.footer-compact__contact a { transition: color .2s; }
.footer-compact__contact a:hover { color: var(--first-color); }
.footer-compact__contact i { font-size: .8rem; color: var(--first-color); opacity: .6; }
.footer-compact__dev {
  font-size: .74rem;
  color: var(--text-color-light);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.footer-compact__dev i {
  color: var(--first-color);
  font-size: .85rem;
  filter: drop-shadow(0 0 5px var(--first-color));
}
.footer-compact__dev a {
  color: var(--first-color);
  font-weight: 600;
  transition: opacity .2s;
}
.footer-compact__dev a:hover { opacity: .75; }

/* Mobile ≤ 600px */
@media screen and (max-width: 600px) {
  .footer-compact__top    { gap: .8rem; }
  .footer-compact__nav    { gap: .1rem .7rem; }
  .footer-compact__nav a  { font-size: .78rem; }
  .footer-compact__contact { gap: .3rem .7rem; }
}

/* ══════════════════════════════════════════════════════════════════════════
   MOBILE IMPROVEMENTS — screens ≤ 480px
   ══════════════════════════════════════════════════════════════════════════ */
@media screen and (max-width: 480px) {

  /* News cards — smaller image on phone */
  .news-card-img { height: 160px; }

  /* News grid — single column edge-to-edge */
  .news-grid { grid-template-columns: 1fr; }

  /* Warranty form — tighter padding */
  .wf-block { padding: 1.2rem 1rem; }
  .wf-block__head { gap: .7rem; }
  .wf-block__num { width: 2rem; height: 2rem; font-size: .82rem; }

  /* Shop filter bar — scroll on small screens */
  .shop-cats { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .4rem; -webkit-overflow-scrolling: touch; }
  .shop-cat  { flex-shrink: 0; }

  /* Admin panel — tabs tighter */
  .admin-tabs-nav { gap: .3rem; }
  .admin-tab-btn  { font-size: .74rem !important; padding: .38rem .6rem !important; }

  /* Home news section — reduce section padding */
  .home-news { padding-top: 2.5rem; }

  /* Updates page — wrap version number */
  .upd-item-ver { font-size: .92rem; }

  /* Messenger float — slightly smaller on tiny screens */
  .msng-float { width: 3rem; height: 3rem; }
  .msng-float i { font-size: 1.35rem; }
  .msng-tooltip { display: none; }

  /* Footer mini — center bottom bar */
  .footer-mini__bottom { flex-direction: column; gap: .4rem; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════
   SHOWROOM SECTION
   ═══════════════════════════════════════════════════════════════ */
.showroom {
  background: linear-gradient(135deg, rgba(10,20,40,.4) 0%, rgba(20,30,60,.3) 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.showroom-header {
  text-align: center;
  margin-bottom: 3rem;
}

.showroom-desc {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--text-color);
  line-height: 1.6;
}

.showroom-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}

.showroom-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.showroom-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(99,161,255,.2);
  border-radius: 1rem;
  padding: 2rem;
}

.showroom-name {
  font-size: 1.3rem;
  color: var(--title-color);
  margin-bottom: .5rem;
  font-weight: 600;
}

.showroom-subtitle {
  color: var(--text-color-light);
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.showroom-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.showroom-detail i {
  font-size: 1.3rem;
  color: var(--first-color);
  flex-shrink: 0;
  margin-top: .2rem;
}

.showroom-label {
  font-size: .75rem;
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-bottom: .3rem;
}

.showroom-value {
  color: var(--title-color);
  font-size: .95rem;
  margin: 0;
  font-weight: 500;
}

.showroom-value a {
  color: var(--first-color);
  text-decoration: none;
  transition: opacity .2s;
}

.showroom-value a:hover {
  opacity: .8;
}

.showroom-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--body-color);
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
}

.showroom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.1);
}

.showroom-gallery {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(99,161,255,.2);
  border-radius: 1rem;
  padding: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}

.gallery-thumb {
  display: block;
  overflow: hidden;
  border-radius: .5rem;
  border: 1px solid rgba(99,161,255,.15);
  cursor: pointer;
  transition: transform .3s, border-color .2s;
}

.gallery-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.gallery-thumb:hover {
  transform: scale(1.05);
  border-color: rgba(99,161,255,.4);
}

.showroom-map {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(99,161,255,.2);
}

/* Responsive */
@media screen and (max-width: 900px) {
  .showroom-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showroom-map {
    min-height: 400px;
  }
}

@media screen and (max-width: 576px) {
  .showroom {
    padding: 2rem 0;
  }

  .showroom-header {
    margin-bottom: 2rem;
  }

  .showroom-card {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-thumb img {
    height: 100px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION — MODERN GRID
   ═══════════════════════════════════════════════════════════════ */
.services {
  background: linear-gradient(180deg, rgba(10,20,40,.5) 0%, rgba(20,30,60,.3) 100%);
  position: relative;
}

.services__header {
  text-align: center;
  margin-bottom: 3rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(99,161,255,.08) 0%, rgba(99,161,255,.02) 100%);
  border: 1px solid rgba(99,161,255,.15);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all .3s cubic-bezier(.23, 1, .320, 1);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99,161,255,.1), transparent 80%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99,161,255,.4);
  box-shadow: 0 12px 40px rgba(99,161,255,.15);
  background: linear-gradient(135deg, rgba(99,161,255,.12) 0%, rgba(99,161,255,.05) 100%);
}

.service-card--highlight {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(99,161,255,.2) 0%, rgba(99,161,255,.08) 100%);
  border-color: rgba(99,161,255,.3);
}

.service-card--highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(99,161,255,.25);
  border-color: rgba(99,161,255,.5);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99,161,255,.25), rgba(99,161,255,.05));
  border: 1px solid rgba(99,161,255,.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--first-color);
  transition: all .3s;
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, rgba(99,161,255,.35), rgba(99,161,255,.15));
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(99,161,255,.2);
}

.service-card__title {
  font-size: 1.1rem;
  color: var(--title-color);
  font-weight: 600;
  margin: 0;
  transition: color .2s;
}

.service-card:hover .service-card__title {
  color: var(--first-color);
}

.service-card__desc {
  font-size: .9rem;
  color: var(--text-color-light);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.service-card__btn {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: #fff;
  border: none;
  padding: .6rem 1.2rem;
  border-radius: .5rem;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: all .3s;
  margin-top: .5rem;
  box-shadow: 0 4px 16px rgba(99,161,255,.2);
}

.service-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,161,255,.35);
}

.service-card__btn:active {
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card__icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-card__title {
    font-size: 1rem;
  }

  .service-card__desc {
    font-size: .85rem;
  }
}

@media screen and (max-width: 576px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__header {
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 1.2rem;
    gap: .8rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING WIDGETS
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #20ba5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
  transition: all .3s;
  z-index: 99;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* Message Notification */
.message-notification {
  position: fixed;
  right: 90px;
  bottom: 90px;
  background: linear-gradient(135deg, var(--container-color), rgba(99,161,255,.15));
  border: 1px solid rgba(99,161,255,.3);
  border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
  max-width: 300px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  z-index: 98;
  animation: slideInRight .5s cubic-bezier(.34, 1.56, .64, 1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.message-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #25d366, #20ba5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.message-notification::after {
  content: '';
  position: absolute;
  right: -8px;
  bottom: 15px;
  width: 0;
  height: 0;
  border-left: 12px solid rgba(99,161,255,.3);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.message-notification::before {
  content: '';
  position: absolute;
  right: -5px;
  bottom: 17px;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(10,20,40,.8);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.message-text {
  color: var(--title-color);
  font-size: .9rem;
  line-height: 1.4;
  margin: 0;
}

.message-btn {
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: #fff;
  border: none;
  padding: .6rem 1rem;
  border-radius: .5rem;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(99,161,255,.2);
}

.message-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99,161,255,.3);
}

.message-notification.hidden {
  display: none;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .message-notification {
    right: 20px;
    bottom: 100px;
  }
}

@media screen and (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    right: 15px;
    bottom: 15px;
  }

  .message-notification {
    right: 10px;
    bottom: 75px;
    max-width: none;
    padding: 1rem;
  }

  .message-notification::after,
  .message-notification::before {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES CAROUSEL (SWIPER)
   ═══════════════════════════════════════════════════════════════ */
.services__grid.swiper {
  margin: 0 auto;
  padding-bottom: 3rem;
}

.services__grid .swiper-wrapper {
  display: flex;
}

.services__grid .swiper-slide {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.services__grid .swiper-pagination {
  bottom: 0;
}

.services__grid .swiper-pagination-bullet {
  background: rgba(99,161,255,.3);
  opacity: 1;
}

.services__grid .swiper-pagination-bullet-active {
  background: var(--first-color);
}
