/* ANIMATION */
.header-container {
    opacity: 0;
}
.hero,
.content-all,
.gallery-container,
.faq-container,
.contact-container,
.dealer-conteiner,
.products-container,
.google-container-maps,
.about-us,
.product-category-container,
.img-new-main {
    opacity: 0.001;
}

@font-face {
    font-family: 'Geist';  
    src: url('../src/fonts/Geist-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';  
    src: url('../src/fonts/Geist-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('../src/fonts/Geist-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('../src/fonts/Geist-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('../src/fonts/Geist-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Geist';  
    src: url('../src/fonts/Geist-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
:root {
    --White: #FFF;
    --Black: #000;
    --Green: #158223;
    --Vanila: #FAFAFA;
}


a {
    text-decoration: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-background-clip: text;
    background: none;
}

body {
    margin: 0;
    background: var(--White);
    font-family: 'Geist', sans-serif;
    -webkit-tap-highlight-color: #fff0;
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 40px;
    font-weight: 400;
    width: 100%;
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.img-new-main img {
    width: 35%;
    height: auto;
    aspect-ratio: 67 / 70;
}
.brand-logo img {
    width: 112px; /* Adjusted to match the size of "TEX" logo in the image */
}
.img-new-main {
    display: flex;
    padding: 0px 40px;
    flex-direction: column;
    align-items: center;
}
.brand-logo a {
    text-decoration: none;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-item {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--Black);
    transition: color 0.3s ease; /* Додаємо плавний перехід для кольору */
}

.nav-item:hover {
    color: var(--Green);
}

.action-btn {
    background-color: var(--Green); /* Green button color from the image */
    color: var(--White);
    border: none;
    display: inline-flex;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    transition: all 0.3s;
    border: 1px solid var(--Green);
}

.action-btn.secondary {
    background-color: var(--White);
    color: var(--Black);
    border: 1px solid var(--Black);
}

.action-btn:hover {
    background-color: var(--White); /* Slightly darker green on hover */
    color: var(--Black);
    border: 1px solid var(--Black);
}

.action-btn.secondary:hover {
    background-color: var(--Black);
    color: var(--White);
    border: 1px solid var(--Black);

}
.action-buttons-pc {
    display: flex;
    gap: 10px;
}
.action-btn-mobile {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    cursor: pointer;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: var(--Black);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition:
        stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
    transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

@media screen and (max-width: 1268px) {
    .action-buttons-pc {
        display: none;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
        width: 100%;
        align-items: center;
        background: #fff;
    }

    .brand-logo img {
        width: 60px;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        height: 100dvh;
        display: flex;
        justify-content: center;
        padding: 0px 0px;
        top: 0%;
        backdrop-filter: blur(5px);
    }

    .header-container {
        margin-top: 0px;
        width: 100%;
        padding: 16px;
        position: fixed;
        background: var(--White);
        height: 55px;
    }

    .nav-menu.deactive {
        opacity: 0;
        visibility: hidden;
        height: 100dvh;
        display: flex;
        justify-content: center;
        padding: 0px 0px;
        margin-top: 0px;
        top: 0%;
    }

    .nav-item:hover {
        background-color: transparent;
        color: var(--Green);
    }
    .nav-item {
        font-size: 18px;
    }
    .menu-icon {
        display: flex;
    }

    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .action-btn-mobile {
        display: flex;
        width: 70%;
        position: absolute;
        bottom: 50px;
    }
    .action-btn.secondary {
        background: none;
    }
    .action-btn:hover {
        background-color: none;
        color: var(--Black);
    }
    .action-btn {
        padding: 18px 32px;
        font-size: 14px;
    }
}




.footer {
    display: flex;
    padding: 80px 40px 60px 40px;
    flex-direction: column;
    background-color: var(--Vanila);
  }
  .footer-left {
    flex: 1;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-bottom: 40px;
    align-items: center;
  }
  
  .logo-footer img {
    width: 114px;
  }
  
  
  .footer-right p {
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 63px */
    color: var(--Black);
    width: 45%;
  }
  
  .footer-right {
    display: flex;
    flex-direction: row;
    text-align: left;
    position: relative;
    justify-content: space-between;
    padding-top: 40px;
  }
  
  .footer-buttons {
    display: flex;
    gap: 10px;
  }
  
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    left: -220px;
    gap: 14px;
    display: flex;
    flex-direction: column;
  }
  
  .footer-links li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    color: var(--Black);
    text-decoration: none;
  }
  
  .footer-links li a::after {
    content: "";
    position: absolute;
    bottom: -2px; /* Відступ під лінком */
    left: 0;
    width: 0;
    height: 0.5px;
    background-color: var(--Black); /* Або свій колір */
    transition: width 0.3s ease;
  }
  
  .footer-links li a:hover::after {
    width: 100%;
  }
  
  .scroll-button {
    position: fixed;
    bottom: 55px;
    right: 40px;
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 999;
    opacity: 0; /* початково прихована */
    pointer-events: none; /* початково не клікабельна */
  }
  
  /* Кнопка активна — показати та зробити клікабельною */
  .scroll-button.visible {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
  }
  
  /* Hover працює тільки коли кнопка активна */
  .scroll-button.visible:hover {
    opacity: 0.5;
  }
  
  /* SVG стилі */
  .scroll-button svg {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  
  /* Коли скролимо менше 200px — приховано */
  .scroll-button.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  
  
 @media screen and (max-width: 1068px) {
    .scroll-button {
        right: 20px;
        bottom: 40px;
    }
  }
 @media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        padding: 40px 16px 40px;
        align-items: normal;
    }

    .footer-left {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }
    .footer-right p {
        font-size: 24px;
    }
    .footer-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;  
         padding-top: 0px;
    }
    .footer-left {
        padding-bottom: 0;
        border-bottom: 0px solid rgba(0, 0, 0, 0.10);
    }
    .footer-right p {
        display: none;
    }
    .footer-buttons {
        justify-content: space-between;
        width: 100%;
        padding: 40px 0;
        flex-direction: column;
    }
    .footer-links {
        left: 0;
    }
    .logo-footer img {
        width: 86px;
    }
    .footer-left p {
        padding-top: 0;
    }
 }
.hero {
    display: flex;
    flex-direction: column;
    padding: 40px;
  }
  
  
  .hero-content {
    padding-top: 13%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .hero h1 {
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
  }
  
  .hero h1 span {
    font-weight: bold;
  }
  
  .hero h1 mark {
    background-color: var(--Green);
    color: var(--White);
    padding: 0px 10px;
  }
  .features .bracket {
    color: var(--Green);
  } 
  .features {
    color: var(--Black);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-align: right;
  }
  .info-hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .hero-pc {
    width: 100%;
    height: 552px;
    margin-top: 60px;
    background: lightgray url('../src/img/hero.jpg') center center / cover no-repeat;
    display: block;
}
.hero-cont {
    display: flex;
    flex-direction: row;
}
.hero2 {
    width: 100%;
    height: 552px;
    margin-top: 60px;
    background: #fff url('../src/img/hewo-new.png') center center / cover no-repeat;
    display: block;
}
.hero-mobile {
    display: none;
    width: 100%;
    height: 281px;
    margin-top: 30px;
    background: lightgray url('../src/img/hero.jpg') center center / cover no-repeat;
}
.card-img-moile {
    display: none;
}
@media screen and (max-width: 1068px) {
    .hero-pc {
        display: none;
    }
    .hero-mobile {
        display: block;
    }

}


  @media screen and (max-width: 1068px) {
    .hero {
        padding: 16px;
    }
    .hero-content {
        flex-direction: column;
    }
    .features {
        font-size: 12px;
        text-align: center;
    }
    .features br:first-of-type {
        display: none;
      }
      
    .info-hero {
        gap: 30px;
        margin-top: 30px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero-content {
        padding-top: 20%;
    }
    .card-img-moile {
        display: flex;
        justify-content: center;
        padding: 20px 0;
      }
      .card-img-pc {
        display: none;
      }
      .card-img-moile .action-btn {
        width: 100%;
    }
  }



  .content-box {
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }
  
.list-conteiner {
    padding: 0 40px;
}
.list-box {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}
.list-box li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.header-box {
    padding: 30px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}
.number-box, .text-box {
    font-size: 22px;
    font-weight: 500;
    line-height: 180%;
}
.number-box {
    color: var(--Green, #158223);
}
.text-box {
    color: var(--Black, #000000);
}
.infos-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.content-box {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-left: 85px;
    background-color: rgba(21, 130, 35, 0.08);
}
.content-box img {
    max-width: 400px;
    object-fit: cover;
    width: 389px;
    height: 214px;
}

.content-box p {
    font-family: Geist, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    width: 50%;
}
.list-box li.active .content-box {
    opacity: 1;
    padding-left: 85px;
    min-height: 100%;
    padding-bottom: 25px;
    background-color: rgba(21, 130, 35, 0.08);
}
.header-box:hover,
.list-box li.active .header-box {
    background-color: rgba(21, 130, 35, 0.08);
}
.svg-rotate-box {
    transition: transform 0.3s ease;
}
.list-box li.active .svg-rotate-box {
    transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
    .content-box p {
        width: 100%;
    }
    .content-box {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 24px;
    }
    .list-conteiner {
        padding: 0;
    }
    .text-box, .number-box {
        font-size: 18px;
    }
    .header-box {
        padding: 24px 16px;
    }
    .content-box img {
        max-width: 100%;
        position: static;
    }
    .list-box li.active .content-box {
        padding-right: 24px;
        padding-left: 24px;
    }
}



.container-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    margin: 40px;
    background-color: var(--Vanila);
  }

  .name-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 41px;
  }

  .name-block h2 {
    color: var(--Black);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
  }

  .grid {
    display: flex;
    gap: 20px;
  }

  .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .card {
    position: relative;
    overflow: hidden;
  }

  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: brightness(80%); 
  }

  .card .label-card {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    color: var(--White);
    margin-right: 24px;
  }

  .card .title-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 24px */
    color: var(--White);
    text-transform: uppercase;
    margin-right: 24px;
  }
  .column .card img {
    transition: transform 0.5s ease;
}

    .column .card img:hover {
        transform: scale(1.1);
    }
  .column:nth-child(1) .card:nth-child(1) img { height: 462px; }
  .column:nth-child(1) .card:nth-child(2) img { height: 199px; }
  .column:nth-child(2) .card:nth-child(1) img { height: 377px; }
  .column:nth-child(2) .card:nth-child(2) img { height: 284px; }
  .column:nth-child(3) .card:nth-child(1) img { height: 280px; }
  .column:nth-child(3) .card:nth-child(2) img { height: 381px; }

  @media screen and (max-width: 768px) {
    .container-card {
        margin: 20px;
        padding: 16px;
    }
    .column .card img:hover {
        transform: scale(1);
    }
    .column:nth-child(1) .card:nth-child(1) img { height: 243px; }
    .column:nth-child(1) .card:nth-child(2) img { height: 243px; }
    .column:nth-child(2) .card:nth-child(1) img { height: 243px; }
    .column:nth-child(2) .card:nth-child(2) img { height: 243px; }
    .column:nth-child(3) .card:nth-child(1) img { height: 243px; }
    .column:nth-child(3) .card:nth-child(2) img { height: 243px; }
  
    .grid {
        flex-direction: column;
    }
    .name-block h2 {
        font-size: 28px;
        text-align: center;
        padding-top: 20px;
    }
    .name-block {
        margin-bottom: 20px;
        justify-content: center;
    }
    .name-block .action-btn {
        padding: 8px 32px;
        font-size: 14px;
    }
    .card .title-card  {
        margin-right: 24px;
        bottom: 24px;
        left: 24px;
        font-size: 24px;
    }
    .card .label-card {
        top: 24px;
        left: 24px;    
        margin-right: 24px;
        font-size: 16px;
    }
  }




.container-why {
    display: flex;
}
.why.tex-block {
    display: flex;
}
.image-section {
    flex: 1;
    display: flex;
    padding: 50px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background-color: var(--Vanila);
}
.image-section img {
    width: auto;
    height: 532px;
}
.text-section {
    flex: 1;
    padding: 40px 40px 40px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.text-section h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--Black);
}
.text-section p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}
.text-gap20 {
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding-bottom: 40px;
}
.text-section .action-btn.secondary {
    width: 100%;
}
.text-section button:hover {
    background-color: #333;
    color: white;
}
@media screen and (max-width: 768px) {
    .why.tex-block {
        flex-direction: column-reverse;
    }
    .image-section {
        padding: 30px 0px 20px;
        background: none;
    }
    .image-section img {
        width: 100%;
        object-fit: cover;
        object-position: 0px -100px;
        padding: 0px 16px;
    }
    .text-section {
        padding: 16px;
    }
    .text-section h2 {
        font-size: 28px;
    }
    .text-section .action-btn.secondary {
        padding: 18px 32px;
    }
}






.container-maps {
    padding: 100px 40px 30px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    gap: 400px;
}
.masps-sections {
    position: relative;
}
.maps-text {
    font-family: Geist;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 80px;
}
.maps-text mark {
    background-color: var(--Green);
    color: var(--White);
    padding: 0px 10px;
}
.text-maps-p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.text-maps-p p {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    padding-bottom: 40px;
}
.maps-svg {
    position: absolute;
    bottom: 23px;
    right: 40px;
}
img {
    width: 100%;
}
.ready-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .container-maps {
        padding: 16px 16px 40px;
        gap: 0px;
    }
    .text-maps-p {
        align-items: center;
        padding-top: 20px;
    }
    .maps-svg {
        position: relative;
        bottom: 0;
        right: 0;
    }
    .maps-text {
        font-size: 28px;
        padding-bottom: 40px;
        text-align: center;
    }
    .text-maps-p p br{
        display: none;
    }
    .text-maps-p p {
        text-align: center;
        line-height: 200%;
    }
    .text-maps-p .action-btn {
        width: 100%;
    }
}







