:root {
  --color-dark: #000000;
  --color-dark-light: #202020;
  --color-red: #e60012;
  --color-white: #ffffff;
  --color-grey: #f5f5f5;
  --color-text-grey: #838383;

  --dark-grey: #484848;
  --red: #e60012;
  --grey: #838383;
  --dark: #202020;
  --grey-2: #626262;
  --bright-grey: #e3e3e3;
  --green: #3dc200;
  --orange: #f68c00;
  --light: #f5f5f5;
  --blue: #81cdff;
  --dark-blue: #0084db;
  --dark-red: #c0000f;
  --white: #fff;

  --font-family: "Roboto", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "Inter", sans-serif;
  --font3: "Roboto Flex", sans-serif;
  --font4: "Manrope", sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(white);
  color: var(--color-dark);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 64px;
}
.containers{
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
}
.containers1{
  display: none;

}
.containers ul{
  font-size: 32px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 58px;
  width: 100%;
  height: 92px;
  background-color: var(--color-red);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 32px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.btns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 58px;
  width: 100%;
  height: 92px;
  background-color: var(--color-red);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 32px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #c00;
}
.btns:hover {
  background-color: #c00;
}

/* --------------------------------------------------------------------------------------------------------------------------------Header */
.header {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 25px 0 5px 0;
}

.header-top {
  display: flex;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 5px solid #202020;
  margin-bottom: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-logo {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.header-logo img {
  max-height: 44px;
  width: 264px;
  margin-right: 15px;
}

.logo-img {
  margin-bottom: 10px;
}

.logo-title {
  margin-bottom: 5px;
  color: var(--color-white);
  margin-left: -5px;
  font-size: 24px;
  font-weight: 700;
}

.logo-text {
  color: var(--color-text-grey);
  font-size: 16px;
  font-weight: 600;
}

.contact-phone,
.contact-email {
  font-size: 32px;
  font-weight: 700;
}

.work-time,
.address {
  color: var(--color-text-grey);
  font-size: 18px;
  font-weight: 500;
}

.header-logo a {
  display: flex;
}

.header-logo span {
  font-weight: 700;
  font-size: 20px;
  display: block;
  line-height: 1.2;
}

.header-contacts {
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 73px;
  /* align-self: baseline; */
  margin: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-self: center;
}

/* .contact-item:nth-child(3) {
  margin-left: -32px;
}

.contact-item:nth-child(4) {
  margin-top: 6px;
} */

.header-user {
  display: flex;
  gap: 87px;
  align-items: center;
  margin: auto;
}

.user-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
}

.user-item svg {
  margin-bottom: 15px;
}

.user-item:hover svg path {
  fill: var(--red);
}

.m12r {
  margin-right: 12px;
}

.header-nav nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-grey);
}

.header-nav-item {
  position: relative;
  padding: 8px 0;
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: var(--light);
  transition: color 0.3s ease;
}

.header-nav-item:focus {
  outline: none;
  color: var(--color-red);
}

.header-nav-item:hover::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 0;
  bottom: 5px;
  background: var(--color-red);
}

.header-nav-item:active::after {
  content: none;
  color: var(--color-red);
}




/* Кнопка закрыта по умолчанию */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 34px;
  color: var(--light);
  cursor: pointer;
}

/* Мобильная адаптация */
@media (max-width: 792px) {

  /* Скрываем меню */
  .header-nav nav {
    display: none;
    background: #111;
    padding: 20px;
    border-radius: 12px;
  }
  .logo{
  padding-right: 194px;
  }


  /* Показываем кнопку */
  .menu-btn {
    display: block;
  }

  /* Активное меню */
  .header-nav nav.active {
    display: block;
  }

  .header-nav nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .header-nav-item {
    font-size: 20px;
  }
}



.active-page {
  color: var(--color-red);
}

/* ------------------------------------------------------------------------------------------------------------------------Search Section */
.search-section {
  /* background-color: var(--color-grey); */
  padding: 84px 0;
  text-align: center;
}

.search-section h2 {
  margin-bottom: 55px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}

.search-form {
  display: flex;
  
  margin: 0 auto;
}
.relative{
  width: 100%;
}
.search-form-btn{
  margin-left: 30px;
}




.search-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.search-form input {
  font-weight: 600;
  color: var(--color-text-grey);
  width: 100%;
  padding: 25px;
  font-size: 31px;
  padding-left: 135px;
  border: 1px solid #c6c6c6;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: url("../img/search.svg") no-repeat 30px center;
  background-color: var(--color-white);
  transition: padding-left 0.3s ease, background-position 0.3s ease;
}

