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


/* Header Section */

#head1 {
  width: 80%;
  height: 10vh;
  margin: auto;
  display: flex;
  align-items: center;
  background-color: rgba(104, 104, 104, 0.425);
  border-radius: 20px;
  margin-top: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.active {
  background: linear-gradient(135deg, #00bf63, #25ff95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
}

#head1 ul li:hover {
  background: linear-gradient(135deg, #00bf63, #25ff95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#head1 img {
  width: 12%;
  height: auto;
}

#head1 ul {
  list-style: none;
  display: flex;
  align-items: center;
  width: 50%;
  margin-left: 250px;
  gap: 20px;
}

#head1 ul li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
}

#head1 a button {
  padding: 10px 30px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #00bf63, #25ff95);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* Hero Section */

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#hero div video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

#hero div h1 {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #00bf63;
  font-size: 60px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
}

#hero div p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
}

/* search box */

.search-box {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.205);
  padding: 20px;
  border-radius: 20px;
  max-width: 900px;
  margin: 50px auto;
  align-items: center;
}

.search-box select {
  flex: 1;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 16px;
  outline: none;
}

.search-box select:hover {
  border-color: #00bf63;
}


.search-btn {
  background: #00bf63;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
}

.search-btn img {
  width: 30px;
  height: 30px;
}


.search-btn:hover {
  background: #094429;
}

/* categ */

.categ a {
  text-decoration: none;
}

.categ {
  text-align: center;
  display: flex;
  gap: 50px;
  justify-content: center;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.categ img {
  width: 60px;
  height: 60px;
  border: #fff solid 2px;
  border-radius: 50%;
  margin-right: 20px;
  cursor: pointer;
  padding: 5px;
}

.categ img:hover {
  border: #00bf63 solid 2px;
}


.categ h3 {
  font-size: 15px;
  color: #fff;
  margin-top: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
}



/* ====== Header titles ====== */
.deals-head {
  width: 100%;
  margin-top: 20px;
  padding-left: 30px;
  position: relative;
  z-index: 5;
}

.deals-title {
  color: #00bf63;
  letter-spacing: 2px;
  font-weight: 800;
  margin: 0;
  font-size: 26px;
}

.deals-subtitle {
  color: #000000;
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 700;

}

.deals-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 70px;
  height: 3px;
  background: #00bf63;
  border-radius: 10px;
}

/* latest cars */

.latest-cars {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
}

/* left card */

.card-left {
  background-color: #232732;
  border-radius: 10px;
  grid-column: 1 / 2;
  margin-top: 20px;
  margin-left: 10px;
  height: 90vh;
  width: 95%;
  overflow: hidden;
}

.card-left img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: 75%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.title {
  color: white;
  padding: 5px 20px;
  font-size: 25px;
}

.card-left hr {
  width: 95%;
  margin: auto;
  border: 1px solid #ffffff7c;
}

.card-left ul {
  list-style: none;
  padding-top: 15px;
  padding-left: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-left ul li {
  font-size: 16px;
  padding: 6px 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .92);
}



.price-l {
  color: #00bf63;
  font-size: 25px;
  font-weight: 600;
  font-family: serif;
  padding-left: 20px;
  padding-bottom: 10px;
}



.card-left:hover img {
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}



/* right card */

.cr {
  grid-column: 2 / 4;
  /* كتشّد جوج الأعمدة ديال اليمين */
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* جوج أعمدة فاليمين */
  gap: 12px;
  align-content: start;
}

.card-right {
  background-color: #232732;
  border-radius: 10px;
  width: 95%;
  height: 44vh;
  overflow: hidden;
}

.card-right img {
  width: 100%;
  height: 160px;
  /* تقدر تبدلها */
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.title-r {
  color: white;
  padding-top: 6px;
  padding-left: 10px;
  font-size: 15px;
  font-family: serif;
}

.price-r {
  color: #00bf63;
  font-size: 20px;
  font-weight: 600;
  font-family: serif;
  margin-top: 8px;
  padding-left: 10px;
}

.card-right hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 10px 12px;
}

.card-right ul {
  list-style: none;
  padding-top: 3px;
  padding-left: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-right ul li {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .92);
}

.card-right:hover img {
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ====== Follow bar ====== */

.follow-bar {
  margin-top: 18px;
  margin-left: 10px;
  width: calc(100% - 20px);
  background: #1b1f29;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;

}


.follow-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.follow-text {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  margin-right: 6px;
}

.soc {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .03);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.soc img {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, .9);
}

.soc:hover {
  transform: translateY(-2px);
  background: rgba(0, 191, 99, .12);
  border-color: rgba(0, 191, 99, .45);
}

.see-btn {
  background: #00bf63;
  color: #0f1218;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 25px rgba(0, 191, 99, .25);
}

.see-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0, 191, 99, .35);
}





/* ========= OUR BRANDS ========= */
.brands {
  background-color: #e0f1e7;
}

.brands__title {
  padding-left: 50px;
  padding-top: 20px;
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 1.05;
  color: var(--text, #111);
  position: relative;
}

/* tabs */
.brands__tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-right: 40px;
}

.tab {
  border: 1px solid #94dfb3;
  background: var(--tab, #fff);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  transition: transform .15s ease, box-shadow .15s ease;
}

.tab:hover {
  transform: translateY(-2px);
}

.tab.is-active {
  outline: 2px solid rgba(0, 0, 0, .12);
}

.tab__name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--text, #111);
}

/* ========= SLIDER (viewport + track) ========= */
.cr-m {
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 0 16px;
  overflow: hidden;
  /* no hand scroll */
}