.faq-container {
    max-width: 100%;
    padding: 10% 65px 100px;
}

.faq-container h1 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    color: var(--Black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 30px 40px;
    position: relative;
}

.faq-number {
    position: absolute;
    top: -25px;
    left: -25px;
    background-color: var(--Green);
    color: var(--White);
    width: 50px;
    height: 50px;    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */    
}

.faq-item h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */    
    color: var(--Black);
    margin: 0 0 10px 0;
}

.faq-item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */ 
    color: var(--Black);
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .faq-number {
        width: 30px;
        height: 30px;
        top: -15px;
        left: -15px;
    }
    .faq-item {
        padding: 20px;
    }
    .faq-container {
        padding: 15% 20px 40px 20px;
    }
    .faq-container h1 {
        font-size: 28px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-item h3 {
        font-size: 16px;
    }
    .faq-item p {
        font-size: 14px;
    }
}





.gallery-container {
    padding: 10% 40px 100px;
}

.gallery-container h1 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 стовпці однакової ширини */
    gap: 20px; /* Відстань між зображеннями */
}

.gallery-grid a {
    display: block;
    overflow: hidden;
}

.gallery-grid img {
    width: 100%;
    height: 450px; /* Фіксована висота для одноманітності */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Адаптивність для менших екранів */
@media (max-width: 768px) {
    .gallery-container {
        padding: 15% 20px 40px 20px;
    }
    .gallery-grid {
        grid-template-columns: 1fr; /* На мобільних пристроях один стовпець */
        gap: 20px;
    }
    .gallery-container h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .gallery-grid img {
        height: 500px;
    }
}




.products-container {
    padding: 10% 40px 0px;
    display: flex;
    flex-direction: row;
    gap: 80px;
  }
  .products-colors p {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: var(--Black);
}
  .products-image-section img {
    width: 100%;
    max-width: 651px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  
  .products-info-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 148px;
}
#main-image {
  user-select: none; /* Запобігає виділенню */
  -webkit-user-drag: none; /* Запобігає перетягуванню в WebKit-браузерах */
  pointer-events: auto; /* Залишаємо можливість взаємодії */
}


  .products-info-section h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--Black);
  }
  
  .products-colors {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
  }
  .products-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .products-info p{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
  }
  .products-info p strong{
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;  
  }
  .products-color {
    width: 26px;
    height: 26px;
    aspect-ratio: 1/1;
    margin-left: 10px;
  }
  #main-image {
    transition: opacity 0.5s ease;
    width: 651px;
  }
  
  .image-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* Горизонтальний скрол */
    overflow-y: hidden;
    margin-top: 10px;
    justify-content: flex-start;
    max-width: 651px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .image-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .image-gallery {
    overflow-x: auto;     /* дозволяє прокрутку */
    cursor: grab;
  }
  .image-gallery.dragging {
    cursor: grabbing;
  }
  
  .image-gallery img {
    flex: 1 0 auto; /* Змінено з 'flex: 1 0 0' для кращого контролю розміру */
    height: 131px; /* Фіксована висота */
    width: 200px; /* Фіксована ширина для прямокутної форми (можете змінити значення) */
    object-fit: cover; /* Зображення заповнює контейнер, зберігаючи пропорції */
    flex-shrink: 0; /* Забороняє зменшення зображень */
    border: 2px solid transparent;
    transition: border 0.3s;
    cursor: pointer;
}
  
  .image-gallery img.active {
    border-color: var(--Green);
  }
  @media screen and (max-width: 968px) {
    .image-gallery img {
        width: 120px;
        height: 80px;
      }    
      #main-image {
        width: 100%;
      }
  }
  
  
  .products-upgrade-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 36px */
    color: var(--Black);  
  }
  
  .products-buttons {
    margin-top: 26px;
    display: flex;
    gap: 10px;
  }
  
  .products-btn {
    display: flex;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    background-color: var(--Black);
    transition: all 0.3s ease;
  }
  
  .products-black-btn {
    background: var(--Black);
    color: white;
    border: 1px solid var(--Black);
  }
  
  .products-white-btn {
    border: 1px solid var(--Black);
    display: flex;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    background: none;
    color: var(--Black);
    transition: all 0.3s ease;
  }
  
  .products-btn:hover {
    background-color: var(--Green);
    color: var(--White);
    border: 1px solid var(--Green);
  }
  .products-black-btn:hover {
    background-color: var(--White);
    color: var(--Black);
    border: 1px solid var(--Black);
  }
  .products-color {
    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
  }
  
  .products-color.active {
    padding: 20px;
  }
  
  @media (max-width: 768px) {
    .products-container {
        padding: 20% 20px 40px 20px;
        flex-direction: column;
        gap: 20px;
      }
      .products-info-section h1 {
        font-size: 28px;
      }
      .products-colors {
        margin-bottom: 20px;
      }
      .products-info {
        gap: 20px;
      }
      .products-upgrade-text {
        font-size: 18px;
        padding-top: 20px;
      }
      .products-buttons {
        flex-direction: column;
      }
      .products-info-section {
        margin-bottom: 0px;
    }
  }



  .features-container {
    position: relative;
    padding: 10% 40px 100px;
    text-align: center;
    background: var(--Vanila);
    margin-left: 40px;
    margin-right: 40px;
    height: 676px;
  }
  
  .features-container .feature {
    position: absolute;
    background: var(--White);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .features-container .icon {
    width: 56px;
    height: 56px;
    padding: 13px;    
    background-color: var(--Green);
  }
  
  .features-container .top-left {
    top: 10%;
    left: 10%;
  }
  .features-container .top-right {
    top: 10%;
    right: 10%;
  }
  .features-container .bottom-left {
    bottom: 20%;
    left: 5%;
  }
  .features-container .bottom-right {
    bottom: 20%;
    right: 5%;
  }
   .features-container .bottom-center {
    bottom: 10%;
    left: 27%;
    transform: translateX(-50%);
  }
 .features-container .bottom-center-new {
    bottom: 10%;
    left: 56%;
    transform: translateX(-50%);
  }
  .features-container .headline {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;    
    color: var(--Black);
    display: flex;
    justify-content: center;
    padding-top: 100px;
  }
  @media (max-width: 1068px) {
    .features-container {
        height: auto;
        padding: 40px 20px 40px 20px;
        margin: 15px;
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }
    .features-container .feature {
        position: unset;
    }
    .features-container .headline {
        font-size: 28px;
        padding-top: 0;
    }
    .features-container .bottom-center {
        transform: translateX(0%);
    }
    .features-container .headline br {
        display: none;
    }
    .features-container .headline {
        font-size: 18px;
        padding-bottom: 20px;
    }
  }
  






  /* Відключення фону автозаповнення */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--White) inset !important;
  -webkit-text-fill-color: var(--Black) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  border-left: none;
  border-right: none;
  border-top: none;
  transition: background-color 3000s ease-in-out 0s;
}