.search-form input:focus {
  outline: none;
  padding-left: 25px;
  background-position: -50px center;
}

/* Кнопка очистки */
.clear-btn {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-form input:not(:placeholder-shown)+.clear-btn {
  opacity: 1;
}

/* Красная каретка и скрытие плейсхолдера */
.search-form input {
  caret-color: red;
}

.search-form input:focus::placeholder {
  opacity: 0;
}

/* Стили для кнопки "Найти" */
.search-form .btn svg {
  width: 54px;
  height: 54px;
  fill: var(--color-white);
  margin-left: 20px;
}
.results{
  width: 100%;
  overflow-x: auto;
  margin-bottom: 100px;
}
/* Стили для таблицы результатов поиска */
.search-results {
  display: none;
  margin-top: 69px;
}

.search-results.visible {
  display: block;
}

.table-controls {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}

.table-controls h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 144%;
  text-align: left;
  color: var(--dark-grey);
}

.rows-per-page {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-rows {
  border-radius: 8px;
  border: none;
  width: 42px;
  height: 42px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: var(--grey-2);

  cursor: pointer;
}

.btn-rows.active {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
  background: var(--dark);
}

/* Pagination */

.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.pagination button {
  border: 1px solid var(--bright-grey);
  border-radius: 8px;
  /* padding: 13px 16px; */
  width: 42px;
  height: 42px;
  background: #f7f7f7;
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: var(--dark);
}

.pagination button.active {
  border: 1px solid var(--bright-grey);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--dark);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
}

.pagination button:hover:not(.active) {
  background: #f0f0f0;
}

.pagination button:disabled {
  padding: 6px;
  border-radius: 8px;
  fill: var(--bright-grey);
  cursor: not-allowed;
}

.prevButton,
.nextButton {
  background: #838383;
  color: #838383;
  padding: 8px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prevButton:not(:disabled),
.nextButton:not(:disabled) {
  background: #202020;
  color: #e60012;
}

.prevButton:disabled,
.nextButton:disabled {
  cursor: not-allowed;
}

.pagination button.nextButton {
  fill: var(--dark);
  padding: 8px;
}

.search-results table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); */
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.search-results th {
  width: 205px;
  height: 64px;
  padding: 7px 0;
  border: 1px solid var(--bright-grey);
  background: var(--dark);
  font-weight: 600;
  font-size: 24px;
  line-height: 192%;
  text-align: center;
  color: var(--white);
}

.search-results td {
  padding: 15px 24px;
  border: 1px solid var(--bright-grey);
  background: var(--white);
  font-weight: 400;
  font-size: 18px;
  color: #000;
}


.search-results td:nth-child(4) {
  text-align: left;
}

.search-results td:nth-child(8) {
  padding: 0;
}

.search-results tr:hover {
  background: #f5f5f5;
}

.search-results .availability {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.search-results .in-stock {
  font-weight: 400;
  font-size: 18px;
  color: var(--green);
}

.search-results .out-of-stock {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: var(--orange);
}

.search-results .price {
  font-weight: 600;
  color: #1976d2;
}


.search-results .img-cell {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 103px;
  /* height: max-content; */
  width: -webkit-fill-available;
}

.add-to-cart {
  padding: 26px;
  border: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  border: 1px solid var(--bright-grey);
  cursor: pointer;
}

.add-to-cart:hover {
  background: var(--dark-red);
}

.add-to-cart span {
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  color: var(--white);
}

/* Стили для лоадера */
.loader {
  display: none;
  margin: 20px auto;
  width: 40px;
  height: 40px;
  border: 4px solid var(--red);
  border-top: 4px solid var(--red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}


.loader.visible {
  display: block;
}

/*---------------------------------------------------------------------------------------------------------------------------------- Brands Section */
.brands-section {
  background-color: var(--color-grey);
}

.brands-wrapper {
  background-color: var(--color-dark-light);
  padding: 62px 0px;
  border-radius: 40px;
  position: relative;
  z-index: 3;
}

.brands-section h3 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 42px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 50px;
}

.brands-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  filter: grayscale(100%) brightness(500%);
  flex-wrap: wrap;
}

.brands-logos img {
  max-width: 340px;
  object-fit: contain;
}

