@charset "UTF-8";
/*
* Prefixed by:
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/


/* Montserrat Regular */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
         url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic.woff2') format('woff2'),
         url('../fonts/Montserrat-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Montserrat Medium */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
         url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Medium Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-MediumItalic.woff2') format('woff2'),
         url('../fonts/Montserrat-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Montserrat SemiBold */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
         url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Montserrat SemiBold Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBoldItalic.woff2') format('woff2'),
         url('../fonts/Montserrat-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Montserrat Bold */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
         url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Bold Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-BoldItalic.woff2') format('woff2'),
         url('../fonts/Montserrat-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Montserrat ExtraBold */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'),
         url('../fonts/Montserrat-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Montserrat ExtraBold Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBoldItalic.woff2') format('woff2'),
         url('../fonts/Montserrat-ExtraBoldItalic.woff') format('woff');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* Montserrat Black */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
         url('../fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Black Italic */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-BlackItalic.woff2') format('woff2'),
         url('../fonts/Montserrat-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
#sort-asc {
  width: 55px;
  height: 32px;
  padding: 0;
}

#sort-asc svg {
  width: 100%;
  height: 100%;
}

.cart-link {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-badge.active {
    opacity: 1;
}

/* Альтернативный вариант с красной точкой (если нужно только индикацию) */
.cart-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff4444;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-dot.active {
    opacity: 1;
}
.container.top.offer {
    padding-top: 10px;
}
.offer p>a{
    color: #228B22;

}
.offer p>a:hover{
 text-decoration: underline;

}
.container.top.offer h2{
    color: #228B22;
}

.highlight {
    color: #228B22;
}

.breadcrumb-item.active{
    color: #228B22;
   

}
.breadcrumb-item a{
    color: #228B22;
    text-decoration: underline;
}

    .filter-container {
        margin-bottom: 20px;
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .search-input {
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        flex-grow: 1;
    }
    
    .filter-btn {
        padding: 8px 16px;
        cursor: pointer;
        background-color: #f0f0f0;
        border: 1px solid #ddd;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .filter-btn:hover {
        background-color: #e0e0e0;
    }
    
    .filter-btn.active {
        background-color: #4CAF50;
        color: white;
    }
    
    .product-card.hidden {
        display: none;
    }
.car-page-adventages{
        
    display: block;
}
.article-car {
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
  margin: 0 auto;
}

.article-car h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgb(34, 139, 34);
}

.article-car h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #8b8c8d;
}

.article-car p {
  margin-bottom: 16px;
  font-size: 16px;
}

.article-car ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.article-car ul li {
  margin-bottom: 8px;
  list-style: disc;
}
.article-car h4{
    color:#228B22;
}
.article-car h5{
    color:#228B22;
}
.article-car h6{
    color:#228B22;
}
.article-car a.link-home {
  color: #0073e6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.article-car a.link-home:hover {
  color: #005bb5;
  text-decoration: underline;
}


.visually-hidden {
  display: none !important;
}


  #search-loader {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 40px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }

  #search-loader.fade-in {
    opacity: 1;
  }

  #search-results.hidden {
    display: none;
  }

  #search-results {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }

  #search-results.visible {
    display: block;
    opacity: 1;
  }

.hidden {
  display: none !important;
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* или любой другой фон */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

           

/* HTML: <div class="loader"></div> */
.loader {
  --d:22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  color: #228B22;
  box-shadow: 
    calc(1*var(--d))      calc(0*var(--d))     0 0,
    calc(0.707*var(--d))  calc(0.707*var(--d)) 0 1px,
    calc(0*var(--d))      calc(1*var(--d))     0 2px,
    calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
    calc(-1*var(--d))     calc(0*var(--d))     0 4px,
    calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
    calc(0*var(--d))      calc(-1*var(--d))    0 6px;
  animation: l27 1s infinite steps(8);
}
@keyframes l27 {
  100% {transform: rotate(1turn)}
}.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: calc($hamburger-layer-height / -2);
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a,
button {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000000;
  cursor: pointer;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  width: min(90%, 1280px);
  margin: 0 auto;
}

body {
  font-family: "Montserrat";
  font-size: 1rem;
  line-height: 1.5;
  background-size: contain;
  background-color: #202020;
  color: #f1f3f4;
}

.page-wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

header {
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  min-height: 54px;
}
header .header-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
background: -webkit-gradient(linear, left bottom, right top, from(rgba(21, 83, 32, 0.98)), to(rgba(229, 231, 225, 0.9)));
  background: -o-linear-gradient(bottom left, rgba(21, 83, 32, 0.98), rgba(229, 231, 225, 0.9));
  background: linear-gradient(to top right, rgba(21, 83, 32, 0.98), rgba(229, 231, 225, 0.9));

  padding: 0px 8px 8px;
  border-bottom: 1px solid #579816;
}
header .header-container .tel ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px;
  gap: 20px;
}
header .header-container .tel ul li a {
  font-weight: 800;
  font-size: 1.2rem;
  color: #252525;
  text-decoration: none !important;
}
header .header-container .tel ul li a:hover {
  text-decoration: underline;
  color: #228B22;
}
header .header-container .social-link ul {
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header-container .social-link ul li {
  margin-top: 8px;
  padding: 1px;
  background-color: #228B22;
  border-radius: 4px;
  padding: 2px;
}
header .header-container .social-link ul li img {
  width: 28px;
  aspect-ratio: 1;
}
header .header-container .social-link ul li:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
header .header-container .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
header .account ul li, header .language ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 8px;
  padding: 1px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .account ul li img, header .language ul li img {
  width: 32px;
  aspect-ratio: 1;
}
header .account ul {
  margin-top: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
header .account ul li {
  padding: 0px;
  margin-left: 5px;
  background-color: #f1f3f4;
  border: 1px solid #228B22;
  border-radius: 4px;
}
header .account ul #cart-button {
  padding: 0;
  border: 1px solid transparent;
  background-color: transparent;
  outline: none;
}
header .nav-container {
  background-color: #228B22;
}
header .nav-container nav ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 8px 0px;
  width: 100%;
  position: relative;
}
header .nav-container nav ul li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .nav-container nav ul li a {
  font-size: 1.1rem;
  letter-spacing: 0rem;
  color: #FFFFFF;
  position: relative;
  font-weight: 800;
  text-decoration: none;
}
header .nav-container nav ul li:hover .submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  visibility: visible;
}
header .nav-container nav ul li .submenu {
  visibility: hidden;
  position: absolute;
  margin-top: 130px;
  z-index: 1001;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  padding-left: 16px;
}
header .nav-container nav ul li .submenu li {
  border: 1px solid #000000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100px;
}
header .nav-container nav ul li .submenu li:hover {
  border: 1px solid #f1f3f4;
}
header .nav-container nav ul li .submenu li a img {
  width: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1;
}
header .nav-container nav ul li .search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .nav-container nav ul li .search-container #search-form {
  vertical-align: baseline;
  text-align: center;
}
header .nav-container nav ul li .search-container #search-form #search-input {
  border: 1px solid #228B22;
  border-radius: 10px;
  padding: 8px;
  font-size: 1rem;
}
header .nav-container nav ul li .search-container #search-form #search-btn {
    width: 33px;
    height: 32px;
    border: none;
    vertical-align: middle;
    /*margin-left: -60px;*/
    background-color: transparent;
    padding: 0px;

}
header .nav-container nav ul li .search-container #search-form #search-btn:hover {
    scale: 1;
    background-color: #589a15;
    border-radius: 50%;
}
header .nav-container nav ul li:hover a img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
header .nav-container nav ul li:hover a {
  text-decoration: underline;
  color: #202020;
}

header.scrolled {
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(21, 83, 32, 0.98)), to(rgba(229, 231, 225, 0.9)));
  background: -o-linear-gradient(bottom left, rgba(21, 83, 32, 0.98), rgba(229, 231, 225, 0.9));
  background: linear-gradient(to top right, rgba(21, 83, 32, 0.98), rgba(229, 231, 225, 0.9));
}
header.scrolled .header-container .tel ul li a {
  color: #252525;
}
header.scrolled .header-container .social-link ul li {
  background-color: #228B22;
  border-radius: 8px;
}
header.scrolled .account ul li {
  background-color: #f1f3f4;
  border-radius: 8px;
  border: 1px solid #228B22;
}

header .account ul li:hover {
  cursor: pointer;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

header .language ul li:hover {
  cursor: pointer;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}


/* Стилі для активної іконки */
.language button.active-language img {
  border: 2px solid #FFFF00;
  border-radius: 8px;
}
main {
  margin-top: 150px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}

.menu-panel {
  position: fixed;
  left: 0;
  top: 0;
  width: 33%;
  height: 100vh;
  background-color: #202020;
  z-index: 1001;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-panel .panel-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #252525;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.menu-panel nav {
  overflow: hidden;
  height: calc(100vh - 100px);
}

ul {
    padding-left: 0rem !important;
}
.mobile-menu-btn{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
     box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
}
.mobile-menu-btn .language ul{
    display: inline-flex;
    gap: 4px;
}
.mobile-menu-btn .language ul li form button {
    outline:none;
    background: transparent;
    border:none;
}
.mobile-menu-btn .language ul li form button img{
    width: 32px;
}
.mobile-menu {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mobile-menu ul {
   padding-left: 0px;
   
}
.mobile-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
 
}
.mobile-menu li .account {
  margin-left: 0px;
}
.mobile-menu li .search-container-m {
  padding:0px;
  margin: 8px;
  box-shadow: 0 8px 12px rgba(240, 235, 235, 0.1);
}
.mobile-menu li .search-container-m #search-form-m {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  height: 25px;
}
.mobile-menu li .search-container-m #search-form-m #search-input-m {
  padding-left: 10px;
  height: 30px;
  margin-right: 0px;
}
#search-btn-m{
    display: inline-flex;
  align-items: center;
  justify-content: center; 
  width: 30px; 
  height: 30px; 
  padding: 0; 
  background-color: #228B22;
  border: 1px solid #228B22;
  border-radius: 4px;
  margin-left: -38px;
}
.mobile-menu a {
  width: 90%;
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 8px;
  margin-bottom: 8px;
  color: #E4E4E4;
  text-decoration: none;
  font-family: "Montserrat Regular";
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.07rem;
}
.mobile-menu .account {
  margin-left: 30px;
}
.mobile-menu .account ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-menu .account ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-menu .account ul li img {
  width: 40px;
  height: 40px;
}

