*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

li[role='list'],
ul[role='list'],
ol[role='list'] {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
ins {
    text-decoration: none;
    background-color: transparent;
}

a:hover,
a:focus {
    text-decoration-thickness: from-font;
}

img,
picture,
svg,
canvas,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    background: none;
    border-radius: 0;
    border: none;
    outline: none;
}

button,
input[type='button'],
input[type='submit'],
input[type='reset'] {
    border: none;
    cursor: pointer;
}

button[disabled],
input[disabled] {
    cursor: not-allowed;
}

textarea {
    resize: vertical;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*:focus-visible {
    outline-offset: 2px;
}

:root {
    --header-height: 90px;
}

body {
    background: var(--wp--preset--color--background);
    font-family: var(--wp--preset--font-family--tildasans);
    font-weight: 400;
    font-size: var(--wp--preset--font-size--normal);
    color: var(--wp--preset--color--black);
    display: flex;
    flex-direction: column;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
}

.container {
    max-width: var(--wp--style--global--content-size);
    margin: 0 auto;
    padding: 0 15px;
}

.button {
    color: var(--wp--preset--color--black);
    background-color: var(--wp--preset--color--white);
    border-radius: 10px;
    white-space: normal;
    font-weight: 600;
    padding: 20px clamp(1.875rem, 1.006rem + 3.659vw, 3.75rem);
    transition: background-color 0.3s ease-in-out;
}

.button:hover {
    background-color: #dddddd;
}

.button--green {
    background-color: var(--wp--preset--color--primary);
}

.button--green:hover {
    background-color: #77bb00;
}

.button[disabled] {
    background-color: #777;
}

.button[disabled]:hover {
    background-color: #777;
}

.header {
    background: #272727;
}

.header__container {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: block;
    height: 78px;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__actions {
    display: flex;
    gap: clamp(1.25rem, -0.198rem + 6.098vw, 4.375rem);
    align-items: center;
}

.icon-button {
    width: 70px;
    height: 70px;
    display: block;
}

.icon-button--search {
    background: url('../image/search-icon.webp') no-repeat center center;
    background-size: contain;
}

.icon-button--language {
    position: relative;
}

.icon-button__image {
    background-color: #373737;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.icon-button__image img {
    height: 100%;
    width: 100%;
    max-width: auto;
    object-fit: cover;
}

.icon-button--burger {
    position: relative;
    background: none;
    width: 80px;
    height: 57px;
}

.icon-button--burger span,
.icon-button--burger::before,
.icon-button--burger::after {
    display: block;
    width: 100%;
    height: calc(100% / 6.5);
    background-color: var(--wp--preset--color--primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.icon-button--burger span {
    top: 50%;
    transform: translateY(-50%);
}

.icon-button--burger::before {
    content: '';
    top: 0;
}

.icon-button--burger::after {
    content: '';
    bottom: 0;
}

.language-dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 30px;
    z-index: 2;
    display: none;
}

.icon-button--language:hover .language-dropdown-wrapper {
    display: block;
}

.language-dropdown {
    background: var(--wp--preset--color--primary);
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

.language-dropdown__link {
    display: block;
    color: var(--wp--preset--color--black);
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.language-dropdown__link:hover {
    color: #373737;
}

.side-menu {
    background: #262626;
    padding: 48px 40px 38px;
    width: 100%;
    max-width: 260px;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    transition: right 0.3s ease-in-out;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.side-menu--open {
    right: 0;
}

.side-menu__close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 50px;
    color: var(--wp--preset--color--white);
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-weight: 300;
}

.side-menu__logo {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.side-menu__logo img {
    height: 46px;
}

.side-menu__nav {
    flex: 1;
}

.side-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 24px;
}

.side-menu__link {
    color: var(--wp--preset--color--white);
    transition: opacity 0.3s ease-in-out;
}

.side-menu__link:hover {
    opacity: 0.7;
}

.side-menu__blog-button {
    color: var(--wp--preset--color--white);
    border: 6px solid var(--wp--preset--color--primary);
    border-radius: 30px;
    padding: 7px 24px;
}

.main {
    flex: 1;
}

.hero {
    background: url('../image/hero-background.jpg') no-repeat center center;
    background-size: cover;
    height: calc(100vh - var(--header-height));
    color: var(--wp--preset--color--white);
    text-align: center;
    position: relative;
    margin-bottom: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero__container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    z-index: 1;
}

.hero__title {
    font-size: clamp(1.875rem, 0.137rem + 7.317vw, 5.625rem);
    font-weight: 800;
    color: var(--wp--preset--color--white);
    margin-bottom: 10px;
}

.hero__description {
    font-size: clamp(1.25rem, 1.076rem + 0.732vw, 1.625rem);
    font-family: 'TildaSans';
    font-weight: 500;
    margin-bottom: 45px;
}

.hero__buttons {
    display: flex;
    gap: 10px;
}

.hero__button {
    text-transform: uppercase;
}

.search {
    margin-bottom: 120px;
}

.search__container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.search__input {
    position: relative;
    width: 370px;
    max-width: calc(100% - 190px);
}

.search__input input {
    padding: 0 20px 0 65px;
    height: 60px;
    border: 1px solid var(--wp--preset--color--primary);
    width: 100%;
}

.search__input::before {
    background: url('../image/search-icon.svg') no-repeat center center;
    background-size: contain;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
}

.search__button {
    border-radius: 3px;
    color: var(--wp--preset--color--white);
}

.products {
    margin: 50px 0 60px;
}

.products-main {
    margin-top: 0;
    margin-bottom: 135px;
}

.products__container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.products__title {
    font-size: clamp(1.5rem, 1.037rem + 1.951vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    color: var(--wp--preset--color--primary);
}

.products__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product {
    display: flex;
    flex-direction: column;
}

.product__image {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 20px;
    overflow: hidden;
}

.product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product__name {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.product__price {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    color: var(--wp--preset--color--black);
}

.company-mission {
    margin-bottom: 180px;
}

.company-mission__container {
    display: flex;
    text-align: center;
    flex-direction: column;
}

.company-mission__title {
    font-size: clamp(1.875rem, 1.238rem + 2.683vw, 3.25rem);
    font-weight: 600;
    margin-bottom: 60px;
}

.company-mission__description {
    font-size: clamp(1.25rem, 1.076rem + 0.732vw, 1.625rem);
    line-height: 1.45;
    font-weight: 300;
    margin-bottom: 80px;
}

.company-mission__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    place-items: center;
}

.company-mission__feature {
    max-width: 360px;
}

.company-mission__feature img {
    width: 100%;
}

.charging-advantages {
    margin-bottom: 150px;
}

.charging-advantages__container {
    display: flex;
    gap: 105px;
    align-items: center;
    margin-bottom: 180px;
    flex-direction: column;
}

.charging-advantages__title {
    font-size: clamp(1.875rem, 1.527rem + 1.463vw, 2.625rem);
    font-weight: 600;
}

.charging-advantages__title span {
    color: var(--wp--preset--color--primary);
}

.charging-advantages__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
}

.advantage {
    display: flex;
    flex-direction: column;
}

.advantage__icon {
    width: 55px;
    height: 55px;
    margin-bottom: 23px;
}

.advantage__icon img {
    height: 100%;
    height: 100%;
    object-fit: contain;
}

.advantage__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--wp--preset--color--primary);
}

.advantage__text {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
}

.ask-question {
    margin-bottom: 165px;
}

.ask-question__container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.ask-question__input {
    position: relative;
    flex: 1;
}

.ask-question__input input {
    padding: 0 20px;
    height: 60px;
    border: 1px solid var(--wp--preset--color--black);
    width: 100%;
}

.ask-question__button {
    color: var(--wp--preset--color--white);
}

.visit-blog {
    margin-bottom: 75px;
}

.visit-blog__container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.visit-blog__text {
    font-size: 22px;
    line-height: 1.55;
    font-weight: 300;
    flex: 1;
}

.visit-blog__button {
    color: var(--wp--preset--color--white);
}

.product-page {
    margin-top: 30px;
    margin-bottom: 60px;
}

.product-page__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-page__image-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.slider-wrapper {
    width: 100%;
    position: relative;
}

.slider-product-wrapper {
    aspect-ratio: 1/1;
}

.slider-button {
    background-color: var(--wp--preset--color--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-button::before {
    content: '';
    display: block;
    width: 7px;
    height: 12px;
    background: url('../image/slider-arrow-icon.svg') no-repeat center center;
    background-size: contain;
}

.slider-button--prev {
    left: 30px;
}

.slider-button--prev::before {
    transform: rotate(180deg);
}

.slider-button--next {
    right: 30px;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide--active {
    z-index: 2;
    opacity: 1;
}

.slide--previous {
    z-index: 1;
}

.slider-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.slider-product-thumbnails {
    grid-template-columns: repeat(9, 1fr);
}

.slider-thumbnails__image {
    cursor: pointer;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.slider-product-thumbnails__image {
    aspect-ratio: 1/1;
}

.slider-thumbnails__image:hover,
.slider-switcher--active {
    opacity: 0.7;
}

.product-page__info {
    display: flex;
    flex-direction: column;
}

.product-page__title {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 18px;
}

.product-page__price {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 20px;
}

.product-page__quantity-and-cart {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.product-quantity__container {
    display: flex;
    border-radius: 5px;
    height: 45px;
    align-items: center;
    background-color: #fff;
    border: 1px solid #777;
}

.product-quantity__button {
    width: 30px;
    height: 100%;
    font-size: 30px;
    font-weight: 300;
    color: #777;
}

.product-quantity__button--minus {
    padding-bottom: 8px;
}

.product-quantity__button--plus {
    padding-bottom: 1px;
}

.product-quantity__input {
    width: 40px;
    height: 100%;
    padding: 0;
    text-align: center;
    font-weight: 300;
    color: #777;
}

.product-page__add-to-cart {
    height: 45px;
    padding: 5px 30px;
}

.product-page__description {
    font-size: 14px;
    line-height: 1.55;
    font-weight: 300;
}

.page-view {
    margin: 30px 0 60px;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 300;
}

.page-view h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.23;
    margin-bottom: 44px;
}

.page-view h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.23;
    margin-bottom: 32px;
}

.page-view p {
    margin-bottom: 32px;
}

.page-view ul,
.page-view ol {
    margin: 0 0 32px 0;
    padding-left: 20px;
}

.page-view ul {
    list-style: none;
}

.page-view li {
    position: relative;
    margin-bottom: 16px;
}

.page-view li::before {
    content: '•';
    display: block;
    position: absolute;
    left: -15px;
    top: -1px;
}

.blog-posts {
    margin: 50px 0 60px;
}

.blog-posts__container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.blog-posts__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-posts__item {
    display: flex;
    flex-direction: column;
    display: block;
}

.blog-post__image-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 16px;
    overflow: hidden;
}

.blog-post__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post__title {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--wp--preset--color--black);
}

.blog-post__excerpt {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--wp--preset--color--black);
}

.blog-post__read-more {
    font-size: 16px;
    font-weight: 600;
    color: var(--wp--preset--color--primary);
    transition: opacity 0.3s ease-in-out;
}

.blog-post__read-more:hover {
    opacity: 0.7;
}

.contacts-hero {
    background: url('../image/contacts-background.webp') no-repeat center center;
    height: 460px;
    background-attachment: scroll;
    background-size: cover;
    position: relative;
}

.contacts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.contacts-hero__container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.contacts-hero__title {
    line-height: 1.17;
    font-size: clamp(2.5rem, 1.573rem + 3.902vw, 4.5rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--wp--preset--color--white);
    position: relative;
    z-index: 1;
}

.contacts-info {
    background-color: #ededed;
    padding-top: 150px;
    padding-bottom: 150px;
}

.contacts-info__container {
    display: flex;
    gap: 45px;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.contacts-info__title {
    font-size: 42px;
    line-height: 1.23;
    font-weight: 600;
    color: var(--wp--preset--color--black);
}

.contacts-info__address {
    font-size: 24px;
    line-height: 1.55;
    font-weight: 300;
    color: var(--wp--preset--color--black);
}

.contacts-info__links {
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
    opacity: 0.6;
}

.contacts-info__item-link {
    color: var(--wp--preset--color--black);
}

.contacts-map__container {
    padding: 90px 0;
    display: flex;
    justify-content: center;
}

.contacts-map__button {
    color: var(--wp--preset--color--black);
    border: 3px solid var(--wp--preset--color--primary);
    font-size: 16px;
    padding: 18px 60px;
    font-weight: 600;
    line-height: 1.4;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.pagination__item {
    display: block;
    border: 1px solid #c4c4c4;
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.pagination__item:hover,
.pagination__item--active {
    border-color: var(--wp--preset--color--primary);
}

.pagination__link {
    display: block;
    padding: 8px 12px;
    color: var(--wp--preset--color--black);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.pagination__item:hover .pagination__link,
.pagination__item--active .pagination__link {
    color: var(--wp--preset--color--primary);
}

.contact-actions {
    position: fixed;
    bottom: 50px;
    right: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
}

.contact-actions__toggle {
    width: 60px;
    height: 60px;
    background: var(--wp--preset--color--primary) url('../image/message-icon.svg') no-repeat center center;
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out;
    position: relative;
    z-index: 22;
}

.contact-actions--open .contact-actions__toggle {
    background: var(--wp--preset--color--white) url('../image/close-icon.svg') no-repeat center center;
}

.contact-actions__list {
    position: absolute;
    z-index: 21;
    left: 0;
    bottom: 0;
    width: 100%;
}

.contact-actions__item {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: var(--wp--preset--color--white);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    transition: bottom 0.3s ease-in-out;
}

.contact-actions__item--phone {
    background-image: url('../image/phone-icon.svg');
}

.contact-actions__item--whatsapp {
    background-image: url('../image/whatsapp-icon.svg');
}

.contact-actions--open .contact-actions__item--phone {
    bottom: 70px;
}

.contact-actions--open .contact-actions__item--whatsapp {
    bottom: 130px;
}

.contact-actions__tip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 110%;
    background: #292929;
    color: var(--wp--preset--color--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.contact-actions__item:hover .contact-actions__tip {
    opacity: 1;
    visibility: visible;
}

.cart-widget {
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: calc(var(--header-height) + 20px);
    right: 45px;
    display: none;
    z-index: 20;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
}

.cart-widget--visible {
    display: flex;
}

.cart-widget::before {
    background: url('../image/cart-icon.svg') no-repeat center center;
    background-size: cover;
    content: '';
    display: block;
    width: 40px;
    height: 40px;
}

.cart-widget__count {
    position: absolute;
    background-color: red;
    border-radius: 50%;
    color: #fff;
    height: 30px;
    width: 30px;
    right: -3px;
    bottom: -3px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-widget__tip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 110%;
    background: #292929;
    color: var(--wp--preset--color--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.cart-widget:hover .cart-widget__tip {
    opacity: 1;
    visibility: visible;
}

.footer {
    background: #171717;
    color: var(--wp--preset--color--white);
    font-size: 14px;
    text-align: center;
}

.footer__container {
    padding: 100px 0 85px;
    display: flex;
    gap: 32px;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.footer__menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 16px;
}

.footer__menu-link {
    color: var(--wp--preset--color--white);
    transition: opacity 0.3s ease-in-out;
}

.footer__menu-link:hover {
    opacity: 0.7;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 50;
}

.overlay--visible {
    opacity: 1;
    visibility: visible;
}

.modal-close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 50px;
    color: var(--wp--preset--color--white);
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-weight: 300;
    z-index: 101;
    display: none;
}

.modal-close-button--visible {
    display: block;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--wp--preset--color--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 101;
    width: auto;
    max-width: min(560px, 90%);
    display: none;
}

.modal--visible {
    display: block;
}

.modal__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.modal__content {
    padding: 40px 45px;
}

.modal__title {
    font-size: 36px;
    line-height: 1.23;
    font-weight: 600;
    margin-bottom: 11px;
}

.modal__input-container {
    display: flex;
    gap: 15px;
}

.modal__input {
    flex: 1;
    padding: 0 20px;
    height: 60px;
    color: var(--wp--preset--color--black);
    background-color: #e6e6e6;
    border-radius: 4px;
}

.modal__submit {
    color: var(--wp--preset--color--white);
    border-radius: 4px;
}

.search-modal {
    position: fixed;
    background: var(--wp--preset--color--white);
    left: 0;
    top: -100%;
    transition: top 0.3s ease-in-out;
    z-index: 99;
}

.search-modal__header {
    padding: 45px 0;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
}

.search-modal--visible {
    top: 0px;
}

.search-modal__container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    justify-content: flex-start;
}

.search-modal__input-container {
    position: relative;
    flex: 1;
}

.search-modal__input-container::before {
    background: url('../image/search-icon.svg') no-repeat center center;
    background-size: contain;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
}

.search-modal__input {
    width: 100%;
    padding: 0 55px;
    height: 60px;
    color: var(--wp--preset--color--black);
    background-color: var(--wp--preset--color--white);
    border: 1px solid #c4c4c4;
}

.search-modal__close-button {
    width: 28px;
    height: 28px;
    background: url('../image/close-search-icon.svg') no-repeat center center;
    background-size: contain;
    border-radius: 3px;
    transition: background-color 0.3s ease-in-out;
}

.search-modal__body {
    height: calc(100vh - 150px);
    overflow-y: auto;
    padding: 50px 0;
    display: none;
}

.search-modal__body--visible {
    display: block;
}

.search-modal__text-empty {
    color: #464646;
    font-weight: 300;
    text-align: center;
}

.search-modal__results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.search-modal__result-count {
    font-size: 12px;
    font-weight: 300;
    color: var(--wp--preset--color--black);
    margin-bottom: 10px;
}

.search-modal__result {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-modal__result-image {
    width: 72px;
    height: 72px;
    overflow: hidden;
    flex-shrink: 0;
}

.search-modal__result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-modal__result-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    color: var(--wp--preset--color--black);
}

.search-modal__result-title {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
}

.search-modal__result-text {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    opacity: 0.5;
}

.search-modal__result-price {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
}

.search-modal__text-empty::before {
    background: url('../image/not-found-icon.svg') no-repeat center center;
    display: block;
    content: '';
    width: 35px;
    height: 47px;
    margin: 0 auto 20px;
}

@media (max-width: 1024px) {
    .products__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-mission__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .charging-advantages__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-posts__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header__logo {
        height: 30px;
    }

    .icon-button {
        width: 30px;
        height: 30px;
    }

    .icon-button--burger {
        width: 37px;
    }

    .search__container {
        flex-direction: column;
        align-items: stretch;
    }

    .search__input {
        width: 100%;
        max-width: 100%;
    }

    .products__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .company-mission__features {
        grid-template-columns: repeat(1, 1fr);
    }

    .charging-advantages__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .ask-question__container {
        flex-direction: column;
    }

    .visit-blog__container {
        flex-direction: column;
    }

    .contact-actions {
        right: 10px;
        bottom: 10px;
    }

    .cart-widget {
        right: 10px;
        width: 60px;
        height: 60px;
    }

    .cart-widget::before {
        width: 35px;
        height: 35px;
    }

    .cart-widget__count {
        width: 25px;
        height: 25px;
    }

    .product-page__container {
        grid-template-columns: 1fr;
    }

    .blog-posts__list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 250 1000;
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2') format('woff2-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff') format('woff-variations');
}
@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 300;
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Light.eot');
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Light.eot?#iefix') format('embedded-opentype'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2') format('woff2-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff') format('woff-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Light.woff2') format('woff2'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Light.woff') format('woff');
}
@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 400;
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Regular.eot');
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2') format('woff2-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff') format('woff-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Regular.woff2') format('woff2'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Regular.woff') format('woff');
}
@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 500;
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Medium.eot');
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2') format('woff2-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff') format('woff-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Medium.woff2') format('woff2'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Medium.woff') format('woff');
}
@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 600;
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Semibold.eot');
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Semibold.eot?#iefix') format('embedded-opentype'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2') format('woff2-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff') format('woff-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Semibold.woff2') format('woff2'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Semibold.woff') format('woff');
}
@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 700;
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Bold.eot');
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2') format('woff2-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff') format('woff-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Bold.woff2') format('woff2'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Bold.woff') format('woff');
}
@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 800;
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Extrabold.eot');
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Extrabold.eot?#iefix') format('embedded-opentype'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2') format('woff2-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff') format('woff-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Extrabold.woff2') format('woff2'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Extrabold.woff') format('woff');
}
@font-face {
    font-family: 'TildaSans';
    font-style: normal;
    font-weight: 900;
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Black.eot');
    src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Black.eot?#iefix') format('embedded-opentype'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2') format('woff2-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff') format('woff-variations'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Black.woff2') format('woff2'),
        url('https://static.tildacdn.com/fonts/tildasans/TildaSans-Black.woff') format('woff');
}