/* --------------------------------------------------------------------------------------------------------------------------------------Hero Section */
.hero-section {
  background-image: url("../img/hero.png");
  min-height: 956px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  position: relative;
  /* Добавляем для z-index */
  z-index: 1;
  /* Убедимся, что hero-section будет под brands-wrapper */
  margin-top: -180px;
}

.hero-section h1 {
  margin-top: 38px;
  margin-bottom: 72px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 84px;
  
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

.hero-section p {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

/* ---------------------------------------------------------------------------------------------------How It Works Section */
.how-it-works {
  position: relative;
  margin-top: -145px;
  background-color: var(--color-dark-light);
  color: var(--color-white);
  padding: 112px 0 0 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 2;
}

.how-it-works h2 {
  font-family: var(--second-family);
  margin-bottom: 79px;
  font-weight: 800;
  font-size: 42px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 23px 65px;
  padding-left: 28px;
  padding-right: 28px;
}

.arrow-container {
  position: relative;
}

.arrow-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.wrapper-number {
  display: flex;
  align-items: center;
  padding: 11px;
  height: 100px;
}

.step-number {
  background-color: var(--color-red);
  color: var(--color-white);
  min-width: 62px;
  min-height: 64px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin-right: 20px;
}

.step-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  color: var(--color-white);
}

.step-desc {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #c6c6c6;
  padding: 28px 67px 0 0;
  text-align: left;
}

.step-desc svg {
  width: 16px;
  height: 16px;
  fill: #ccc;
  margin-right: 5px;
  vertical-align: middle;
}

/* -----------------------------------------------------------------------------------------------------------------------Assortment Section */
.assortment-section {
  background-color: var(--color-dark-light);
  color: var(--color-white);
  padding: 100px 0 165px 0;
}

.assortment-section h2 {
  font-family: var(--second-family);
  margin-bottom: 66px;
  font-weight: 800;
  font-size: 36px;
  line-height: 128%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

.assortment-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 50px;
}

.assortment-item {
  border: 2px solid var(--grey-2);
  border-radius: 40px;
  padding: 40px 0px;
  width: 359px;
  height: 457px;
  transition: transform 0.3s ease;
}

.assortment-item:hover {
  transform: translateY(-5px);
}

.assortment-item img {
  max-width: 100%;
  height: 245px;
  /* Fixed height */
  object-fit: contain;
  margin-bottom: 26px;
  border-radius: 10px;
}

.assortment-item h3 {
  padding: 20px;
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  color: #c6c6c6;
}

.original-section {
  background-color: #212121;
}

.original-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}



.original-text {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 42px;
  text-transform: uppercase;
  text-align: right;
  color: var(--white);
}

.logo-wrapper {
  padding: 10px 20px;
}

.original-logo {
  display: block;
  max-height: 100px;
  width: auto;
}

.original-text-r {
  text-align: left;
}

/* --------------------------------------------------------------------------------------------------------------------Features Section */

.features-section {
  background-color: var(--color-dark-light);
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.feature-wrapper {
  color: var(--color-white);
  padding-top: 50px;
  padding-bottom: 110px;
  display: flex;
  align-items: center;
  gap: 12px;
  
}

.features-content h3 {
  color: var(--color-text-grey);
  font-size: 36px;
  margin-bottom: 10px;
  text-align: left;
}

.feature-wrapper p {
  grid-column: 1 / -1;
  margin-bottom: 30px;
  

  font-weight: 600;
  font-size: 36px;
  line-height: 133%;
  text-align: start;
  color: var(--grey);
}
.features-image{
 width: 100%;
 margin-right: 20px;
}

.features-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;

  font-weight: 500;
  font-size: 30px;
  line-height: 45px;
  color: var(--bright-grey);
}

.features-list li>div:first-child {
  font-size: 30px;
  white-space: nowrap;
  flex-shrink: 0;
  width: 120px;
  text-align: center;
}

/*---------------------------------------------------------------------------------------------------- Certificate Section */

.cert-logo {
  margin: 143px 0 125px 0;
  background-color: var(--color-grey);
  border-radius: 40px;
  padding: 43px 48px;
}

.container-cert {
  max-width: 1681px;
}

.cert-wrapper {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  border-bottom: 4px solid var(--bright-grey);
}

.cert-title {
  margin-bottom: 12px;
  padding-top: 20px;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: var(--dark);
}

.cert-img {
  display: flex;
  flex-direction: column;
  align-self: center;
  position: relative;
}

.certificate-image {
  max-width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoom-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -90px;
  margin-top: -8px;
  border: none;
  background: none;
  font-weight: 500;
  font-size: 24px;
  color: var(--red);
  cursor: pointer;
  z-index: 1;
}