.open-mobile-menu .page-overlay {
  opacity: 10;
  visibility: visible;
}
.open-mobile-menu .menu-panel {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.hamburger-wrap {
  display: none;
}

.hero-screan .container {
  text-align: center;
  padding: 30px;
}

h1 {
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  padding: 30px 0px 0px;
}

#first-section_index .baner-slider {
  margin-top: -200px;
  width: 100%;
}
#first-section_index .baner-slider .lSSlideOuter .lSPager.lSpg {
  display: none;
}
#first-section_index .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#first-section_index .container .first_screan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
#first-section_index .container .first_screan .sidebar_filter {
  top: 180px;
  border-radius: 16px;
  width: 300px;
  left: 50px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #579816;
  position: absolute;
  background-color: #C9CCCD;
 border-radius: 8px;
}
#first-section_index .container .first_screan .sidebar_filter h2 {
  text-align: center;
  color: #000000;
  padding-bottom: 10px;
  font-size: 1.2rem;
  margin-bottom: 0px;
}
#first-section_index .container .first_screan .sidebar_filter form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#first-section_index .container .first_screan .sidebar_filter form select {
  width: 100%;
  cursor: pointer;
  padding-left: 8px;
  padding-top:4px;
  padding-bottom:4px;
  border: 1px solid #228B22;
  border-radius: 8px;
  font-weight: 500;
  color: #252525;
  background-color: #f1f3f4;
  font-size: 1rem;
  letter-spacing: 0rem;
}
#first-section_index .container .first_screan .sidebar_filter form select option {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.autocomplete-items-list{
        margin-top: 70px;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background-color: #228B22;
    z-index: 99;
    width: 62%;
    color: #000;

}
.autocomplete-items-list div {
    padding: 4px 8px;
    cursor: pointer;
    text-align: left;
}
.autocomplete-items-list div:hover {
    background-color: blue;
    color: #fff;
}

.autocomplete-items {
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    top: 200px;
    background-color: #228B22;
    z-index: 99;
    width: 90%;
    color: #000;
}
.autocomplete-items div {
    padding: 4px 8px;
    cursor: pointer;
}
.autocomplete-items div:hover {
    background-color: blue;
    color: #fff;
}

#first-section_index .container .first_screan .sidebar_filter form input {
  width: 100%;
  cursor: pointer;
  padding-left: 8px;
  padding-top:4px;
  padding-bottom:4px;
  border: 1px solid #228B22;
  border-radius: 8px;
  font-weight: 500;
  color: #252525;
  background-color: #f1f3f4;
  font-size: 1rem;
  letter-spacing: 0rem;
}
#first-section_index .container .first_screan .sidebar_filter form input::placeholder {
    color:#252525;
}
#first-section_index .container .first_screan .sidebar_filter form select option:hover {
  border: 1px solid #000000;
  background-color: #7E5AFF;
}
#first-section_index .container .first_screan .sidebar_filter form select:focus {
  background-color: #228B22;
}
#first-section_index .container .first_screan .sidebar_filter #search-sidebar {
  margin-top: 8px;
  width: 100%;
  background-color: #228B22;
  padding: 8px;
  border: 1px solid #228B22;
  border-radius: 8px;
  color: #f1f3f4;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1rem;
  font-size: 0.9rem;
}
#first-section_index .container .first_screan .sidebar_filter #search-sidebar:hover {
  background-color: #252525;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#advantages .container {
  text-align: center;
}
#advantages .container h2 {
  padding-top: 100px;
  padding-bottom: 100px;
  text-transform: uppercase;
}
#advantages .container .lSSlideOuter .lSSlideWrapper.usingCss .lightSlider .lsGrab .lSSlide li {
  height: 700px;
}
#advantages .container .lSSlideOuter .lightSlider > *, #advantages .container .lSSlideOuter .lSGallery li {
  padding: 8px;
  border: 1px solid #579816;
  border-radius: 8px;
  background-color: #4b4b4b;
}
#advantages .container #advantages_slider {
  -webkit-box-shadow: 0 8px 12px rgba(240, 235, 235, 0.1);
  box-shadow: 0 8px 12px rgba(240, 235, 235, 0.1);
  border-radius: 8px;
}
#advantages .container #advantages_slider ul li {
  height: 99%;
}
#advantages .container #advantages_slider ul li .adventages-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #f1f3f4;
  height: inherit;
}
#advantages .container #advantages_slider ul li img {
  width: 220px;
  aspect-ratio: 1;
  margin: 16px auto;
  -o-object-fit: cover;
  object-fit: cover;
}
#advantages .container #advantages_slider ul li .adventages-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-style: italic;
  text-align: center;
  font-weight: 700;
}
#advantages .container .lSSlideOuter .lSPager.lSpg {
  display: none;
}

#news {
  padding-bottom: 150px;
  /* Медиазапросы */
}
#news .container {
  text-align: center;
}
#news .container h2 {
  padding-top: 144px;
  color: #FFFFFF;
  margin-bottom: 85px;
  position: relative;
  text-transform: uppercase;
}
#news .container #news_slider .news-slider-container #news-slider {
  height: 100%;
  margin-bottom: 100px;
  -webkit-box-shadow: 0 8px 12px rgba(240, 235, 235, 0.1);
  box-shadow: 0 8px 12px rgba(240, 235, 235, 0.1);
  border-radius: 8px;
}
#news .container #news_slider .news-slider-container #news-slider li {
  height: 550px;
}
#news .container #news_slider .news-slider-container #news-slider li .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
 .slide-top {
  margin-bottom: 8px;
  margin-bottom: 8px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;

}
.slide-top a {
  color: #228B22;
  font-weight: 600;
}
.slide-top a img {
  width: 150px;
}
.slide .title {
  color: #228B22;
  font-weight: 600;
  padding-bottom: 8px;
  padding-left: 4px;
  padding-right: 4px;
}
 .slide .vehicle-details {
  text-align: left;
  color: #f1f3f4;
  padding-bottom: 16px;
}
.slide .vehicle-details .vehicle-details-item{
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
}
#news .container #btn-news a {
  -webkit-box-shadow: 0 8px 12px rgba(240, 235, 235, 0.1);
  box-shadow: 0 8px 12px rgba(240, 235, 235, 0.1);
  padding: 10px 20px;
  color: #f1f3f4;
  background-color: #228B22;
  border: 1px solid #888;
  border-radius: 10px;
}
#news .container #btn-news a:hover {
  background-color: #f1f3f4;
  color: #228B22;
  scale: 1.1rem;
}
#news .lSPager.lSpg {
  width: 0;
  height: 0;
}
#news .lSSlideOuter .lightSlider > *,
#news .lSSlideOuter .lSGallery li {
  padding: 16px;
  border: 1px solid #579816;
  border-radius: 8px;
  background-color: #4b4b4b;
}
#news .lSSlideWrapper .lSSlideOuter .lSPager.lSpg > li a {
  display: none;
}
@media (max-width: 1024px) {
  #news #news-slider {
    height: 500px;
  }
  #news #news-slider li {
    height: 450px;
  }
  #news #news-slider li .slide .image-gallery a > img {
    width: 150px;
  }
  #news h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  #news {
    padding-bottom: 100px;
  }
  #news h2 {
    padding-top: 100px;
    margin-bottom: 60px;
    font-size: 28px;
  }
  #news #news-slider {
    height: 400px;
  }
  #news #news-slider li {
    height: 350px;
  }
  #news #news-slider li .slide .image-gallery a > img {
    width: 120px;
  }
  #news #btn-news a {
    font-size: 14px;
    padding: 8px 16px;
  }
}
@media (max-width: 480px) {
  #news {
    padding-bottom: 80px;
  }
  #news h2 {
    font-size: 24px;
  }
  #news #news-slider {
    height: 300px;
  }
  #news #news-slider li {
    height: 250px;
  }
  #news #news-slider li .slide .image-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #news #news-slider li .slide .image-gallery a > img {
    width: 100px;
  }
  #news #btn-news a {
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 350px) {
  #news {
    padding-bottom: 60px;
  }
  #news h2 {
    font-size: 20px;
    padding-top: 80px;
    margin-bottom: 40px;
  }
  #news #news-slider {
    height: 250px;
  }
  #news #news-slider li {
    height: 200px;
  }
  #news #news-slider li .slide .image-gallery a > img {
    width: 80px;
  }
  #news #btn-news a {
    font-size: 10px;
    padding: 4px 8px;
  }
}

#feedback_form #exampleInputName .is-invalid {
  border: 2px solid red;
}

#feedback_form #exampleInputTel .is-invalid {
  border: 2px solid red;
}

.is-invalid {
  border: 2px solid red !important;
}