.cr-m__track {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  will-change: transform;
  transition: transform .35s ease;
}

/* card width = 4 visible */
.card-m {
  flex: 0 0 calc((100% - 18px*3) / 4);
  background: #232732;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);

  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card-m:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
  border-color: rgba(255, 255, 255, .16);
}

.card-m img {
  width: 100%;
  height: 170px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}

.card-m:hover img {
  transform: scale(1.06);
}

/* title + price */
.title-m {
  margin: 12px 12px 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-m {
  margin: 0 12px 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .2px;
  color: #00bf63;
}

.card-m hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 10px 12px;
}

.card-m ul {
  list-style: none;
  padding: 0 12px 14px;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-m ul li {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .92);
}

.card-m ul .model-m {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .14);
}

/* bottom */
.brands__bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pager {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pager__btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.pager__btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.pager__btn img {
  width: 22px;
  height: 22px;
}

.brands__cta {
  background: var(--accent, #00bf63);
  color: var(--white, #fff);
  text-decoration: none;
  font-weight: 900;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(255, 90, 31, .18);
}


/* ===== NOS SERVICES (match screenshot style) ===== */
.services{
  background: #ffffff;
  padding: 70px 0 90px;
}

.services__container{
  width: min(1180px, 92%);
  margin: 0 auto;
}

.services__title{
  text-align: center;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #1f2530;
  margin: 0 0 55px;
}

.services__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
}

/* card */
.service-card{
  background: #fbfbfb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31,37,48,.08);
  border: 1px solid rgba(0,0,0,.06);
}

/* image like screenshot (big top image) */
.service-card__img{
  height: 265px;
  background: #f2f2f2;
}
.service-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* body */
.service-card__body{
  padding: 26px 26px 30px;
  text-align: center;
}

.service-card__name{
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 800;
  color: #1f2530;
}

/* orange pill button */
.service-card__btn{
  display: inline-block;
  background: #00bf63;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(0, 255, 55, 0.22);
}

.service-card__btn:hover{
  filter: brightness(.97);
}


/* why shos us*/


.why{
  padding:64px 20px 72px;
  background:var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

.why__wrap{
  max-width:var(--max);
  margin:0 auto;
  text-align:center;
}

.why__title{
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.05;
  letter-spacing:-0.02em;
  margin:0 0 44px;
  font-weight:800;
  color:#111827;
}

.why__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:44px 60px;
  align-items:start;
}

.feature{
  padding:6px 8px;
}

.feature__icon{
  width:74px;
  height:74px;
  border-radius:999px;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
}

.feature__icon svg{
  width:30px;
  height:30px;
  display:block;
}

.feature__title{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
  font-weight:800;
  color:var(--heading);
}

.feature__text{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:var(--muted);
  max-width:320px;
  margin-left:auto;
  margin-right:auto;
}

/* background circles */
.bg-peach{ background:#fde8e6; }
.bg-green{ background:#eaf9e6; }
.bg-blue{  background:#e7f0ff; }

/* icon colors */
.c-orange{ color:#ff5a36; }
.c-green{  color:#2bb673; }
.c-blue{   color:#2563eb; }


/* FOOTER */
.site-footer{
  background:#111827;
  padding:60px 20px 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:#374151;
}

.footer-container{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:48px;
}

.footer-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:14px;
  color:#00bf63;
}

.footer-text{
  font-size:14px;
  line-height:1.8;
  color:#ffffff;
}

.footer-links,
.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li,
.footer-contact li{
  margin-bottom:10px;
  font-size:14px;
  color:#ffffff;
}

.footer-links a{
  text-decoration:none;
  color:#ffffff;
  transition:color .2s ease;
}

.footer-links a:hover{
  color: #00bf63;
}

.footer-bottom{
  margin-top:48px;
  padding:20px 0;
  text-align:center;
  font-size:13px;
  color:#ffffff;
  border-top:1px solid #e5e7eb;
}

/* responsive */
@media (max-width: 900px) {
  #head1 {
    width: 92%;
    min-height: auto;
    padding: 14px 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
  }

  #head1 img {
    width: 90px;
  }

  #head1 ul {
    width: auto;
    margin-left: 0;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  #head1 a button {
    padding: 10px 18px;
    font-size: 14px;
  }

  #hero {
    min-height: 980px;
    height: auto;
  }

  #hero div h1 {
    width: 92%;
    top: 28%;
    font-size: 52px;
    text-align: center;
    line-height: 1.05;
  }

  #hero div p {
    width: 92%;
    top: 38%;
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }

  .search-box {
    width: 92%;
    top: 54%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    margin: 0;
  }

  .search-box select {
    width: 100%;
    min-width: 0;
    padding: 14px;
    font-size: 15px;
  }

  .search-btn {
    grid-column: 1 / -1;
    width: 100%;
    padding: 14px 18px;
  }

  .categ {
    width: 92%;
    top: auto;
    bottom: 4%;
    gap: 18px;
    flex-wrap: wrap;
  }

  .categ img {
    width: 56px;
    height: 56px;
    margin-right: 0;
  }

  .categ h3 {
    font-size: 13px;
  }

  .latest-cars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-left {
    width: 100%;
    margin-left: 0;
    height: auto;
  }

  .card-left img {
    height: 320px;
  }

  .cr {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 0;
  }

  .card-right {
    width: 100%;
    height: auto;
  }

  .follow-bar,
  .brands__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brands__tabs {
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-m {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .services__grid,
  .why__grid,
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #head1 {
    width: 94%;
    padding: 12px 14px 14px;
    justify-content: center;
    gap: 12px;
  }

  #head1 img {
    width: 74px;
  }

  #head1 ul {
    width: 100%;
    gap: 12px;
    justify-content: center;
  }

  #head1 ul li a {
    font-size: 14px;
  }

  #head1 a {
    width: 100%;
  }

  #head1 a button {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
  }

  #hero {
    min-height: 920px;
  }

  #hero div h1 {
    top: 24%;
    width: 94%;
    font-size: 38px;
    line-height: 1.05;
  }

  #hero div p {
    top: 34%;
    width: 94%;
    font-size: 16px;
    line-height: 1.5;
  }

  .search-box {
    width: 92%;
    top: 52%;
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 10px;
  }

  .search-box select {
    padding: 14px 12px;
    font-size: 14px;
  }

  .search-btn {
    width: 100%;
    padding: 14px;
  }

  .categ {
    display: none;
  }

  .deals-head {
    padding-left: 18px;
  }

  .deals-title {
    font-size: 20px;
  }

  .deals-subtitle {
    font-size: 26px;
  }

  .latest-cars {
    width: 94%;
  }

  .card-left img {
    height: 240px;
  }

  .card-left ul li,
  .card-right ul li,
  .card-m ul li {
    font-size: 11px;
    padding: 6px 10px;
  }

  .cr {
    grid-template-columns: 1fr;
  }

  .card-m {
    flex: 0 0 100%;
  }

  .brands__title {
    padding-left: 20px;
    font-size: 28px;
  }

  .pager__btn {
    width: 48px;
    height: 48px;
  }

  .brands__cta,
  .see-btn {
    width: 100%;
    text-align: center;
  }

  .follow-left {
    flex-wrap: wrap;
  }

  .footer-container {
    text-align: center;
  }
}