.zoom-text{
  margin-left: 15px;
}

.zoom-btn:hover rect {
  fill: #c0000f;
}

.zoom-btn:hover path {
  fill: white;
}

/* Стили для оверлея и увеличенного изображения */
/* .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  cursor: zoom-out;
}

.zoomed-image {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2);
  max-height: 40%;
  z-index: 1001;
  cursor: zoom-out;
  transition: transform 0.3s ease;
} */





        /* .cert-img {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      width: 300px;
    }

    .certificate-image {
      width: 100%;
      height: auto;
      cursor: zoom-in;
      border-radius: 8px;
      display: block;
    }

    .zoom-btn {
      margin-top: 8px;
      display: inline-flex;
      gap: 8px;
      align-items: center;
      cursor: pointer;
      user-select: none;
      z-index: 2;
    } */


    .certificate-image {
  width: 100%;
  height: auto;
  cursor: zoom-in;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease; /* плавность */
}

/* эффект увеличения при наведении */
.certificate-image:hover {
  transform: scale(1.05); /* увеличение на 5% */
}


    /* overlay */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.8);
      z-index: 1000;
      display: none;
      cursor: zoom-out;
    }

    .zoomed-image {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      max-width: 90%;
      max-height: 90%;
      z-index: 1001;
      cursor: zoom-out;
      transition: transform .25s ease, opacity .25s ease;
      opacity: 0;
      transform-origin: center center;
     
    }

    /* класс, который мы добавим для плавного появления */
    .zoomed-image.show {
      opacity: 1;
      transform: translate(-50%,-50%) scale(1);
    }












.cert-brb {
  border-bottom: 4px solid var(--bright-grey);
  margin-bottom: 37px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 19px;
}

.cert-brb:last-child {
  border-bottom: none;
}

.cert-content h3 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 31px;
  color: var(--dark);
}

.cert-text {
  margin-bottom: 47px;
  line-height: 34px;
  font-weight: 400;
  font-size: 24px;
  color: var(--dark-grey);
}

.cert-text p {
  margin-bottom: 12px;
}

.cert-text a {
  color: #202020;
  font-weight: 600;
  text-decoration: underline;
}

.delivery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 35px;
}

.delivery-content {
  display: flex;
  padding-left: 10px;
  gap: 27px;
  align-items: center;
  margin-bottom: 50px;
}

.delivery-left h3 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--dark);
}

.delivery-right {
  width: 90%;
}

.delivery-item {
  display: flex;
  /* flex-direction: row; */
  align-items: start;
  padding-left: 13px;
  margin-bottom: 25px;
}

.delivery-item:last-child {
  margin-bottom: 0;
}

.delivery-item h4 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: var(--dark);
}

.delivery-svg {
  margin-right: 25px;
  object-fit: none;
  padding-top: 10px;
  
}
.delivery-svgs {
  margin-right: 25px;
  object-fit: none;
  padding-top: 10px;
  
}

.delivery-item p {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: var(--dark-grey);
}

/* ----------------------------------------------------------------------------------------------------------------Service Section */

.service-section {
  margin-bottom: 122px;
}
.service-section-more{
  margin-top: 88px;
  margin-bottom: 88px;
}

.service-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
}

.service-section h2 {
  margin-bottom: 60px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 42px;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark);
}

.service-text {
  margin-bottom: 70px;
  font-weight: 400;
  font-size: 36px;
  line-height: 133%;
  color: var(--dark-grey);
}
.service-text1 {
  margin-bottom: 70px;
  font-weight: 600;
  font-size: 36px;
  line-height: 133%;
  color: var(--dark-grey);
}

.service-block {
  background-color: #f4f4f4;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.service-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 20px 0 0 20px;
  width: 215px;
  height: 276px;
  background: var(--red);
}

.service-block-text {
  margin: 20px;
}

.service-block p {
  font-weight: 600;
  font-size: 24px;
  line-height: 158%;
  color: var(--color-dark);
}

.service-block p:first-child {
  margin-bottom: 40px;
}

.pop-up-form .btn{
  width: 40%;
  display: flex;
  margin: auto;
  height: 72px;
  padding: 16px 25px;
  
}

.pop-up{
    background-color: #f5f5f5;
  padding: 40px 66px;
  border-radius: 40px;
  text-align: end;  
  width: 1000px;
  height: 640px;
  margin: auto;
}