footer {
  border-top: 1px solid #579816;
  border-bottom: 1px solid #888;
  padding-top: 50px;
  padding-bottom: 20px;
  z-index: 1;
  position: relative;
}
footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  grid-template-rows: 1fr;
  gap: 30px;
}
footer .container .schedule .work-time {
  padding-bottom: 20px;
}
footer .container .schedule .work-time .time {
  padding-bottom: 8px;
}
footer .container .schedule .work-time .work-time-title {
  color: #888;
  padding-bottom: 8px;
}
footer .container .schedule .work-time img {
  width: 24px;
  aspect-ratio: 1;
  margin-right: 8px;
}
footer .container .pay-location .pay {
  padding-bottom: 20px;
}
footer .container .pay-location .pay .pay-title {
  color: #888;
  padding-bottom: 8px;
}
footer .container .pay-location .location .location-title {
  color: #888;
  padding-bottom: 10px;
}
footer .container .pay-location .location img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
footer .container .pay-location .location a {
  color: #fafafa;
}
footer .container .pay-location .location a:hover {
  text-decoration: underline;
}
footer .container .form-footer .text-form {
  font-size: 1rem;
  line-height: 1rem;
  padding-bottom: 20px;
}
footer .container #feedback_form {
  width: 100%;
}
footer .container #feedback_form input {
  width: 100%;
  margin-bottom: 20px;
  padding: 8px;
  border-radius: 8px;
  border: 2px solid #228B22;
  outline: 1px solid transparent;
}
footer .container #feedback_form input:focus {
  border: 2px solid #55B7FF;
}
footer .container #feedback_form .btn-primary {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #228B22;
  border: none;
  border-radius: 8px;
  color: #f1f3f4;
  font-weight: 600;
  text-transform: uppercase;
}
footer .container #feedback_form .btn-primary:hover {
  transform: scale(1.123);
  background-color: #fff;
  color: #228B22;
}

.footer-menu {
  text-align: center;
}
.footer-menu .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-menu .container .footer-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.footer-menu .container .footer-links .f-link {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-menu .container .footer-links .f-link a {
  font-size: 0.83rem;
  color: #8b8c8d;
}
.footer-menu .container .footer-links .f-link a:hover {
  color: #589a15;
}

#lightSlider li {
  padding: 0px;
  border-left: none;
  border-right: none;
}

#search-res {
  text-align: center;
}
#search-res .container .btn-res {
  padding: 24px 40%;
}
#search-res .container .btn-res .load-more-search {
  background-color: #228B22;
  color: #f1f3f4;
  font-size: 1.125rem;
  padding: 16px 24px;
  border: 1px solid #888;
  border-radius: 8px;
}
#search-res .container .btn-res .load-more-search:hover {
  scale: 1.1;
  color: #228B22;
  background-color: #f1f3f4;
}
#search-res .container .search-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#search-res .container .search-results .product-card {
  border: 1px solid #228B22;
  border-radius: 8px;
  padding: 15px;
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
 justify-content: space-between;
}
#search-res .container .search-results .product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 16px;
}
#search-res .container .search-results .product-card h3 {
  margin: 10px 0;
  font-size: 1rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#search-res .container .search-results .product-card p {
  margin: 10px 0;
  font-size: 1rem;
  color: #589a15;
}
#search-res .container .search-results .product-card .product_btn, #search-res .container .search-results .product-card .btn-cart {
  text-align: center;
}
#search-res .container .search-results .product-card .product_btn a, #search-res .container .search-results .product-card .btn-cart a {
  display: inline-block;
  padding: 12px 47px;
  background-color: #f1f3f4;
  color: #228B22;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
#search-res .container .search-results .product-card .product_btn a:hover, #search-res .container .search-results .product-card .btn-cart a:hover {
  background-color: #589a15;
  color: #f1f3f4;
}
#search-res .container .search-results .product-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.green{
    color: #589a15 !important;
}
.center{
    text-align: center !important;
}
.contacts-block {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: left;
}
.contacts-block .contacts-item {
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding-top: 16px;
  padding-left: 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px;
}
.contacts-block .contacts-item .contacts-title {
  color: #228B22;
  margin-bottom: 70px;
  font-weight: 600;
  text-align: center;
}
.contacts-block .contacts-item .contacts-text ul {
  list-style: circle;
  padding-left: 16px;
}

#map {
  height: 500px;
  width: 100%; 
  margin: 0 auto; 
  overflow: hidden; 
  position: relative;
}
#map iframe {
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  width: 100%;  /* Занимает 100% ширины родителя */
  height: 100%; /* Занимает 100% высоты родителя */
  border: none; /* Убирает стандартную рамку */
}

#content {
  padding-bottom: 100px;
}
#content h1 {
  padding: 32px;
}
.deliveri-table .flex-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-collapse: collapse;
}
.flex-table {
      margin-bottom: 100px;
  
}
.flex-table-row {
    display: flex;
}

.flex-table-header {
    font-weight: bold;
    text-transform: uppercase;
}

.flex-table-cell {
    flex: 1;
    padding: 10px;
    text-align: left;
        border: 1px solid #ddd;

}

.price {
    text-align: right;
    font-weight: bold;
        border: 1px solid #ddd;

}






#content .flex-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 80%;
  border: 1px solid #ddd;
  margin: 0 auto;
}
#content .flex-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#content .flex-table-header {
  font-weight: 700;
  background-color: #228B22;
}
#content .flex-table-cell {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 8px;
  border: 1px solid #888;
}
#content .price {
  text-align: right;
}

.delivery_payment_title {
  color: #228B22;
  font-weight: 700;
  text-align: center;
  margin: 32px auto;
  font-size: 1.2rem;
}

.payment {
  border: none;
}

.hero-returns {
  padding-bottom: 32px;
}
.hero-returns .container {
  padding-bottom: 32px;
}
.hero-returns .container h1 {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.guarantees {
  text-align: center;
  font-size: 1.1rem;
  color: #228B22;
  padding-bottom: 32px;
  font-weight: 600;
}

.guarantees-item {
  padding-bottom: 16px;
}

.guarantees-weight {
  font-weight: 600;
  color: #589a15;
}

.guarantees-list {
  padding: 26px 0 16px;
}
.guarantees-list li {
  list-style-type: " ✔ ";
}

.guarantees-importantly {
  color: #228B22;
  padding-bottom: 16px;
  font-weight: 700;
}

#returns {
  text-align: left;
  padding-bottom: 50px;
}
#returns ul li {
  list-style-type: " ✦ ";
}

.name-section {
  padding-bottom: 32px;
}

#cars-table {
  margin-bottom: 100px;
}
#cars-table .preorder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #f1f3f4;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 0;
}
#cars-table .preorder:hover {
  font-weight: 700;
  background-color: #202020;
}
#cars-table .preorder:hover a {
  color: #f1f3f4;
}
#cars-table .preorder .cars-title {
  padding: 16px;
  color: #589a15;
  text-decoration: underline;
  padding-left: 40px;
  color: #589a15;
  text-decoration: underline;
  transition: all 0.5s ease;
  font-weight: 600;
}
#cars-table .preorder button {
  margin: 10px;
  padding: 10px 20px;
  background-color: #228B22;
  border: 1px solid #888;
  border-radius: 10px;
  color: #f1f3f4;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
#cars-table .preorder button:hover {
  transform: scale(1.2);
  background-color: #f1f3f4;
  color: #228B22;
}
#cars-table .car-deteils {
  border: 1px solid #f1f3f4;
  justify-content: space-between;
   border-radius: 8px;
}
#cars-table .car-deteils .car-images{
display: flex;
flex-direction: row;
width: 100%;
flex-wrap: wrap;
gap:8px;
justify-content: space-evenly;
}
#cars-table .car-deteils .car-images img{
object-fit: contain;
min-width:100px;
max-width:200px;
}
#cars-table .car-deteils h3 {
  padding: 20px;
  font-size: 1.125rem;
}
#cars-table .car-deteils ul {
  display: flex;
  flex-direction: column;
  margin-left:16px;
}
#cars-table .car-deteils ul li {
  display: flex;
  transition: all 0.5s ease;
  gap: 10px;
}
#cars-table .car-deteils ul li .cardeteils-item {
  color: #228B22;
  font-weight: 600;
 
}

.messages {
  background-color: #228B22;
  padding: 36px;
  text-align: center;
}

.accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
}
.accordion-content .car-deteils {
  width: 40%;
  height: 100%;
}
.accordion-content .car-deteils h3 {
  color: #f1f3f4;
  padding-bottom: 20px;
}
.accordion-content .car-deteils ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.accordion-content .car-deteils ul li .cardeteils-item {
  color: #228B22;
  font-weight: 600;
}
.accordion-content #car-slider {
  width: 70%;
  height: 100%;
}
.accordion-content #car-slider .image-slider .lSSlideWrapper.usingCss {
  height: 510px !important;
}
.accordion-content #car-slider .image-slider li {
  margin-bottom: 5px;
}
.preorder-container{
    padding-top: 50px;
}



.modal,
.overlay-feedback-modal {
  display: none;
}

.modal.active,
.overlay-feedback-modal.active {
  display: block;
}

.modal.active {
  display: block;
}

.overlay.active {
  display: block;
}

.overlay-feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

#car-order-modal{
 width: 100%;
  height: 100%;
}