.form-group input:autofill {
  background-color: var(--White) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  border-left: none;
  border-right: none;
  border-top: none;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Popup Content */
.popup-content {
    background: var(--White);
    padding: 85px 85px 80px 85px;
    width: 50%;
    position: relative;
    transform: scale(0.7) translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, translateY 0.4s ease;
}

/* Popup Open Animation */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

/* Popup Text and Form Styling */
.popup-content h2 {
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--Black);
    text-align: center;
}

.popup-content .popupp {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    margin-bottom: 30px;
    color: var(--Black);
    text-align: center;
}
.form-group br {
    display: none;
}
.form-group p {
    display: flex;
    flex-direction: column;
}

.popup-content input {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: none;
    border-right: none;
    border-top: none;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.products-btn.products-black-btn {
    width: 100%;
    display: flex;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    background-color: var(--Black);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--Black);
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.products-btn.products-black-btn:hover {
    background-color: var(--White);
    color: var(--Black);
    border: 1px solid var(--Black);
  }
.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .form-group label {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    color: var(--Black);
    margin-left: -1px;
    padding-bottom: 10px;
  }
  
  .form-group input {
    display: flex;
    padding: 0px 0px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .form-group input::placeholder {
    color: var(--Black);
    font-weight: 300;
    opacity: 0.2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
  }
  
  .form-group input:focus {
    border-color: var(--Green);
  }
  @media (max-width: 1068px) {
    .popup-content {
        width: 90%;
        padding: 40px 15px 20px 15px;
    }
    .popup-close {
        top: 15px;
        right: 15px;
    }
    .popup-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .popup-content p {
        font-size: 14px;
    }
  }








  .dealer-conteiner {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 10% 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.dealer-conteiner img {
    width: 100%;
    height: 150vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    padding: 10% 40px 40px;
}
  .dealer-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 640px;
        width: 100%;
        margin: 0 auto;
        padding: 40px;
        background-color: var(--White);
        margin: 40px;
    }

/* Стилі для заголовка */
.dealer-form h1 {
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: var(--Black);
    text-align: center;
    margin: 0;
    padding-bottom: 40px;
}

/* Стилі для груп полів */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
}

/* Стилі для рядків з двома полями */
.input-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.input-row .input-group {
    flex: 1;
    min-width: 200px;
}

/* Стилі для міток */
.input-group label {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    color: var(--Black);
    margin-left: -1px;
    padding-bottom: 10px;
}
.wpcf7 form .wpcf7-response-output {
    display: none;
}
/* Стилі для полів введення */
.input-group input {
    display: flex;
    padding: 0px 0px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    transition: border-color 0.3s ease;
    font-size: 16px;
    width: 100%;
}
.input-group p {
    display: flex;
    flex-direction: column;
}
.input-group br {
    gap: 0;
    display: none;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.products-btn.products-black-btn {
    width: 100%;
}
/* Стилі для плейсхолдера */
.input-group input::placeholder {
    color: var(--Black);
    font-weight: 300;
    opacity: 0.2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

/* Стилі для автозаповнення */
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover,
.input-group input:-webkit-autofill:focus,
.input-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--White) inset !important;
    -webkit-text-fill-color: var(--Black) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: none;
    border-right: none;
    border-top: none;
    transition: background-color 3000s ease-in-out 0s;
}

.input-group input:autofill {
    background-color: var(--White) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: none;
    border-right: none;
    border-top: none;
}

/* Стилі для фокусу */
.input-group input:focus {
    border-color: var(--Green);
}

/* Стилі для кнопки */
.dealer-form button {
    cursor: pointer;
    margin-top: 24px;
}
@media (max-width: 768px) {
    .dealer-conteiner img {
        display: none;
    }
    .dealer-conteiner {
        align-items: center;
        padding: 20% 20px 40px 20px;
    }
    .dealer-form {
        padding: 0;
        margin: 0; 
    }
    .dealer-form h1 {
        font-size: 28px;
        padding-bottom: 20px;
    }
}





.contact-container {
    display: flex;
    margin: 0 auto;
    padding: 10% 40px 100px;
}

.contact-image-section {
    flex: 1;
    padding-right: 70px;
}
/* Add this to your existing CSS */
.contact-form-group-row {
    display: flex;
    gap: 20px; /* Space between fields in the same row */
}
.contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form-group-row .contact-form-group {
    flex: 1;
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
}
.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-image-section {
    flex: 1;
    margin-right: 70px;
    background: url(../src/img/back.jpg) lightgray 50% / cover no-repeat;
    height: auto;
    width: 100%;
    object-fit: cover;
}
.contact-form-section {
    width: 50%;
}
.contact-form-section h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Form group styling (provided) */
.contact-form-group label {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    color: var(--Black);
    margin-left: -1px;
    padding-bottom: 10px;
    display: flex;
}
.contact-form-group br {
    display: none;
}
.wpcf7-spinner {
    display: none;
}
.contact-form-group input,
.contact-form-group textarea {
    display: flex;
    padding: 0px 0px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: none;
    border-right: none;
    border-top: none;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--Black);
    font-weight: 300;
    opacity: 0.2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--Green);
}