.pop-up h3 {
  margin-bottom: 35px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 36px;
  line-height: 128%;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark-grey);
}
.pop-up-form p {
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--dark-grey);
}
.pop-up-form input {
  width: 100%;
  padding: 35px 40px;
  margin-bottom: 35px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
}

.pop-up-form input::placeholder {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--grey);
}



.pop-up-form p a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--dark-blue);
}
.pop-up-form .btn svg {
  width: 54px;
  height: 54px;
  fill: var(--color-white);
  margin-left: 40px;
}

/* Затемнение */
.overlay1 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 99;
}

/* Pop-up */
.pop-up {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

/* Активные классы */
.overlay1.active,
.pop-up.active {
  display: block;
}









.service-form-wrapper {
  background-color: #f5f5f5;
  padding: 55px 66px;
  border-radius: 40px;
  text-align: center;
}

.service-form-wrapper h3 {
  margin-bottom: 35px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 36px;
  line-height: 128%;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark-grey);
}

.service-form input {
  width: 100%;
  padding: 35px 40px;
  margin-bottom: 35px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
}

.service-form input::placeholder {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--grey);
}

.service-form p {
  margin-bottom: 42px;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--dark-grey);
}

.service-form p a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--dark-blue);
}

.btn-application {
  width: 100%;
  height: 100%;
  padding: 9px 80px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

.service-form .btn svg {
  width: 54px;
  height: 54px;
  fill: var(--color-white);
  margin-left: 10px;
}

.service-motor-toggle {
  margin-top: -108px;
}

.service-motor-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 82px;
}

.service-motor-title {
  display: inline-block;
  margin-bottom: 105px;
  margin-right: 50px;
  font-weight: 600;
  font-size: 36px;
  line-height: 133%;
  color: var(--grey-2);
}

.service-motor-list {
  columns: 4;
  font-weight: 500;
  font-size: 32px;
  color: var(--dark-grey);
  margin-top: -90px;
  margin-bottom: 93px;
  transition: all 0.3s ease;
}

.service-motor-list.hidden {
  display: none;
}

.service-motor-list li:nth-child(n + 5):nth-child(-n + 8) {
  text-align: center;
}

.service-motor-btn {
  border: none;
  background: none;
  cursor: pointer;
  margin-top: 30px;
}

.toggle-icon {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.service-motor-btn[aria-expanded="true"] .toggle-icon {
  transform: rotate(0deg);
}

/* -----------------------------------------------------------------------------------------------------------Service Center Section */
.service-center-section {
  display: flex;
  /* flex-direction: column; */
  padding: 0;
  display: flex;
}

.service-center {
  display: flex;
  flex-direction: row;
  margin-bottom: 81px;
}

.service-center-image {
  height: 725px;
  border-radius: 40px 0 0 40px;
  background-image: url("../img/service-img.png");
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 40px 83px 68px 107px;
}

.service-guarantee {
  display: inline-flex;
  padding: 30px 30px 30px 99px;
  border-radius: 15px;
  align-items: center;
  gap: 15px;
  position: relative;
  background-color: var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
  position: absolute;
  top: -70px;
  left: -63px;
}

.guarantee-text {
  font-weight: 900;
  font-size: 42px;
  text-transform: uppercase;
  color: var(--red);
}

.guarantee-text span {
  display: block;
  text-transform: lowercase;
  font-weight: 700;
  color: var(--dark);
}

.service-center-list {
  border-radius: 0 40px 40px 0;
  padding: 100px 87px 88px 77px;
  background-color: var(--color-grey);
}

.service-center-list h3 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 36px;
  line-height: 128%;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  margin-bottom: 68px;
}

.service-center-list h3::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 620px;
  height: 5px;
  background-color: var(--color-red);
}

.service-center-list ul li {
  font-weight: 500;
  font-size: 30px;
  line-height: 200%;
  color: var(--dark-grey);
  padding-left: 20px;
  position: relative;
}

.service-center-list ul li::before {
  content: "•";
  color: var(--color-red);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 30px;
}

/* ---------------------------------------------------------------------------------------------------------Advantages Section */
.advantages {
  padding: 0 25px;
}
.advantages-section{
  margin-top:84px; 
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 47px;
}

.advantage-item {
  display: flex;
  padding: 33px 72px;
  border-radius: 40px;
  background: var(--dark);
  min-height: 364px;
}

.advantage-icon {
  min-width: 130px;
  height: 120px;
}