/* ===== ZasCar clean structure improvements added by ChatGPT ===== */
:root{--zc-primary:#00bf63;--zc-dark:#101828;--zc-bg:#f5f7fb}
body{background:var(--zc-bg,#f5f7fb)}
#head1{background:rgba(255,255,255,.9)!important;border:1px solid rgba(255,255,255,.55);box-shadow:0 20px 50px rgba(16,24,40,.16);backdrop-filter:blur(18px)}
#head1 img{max-width:110px;object-fit:contain}#head1 ul li a{color:#101828!important}.active a,#head1 ul li:hover a{color:var(--zc-primary)!important;-webkit-text-fill-color:initial!important;text-decoration:none!important}#head1 a button{background:var(--zc-primary)!important}
#hero{background:#101828}#hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(16,24,40,.32),rgba(16,24,40,.58));z-index:1;pointer-events:none}#hero>div,#hero .search-box,#hero .categ{z-index:2}#hero div h1{font-family:Arial,Helvetica,sans-serif!important;font-size:clamp(40px,6vw,76px)!important;line-height:1.03;text-align:center;color:#fff!important;text-shadow:0 12px 30px rgba(0,0,0,.35);width:min(900px,92%)}#hero div p{font-family:Arial,Helvetica,sans-serif!important;text-align:center;width:min(760px,92%);line-height:1.6;color:#eef2f6!important}.search-box{background:rgba(255,255,255,.88)!important;box-shadow:0 20px 50px rgba(16,24,40,.18);backdrop-filter:blur(16px)}.search-btn{background:var(--zc-primary)!important}.categ a{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.2);border-radius:18px;padding:12px 16px;backdrop-filter:blur(10px)}.deals-head,.brands,.services,.why{width:min(1180px,92%)!important;margin-left:auto!important;margin-right:auto!important}.deals-title,.brands__title,.services__title,.why__title{color:var(--zc-primary)!important}.card-left,.card-right,.card-m,.service-card,.feature{box-shadow:0 16px 38px rgba(16,24,40,.08)}.brands__cta,.service-card__btn,.see-btn{background:var(--zc-primary)!important}.site-footer{background:var(--zc-dark)!important}
@media(max-width:900px){#head1{position:absolute;width:92%;height:auto;min-height:70px;padding:12px;gap:10px}#head1 ul{margin-left:0!important;width:auto!important;gap:12px;flex-wrap:wrap}#head1 img{width:90px!important}.search-box{top:54%;width:92%;display:grid;grid-template-columns:1fr}.categ{top:78%;gap:10px;overflow-x:auto;width:92%;justify-content:flex-start}.categ a{min-width:100px}.latest-cars{display:grid!important;grid-template-columns:1fr!important}.card-left{height:auto!important;margin:15px auto!important}.cr{display:grid!important;grid-template-columns:1fr!important}}

/* ===== ZasCar phone header + home responsive fix v5 ===== */
@media (max-width: 900px) {
  #head1 {
    width: 94% !important;
    height: auto !important;
    min-height: auto !important;
    margin: 12px auto 0 !important;
    padding: 10px 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px 14px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.94) !important;
    border: 1px solid rgba(255,255,255,.55) !important;
    box-shadow: 0 14px 35px rgba(16,24,40,.14) !important;
    z-index: 50 !important;
  }

  #head1 img {
    width: 82px !important;
    max-width: 82px !important;
    height: auto !important;
    object-fit: contain !important;
    order: 1 !important;
  }

  #head1 > a.ZasCar,
  #head1 > a:last-child {
    order: 2 !important;
    margin-left: auto !important;
    width: auto !important;
    display: block !important;
  }

  #head1 a button {
    padding: 10px 14px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  #head1 ul {
    order: 3 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 8px 0 0 !important;
    border-top: 1px solid #eef2f6 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  #head1 ul li {
    list-style: none !important;
  }

  #head1 ul li a {
    display: block !important;
    padding: 9px 10px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    color: #101828 !important;
  }

  #head1 ul li.active a,
  #head1 ul li a:hover {
    background: rgba(0,191,99,.1) !important;
    color: var(--zc-primary,#00bf63) !important;
    -webkit-text-fill-color: initial !important;
    text-decoration: none !important;
  }

  #hero {
    min-height: 760px !important;
    height: auto !important;
  }

  #hero div h1 {
    top: 26% !important;
    width: 92% !important;
    font-size: clamp(34px, 8vw, 52px) !important;
    line-height: 1.08 !important;
  }

  #hero div p {
    top: 36% !important;
    width: 92% !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .search-box {
    top: 50% !important;
    width: 92% !important;
    max-width: 720px !important;
    margin: 0 !important;
    padding: 14px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .search-box select {
    width: 100% !important;
    min-width: 0 !important;
  }

  .search-btn {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  .categ {
    top: auto !important;
    bottom: 24px !important;
    width: 92% !important;
    gap: 10px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 6px !important;
    flex-wrap: nowrap !important;
  }

  .categ a {
    min-width: 96px !important;
  }
}

@media (max-width: 600px) {
  #head1 {
    width: calc(100% - 24px) !important;
    padding: 10px !important;
  }

  #head1 img {
    width: 76px !important;
    max-width: 76px !important;
  }

  #head1 > a.ZasCar,
  #head1 > a:last-child {
    margin-left: 0 !important;
  }

  #head1 ul {
    justify-content: space-between !important;
    gap: 4px !important;
  }

  #head1 ul li {
    flex: 1 1 auto !important;
  }

  #head1 ul li a {
    text-align: center !important;
    padding: 9px 5px !important;
    font-size: 13px !important;
  }

  #hero {
    min-height: 780px !important;
  }

  #hero div h1 {
    top: 25% !important;
    font-size: 34px !important;
  }

  #hero div p {
    top: 35% !important;
    font-size: 15px !important;
  }

  .search-box {
    top: 49% !important;
    grid-template-columns: 1fr !important;
  }

  .categ {
    display: flex !important;
    bottom: 18px !important;
  }

  .categ img {
    width: 48px !important;
    height: 48px !important;
    margin-right: 0 !important;
  }

  .categ h3 {
    font-size: 12px !important;
  }
}