.contact-form-group input:-webkit-autofill,
.contact-form-group input:-webkit-autofill:hover,
.contact-form-group input:-webkit-autofill:focus,
.contact-form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--White) inset !important;
    -webkit-text-fill-color: var(--Black) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: none;
    border-right: none;
    border-top: none;
    transition: background-color 3000s ease-in-out 0s;
}

.contact-form-group input:autofill {
    background-color: var(--White) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: none;
    border-right: none;
    border-top: none;
}

/* Textarea specific styling */
.contact-form-group textarea {
    resize: none;
    height: 50px;
    padding: 10px 0;
}

.contact-checkbox-columns {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.contact-checkbox-group label {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    display: flex;
    align-items: center;
    gap: 12px;
}
.checkbox-wrapper-23 *,
.checkbox-wrapper-23 *:after,
.checkbox-wrapper-23 *:before {
  box-sizing: border-box;
}

.checkbox-wrapper-23 input {
  position: absolute;
  opacity: 0;
}

.checkbox-wrapper-23 input:checked + label svg path {
  stroke-dashoffset: 0;
  stroke: var(--Black);
}



.checkbox-wrapper-23 input + label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: var(--White);
    border: 1px solid var(--Black);
}



.checkbox-wrapper-23 input + label svg {
  pointer-events: none;
  width: 20px;
  height: 20px;
}