.advantage-icon2 {
  min-width: 120px;
  height: 120px;
}

.advantage-icon3 {
  min-width: 113px;
  height: 120px;
}

.advantage-icon4 {
  min-width: 137px;
  height: 120px;
}

.advantage-text h4 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 36px;
  line-height: 128%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

.advantage-text p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  color: var(--grey);
}

/*------------------------------------------------------------------------------------- Clients Section */
.clients-section {
  margin-bottom: 300px;
  margin-top: 126px;
  text-align: center;
}

.clients-section h2 {
  margin-bottom: 118px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 42px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 115px;
  padding: 0 102px;
  align-items: center;
  justify-items: center;
}
/* 
.clients-logos img:nth-child(1) {
  margin-bottom: -37px;
}

.clients-logos img:nth-child(2) {
  margin-right: -150px;
}

.clients-logos img:nth-child(3) {
  margin-right: -131px;
  margin-top: -40px;
} */

/* .clients-logos img:nth-child(5) {
  margin-left: -37px;
}

.clients-logos img:nth-child(6) {
  margin-right: 38px;
} */

.clients-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ----------------------------------------------------------------------------------------------------Footer */
.footer {
  background: var(--dark);
  color: var(--grey);
  padding-top: 58px;
  border-radius: 40px 40px 0 0;
}

.footer-logos {
  justify-content: space-between;
  
}

.footer-brands {
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 4px solid color-mix(in srgb, var(--dark-grey) 50%, transparent);
}

.footer-nav {
  padding-bottom: 48px;
  margin-bottom: 10px;
  border-bottom: 4px solid color-mix(in srgb, var(--dark-grey) 50%, transparent);
}

.footer-nav nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-nav-item {
  position: relative;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--light);
}

.footer-nav-item:focus {
  color: var(--color-red);
}

.footer-nav-item:hover::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 0;
  bottom: 0px;
  background: var(--color-red);
}

.footer-nav-item:active {
  color: var(--color-red);
}

.footer-contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 27px;
  border-bottom: 4px solid color-mix(in srgb, var(--dark-grey) 50%, transparent);
}

.footer-contact-desc {
  font-weight: 600;
  font-size: 24px;
  color: var(--grey);
}

.footer-bottom {
  display: flex;
  align-items: center;
  padding-bottom: 65px;
  font-weight: 500;
  font-size: 24px;
}

.footer-bottom span {
  margin-right: 263px;
}

.footer-bottom-use {
  margin-right: auto;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.footer-bottom-use:hover {
  color: var(--light);
}

.footer-bottom-2engine:hover .path-2engine {
  fill: #f25100;
  transition: fill 0.3s ease;
}

/* ---------------------------------------------------------------------------------------------страница оплаты и доставки */

.section-delivery {
  padding: 60px 0 152px 0;
}

.section-title {
  margin-bottom: 69px;
  font-weight: 900;
  font-size: 42px;
  text-transform: uppercase;
  text-align: left;
  color: #000;
}

.delivery {
  display: flex;
  flex-direction: row;
  gap: 20.5%;
}

.delivery-pickup {
  max-width: 648px;
}

.delivery-pickup-item {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
  border-radius: 20px;
  padding: 12px;
  width: 271px;
  height: 72px;
  background: var(--dark);
}

.delivery-pickup-item svg {
  margin-right: 28px;
}

.delivery-pickup-item span {
  font-weight: 600;
  font-size: 28px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--white);
}

.delivery-pickup h4 {
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 32px;
  line-height: 150%;
  color: var(--dark-grey);
}

.delivery-pickup p {
  margin-bottom: 42px;
  font-weight: 400;
  font-size: 24px;
  line-height: 142%;
  color: var(--dark);
}

.delivery-pay-item {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
  border-radius: 20px;
  padding: 12px;
  width: 271px;
  height: 72px;
  background: var(--dark);
}

.delivery-pay-item svg {
  margin-right: 28px;
}

.delivery-pay-item span {
  font-weight: 600;
  font-size: 28px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--white);
}

.delivery-pay p {
  font-weight: 400;
  font-size: 24px;
  line-height: 142%;
  color: var(--dark);
}

.deliveri-contacts-adress {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 42px;
}

.deliveri-contacts svg {
  margin-right: 24px;
}

.deliveri-contacts p {
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
  color: #000;
  align-items: center;
}

.deliveri-contacts-map {
  margin-bottom: 75px;
  border-radius: 40px;
  width: 100%;
  height: 320px;
  overflow: auto;
}