#car-modal  #car-order-modal .modal-content {
  background-color: #8b8c8d;
  z-index: 1000;
}
#car-modal  #car-order-modal .modal-content .car-order-header {
  text-align: center;
  padding: 16px 30px;
  border-bottom: 1px solid #228B22;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#car-modal  #car-order-modal .modal-content .car-order-header .car-order-title {
  text-transform: uppercase;
  color: #f1f3f4;
  font-weight: 700;
  margin: 0 auto;
  font-size: 1.1rem;
  margin-top: 16px;
}
#car-modal  #car-order-modal .modal-content .car-order-header .close-feedback {
  background-color: #228B22;
  padding: 8px 14px;
  border-radius: 5px;
}
#car-modal   #car-order-modal .modal-content .car-order-header .close-feedback:hover {
  background-color: #00FF7F;
}
#car-modal  #car-order-modal .modal-content #car-order-form_cars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 24px 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}
#car-modal   #car-order-modal .modal-content #car-order-form_cars .btn {
  background-color: transparent;
  padding: 0;
}
#car-modal  #car-order-modal .modal-content #car-order-form_cars input, #car-modal .container #car-order-modal .modal-content #car-order-form_cars #comments {
  width: 95%;
  padding: 5px 0px 5px 8px;
  border-radius: 5px;
}
#car-modal   #car-order-modal .modal-content #car-order-form_cars input:focus, #car-modal .container #car-order-modal .modal-content #car-order-form_cars #comments:focus {
  border: #228B22;
}
#car-modal   #car-order-modal .modal-content #car-order-form_cars #comments {
  width: 95%;
  height: 100px;
}
#car-modal   #car-order-modal .modal-content #car-order-form_cars #btn-cars-order {
  background-color: #228B22;
  padding: 10px 20px;
  border: 1px solid #888;
  border-radius: 10px;
  color: #f1f3f4;
  text-transform: uppercase;
}
#car-modal   #car-order-modal .modal-content #car-order-form_cars #btn-cars-order:hover {
  background-color: #f1f3f4;
  color: #228B22;
}

.modal.active, #feedback-modal {
  z-index: 10000;
}

.hidden {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: block;
}

.hidden {
  display: none;
}

#cartModal {
  width: 100%;
}
#cartModal .modal-content {
  text-align: center;
  padding: 16px;
}
#cartModal .modal-content h3 {
  color: #202020;
}
#cartModal .modal-content .modal-buttons {
  margin-top: 15px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#cartModal .modal-content .modal-buttons #continueShopping {
  background-color: #228B22;
  color: white;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border: 1px solid #f1f3f4;
}
#cartModal .modal-content .modal-buttons #continueShopping:hover {
  background-color: #252525;
  scale: 1.1;
}
#cartModal .modal-content .modal-buttons #checkout {
  background-color: #f1f3f4;
  color: #202020;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
#cartModal .modal-content .modal-buttons #checkout:hover {
  background-color: #589a15;
  border: 1px solid #f1f3f4;
  scale: 1.1;
}
#cartModal .modal-content .modal-buttons button {
  margin: 5px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 8px;
}

fieldset {
  border: none;
}

#cart-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

#cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 32px;
   margin-bottom: 24px;
}
#cart #cartItem{
    width: 100%;
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  padding: 16px;
  margin-bottom: 8px;
  flex-direction: column;
}
#cart #cartItems {
  padding-top: 16px;
  width: 100%;
}
#cart #cartItems .cart-item {
   display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
 margin-bottom:16px;

  
}
#cart #cartItems .cart-item .cart-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
#cart #cartItems .cart-item .cart-controls button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: transparent;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#cart #cartItems .cart-item .cart-controls button:hover {
  scale: 1.1;
}
#cart #cartItems .cart-item .cart-list {
  width: 250px;
}
#cart #cartItems .cart-item .cart-list .cart_item_tile {
  font-weight: 700;
  color: #228B22;
}
#cart #cartItems .cart-item .cart-list .cart_item_price {
  font-weight: 800;
  font-size: 1.1rem;
  padding: 8px;
}

.btn-send {
  width: 100%;
  text-align: center;
  padding-bottom: 100px;
}
.btn-send #sendToTelegram {
  padding: 8px 16px;
  background-color: #228B22;
  width: 20%;
  font-size: 1.3rem;
  border: 1px solid #8b8c8d;
  border-radius: 8px;
}
.btn-send #sendToTelegram:hover {
  scale: 1.1;
  background-color: #f1f3f4;
}

.cart-data {
  padding: 16px;
  width: 50%;
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  margin: 32px;
}
.cart-data .contacts-cart, .cart-data .delivery-cart, .cart-data .payment-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cart-data .contacts-title, .cart-data .delivery-cart-title, .cart-data .payment-cart-title {
  width: 100%;
  color: #228B22;
  font-weight: 700;
}
.cart-data .contacts-cart form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cart-data .contacts-cart form .form-contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 45%;
  padding: 16px;
}
.cart-data .contacts-cart form .form-contacts-item input {
  padding: 8px;
  border-radius: 8px;
  outline: none;
  border: 2px solid #589a15;
  width: 100%;
}
.cart-data .delivery-cart, .cart-data .payment-cart {
  padding: 16px;
}
.cart-data .delivery-cart .delivery-cart-title, .cart-data .payment-cart .delivery-cart-title {
  padding: 16px;
}
.cart-data .delivery-cart form fieldset, .cart-data .payment-cart form fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}
.cart-data .delivery-cart #novaPostDepartment {
  border-top: 1px solid #8b8c8d;
  padding-top: 16px;
  width: 500px;
}
.cart-data .delivery-cart #novaPostDepartment #cityInput, .cart-data .delivery-cart #novaPostDepartment #department {
  width: 500px;
}
.cart-data .delivery-cart #novaPostDepartment #cityInput, .cart-data .delivery-cart #departmentInput, .cart-data .delivery-cart #addressCityInput, .cart-data .delivery-cart #addressStreetInput, .cart-data .delivery-cart #addressHouseInput, .cart-data .delivery-cart #addressApartmentInput {
  color: #000000;
  border-radius: 8px;
  border: 1px solid #228B22;
  margin-bottom: 16px;
}
.cart-data .delivery-cart #novaPostDepartment #cityInput::-webkit-input-placeholder, .cart-data .delivery-cart #departmentInput::-webkit-input-placeholder, .cart-data .delivery-cart #addressCityInput::-webkit-input-placeholder, .cart-data .delivery-cart #addressStreetInput::-webkit-input-placeholder, .cart-data .delivery-cart #addressHouseInput::-webkit-input-placeholder, .cart-data .delivery-cart #addressApartmentInput::-webkit-input-placeholder {
  color: #202020;
}
.cart-data .delivery-cart #novaPostDepartment #cityInput::-moz-placeholder, .cart-data .delivery-cart #departmentInput::-moz-placeholder, .cart-data .delivery-cart #addressCityInput::-moz-placeholder, .cart-data .delivery-cart #addressStreetInput::-moz-placeholder, .cart-data .delivery-cart #addressHouseInput::-moz-placeholder, .cart-data .delivery-cart #addressApartmentInput::-moz-placeholder {
  color: #202020;
}
.cart-data .delivery-cart #novaPostDepartment #cityInput:-ms-input-placeholder, .cart-data .delivery-cart #departmentInput:-ms-input-placeholder, .cart-data .delivery-cart #addressCityInput:-ms-input-placeholder, .cart-data .delivery-cart #addressStreetInput:-ms-input-placeholder, .cart-data .delivery-cart #addressHouseInput:-ms-input-placeholder, .cart-data .delivery-cart #addressApartmentInput:-ms-input-placeholder {
  color: #202020;
}
.cart-data .delivery-cart #novaPostDepartment #cityInput::-ms-input-placeholder, .cart-data .delivery-cart #departmentInput::-ms-input-placeholder, .cart-data .delivery-cart #addressCityInput::-ms-input-placeholder, .cart-data .delivery-cart #addressStreetInput::-ms-input-placeholder, .cart-data .delivery-cart #addressHouseInput::-ms-input-placeholder, .cart-data .delivery-cart #addressApartmentInput::-ms-input-placeholder {
  color: #202020;
}
.cart-data .delivery-cart #novaPostDepartment #cityInput::placeholder, .cart-data .delivery-cart #departmentInput::placeholder, .cart-data .delivery-cart #addressCityInput::placeholder, .cart-data .delivery-cart #addressStreetInput::placeholder, .cart-data .delivery-cart #addressHouseInput::placeholder, .cart-data .delivery-cart #addressApartmentInput::placeholder {
  color: #202020;
}
.cart-data .delivery-cart #novaPostDepartment #department {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #228B22;
}
.cart-data .delivery-cart #addressDelivery {
  width: 500px;
}

.addressDeliveryScrean {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.addressDeliveryScrean input {
  padding: 8px;
  width: 100%;
}

#addressDelivery .delivery-option.hidden {
  display: none !important;
}

.suggestions {
  list-style-type: none;
  padding: 0;
  margin-top: -15px;
  overflow-y: auto;
  position: absolute;
  background-color: #589a15;
  z-index: 1000;
  width: 500px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.suggestions li {
  padding: 10px;
  cursor: pointer;
}

.suggestions li:hover {
  background-color: #8b8c8d;
}

/* Адаптивность: уменьшение размера окна на маленьких экранах */
@media (max-width: 600px) {
  .modal-content {
    width: 90%;
    padding: 15px;
  }
}
#news-accordion {
  padding-bottom: 100px;
}
.news-list{
    margin-bottom:100px;
}
.news-item {
  margin-bottom: 15px;
}
.news-item:hover .news-header{
  background-color: white;
}
.accordion-title {
  background-color: #888;
  cursor: pointer;
  padding: 10px;
  border: 1px solid #589a15;
  border-radius: 8px;
  margin-bottom: 0px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.accordion-title:hover {
  background-color: #228B22;
}

.accordion-content {
  border: 1px solid #ccc;
   border-radius: 8px;
  padding: 10px;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 30px;
}
.gallery img {
  width: 200px;
  height: auto;
  margin-right: 5px;
}

.vehicle-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.vehicle-info .news-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #228B22;
}