/* ===== ZasCar final fix v6: restore transparent header + original PNG categories ===== */
#head1{
  background: rgba(104,104,104,.42) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.10) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

#head1 ul li a{
  color: #000 !important;
}

#head1 a button{
  box-shadow: none !important;
}

.categ a{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  min-width: auto !important;
}

.categ img{
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 900px){
  #head1{
    background: rgba(104,104,104,.46) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.12) !important;
  }

  #head1 ul{
    border-top: 1px solid rgba(255,255,255,.18) !important;
  }

  #head1 ul li a{
    color: #000 !important;
  }

  .categ a{
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    min-width: 74px !important;
  }
}

@media (max-width: 600px){
  .categ a{
    min-width: 68px !important;
  }
}


/* ===== ZasCar v7: remove Explore button + phone menu + full hero video ===== */
#head1 > a.ZasCar,
#head1 > a:last-child button {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform .25s ease, opacity .25s ease;
}

#hero > div:first-child {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

#hero > div:first-child video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

#hero div h1,
#hero div p {
  z-index: 3 !important;
}

@media (min-width: 901px) {
  #head1 {
    justify-content: flex-start !important;
  }

  #head1 ul {
    margin-left: 250px !important;
  }
}

@media (max-width: 900px) {
  #head1 {
    justify-content: space-between !important;
    align-items: center !important;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
    order: 2 !important;
  }

  #head1 img {
    order: 1 !important;
  }

  #head1 ul {
    order: 3 !important;
    width: 100% !important;
    display: none !important;
    margin: 8px 0 0 !important;
    padding: 10px 0 0 !important;
    border-top: 1px solid rgba(255,255,255,.22) !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  #head1.nav-open ul {
    display: grid !important;
  }

  #head1 ul li {
    width: 100% !important;
  }

  #head1 ul li a {
    width: 100% !important;
    text-align: center !important;
    background: rgba(255,255,255,.18) !important;
  }

  #head1.nav-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #head1.nav-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  #head1.nav-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  #hero {
    height: 100svh !important;
    min-height: 760px !important;
    overflow: hidden !important;
  }

  #hero > div:first-child {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
  }

  #hero > div:first-child video {
    height: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 600px) {
  #head1 {
    width: calc(100% - 22px) !important;
    padding: 10px 12px !important;
  }

  #head1 ul {
    justify-content: initial !important;
  }

  #hero {
    height: 100svh !important;
    min-height: 780px !important;
  }
}

/* ===== ZasCar v8: latest products phone alignment ===== */
.latest-cars{
  width:min(1180px, 92%) !important;
  margin:18px auto 0 !important;
  gap:18px !important;
  align-items:stretch !important;
}
.card-left,
.card-right{
  cursor:pointer;
}
.card-left{
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  margin:20px 0 0 !important;
}
.card-left img{
  height:clamp(330px, 44vw, 560px) !important;
  background:#1f2530 !important;
}
.cr{
  width:100% !important;
  gap:14px !important;
}
.card-right{
  width:100% !important;
  height:auto !important;
  min-height:270px !important;
  display:flex !important;
  flex-direction:column !important;
}
.card-right img{
  height:150px !important;
  background:#1f2530 !important;
}
.card-right ul{
  padding-bottom:14px !important;
}