.transport h3 {
  margin-bottom: 48px;
  font-weight: 800;
  font-size: 32px;
  line-height: 150%;
  color: var(--dark-grey);
}

.rus {
  display: inline-block;
  max-width: 367px;
  margin-right: 175px;
  margin-bottom: 48px;
}

.rus div {
  border-radius: 20px;
  padding: 10px 30px;
  margin-bottom: 32px;
  width: 235px;
  height: 68px;
  background: var(--red);
  font-weight: 800;
  font-size: 32px;
  line-height: 150%;
  color: var(--white);
}

.rus p,
.chn p {
  font-weight: 800;
  font-size: 32px;
  line-height: 144%;
  color: #000;
}

.chn {
  display: inline-block;
  max-width: 532px;
}

.chn div {
  border-radius: 20px;
  padding: 10px 43px;
  margin-bottom: 32px;
  width: 235px;
  height: 68px;
  background: var(--red);
  font-weight: 800;
  font-size: 32px;
  line-height: 150%;
  color: var(--white);
}

.transport-text {
  max-width: 1107px;
  margin-bottom: 78px;
}

.transport-text p {
  font-weight: 400;
  font-size: 24px;
  line-height: 142%;
  color: var(--dark);
}

.transport-text p:nth-child(1) {
  margin-bottom: 34px;
}

.transport-logo {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
}

/* Modal Window Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  border-radius: 40px;
  padding: 96px 32px 70px 32px;
  height: 640px;
  width: 100%;
  max-width: 1000px;
  background: var(--light);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.modal-close:hover {
  transform: scale(1.1);
}

.modal-close svg {
  width: 28px;
  height: 28px;
}

.modal-close svg path {
  transition: fill 0.2s;
}

.modal-close:hover svg path {
  fill: var(--red);
}

.modal-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.modal-form h3 {
  margin-bottom: 32px;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 36px;
  line-height: 128%;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark-grey);
}

.modal-form input {
  border-radius: 20px;
  border: none;
  max-width: 800px;
  width: 100%;
  height: 82px;
  padding: 24px 40px;
  margin-bottom: 24px;
  background: var(--white);
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--grey);
}

.modal-form input:last-child {
  margin-bottom: 32px;
}

.modal-form .terms {
  width: 50%;
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--dark-grey);
}

.modal-form .terms a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--dark-blue);
}

.modal-form .order-btn {
  border-radius: 20px;
  padding: 9px 19px;
  width: 334px;
  height: 72px;
  background: var(--red);
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 30px;
  line-height: 153%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  transition: background-color 0.3s;
}

.modal-form .order-btn:hover {
  background-color: var(--dark-red);
}

.modal-form .order-btn svg {
  width: 54px;
  height: 54px;
  fill: var(--color-white);
  margin-left: 10px;
}

/* Media Queries for Responsive Design */
@media (max-width: 1670px) {
  .advantages-grid{
    display:flex;
    
    gap: 50px;
    flex-wrap: wrap;
  }
  .advantage-item{
    align-items: center;
    padding: 33px 40px;
  }
  .steps-grid {
  
    grid-template-columns: repeat(3, 1fr);
  
  } 
  .original-text {
    font-size: 35px;
  }
  .features-list li{
   font-size: 26px;
  }
}
@media (max-width: 1440px) {
  .steps-grid {
  
    grid-template-columns: repeat(3, 1fr);
  
  } 
  .original-text {
    font-size: 35px;
  }
  .feature-wrapper{

    flex-wrap: wrap;
    justify-content: center;
  }
      .features-image {
       display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }
    .feature-wrapper p{
      text-align: center;
    }

}