.catalog-avto {
  padding: 42px 0px;
  margin-bottom: 42px;
}
.catalog-avto .container {
  text-align: center;
}
.catalog-avto .container h2 {
  margin-bottom: 42px;
  text-transform: uppercase;
}
.catalog-avto .container .catalog .catalog-list {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding-left: 0px;
}
.catalog-avto .container .catalog .catalog-list li {
  -webkit-transition: border 0.5s ease;
  -o-transition: border 0.5s ease;
  transition: border 0.5s ease;
}
.catalog-avto .container .catalog .catalog-list li img {
  width: 145px;
  aspect-ratio: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.catalog-avto .container .catalog .catalog-list li:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  border: 1px solid #f1f3f4;
  z-index: 100;
}
.container .load-more-container{
  text-align: center;
    padding: 16px;
  
}
 #load-more {
  padding: 8px 16px;
  border: 2px solid #228B22;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 1.125rem;
  color: #252525;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.load-more-container #load-more:hover {
  color: #f1f3f4;
  background-color: #589a15;
}
.catalog_zapchast .container {
  text-align: center;
}
.container .load-more {
  padding: 8px 16px;
  border: 2px solid #228B22;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 1.125rem;
  color: #252525;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.catalog_zapchast .container .load-more:hover {
  color: #f1f3f4;
  background-color: #589a15;
}

.product-list {
  padding-top: 100px;
  padding-bottom: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-card {
  width: 24%;
  border: 1px solid #228B22;
  border-radius: 8px;
  padding: 15px;
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
justify-content: space-between;
}
/* Затемнення для недоступних товарів */
.product-card:not(.status-in_stock) {
  opacity: 0.6;  /* Значення від 0.1 до 0.7 за вашим вибором */
  filter: grayscale(30%);  /* Додатковий ефект "вицвітання" */
}

/* Повна яскравість тільки для товарів в наявності */
.product-card.status-in_stock {
  opacity: 1;
  filter: grayscale(0%);
  
}
.status-badge{
    position: absolute;
    top: 4px;
    left: 4px;
    text-align:left;
    margin-bottom: 8px;
    padding: 4px;
    border-radius: 4px;
    
}
.product-status-badge{
    padding: 4px;
}
.product-status-badge.status-in_stock {
    background: linear-gradient(90deg, rgb(32, 32, 32) 0%, rgb(32, 32, 32) 50%, rgb(34, 139, 34) 100%);
    padding: 4px;
    color: #fff;
    border-radius: 4px;
    text-align: right;
}

.status-badge.status-in_stock {
    background: #228B22;
    background: linear-gradient(90deg, rgba(34, 139, 34, 1) 0%, rgba(32, 32, 32, 1) 50%, rgba(32, 32, 32, 1) 100%);
    padding: 4px;
    color: #fff;
    border-radius: 4px;
}

.status-badge:not(.status-in_stock) {
    background: #202020;
    background: linear-gradient(261deg, rgba(32, 32, 32, 1) 0%, rgba(82, 23, 11, 1) 50%, rgba(82, 23, 11, 1) 100%);
    color: #fff;
}

.product-status-badge:not(.status-in_stock) {
    background: #202020;
    background: linear-gradient(90deg, rgba(32, 32, 32, 1) 0%, rgba(32, 32, 32, 1) 50%, rgba(82, 23, 11, 1) 100%);
    color: #fff;
    text-align: right;
}
.product-card img {
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}
.product-card h3 {
  margin: 10px 0;
  font-size: 1rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.product-card p {
  margin: 10px 0;
  font-size: 1rem;
  color: #589a15;
}
.product-card .product_btn {
  text-align: center;
}
.product-card .product_btn a {
  padding-top: 16px;
  padding-bottom: 16px;
  width: 90%;
  background-color: #f1f3f4;
  color: #228B22;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
.product-card .product_btn a:hover {
  background-color: #589a15;
  color: #f1f3f4;
}
.product-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-cart {
  padding-bottom: 16px;
}
.btn-cart .add-to-cart {
  border: 1px solid #f1f3f4;
  background: #228B22;
  padding: 4px 28px;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-cart .add-to-cart:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  background-color: #589a15;
  border: 1px solid #228B22;
  
}
.add-to-cart:hover:not(:disabled) {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  background-color: #589a15;
  border: 1px solid #fff;
}

.btn-cart .product_btn {
  margin-top: 16px;
}
.top{
    margin-top: 130px;
}
.product-section .container .delivery {
  border: none;
}
.product-section .container .delivery .delivery-name {
  text-align: center;
  font-weight: 700;
  padding-bottom: 32px;
  font-size: 1.2rem;
}
.product-section .container .delivery ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 8px;
  border: 1px solid #888;
}
.product-section .container .delivery ul li .delivery-title {
  color: #228B22;
  font-weight: 600;
}

.info-block {
  padding: 32px 0;
  margin-bottom: 74px;
  background-color: #202020;
  -webkit-box-shadow: 0 8px 12px rgba(240, 235, 235, 0.1);
  box-shadow: 0 8px 12px rgba(240, 235, 235, 0.1);
}
.info-block .info-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.info-block .info-header .info-tab {
  background-color: #4B5562;
  width: 23%;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 1px solid #8b8c8d;
  border-radius: 8px;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.info-block .info-header .info-tab:hover {
  background-color: #589a15;
}
.info-block .deteils-info, .info-block .analog-info {
  padding: 16px;
}
.info-block .guarantees-info {
  padding-top: 32px;
}
.info-block .deteils-info .opysanye {
  padding-top: 16px;
  font-size: 1.3rem;
}

.info-content {
  display: none;
}

.info-content.active {
  display: block;
}

.info-block .info-header .info-tab.active {
    font-weight: 800;
    color: #fff;
    background-color: #228B22;
}


.catalog_mark_avto .hero-screan {
  padding-top: 42px;
}
.catalog_mark_avto .hero-screan .container h2 {
  padding-bottom: 42px;
}
.catalog_mark_avto .hero-screan .container .catalog {
  margin-bottom: 42px;
}
.catalog_mark_avto .hero-screan .container .catalog .catalog-list {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
.catalog_mark_avto .hero-screan .container .catalog .catalog-list li {
  -webkit-transition: border 0.5s ease;
  -o-transition: border 0.5s ease;
  transition: border 0.5s ease;
}
.catalog_mark_avto .hero-screan .container .catalog .catalog-list li img {
  width: 145px;
  aspect-ratio: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.catalog_mark_avto .hero-screan .container .catalog .catalog-list li:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  border: 1px solid #f1f3f4;
  z-index: 100;
}

.hero-screan .container .catalog {
  margin-bottom: 42px;
}
.hero-screan .container .catalog .catalog-list {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
.hero-screan .container .catalog .catalog-list li {
  -webkit-transition: border 0.5s ease;
  -o-transition: border 0.5s ease;
  transition: border 0.5s ease;
}
.hero-screan .container .catalog .catalog-list li img {
  width: 145px;
  aspect-ratio: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.hero-screan .container .catalog .catalog-list li:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  border: 1px solid #f1f3f4;
  z-index: 100;
}

#first-section {
  padding-bottom: 64px;
}
#first-section h1 {
  text-align: center;
  margin-bottom: 20px;
}
#first-section .cars-catalog-container {
  background-color: #252525;
  -webkit-box-shadow: 8px 8px 16px rgba(240, 235, 235, 0.1);
  box-shadow: 8px 8px 16px rgba(240, 235, 235, 0.1);
  border-radius: 8px;
}
#first-section .container-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
#first-section .container-catalog .accordion-catalog {
  width: 20%;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}
#first-section .container-catalog .accordion-catalog .accordion-item {
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
}
#first-section .container-catalog .accordion-catalog .accordion-item .accordion-header .accordion-button {
  width: 100%;
  padding: 15px;
  text-align: left;
  background-color: #228B22;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
#first-section .container-catalog .accordion-catalog .accordion-item .accordion-header .accordion-button:hover {
  background-color: #589a15;
}
#first-section .accordion-content-catalog {
  display: none;
  background-color: #202020;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#first-section .accordion-content-catalog .accordion-body ul {
  border: 1px solid #fff;
  padding-left: 0px;
}
 
#first-section .accordion-content-catalog .accordion-body ul li a{
color: #fff;
font-weight: 600;
 padding: 4px;
}

#first-section .accordion-content-catalog .accordion-body ul li:hover {
  background-color: #888;
}
#first-section .accordion-content-catalog p {
  padding: 2px 8px;
}
#first-section .accordion-content-catalog p:hover {
  background-color: #4B5562;
  cursor: pointer;
}
#first-section .accordion-content-catalog.active {
  display: block;
}

.first_screan_catalog {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  background-color: #252525;
  -webkit-box-shadow: 8px 8px 16px rgba(240, 235, 235, 0.1);
  box-shadow: 8px 8px 16px rgba(240, 235, 235, 0.1);
  border-radius: 8px;
}
.first_screan_catalog .sidebar {
  padding: 8px;
}
.first_screan_catalog .sidebar h4 {
  text-align: center;
  padding-bottom: 16px;
  color: #228B22;
}
.first_screan_catalog .sidebar form#search-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.first_screan_catalog .sidebar form#search-product select, .first_screan_catalog .sidebar form#search-product input {
  padding: 8px;
  border: 1px solid #228B22;
  border-radius: 4px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(25% - 10px);
  flex: 1 1 calc(25% - 10px);
  /* 4 элемента в строке с учетом отступов */
  min-width: 150px;
  /* Минимальная ширина для мобильных */
}
.first_screan_catalog .sidebar form#search-product #search-sidebar-catalog {
  padding: 12px;
  background-color: #228B22;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.pdf {
  list-style: decimal;
}
.pdf li {
  text-align: left;
  color: #228B22;
  padding-bottom: 16px;
}
.pdf li a {
  color: #228B22;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pdf li a:hover {
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: 600;
}

.cars-catalog-container {
  width: 80%;
}