.checkbox-wrapper-23 input + label svg path {
  fill: none;
  stroke: var(--Black);
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 101;
  transition: all 250ms cubic-bezier(1, 0, 0.37, 0.91);
}
.checkbox-wrapper-23 {
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-form-section button {
    width: 100%;
    cursor: pointer;
    margin-top: 40px;
}

.contact-checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 15% 20px 40px 20px;
    }
    .img-new-main img {
        width: 100%;
    }
    .img-new-main {
        padding: 0 16px;
    }
    .contact-image-section {
        display: none;
    }
    .contact-form-section {
        width: 100%;
    }
    .contact-form-section h2 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }
    .contact-form-group-row {
        flex-direction: column;
        gap: 10px;
    }
    .contact-form-group {
        padding: 10px 0;
    }
    .contact-form-section button {
        margin-top: 20px;
    }
}













.google-container-maps {
    padding: 10% 40px 100px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    gap: 24px;
    height: 125svh;
}
.google-sidebar {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    width: 35%;
}
.google-sidebar h1 {
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: var(--Black);
    margin: 0 0 20px;
}
.google-search-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.google-search-bar label {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    color: var(--Black);
    margin-left: -1px;
}
.google-search-bar input,
.google-search-bar textarea {
    display: flex;
    padding: 0px 0px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: none;
    border-right: none;
    border-top: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.google-search-bar input::placeholder,
.google-search-bar textarea::placeholder {
    color: var(--Black);
    font-weight: 300;
    opacity: 0.2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.google-search-bar input:focus,
.google-search-bar textarea:focus {
    border-color: var(--Green);
}
.google-search-bar input:-webkit-autofill,
.google-search-bar input:-webkit-autofill:hover,
.google-search-bar input:-webkit-autofill:focus,
.google-search-bar input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--White) inset !important;
    -webkit-text-fill-color: var(--Black) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: none;
    border-right: none;
    border-top: none;
    transition: background-color 3000s ease-in-out 0s;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.google-search-bar input:autofill {
    background-color: var(--White) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: none;
    border-right: none;
    border-top: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.google-search-bar button {
    display: flex;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    background: var(--Black);
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    color: var(--White);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.google-search-bar button:hover {
    background-color: var(--Green);
    color: var(--Vanila);
}
#google-map {
    flex: 1;
}
.google-dealer-list {
    flex: 1;
    overflow-y: auto;
}
.google-dealer-card {
    padding: 15px;
    border-bottom: 1px solid #dadce0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.google-dealer-card:hover {
    background-color: #e6f4ea; /* Light green, similar to #158223 for hover */
}

.google-dealer-card.google-active {
    background-color: #c8e6c9; /* Slightly darker green for active state */
}
.google-dealer-card strong {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    display: block;
    margin-bottom: 5px;
    color: var(--Black);
}
.google-dealer-card p {
    margin: 2px 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    color: var(--Black);
}
.google-dealer-card .google-distance {
    font-size: 12px;
    color: #70757a;
}
.google-no-results {
    padding: 15px;
    color: #ff0101;
    font-style: italic;
}
h3.googlemaps-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    color: var(--Black);
    position: relative;
    padding-bottom: 20px;
}
strong.googlemaps-label {
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    opacity: 0.5;
}
.googlemaps-text a{
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--Black);
    outline: none;
}
strong.googlemaps-label {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--Black);
}
.googlemaps-textp {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--Black);
}
.googlemaps-container {
    width: 285px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0px 20px 0px 20px;
}
p.googlemaps-text {
    padding: 13px 0 2px;
}
h3.googlemaps-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0px; /* Відстань, на яку border опускається нижче */
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.gm-style .gm-style-iw-c {
    border-radius: 0 !important; 
    padding: 0px !important; 
    box-shadow: none !important;
    max-width: 100% !important;
    padding-bottom: 20px !important;
}
.gm-style-iw-tc {
    display: none !important;
}
.gm-ui-hover-effect>span {
    background-color: var(--Green) !important;
}
p.googlemaps-distance {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    color: var(--Green);
    padding-top: 10px;
}
@media screen and (max-width: 968px) {
    .google-container-maps {
        padding: 20% 20px 40px 20px;
        flex-direction: column;
        height: 155svh;
    }
    .google-sidebar {
        width: 100%;
    }
    .google-dealer-list {
        max-height: 50vh;
    }
    .google-sidebar h1 {
        text-align: center;
        font-size: 28px;
    }
}