@media (max-width: 900px){
  .deals-head{
    width:min(720px, 92%) !important;
    margin:26px auto 10px !important;
    padding-left:0 !important;
  }

  .deals-subtitle::after{
    left:0 !important;
  }

  .latest-cars{
    width:min(720px, 92%) !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .card-left,
  .card-right{
    margin:0 !important;
    border-radius:16px !important;
    overflow:hidden !important;
  }

  .card-left img,
  .card-right img{
    height:230px !important;
    object-fit:cover !important;
  }

  .card-left:hover img,
  .card-right:hover img{
    transform:none !important;
    box-shadow:none !important;
  }

  .cr{
    grid-column:auto !important;
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:14px !important;
    margin-top:0 !important;
  }

  .title,
  .title-r{
    font-size:18px !important;
    padding:12px 14px 4px !important;
    line-height:1.25 !important;
  }

  .price-l,
  .price-r{
    font-size:18px !important;
    padding-left:14px !important;
    margin-top:2px !important;
  }

  .card-left ul,
  .card-right ul{
    padding:10px 14px 16px !important;
    gap:8px !important;
  }

  .card-left ul li,
  .card-right ul li{
    font-size:11px !important;
    padding:6px 10px !important;
  }

  .follow-bar{
    width:min(720px, 92%) !important;
    margin:16px auto 0 !important;
  }
}

@media (max-width: 600px){
  .latest-cars{
    width:calc(100% - 24px) !important;
    gap:12px !important;
  }

  .cr{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .card-left,
  .card-right{
    min-height:0 !important;
    box-shadow:0 12px 28px rgba(16,24,40,.12) !important;
  }

  .card-left img,
  .card-right img{
    height:205px !important;
  }

  .title,
  .title-r{
    font-size:17px !important;
  }

  .price-l,
  .price-r{
    font-size:18px !important;
  }

  .follow-bar{
    width:calc(100% - 24px) !important;
    padding:14px !important;
  }
}

/* v8 menu button priority fix */
#head1 .mobile-menu-btn{
  display:none !important;
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  padding:0 !important;
  border:1px solid rgba(255,255,255,.28) !important;
  border-radius:12px !important;
  background:rgba(255,255,255,.16) !important;
  box-shadow:none !important;
  cursor:pointer !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:column !important;
  gap:5px !important;
  margin-left:auto !important;
}
#head1 .mobile-menu-btn span{
  display:block !important;
  width:20px !important;
  height:2px !important;
  padding:0 !important;
  border-radius:999px !important;
  background:#111827 !important;
  transition:transform .25s ease, opacity .25s ease !important;
}
@media (max-width:900px){
  #head1 .mobile-menu-btn{display:inline-flex !important;}
}


/* ===== ZasCar v9 final shared header: same design on index, market, sell, contact ===== */
#head1{
  width:80% !important;
  max-width:1420px !important;
  min-height:76px !important;
  margin:20px auto !important;
  padding:0 22px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:22px !important;
  background:rgba(104,104,104,.42) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:20px !important;
  box-shadow:0 12px 34px rgba(0,0,0,.10) !important;
  backdrop-filter:blur(8px) !important;
  -webkit-backdrop-filter:blur(8px) !important;
  position:relative !important;
  z-index:80 !important;
}

#head1 .logo-home{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:0 0 auto !important;
  width:112px !important;
  min-width:112px !important;
  text-decoration:none !important;
}

#head1 .logo-home img,
#head1 > img{
  width:100% !important;
  max-width:112px !important;
  height:auto !important;
  object-fit:contain !important;
  display:block !important;
}

#head1 ul{
  list-style:none !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:22px !important;
  margin:0 auto !important;
  padding:0 !important;
  flex:0 1 auto !important;
}

#head1 ul li,
#head1 li{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}

#head1 ul li a,
#head1 li a{
  display:block !important;
  padding:10px 0 !important;
  text-decoration:none !important;
  color:#000 !important;
  font-family:Arial, Helvetica, sans-serif !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  background:transparent !important;
  border-radius:0 !important;
}

#head1 ul li.active a,
#head1 li.active a,
#head1 ul li a:hover,
#head1 li a:hover{
  color:#00bf63 !important;
  -webkit-text-fill-color:initial !important;
  text-decoration:underline !important;
  background:transparent !important;
}

#head1 .ZasCar,
#head1 > a:last-child:not(.logo-home),
#head1 button:not(.mobile-menu-btn){
  display:none !important;
}

#head1 .mobile-menu-btn,
.mobile-menu-btn{
  display:none !important;
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  padding:0 !important;
  border:1px solid rgba(255,255,255,.28) !important;
  border-radius:12px !important;
  background:rgba(255,255,255,.16) !important;
  box-shadow:none !important;
  cursor:pointer !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:column !important;
  gap:5px !important;
  margin-left:auto !important;
}

#head1 .mobile-menu-btn span,
.mobile-menu-btn span{
  display:block !important;
  width:20px !important;
  height:2px !important;
  padding:0 !important;
  border-radius:999px !important;
  background:#111827 !important;
  transition:transform .25s ease, opacity .25s ease !important;
}

@media (min-width:901px){
  #head1 ul{
    margin-left:220px !important;
    margin-right:auto !important;
  }
}