#cars-catalog {
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
#cars-catalog a {
  width: 24%;
}
#cars-catalog .car-card {
  background-color: #262424;
  border: 2px solid #228B22;
  border-radius: 8px;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #228B22;
  height: 100%;
  transition: all 0.8s ease;

}
#cars-catalog .car-card .car-card-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-grow: 1;
  margin: 0 auto;
}
#cars-catalog .car-card img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 220px;
  max-height: 165px;
}
#cars-catalog .car-card .car-details {
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#cars-catalog .car-card .car-details h2 {
  font-size: 1.1rem;
  font-weight: bold;
}
#cars-catalog .car-card:hover {
  cursor: pointer;
  scale: 1.08;
  background-color: #fff;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* Центрирует элементы по горизонтали */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* Центрирует элементы по вертикали */
  gap: 10px;
  /* Добавляет расстояние между элементами */
}

.pagination > a {
  color: #228B22;
  background-color: #fff;
  border: 1px solid #202020;
  border-radius: 50%;
  padding: 4px 8px;
  margin: 8px;
}

#brand-title {
  color: #228B22;
  margin-bottom: 24px;
}

#brand-description {
  text-align: center;
  margin-bottom: 24px;
}

.empty-cart-message {
  margin: 54px auto;
  text-align: center;
}
.empty-cart-message .link {
  padding: 8px 16px;
  background-color: #228B22;
  border-radius: 8px;
  font-weight: 600;
  margin: 0 16px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.empty-cart-message .link:hover {
  background-color: #f1f3f4;
}

.abuotus .container {
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.abuotus h1 {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  font-size: 2rem;
  padding-bottom: 48px;
}
.abuotus p {
  padding-bottom: 32px;
}
.abuotus h2 {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 48px;
  color: #228B22;
  text-transform: uppercase;
}
.abuotus .specialisation-list li {
  margin-bottom: 8px;
}
.abuotus .specialisation-list li a {
  color: #589a15;
  font-size: 1.2rem;
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.abuotus .specialisation-list li a:hover {
  text-decoration: underline;
  color: #228B22;
  font-weight: 700;
}
.abuotus .specialisation-list li a img {
  border-radius: 8px;
  width: 70px;
  aspect-ratio: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-right: 16px;
}
.abuotus .specialisation-list li a img:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

#advantages-block .container {
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  padding-top: 16px;
  margin-bottom: 16px;
  text-align: center;
}
#advantages-block .container h2 {
  margin-bottom: 16px;
}

.advantages-list {
  padding-bottom: 100px;
}
.advantages-list li {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 16px;
  flex-direction: row;
  flex-wrap: wrap;
}
.advantages-list li .advantages-item {
  color: #589a15;
  font-weight: 700;
  padding-right: 16px;
  font-size: 1.2rem;
}

#how-we-work {
  padding-bottom: 100px;
}
#how-we-work .container {
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
}
#how-we-work h2 {
  text-align: center;
  text-transform: uppercase;
  color: #228B22;
  padding-bottom: 32px;
}
#how-we-work li {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 16px;
}
#how-we-work li .how-we-work-item {
  color: #589a15;
  font-weight: 700;
  padding-right: 16px;
  font-size: 1.2rem;
}

#contact-us {
  padding-bottom: 54px;
}
#contact-us h3 {
  color: #228B22;
  font-size: 2rem;
  text-align: center;
  padding-bottom: 32px;
}

#modalWrapper {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.modal-content {
  background-color: #818488;
  margin: auto;
  width: 90%;
  max-width: 600px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
}

.modal-header {
  display: block;
  padding: 10px 20px;
  border-bottom: 2px solid #6c757d;
  background-color: #f8f9fa;
}

.modal-title {
  color: #6c757d;
  text-align: center;
  font-size: 1.125rem;
}

.modal-body {
  padding: 20px;
}

.table thead tr.col {
  padding: 0 30px;
  color: #a9a9a9;
}

.modal-footer {
  padding: 10px 20px;
  border-top: 1px solid #6c757d;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  aspect-ratio: 1;
  background-color: linear-gradient(90deg, #2193b0, #6dd5ed);
  border: 1px solid #a9a9a9;
  border-radius: 5px;
  cursor: pointer;
}
.close:hover {
  border: 1px solid #2b5a52;
}

.show-cart tr td {
  padding: 20px;
}

.cart-table {
  width: 100%;
}

.cart-table th,
.cart-table td {
  padding: 10px;
  text-align: left;
}

.btn {
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  background-color: #007bff;
  color: #fff;
}
.btn:hover {
  background-color: #0056b3;
}

.btn.btn-secondary {
  background-color: #6c757d;
}
.btn.btn-secondary:hover {
  background-color: #adb5bd;
  color: #6c757d;
}

.btn.btn-primary {
  background-color: #007bff;
}
.btn.btn-primary:hover {
  background-color: #f8f9fa;
  color: #adb5bd;
}

.minus-item.input-group-addon.btn.btn-primary {
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
}
.minus-item.input-group-addon.btn.btn-primary:hover {
  background-color: linear-gradient(90deg, #2193b0, #6dd5ed);
}

.plus-item.btn.btn-primary.input-group-addon {
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  background-color: #003366;
}
.plus-item.btn.btn-primary.input-group-addon:hover {
  background-color: #007bff;
}

.delete-item.btn.btn-danger {
  padding: 10px;
  margin: 20px;
  border-radius: 5px;
}

.remove-item {
  background-color: #ced4da;
  padding: 8px 8px;
  border: 1px solid #00bfff;
  border-radius: 10px;
}
.remove-item:hover {
  background-color: #007bff;
  color: #a9a9a9;
}

#orderModal {
  position: fixed;
  display: none;
  top: 8%;
  width: 70%;
  z-index: 1001;
}
#orderModal .modal-header .close {
  background-color: linear-gradient(90deg, #2193b0, #6dd5ed);
  border: 1px solid #a9a9a9;
  border-radius: 5px;
  width: 18px;
}
#orderModal .modal-header .modal-title {
  color: #6c757d;
}
#orderModal .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 10%;
  margin-bottom: 16px;
}
#orderModal .modal-body .order-items h6 {
  color: #343a40;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 10px;
  text-decoration: underline;
}
#orderModal .modal-body #checkoutForm .form-group {
  padding-left: 10%;
}
#orderModal .modal-body #checkoutForm .form-group .form-control {
  border-radius: 5px;
  border: 2px solid #ced4da;
  padding: 5px;
  margin: 10px;
}
#orderModal .modal-body #checkoutForm .form-group #story {
  margin-left: 20px;
  border-radius: 5px;
  border: 2px solid #ced4da;
  padding: 5px;
  margin: 10px;
}
#orderModal .modal-body #checkoutForm .btn.btn-primary {
  margin-left: 40px;
}

.product-section {
  padding: 100px 0;
}

.product-details {
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 100px;
  margin-bottom: 50px;
  gap: 48px;
  background-color: #202020;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-details .product-item {
  width: 45%;
  padding: 16px;
}
.product-details .product-item .product-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.product-details .product-item .stan {
background: #202020;
background: linear-gradient(90deg, rgba(32, 32, 32, 1) 0%, rgba(32, 32, 32, 1) 50%, rgba(34, 139, 34, 1) 100%);
text-align: right;
  padding: 8px;
  font-weight: 700;
  margin-bottom: 8px;
  border-radius : 4px;
  
}
.product-details .product-item .product-item-list .articul {
  color: #228B22;
}
.product-details .product-item .product-item-list .articul .product-id {
  color: #f1f3f4;
}
.product-details .product-image-slider {
  padding-top: 90px;
  width: 50%;
  height: 100%;
  padding-left: 16px;
}
.product-details .product-name {
  padding-bottom: 16px;
}
.product-details .product-title-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  color: #228B22;
  font-weight: 700;
  padding-bottom: 8px;
}
.product-details .product-title-item .product-id, .product-details .product-title-item .product-price, .product-details .product-title-item .product-description, .product-details .product-title-item .product-model, .product-details .product-title-item .product-god, .product-details .product-title-item .product-category,
.product-details .product-title-item .product-toplivo, .product-details .product-title-item .product-originalnumber,
.product-details .product-title-item .product-markaavto, .product-details .product-title-item .product-dop_category,
.product-details .product-title-item .product-pod_category, .product-details .product-title-item .product-typ_kuzova,
.product-details .product-title-item .product-price-uah {
  color: #f1f3f4;
  font-weight: 400;
}
.product-details .product-title-item .product-markaavto {
  padding-right: 30%;
}
.product-details .product-title-item.articul {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-transform: uppercase;
}
.product-details .product-title-item.price {
  margin-top: 44px;
  padding: 8px;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #228B22;
  color: #000000;
  margin-bottom: 16px;
  border: 1px solid #f1f3f4;
  border-radius: 8px;
}
.product-details .product-title-item.price .product-price {
  color: #000000;
  font-weight: 700;
  text-align:left;
}
.product-details .btn-product-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product-details .btn-product-list .add-to-cart {
  padding: 10px 28px;
  background-color: #228B22;
  border: 1px solid #f1f3f4;
  border-radius: 8px;
  color: #f1f3f4;
  font-size: 1.1rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product-details .btn-product-list .add-to-cart:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  background-color: #f1f3f4;
  border: 1px solid #228B22;
  color: #228B22;
}
.product-details .btn-product-list .buy-now {
  padding: 10px 24px;
  color: #228B22;
  font-size: 1.125rem;
  border: 1px solid #228B22;
  border-radius: 8px;
}
.product-details .btn-product-list .buy-now:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  background-color: #228B22;
  color: #f1f3f4;
  border: 1px solid #E4E4E4;
}

.btn-to-catalog {
  text-align: center;
}
.btn-to-catalog a {
  padding: 8px 16px;
  background-color: #f1f3f4;
  border: 2px solid #228B22;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.001rem;
  font-size: 1rem;
}
.btn-to-catalog a:hover {
  background-color: #228B22;
  color: #f1f3f4;
}

.product-image-slider #imageGallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-image-slider #imageGallery li {
  width: 100%;
  border: 1px soid #228B22;
}

.product-image-slider #imageGallery img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
}