.about-us {
    display: flex;
    padding: 7% 40px 40px;
    flex-direction: column;
  }
  
  .about-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 0px 100px 0px;
  }   
  
  .about-text h2 {
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;    
    color: var(--Black);
  }
  
  .about-text p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
    width: 463px;
    color: var(--Black);
  }
  
  .about-text strong {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--Black);    
  }
  
  .about-image {
    width: 100%;
    height: 739px;
    background: url('../src/img/about/About_Us.jpg') lightgray 50% / cover no-repeat;
    align-self: stretch;
}


@media screen and (max-width: 768px) {
    .about-text {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0px;
    }
    .about-us {
        padding: 20% 20px 40px 20px;
    }
    .about-text p {
        width: 100%;
    }
    .about-text h2 {
        font-size: 28px;
    }
    .about-image {
        height: 350px;
    }
}







.about-mission {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  align-items: center;
  gap: 80px;
  justify-content: flex-start;
}
.about-family-project {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  align-items: flex-start;
  gap: 0px;
  justify-content: space-between;
}
.about-project-text,
.about-mission-text {
    flex: 1 1 50%;
    max-width: 607px;
    gap: 34px;
    display: flex;
    flex-direction: column;
}



.about-highlight {
    background-color: var(--Green);
    color: var(--White);
    padding: 0px 10px;
}
.h2-about {
    display: flex;
    justify-content: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 60px 40px;
}
.about-project-text p,
.about-mission-text p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    color: var(--Black);
}