/* For tablets and smaller devices */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-contacts {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .header-user {
        gap: 40px;
    }

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

    .assortment-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .feature-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }



    .service-wrapper, .cert-wrapper, .delivery-wrapper {
        grid-template-columns: 1fr;
    }
    
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-contacts {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 20px;
        
    }
    .footer-logos {
     justify-content: center;
    flex-wrap: wrap;
    }
      .original-text {
    font-size: 29px;
  }
  .containers{
   display: none;
  }
  .containers1{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap ;
  }
  .containers1 ul{
    font-size: 32px;
  }
  .pop-up{
    background-color: #f5f5f5;
  padding: 40px 66px;
  border-radius: 40px;
  text-align: end;  
  width: 80%;
  height: 640px;
  margin: auto;
}
.pop-up-form .btn{
  width: 80%;
}

}
@media (max-width: 992px) {

    .footer-contacts {
        
        align-items: flex-start;
        gap: 20px;
        flex-direction: column;

    }
    .brands-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      filter: grayscale(100%) brightness(500%);
      flex-direction: column;
    }
    .hero-section h1{
    font-size: 62px;
  }
  .assortment-section h2{
    font-size: 30px;
  }
  .cert-wrapper{
    flex-direction: column;
  }
}
/* For mobile devices */
@media (max-width: 768px) {
  .search-form-btn {
    margin-left: 0px;
    margin-top: 20px;
  }
  .footer-bottom-use{
    margin: auto;
  }
  .container {
        padding: 0 16px;
    }

    .header-nav nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-contacts {
        grid-template-columns: 1fr;
    }
    
    .header-user {
        flex-direction: column;
        
        gap: 20px;
    }

    .search-form {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        font-size: 24px;
        padding: 16px;
    }
    
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 32px;
    }

    .steps-grid, .assortment-grid {
        grid-template-columns: 1fr;
    }

    .original-container {
        flex-direction: column;
        text-align: center;
    }

    .original-text {
        text-align: center;
    }
    
    .features-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .advantage-item {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        text-align: center;
    }

    .clients-logos {
        grid-template-columns: 1fr;
    }

    .footer-nav nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-bottom span {
        margin-right: 0;
    }
    .brands-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      filter: grayscale(100%) brightness(500%);
      flex-wrap: wrap;
    }
    .section-title{
    font-size: 38px;
    
    }
    .brands-section h3 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 50px;
}
.hero-section h1{
  font-size: 52px;
}
  .assortment-section h2{
    font-size: 24px;
  }
  .advantage-text h4{
    font-size: 28px;

  }
  .advantage-text p{
    font-size: 22px;
  }
    .containers1{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .containers1 ul{
    font-size: 28px;
  }
  .pop-up{
    padding: 20px 30px;
  }
  .pop-up h3{
    font-size: 28px;
    margin-bottom: 20px;
  }
  .pop-up-form p{
    font-size: 20px;
    margin-bottom: 20px;
  }

}

@media (max-width: 480px) {
    .logo-title {
        font-size: 20px;
    }
    .logo-text {
        font-size: 14px;
    }
    .contact-phone, .contact-email {
        font-size: 24px;
    }

    .hero-section h1 {
        font-size: 36px;
    }
    .hero-section p {
        font-size: 24px;
    }
    
    .service-form-wrapper {
        padding: 25px;
    }
    
    .guarantee-text {
        font-size: 28px;
    }
    
    .service-center-list {
        padding: 40px 20px;
    }
        .rus {
    display: inline-block;
    max-width: 367px;
    margin-right: 0px;
    margin-bottom: 48px;
  }
    .logo {
    padding-right: 30px;
  }
    .advantage-text h4{
    font-size: 22px;
    padding-bottom: 7px;
    padding-top: 7px;

  }
  .advantage-text p{
    font-size: 18px;
  }
}
/* Further Responsive Improvements */

/* General fix for potential text overflow */
body {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 1200px) {
    .assortment-item {
        width: 100%;
        max-width: 359px;
    }

    .service-block-icon {
        width: 150px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .assortment-item {
        padding: 20px;
        height: auto;
    }

    .service-block {
        flex-direction: column;
    }

    .service-block-icon {
        width: 100%;
        border-radius: 15px 15px 0 0;
        padding: 20px;
    }
    
    .service-block-text {
        margin: 10px;
    }
    
    .guarantee-icon {
        position: static;
        margin: 0 auto 15px;
    }

    .service-guarantee {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .service-center-image {
        padding: 20px;
        height: auto;
        border-radius: 15px;
    }
    
    .service-center-list {
        border-radius: 15px;
    }

    .service-center-list h3::after {
        width: 100%;
    }

    .advantage-item {
        padding: 10px;
    }

    /* Fix for delivery page if it's being used */
    .delivery {
        flex-direction: column;
        gap: 40px;
    }
    
    .deliveri-contacts-map {
        width: 100%;
        height: 300px;
    }
    
    .transport-logo {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .assortment-item h3 {
        font-size: 28px;
    }

    .step-desc {
        font-size: 20px;
        padding: 15px;
    }

    .features-list li {
        font-size: 24px;
        line-height: 1.5;
    }

    .cert-text, .delivery-item p {
        font-size: 20px;
    }
    
    .service-block p {
        font-size: 20px;
    }
}