.modal-window {
  display: none;
  background: #8b8c8d;
  padding: 100px;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10000;
}
.modal-window p {
  padding: 16px;
  color: #f1f3f4;
  font-size: 1.1rem;
}
.modal-window .continue-shopping, .modal-window .go-to-cart {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1.1rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.modal-window .continue-shopping {
  background-color: #f1f3f4;
  border: 2px solid #252525;
  color: #228B22;
}
.modal-window .continue-shopping:hover {
  background-color: #589a15;
  color: #f1f3f4;
  border: 1px solid #f1f3f4;
}
.modal-window .go-to-cart {
  background-color: #228B22;
  color: #f1f3f4;
}
.modal-window .go-to-cart:hover {
  background-color: #f1f3f4;
  color: #228B22;
  border: 1px solid #252525;
}

.InOneClickoverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.buyInOneClick {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 20px;
  z-index: 1000;
  display: none;
  border-radius: 8px;
  min-width: 350px;
  max-width: 20%;
}

.modal-content-buyInOneClick {
  padding: 16px;
  background-color: #888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
 
}
.modal-content-buyInOneClick h4 {
  color: #f1f3f4;
  font-size: 1.2rem;
  margin: auto;
  padding-bottom: 16px;
}
.modal-content-buyInOneClick form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal-content-buyInOneClick form input,
.modal-content-buyInOneClick form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 2px solid #228B22;
  border-radius: 4px;
}
.modal-content-buyInOneClick form button {
  display: block;
  width: 100%;
  background-color: #228B22;
  border: none;
  padding: 16px 24px;
  margin: auto;
  border-radius: 8px;
  color: #f1f3f4;
  font-size: 1.125rem;
}
.modal-content-buyInOneClick form button:hover {
  background-color: #f1f3f4;
  color: #228B22;
}
.modal-content-buyInOneClick .close-modal-buyInOneClick {
  top: 10px;
  right: 10px;
  position: absolute;
  background-color: transparent;
  border: none;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.modal-content-buyInOneClick .close-modal-buyInOneClick:hover {
  color: #007bff;
}

.product-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
.product-list .product-card {
  width: 24%;
  border: 1px solid #228B22;
  border-radius: 8px;
  padding: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  box-shadow: 0 4px 8px rgba(240, 235, 235, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;

}
.product-list .product-card a {
      display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.product-list .product-card a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.product-list .product-card .product-stan{
    text-align: right;
    background: #228B22;
    background: linear-gradient(90deg, rgba(34, 139, 34, 1) 0%, rgba(32, 32, 32, 1) 50%, rgba(32, 32, 32, 1) 100%);
    padding: 4px;
    top: 44px;
    left: 4px;
    color: #fff;
    position: absolute;
    border-radius: 4px;
}

.product-list .product-card h3 a{
  margin: 10px 0;
  font-size: 1rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
  color: #fff;
}
.product-list .product-card a .product-title-item{
    font-size: 1rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
  color: #fff;
  padding-bottom: 8px;
}
.product-list .product-card a .product-title-str {
    font-size: 0.9rem;
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #fff;
    padding-bottom: 8px;
}

.product-list .product-card .product-price {
  display: inline-flex;
  font-size: 1rem;
    flex-direction:row;
    flex-wrap: wrap;
  color: #589a15;
  font-weight: 600;
  width: 70%;
}

.product-list .product-card  .product-btn-list{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    
}
.product-list .product-card  .product-btn-list .btn-cart {
    width: 20%;
}
.product-list .product-card .product-title-item a{
    color: #fff;
}
.product-list .product-card  .product-price .price-uah {
margin-left: 4px;
  color: #f1f3f4;
}
.product-list .product-card .product-btn-list .btn-cart {
 width: 30%;
  margin: 0px;
  padding: 0px;
}
.product-list .product-card .product_btn {
  text-align: center;
}
.product-list .product-card .product_btn a {
  display: inline-block;
  background-color: #f1f3f4;
  color: #228B22;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  width: 30%;
}
.product-list .product-card .product_btn:hover {
  background-color: #589a15;

}
.product-list .product-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.search-filter{
    padding-top:100px;
    text-align:center;
}
.search-filter .product-list{
    padding: 0px;
}

/*//footer*/
 .schedule, .pay-location, .form-footer{
    text-align:left;
}
.footer-container .container{
    padding: 0px;
}

#car-info {
  text-align: center;
  padding: 16px;
}
#car-info h2 {
  color: #228B22;
  padding: 16px 24px;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
#car-info .car-info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 16px;
  margin-bottom: 48px;
}
#car-info .car-info-card .car-info-img {
  width: 700px;
  
  border-radius: 8px;
}
#car-info .car-info-card .car-info-img img {
  border-radius: 8px;
}
#car-info .car-info-card .car-info-total {
  margin: auto;
  font-size: 1.5rem;
  font-weight: 700;
}
#car-info .car-info-card .car-info-total .totalParts {
  color: #228B22;
  font-weight: 800;
  font-size: 4rem;
}
#car-info .car-info-card .car-info-total .car-info-total-title{
    color:#FFF;
}
#tabs {
  padding-bottom: 100px;
}
#tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
#tabs ul li {
  display: block;
  border: 1px solid #f1f3f4;
  border-radius: 8px;
  padding: 16px 16px;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#tabs ul li a {
  color: #228B22;
  margin: 0 auto;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}
#tabs ul li a .sum-details {
  color: #f1f3f4;
  padding: 0 8px;
}
#tabs ul li:hover {
  background-color: #888;
  cursor: pointer;
}
#tabs ul li:hover a {
  color: #f1f3f4;
}
#tabs ul li:hover a .sum-details {
  color: #228B22;
}
#tabs #tab-titles li a.active {
  font-weight: bold;
  color: #000;
}
#tabs .tab-panel {
  display: none;
}

.politic h1 {
  padding-bottom: 16px;
}
.politic h2, .politic h3, .politic h4 {
  padding: 24px;
  color: #228B22;
  font-weight: 600;
}
.politic p {
  padding-bottom: 16px;
}
.politic ul {
  padding-bottom: 16px;
}
.politic ul li {
  list-style-type: "🚗";
  padding: 8px;
}
.politic ul li a {
  color: #55B7FF;
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.politic ul li a:hover {
  color: #228B22;
}
/*search page all*/
 .all-search {
    text-align: center;
    padding-bottom: 50px;
}
.product-search a{
    color: #fff;
    font-weight: 600;

}
 .product-img{
    margin-bottom: 16px;
}
.product-search a:hover{
    color: #228B22;
    text-decoration: underline;

}
.product-list .product-card .product-rb .product-stan{
    padding-right:8px;
    text-align: right;
    background: #202020;
background: linear-gradient(90deg, rgba(32, 32, 32, 1) 0%, rgba(32, 32, 32, 1) 50%, rgba(34, 139, 34, 1) 100%);
    margin-bottom: 4px;
}

.container .sort-buttons{
        display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap:8px;
    transition: all .8s ease;
}
.sort-button-search{
        display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
     gap:8px;
     transition: all .8s ease;

}

#sort-asc{
    padding: 4px;
    font-size: 1rem;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
}
#sort-desc{
    padding: 4px;
    font-size: 1rem;
    color: #fff;
    border: 1px solid #228B22;
    border-radius: 4px;
   background: #202020;
}
#sort-desc:hover{
    background: #fff;
    color: #202020;
}
#sort-asc:hover{
    background: #fff;
    color: #202020;
}
#cars-catalog-list{
    display: inline-flex;
    width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;

} 
#cars-catalog-list .car-card-item-li{
   width: 24%;
    background-color: #262424;
    border: 2px solid #228B22;
    padding: 8px;
    border-radius: 8px;
    display:flex;
    flex-direction:column;
    justify-content: space-between;
}
#cars-catalog-list .car-card-item-li .car-details{
    text-align: center;
}
#cars-catalog-list .car-card-item-li:hover{
    transform: scale(1.1);
    background: #f1f3f4;
    cursor: pointer;
}
.car-card-item .car-details{
text-align: center;
padding: 8px;
}
.car-details .car-card-link a{
    color: #228B22;
    font-weight: 600;
}
.car-details .car-card-link a:hover{
    text-decoration: underline;
    transform: scale(1.1);
}

body {
  max-width: 100%;
  overflow-x: hidden;
}
#baner {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 200px; /* Мінімальна висота */
  position: relative;
  overflow: hidden;
}

#baner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1425px) {
  #first-section .container #carAccordion {
    width: 18%;
  }

  .product-details .stan {
    background-color: #228B22;
    margin-left: 60%;
  }

  .product-details .articul {
    padding-left: 60%;
  }

  .hamburger-wrap {
    display: block;
  }

  header .nav-container nav ul {
    display: none;
  }
  header .header-container .social-link{
    display: none;
  }

  header .header-container .tel ul li {
    gap: 10px;
    padding: 5px;
  }

  .menu-panel {
    width: 40%;
    height: 100%;
  }

  .menu-panel .mobile-menu li .language li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .menu-panel .mobile-menu li .language li a img {
    width:30px;
     background: #228B22;
       border-radius: 4px;
  }
  .mobile-menu .account ul li {
    width:40px;
    margin-right: 8px;
  }