@media (max-width:900px){
  #head1{
    width:calc(100% - 22px) !important;
    min-height:auto !important;
    margin:12px auto 0 !important;
    padding:10px 12px !important;
    justify-content:space-between !important;
    align-items:center !important;
    gap:10px !important;
    border-radius:18px !important;
    background:rgba(104,104,104,.46) !important;
  }

  #head1 .logo-home{
    width:76px !important;
    min-width:76px !important;
    order:1 !important;
  }

  #head1 .logo-home img,
  #head1 > img{
    width:76px !important;
    max-width:76px !important;
  }

  #head1 .mobile-menu-btn,
  .mobile-menu-btn{
    display:inline-flex !important;
    order:2 !important;
  }

  #head1 ul{
    order:3 !important;
    width:100% !important;
    display:none !important;
    margin:8px 0 0 !important;
    padding:10px 0 0 !important;
    border-top:1px solid rgba(255,255,255,.22) !important;
    grid-template-columns:1fr !important;
    gap:8px !important;
    flex:initial !important;
  }

  #head1.nav-open ul{
    display:grid !important;
  }

  #head1 ul li,
  #head1 li{
    width:100% !important;
  }

  #head1 ul li a,
  #head1 li a{
    width:100% !important;
    text-align:center !important;
    padding:10px !important;
    border-radius:12px !important;
    background:rgba(255,255,255,.18) !important;
    color:#000 !important;
    text-decoration:none !important;
  }

  #head1 ul li.active a,
  #head1 li.active a,
  #head1 ul li a:hover,
  #head1 li a:hover{
    color:#00bf63 !important;
    background:rgba(255,255,255,.26) !important;
    text-decoration:none !important;
  }

  #head1.nav-open .mobile-menu-btn span:nth-child(1){
    transform:translateY(7px) rotate(45deg) !important;
  }
  #head1.nav-open .mobile-menu-btn span:nth-child(2){
    opacity:0 !important;
  }
  #head1.nav-open .mobile-menu-btn span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg) !important;
  }
}


/* v9 index keeps header over hero like original */
#head1{
  position:absolute !important;
  left:50% !important;
  top:0 !important;
  transform:translateX(-50%) !important;
  margin-top:20px !important;
  margin-left:0 !important;
  margin-right:0 !important;
}
@media(max-width:900px){
  #head1{
    margin-top:12px !important;
  }
}