.about-mission-text h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: var(--Black);
    padding-top: 75px;
}

.about-project-images img {
    width: 538px;
    height: 359px;
    aspect-ratio: 538/359;
    object-fit: cover;
}

.about-mission-image img {
    width: 450px;
    height: 539px;
    object-fit: cover;
}
.about-mission-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-mission-text ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

.about-circle {
    background-color: #2b8c4d;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    margin-right: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-project-images {
    position: absolute;
    right: 40px;
}

@media screen and (max-width: 1268px) {
    .about-project-text {
        max-width: 450px;
    }
    .h2-about {
        font-size: 28px;
    }
    .about-mission-image img {
        width: 350px;
    }
    .about-project-images img {
        width: 438px;
    }
    .about-mission {
        gap: 40px;
    }
}
@media screen and (max-width: 968px) {
    .about-project-images {
        position: static;
    }
    .about-family-project {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .about-project-text {
        max-width: 100%;
    }
    .about-project-images img {
        width: 100%;
        height: auto;
    }
    .h2-about {
        padding: 20px 24px;
        font-size: 20px;
        text-align: center;
    }
    .about-mission {
        gap: 20px;
        flex-direction: column-reverse;
        padding: 20px;
    }
    .about-mission-text h2 {
        padding-top: 0px;
        font-size: 28px;
    }
    .about-project-text, .about-mission-text {
        gap: 20px;
    }
    .about-mission-image img {
        width: 100%;
        height: auto;
    }
}


.content-all {
    padding: 10% 40px 100px;
}

.error {
    text-align: center;
    height: 60svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.error h1 {
    font-size: 78px;
    color: var(--Green);
}
.error h2 {
    font-size: 28px;
    color: var(--Green);
}

.error p {
    font-size: 18px;
    color: var(--Black);
}
@media screen and (max-width: 968px) {
    .content-all {
        padding: 10% 40px 40px;
    }
    .error h1 {
        font-size: 38px;
    }
    .error h2 {
        font-size: 18px;
    }
    .error p {
        font-size: 16px;
    }
}


.wpcf7-list-item {
    margin: 0 0 0 0 !important;
}
.contact-checkbox-columns {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-checkbox-group {
    flex: 1;
}

.checkbox-item {
    margin-bottom: 14px;
}

.wpcf7-checkbox .wpcf7-list-item {
    display: flex;
    align-items: center;
    position: relative;
}

.wpcf7-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 16px;
    color: var(--Black);
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 37px; /* Space for custom checkbox */
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;    
    border: 1px solid var(--Black);
    background-color: #fff;
    transition: all 0.3s ease;
}

.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    border-color: var(--Black);
}

/* Стилі для кастомної галочки */
.wpcf7-checkbox input[type="checkbox"] + .wpcf7-list-item-label::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 0px;
    width: 8px;
    height: 16px;
    border: solid var(--Black, #000);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0; /* Початково невидима */
    transform-origin: center;
}

/* Стилі для стану checked */
.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    animation: drawCheck 0.3s ease forwards;
}