.mobile-menu .account ul li img{
  width:30px;
 height:30px;
  object-fit: contain;
 
  background: #FFFFFF;
  border-radius: 4px;
}
search-input-m{
    padding:4px 8px !important;
    
}
  header .header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  header .header-container .account, header .header-container .language {
    width: 0;
    height: 0;
  }

  header .header-container .logo img {
    width: 200px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  header .account ul li img, header .language ul li img {
    width: 0px;
    height: 0;
    display: none;
  }

  header .nav-container {
    padding-top: 0;
  }

  #first-section_index .container .first_screan .sidebar_filter {
    top: 200px;
  }
  .gallery{
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-evenly;
  }
}
@media screen and (max-width: 1270px) {
  header .header-container .social-link ul li img {
    width: 16px;
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  #first-section .container {
    flex-direction: column-reverse;
  }
  #first-section .container .first_screan_catalog {
    width: 100%;
  }

  .accordion-content {
    -webkit-transition: max-height 0.3s ease-out;
    -o-transition: max-height 0.3s ease-out;
    transition: max-height 0.3s ease-out;
   
    overflow: hidden;
  }

  .accordion-content.open {
    max-height: 500px;
  }

  #first-section .container #carAccordion {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #first-section .container #carAccordion .accordion-item {
    width: 18%;
  }

  #first-section .container .first_screan_catalog header .language ul li {
    height: 16px;
  }
  #first-section .container .first_screan_catalog header .language ul li img {
    width: 16px;
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  header .header-container .social-link ul li {
    height: 20px;
  }

  #first-section_index .container .first_screan .sidebar_filter {
    top: 150px;
    width: 300px;
    padding: 8px;
  }
  #first-section_index .container .first_screan .sidebar_filter form select {
    width: 280px;
    font-size: 1rem;
    height: 30px;
  }
    #first-section_index .container .first_screan .sidebar_filter form input {
    width: 280px;
    font-size: 1rem;
    height: 30px;
  }
  #first-section_index .container .first_screan .sidebar_filter form select #search-sidebar {
    margin-top: 8px;
    padding: 8px;
  }
  #first-section_index .container .first_screan .sidebar_filter form {
    margin-bottom: 8px;
  }

  footer .container .schedule .work-time .time {
    font-size: 0.9rem;
  }

  .btn-product-list .add-to-cart {
    margin-bottom: 16px;
    width: 100%;
  }
  .btn-product-list .buy-now {
    width: 100%;
  }

  #cart {
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0px;
  }
  #cart #cartItems, #cart .cart-data {
    width: 100%;
    margin: 0 0 20px 0;
  }
    #cars-catalog .car-card .car-details h2{
        margin-bottom:0px;
        font-size:1rem;
    }
    #cars-catalog .car-card .car-details p{
        margin-bottom:0px;
        font-size:1rem;
    }
    #cars-catalog .car-card .car-card-img {
       max-width: 120px;
    max-height: 100px;
        
    }
}
@media screen and (max-width: 1330px) {
    #cart-container {
    display: flex;
    flex-direction: column;
}
#cart{
     width: 100%;
}
.cart-data{
     width: 100%;
     margin-left:0px;
     margin-right:0px;
}
}
@media screen and (max-width: 1130px) {
     .product-details .articul {
        padding-left: 40%;
    }
  .product-image-slider {
    width: 40%;
    height: 90%;
  }

  .info-block .info-header .info-tab {
    width: 23%;
    padding: 16px;
    text-align: center;
    vertical-align: middle;
  }


  .product-details .product-title-item.price {
    font-size: 1.4rem;
    width: 100%;
  }

  .product-details .btn-product-list.add-to-cart {
    padding: 10px 16px;
  }

  .product-details .btn-product-list .buy-now {
    padding: 10px 16px;
  }

  #first-section_index .container .first_screan .sidebar_filter form select {
    width: 100%;
  }
 #first-section_index .container .first_screan .sidebar_filter form input {
        width: 100%;
    }

  .product-list .product-card {
    width: 49%;
  }

  .product-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 16px;
  }
  .product-details .product-image-slider {
    width: 100%;
    padding-right: 16px;
    padding-top: 16px;
  }
  .product-details .product-item {
    width: 100%;
    padding: 16px;
  }

  .product-section {
    padding: 30px 0;
  }

  .product_btn a {
    font-weight: 500;
  }
  #brandAccordion{
      display:none;
  }
  .cars-catalog-container{
      width:100%;
  }
  #cars-catalog .car-card .car-card-img {
    max-width: 170px;
    max-height: 170px;
}

}
@media (max-width: 895px) {
  #first-section_index .container .first_screan .sidebar_filter {
    width: 300px;
    padding: 4px;
  }
  #first-section_index .container .first_screan .sidebar_filter h2 {
    font-size: 1rem;
  }
  #first-section_index .container .first_screan .sidebar_filter form select {
    font-size: 0.9rem;
    height: 25px;
  }
 #first-section_index .container .first_screan .sidebar_filter form input {
    font-size: 0.9rem;
    height: 25px;
}

  #first-section_index .container .first_screan .sidebar_filter form {
    margin-bottom: 8px;
  }
  #first-section_index .container .first_screan .sidebar_filter form #search-sidebar {
        margin-top: 4px;
        padding: 4px;
        font-size: 0.9rem;
  }
.contacts-block .contacts-item .contacts-title{
    font-size: 1rem;
}

.btn-cart .add-to-cart img{
    width: 55%;
    height: 25%;
}
  .product-list .product-card .product_btn a {
    font-size: 1rem;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .footer-menu .container .footer-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  header .header-container .tel ul li a {
    font-size: 1rem;
  }

  header .header-container .tel ul {
    text-align: center;
  }

  header .header-container .logo img {
    width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .btn-send #sendToTelegram {
    width: 200px;
  }

  #cars-catalog a {
    width: 45%;
  }

  #first-section .container-catalog .accordion-catalog .accordion-item .accordion-header .accordion-button {
    font-size: 0.8rem;
  }
  #cars-catalog .car-card .car-card-img {
        max-width: 280px;
        max-height: 280px;
    }
    .baner-slider #baner{
        margin-top:155px;
    }
}
@media screen and (max-width: 745px) {
    .menu-panel{
        width: 50%;
    }
  header .header-container .tel ul li a {
    font-size: 0.8rem;
  }
#first-section_index .container .first_screan{
    justify-content: center;
}
  #first-section_index .container .first_screan .sidebar_filter {
    position: relative;
    margin-top: -80px;
    top: 0;
    left: 0px;
  }

  #first-section_index .container .first_screan {
    padding-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .product-details .product-image-slider {
    height: 50%;
  }


  header .header-container .logo img {
    width: 100px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  header .header-container {
    padding-bottom: 8px;
  }

  .hamburger {
    padding: 4px;
  }

  header .header-container {
    padding-bottom: 4px;
    gap: 4px;
  }

  header .header-container .social-link ul li {
    margin-top: 0px;
  }

  header .header-container .tel ul li {
    padding: 0;
  }

  .empty-cart-message {
    margin: 24px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 580px) {
    .abuotus h1{
        font-size: 1rem;
    }
    #car-info .car-info-card {
        flex-direction:column;
    }
    #car-info .car-info-card .car-info-img {
    width: 100%;
 }
 #tabs ul li {
    border-radius: 8px;
    padding: 8px 8px;
     flex-grow: 1;
}
#tabs ul {
    justify-content: space-between;

}
#car-info .car-info-card .car-info-total .totalParts {
    font-size: 2rem;
}

    #advantages .container #advantages_slider ul li .adventages-text {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 0.6rem;
  margin-bottom: 4px;
}


    header .header-container{
        justify-content: center;
    }
    .menu-panel{
        width: 60%;
    }
    #cars-table .preorder .cars-title {
    padding:8px;
    font-size: 1rem;
}
#cars-table .preorder button {
    margin:24px;
}
  footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #first-section .container-catalog .accordion-catalog .accordion-item .accordion-header .accordion-button {
    padding: 4px;
  }

  .info-block .info-header .info-tab {
    padding: 8px;
    font-size: 0.9rem;
  }

  #cart .cart-data .contacts-cart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
.cart-data .contacts-cart form {
    width: 100%;
    display: flex;
    flex-direction: column;
}
 .cart-data .contacts-cart form .form-contacts-item {       
     width: 100%;
     padding:4px;
 }
 
  .cart-data .contacts-cart form .form-contacts-item input {
       width: 100%;
    box-sizing: border-box;
  }

  #cart #cartItems .cart-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #cars-catalog .car-card img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100px;
  max-height: 100px;
}
h1{
    font-size: 1.3rem;
}
h1.cart-title{
    padding-top:50px;
}
}
@media (max-width: 485px) {
    .info-block .info-header {
    flex-direction: row;
    flex-wrap:wrap;
    justify-content: space-between;
    gap: 4px;
    padding: 0px 8px;    
    }
    .menu-panel{
        width: 70%;
    }
  .container {
    width: 95%;
  }

#car-modal #car-order-modal .modal-content .car-order-header .car-order-title{
    font-size:0.9rem ;
    font-weight: 600;
}

  .product-card {
    width: 100%;
    margin-bottom: 16px;
  }

  #cars-catalog .car-card {
    width: 100%;
  }

  header .header-container .tel ul li a {
    font-size: 0.9rem;
  }

  header .header-container .social-link ul li img {
    width: 20px;
    aspect-ratio: 1;
  }

  .hamburger {
    padding: 5px;
  }

  .info-block .info-header .info-tab {
    padding: 5px;
    font-size: 0.7rem;
    min-width: 180px;
  }
  .product-list {
      flex-direction: column;
  }
    .product-list .product-card {
        width: 100%;
    }
    .slide-top {
    justify-content: center;
    gap: 8px;
}
    .slide-top a img {
    max-width: 130px;
}
}
@media (max-width: 350px) {
  .menu-panel {
    width: 100%;
  }

  

  footer .container {
    gap: 15px;
    text-align: center;
  }
}
.scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #228B22;
  color: #f1f3f4;
  border: none;
  font-size: 20px;
  cursor: pointer;
  font-weight: 600;
  z-index: 1000;
  border-radius: 50%;
  padding: 4px 17px;
  font-size: 2rem;
}

.scrollToTopBtn:hover {
  background-color: #f1f3f4;
  color: #000000;
}