/* ===== ZasCar V10: latest additions desktop alignment ===== */
@media (min-width:901px){
  .deals-head{
    width:min(1180px, 92%) !important;
    margin:22px auto 18px !important;
    padding-left:0 !important;
  }
  .deals-subtitle::after{
    left:0 !important;
  }
  .latest-cars{
    --showcase-h:clamp(540px, 40vw, 615px);
    width:min(1180px, 92%) !important;
    margin:0 auto 22px !important;
    display:grid !important;
    grid-template-columns:minmax(430px, 1.08fr) minmax(0, .54fr) minmax(0, .54fr) !important;
    gap:18px !important;
    align-items:stretch !important;
  }
  .card-left{
    grid-column:1 / 2 !important;
    height:var(--showcase-h) !important;
    min-height:0 !important;
    width:100% !important;
    margin:0 !important;
    display:flex !important;
    flex-direction:column !important;
    border-radius:10px !important;
    overflow:hidden !important;
  }
  .card-left img{
    height:calc(var(--showcase-h) - 145px) !important;
    min-height:0 !important;
    width:100% !important;
    object-fit:cover !important;
    flex:0 0 auto !important;
  }
  .card-left .title,
  .title{
    font-size:24px !important;
    line-height:1.15 !important;
    padding:12px 20px 2px !important;
    margin:0 !important;
  }
  .price-l{
    font-size:24px !important;
    line-height:1.2 !important;
    padding-left:20px !important;
    padding-bottom:8px !important;
    margin:0 !important;
  }
  .card-left hr{
    flex:0 0 auto !important;
  }
  .card-left ul{
    padding:10px 18px 14px !important;
    margin:0 !important;
    gap:10px !important;
  }
  .card-left ul li{
    font-size:14px !important;
    padding:7px 24px !important;
  }
  .cr{
    grid-column:2 / 4 !important;
    height:var(--showcase-h) !important;
    min-height:0 !important;
    width:100% !important;
    margin:0 !important;
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows:repeat(2, minmax(0, 1fr)) !important;
    gap:18px !important;
    align-content:stretch !important;
  }
  .card-right{
    height:100% !important;
    min-height:0 !important;
    width:100% !important;
    margin:0 !important;
    display:flex !important;
    flex-direction:column !important;
    border-radius:10px !important;
    overflow:hidden !important;
  }
  .card-right img{
    height:42% !important;
    min-height:118px !important;
    width:100% !important;
    object-fit:cover !important;
    flex:0 0 auto !important;
  }
  .title-r{
    font-size:16px !important;
    line-height:1.25 !important;
    padding:10px 14px 3px !important;
    margin:0 !important;
  }
  .price-r{
    font-size:18px !important;
    line-height:1.2 !important;
    padding-left:14px !important;
    padding-bottom:7px !important;
    margin:0 !important;
  }
  .card-right hr{
    width:92% !important;
  }
  .card-right ul{
    margin-top:auto !important;
    padding:10px 12px 12px !important;
    gap:8px !important;
  }
  .card-right ul li{
    font-size:11px !important;
    padding:6px 10px !important;
  }
}
@media (min-width:901px) and (max-width:1150px){
  .latest-cars{
    --showcase-h:auto;
    grid-template-columns:1fr !important;
  }
  .card-left{
    height:auto !important;
  }
  .card-left img{
    height:420px !important;
  }
  .cr{
    grid-column:1 !important;
    height:auto !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
  .card-right{
    height:280px !important;
  }
}


/* ===== ZasCar V10: unified header for PC + phone ===== */
#head1{
  width:min(1420px, 92%) !important;
  min-height:74px !important;
  height:auto !important;
  margin:18px auto !important;
  padding:0 22px !important;
  box-sizing:border-box !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:22px !important;
  background:rgba(104,104,104,.42) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:20px !important;
  box-shadow:0 12px 34px rgba(0,0,0,.10) !important;
  backdrop-filter:blur(8px) !important;
  -webkit-backdrop-filter:blur(8px) !important;
  position:relative !important;
  inset:auto !important;
  transform:none !important;
  z-index:80 !important;
}
#head1 .logo-home{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:0 0 112px !important;
  width:112px !important;
  min-width:112px !important;
  max-width:112px !important;
  text-decoration:none !important;
}
#head1 .logo-home img,
#head1 > img{
  width:100% !important;
  max-width:112px !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
}
#head1 ul{
  list-style:none !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:row !important;
  gap:24px !important;
  margin:0 auto !important;
  padding:0 !important;
  width:auto !important;
  height:auto !important;
  position:static !important;
  inset:auto !important;
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  transform:none !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}
#head1 ul li,
#head1 li{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  width:auto !important;
}
#head1 ul li a,
#head1 li a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:38px !important;
  padding:7px 2px !important;
  color:#070b16 !important;
  font-size:15px !important;
  line-height:1 !important;
  font-weight:700 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
}
#head1 ul li.active a,
#head1 li.active a,
#head1 ul li a:hover,
#head1 li a:hover{
  color:#07111e !important;
  background:transparent !important;
  border-bottom:2px solid #00bf63 !important;
}
#head1 .ZasCar,
#head1 > a:last-child:not(.logo-home),
#head1 button:not(.mobile-menu-btn){
  display:none !important;
}
#head1 .mobile-menu-btn,
.mobile-menu-btn{
  display:none !important;
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  padding:0 !important;
  margin-left:auto !important;
  border:1px solid rgba(255,255,255,.26) !important;
  border-radius:12px !important;
  background:rgba(255,255,255,.18) !important;
  box-shadow:none !important;
  cursor:pointer !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:column !important;
  gap:5px !important;
}
#head1 .mobile-menu-btn span,
.mobile-menu-btn span{
  display:block !important;
  width:20px !important;
  height:2px !important;
  padding:0 !important;
  border-radius:999px !important;
  background:#111827 !important;
  transition:transform .25s ease, opacity .25s ease !important;
}
@media (max-width:900px){
  #head1{
    width:calc(100% - 24px) !important;
    min-height:64px !important;
    margin:12px auto !important;
    padding:10px 12px !important;
    gap:10px !important;
    border-radius:16px !important;
  }
  #head1 .logo-home{
    flex:0 0 88px !important;
    width:88px !important;
    min-width:88px !important;
    max-width:88px !important;
  }
  #head1 .logo-home img,
  #head1 > img{
    width:88px !important;
    max-width:88px !important;
  }
  #head1 .mobile-menu-btn,
  .mobile-menu-btn{
    display:inline-flex !important;
  }
  #head1 ul{
    position:absolute !important;
    top:calc(100% + 8px) !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    margin:0 !important;
    padding:12px !important;
    box-sizing:border-box !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    gap:8px !important;
    background:rgba(18,23,34,.96) !important;
    border:1px solid rgba(255,255,255,.14) !important;
    border-radius:16px !important;
    box-shadow:0 18px 40px rgba(0,0,0,.22) !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transform:translateY(-8px) !important;
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease !important;
    z-index:100 !important;
  }
  #head1.nav-open ul{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    transform:translateY(0) !important;
  }
  #head1 ul li,
  #head1 li{
    width:100% !important;
  }
  #head1 ul li a,
  #head1 li a{
    width:100% !important;
    min-height:42px !important;
    padding:12px 14px !important;
    justify-content:flex-start !important;
    color:#fff !important;
    border-radius:12px !important;
    border-bottom:0 !important;
  }
  #head1 ul li.active a,
  #head1 li.active a,
  #head1 ul li a:hover,
  #head1 li a:hover{
    color:#fff !important;
    background:rgba(0,191,99,.92) !important;
    border-bottom:0 !important;
  }
  #head1.nav-open .mobile-menu-btn span:nth-child(1){
    transform:translateY(7px) rotate(45deg) !important;
  }
  #head1.nav-open .mobile-menu-btn span:nth-child(2){
    opacity:0 !important;
  }
  #head1.nav-open .mobile-menu-btn span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg) !important;
  }
}