/* Анімація малювання галочки */
@keyframes drawCheck {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.2);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.wpcf7-checkbox input[type="checkbox"]:hover + .wpcf7-list-item-label::before {
    border-color: var(--Black);
}


.icon img {
    width: 32px;
    height: auto;
}



.product-category-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    padding: 10% 40px 40px;
    margin: 0 auto;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0; /* Default light border */
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: border-color 0.3s ease; /* UPDATED transition for border-color only */
    width: 100%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */ /* REMOVED box-shadow */
}

.product-card:hover {
    border-color: #158223; /* Hover border color */
    /* transform: translateY(-5px); */ /* REMOVED transform on hover */
}

.product-card-image-link {
    display: block;
    position: relative;
    background-color: #f8f8f8; 
}

.product-card img.product-main-image {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out; 
}

.product-card-content {
    padding: 20px 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
    align-items: flex-start;
    text-align: left;
}

.product-card h3 {
    font-size: 1.25rem; 
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px; 
    color: #000;
    line-height: 1.3;
}

.product-color-swatches {
    display: flex;
    justify-content: center;
    gap: 8px; 
    margin-top: auto; 
    padding-top: 10px; 
    min-height: 28px; 
}

.color-swatch {
    width: 25px;
    height: 25px;
    border: 1px solid #000; 
    cursor: pointer;
    transition: transform 0.2s ease, width 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.15);
}

.color-swatch.active {
    border-color: #158223; 
    transform: scale(1.15);
}

@media screen and (max-width: 768px) {
    .product-card {
        max-width: 100%;
    }
    .product-category-container {
        padding: 18% 16px 40px;
    }
    .product-card img.product-main-image {
        height: 320px;
    }
}