/* ===== ZasCar V11: header overlays first video/hero, no separate space ===== */
body{
  overflow-x:hidden !important;
}
#head1{
  width:80% !important;
  max-width:1420px !important;
  min-height:74px !important;
  height:auto !important;
  margin:0 !important;
  padding:0 22px !important;
  box-sizing:border-box !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:22px !important;
  background:rgba(104,104,104,.42) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:20px !important;
  box-shadow:0 12px 34px rgba(0,0,0,.10) !important;
  backdrop-filter:blur(8px) !important;
  -webkit-backdrop-filter:blur(8px) !important;
  position:absolute !important;
  left:50% !important;
  top:20px !important;
  right:auto !important;
  bottom:auto !important;
  transform:translateX(-50%) !important;
  z-index:120 !important;
}
#head1 + #hero,
#head1 + .hero,
#head1 + .market-hero{
  margin-top:0 !important;
}
#head1 .logo-home{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:0 0 112px !important;
  width:112px !important;
  min-width:112px !important;
  max-width:112px !important;
  text-decoration:none !important;
}
#head1 .logo-home img,
#head1 > img{
  width:100% !important;
  max-width:112px !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
}
#head1 ul{
  list-style:none !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:row !important;
  gap:24px !important;
  margin:0 auto !important;
  padding:0 !important;
  width:auto !important;
  height:auto !important;
  position:static !important;
  inset:auto !important;
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  transform:none !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}
#head1 ul li,
#head1 li{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  width:auto !important;
}
#head1 ul li a,
#head1 li a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:38px !important;
  padding:7px 2px !important;
  color:#070b16 !important;
  font-size:15px !important;
  line-height:1 !important;
  font-weight:700 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
}
#head1 ul li.active a,
#head1 li.active a,
#head1 ul li a:hover,
#head1 li a:hover{
  color:#07111e !important;
  background:transparent !important;
  border-bottom:2px solid #00bf63 !important;
}
#head1 .ZasCar,
#head1 > a:last-child:not(.logo-home),
#head1 button:not(.mobile-menu-btn){
  display:none !important;
}
#head1 .mobile-menu-btn,
.mobile-menu-btn{
  display:none !important;
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  padding:0 !important;
  margin-left:auto !important;
  border:1px solid rgba(255,255,255,.26) !important;
  border-radius:12px !important;
  background:rgba(255,255,255,.18) !important;
  box-shadow:none !important;
  cursor:pointer !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:column !important;
  gap:5px !important;
}
#head1 .mobile-menu-btn span,
.mobile-menu-btn span{
  display:block !important;
  width:20px !important;
  height:2px !important;
  padding:0 !important;
  border-radius:999px !important;
  background:#111827 !important;
  transition:transform .25s ease, opacity .25s ease !important;
}
@media (max-width:900px){
  #head1{
    width:calc(100% - 24px) !important;
    min-height:64px !important;
    top:12px !important;
    padding:10px 12px !important;
    gap:10px !important;
    border-radius:16px !important;
  }
  #head1 .logo-home{
    flex:0 0 88px !important;
    width:88px !important;
    min-width:88px !important;
    max-width:88px !important;
  }
  #head1 .logo-home img,
  #head1 > img{
    width:88px !important;
    max-width:88px !important;
  }
  #head1 .mobile-menu-btn,
  .mobile-menu-btn{
    display:inline-flex !important;
  }
  #head1 ul{
    position:absolute !important;
    top:calc(100% + 8px) !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    margin:0 !important;
    padding:12px !important;
    box-sizing:border-box !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    gap:8px !important;
    background:rgba(18,23,34,.96) !important;
    border:1px solid rgba(255,255,255,.14) !important;
    border-radius:16px !important;
    box-shadow:0 18px 40px rgba(0,0,0,.22) !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transform:translateY(-8px) !important;
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease !important;
    z-index:140 !important;
  }
  #head1.nav-open ul{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    transform:translateY(0) !important;
  }
  #head1 ul li,
  #head1 li{
    width:100% !important;
  }
  #head1 ul li a,
  #head1 li a{
    width:100% !important;
    min-height:42px !important;
    padding:12px 14px !important;
    justify-content:flex-start !important;
    color:#fff !important;
    border-radius:12px !important;
    border-bottom:0 !important;
  }
  #head1 ul li.active a,
  #head1 li.active a,
  #head1 ul li a:hover,
  #head1 li a:hover{
    color:#fff !important;
    background:rgba(0,191,99,.92) !important;
    border-bottom:0 !important;
  }
  #head1.nav-open .mobile-menu-btn span:nth-child(1){transform:translateY(7px) rotate(45deg) !important;}
  #head1.nav-open .mobile-menu-btn span:nth-child(2){opacity:0 !important;}
  #head1.nav-open .mobile-menu-btn span:nth-child(3){transform:translateY(-7px) rotate(-45deg) !important;}
}


/* ===== ZasCar V12: INDEX header must sit INSIDE/OVER hero video, not in a white space ===== */
html, body{
  margin:0 !important;
  padding:0 !important;
}
body{
  background:var(--zc-bg,#f5f7fb) !important;
  overflow-x:hidden !important;
}
#hero{
  margin:0 !important;
  padding:0 !important;
  position:relative !important;
  width:100% !important;
  min-height:100vh !important;
  height:100vh !important;
  overflow:hidden !important;
  background:#101828 !important;
}
#hero > div:first-child{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  margin:0 !important;
  padding:0 !important;
  overflow:hidden !important;
}
#hero > div:first-child video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  min-width:100% !important;
  min-height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  z-index:0 !important;
}
#hero #head1{
  position:absolute !important;
  top:20px !important;
  left:50% !important;
  right:auto !important;
  bottom:auto !important;
  transform:translateX(-50%) !important;
  margin:0 !important;
  z-index:60 !important;
}
#hero div h1,
#hero div p,
#hero .search-box,
#hero .categ{
  z-index:10 !important;
}
@media (max-width:900px){
  #hero{
    height:100svh !important;
    min-height:760px !important;
  }
  #hero #head1{
    top:12px !important;
  }
}
@media (max-width:600px){
  #hero{
    height:100svh !important;
    min-height:780px !important;
  }
}
