  @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
html{
  overflow: auto;
}
        :root {
            --color-primary: #000;
            --color-primary-light: #7a4ca3;
            --color-accent: #FFFFFF;
            --color-text: #1a1a1a;
            --color-text-light: #666;
            --color-bg: #f8f9fa;
            --color-white: #ffffff;
            --color-border: #e0e0e0;
            --radius: 8px;
            --shadow: 0 2px 8px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
        }

        body {
          overflow-x: hidden;
              font-family: "Manrope", sans-serif;
            color: var(--color-text);
                       background: #F5F5F5;

            line-height: 1.6;
        }

        /* Header & Navigation */
        header {
            background: url('../images/headerBackground.jpg');
            color: var(--color-white);
            padding: 15px 0;
            /* position: sticky; */
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        .header-top {
             font-family: "Manrope", sans-serif;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 30px;
        }
      

        .logo__left{
            display: flex;
            align-items: center;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            margin-right: 10px;


        }
  .logo-text{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-main{
            margin-right: 20px;
                        line-height: normal;
                        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        .logo-sub{
            font-size: 14px;
            font-weight: lighter;
        }
        .header-contacts {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            font-size: 14px;
        }

        .contact-label {
            opacity: 0.8;
            font-size: 14px;
        }

        .contact-value {
            font-weight: 600;
            font-size: 18px;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--color-accent);
            color: var(--color-primary);
            border: 1px solid var(--color-accent);

        }

        .btn-primary:hover {
            background: transparent;
            border: 1px solid var(--color-accent);
            color: var(--color-white);
        }

        .btn-secondary {
            background: #F7BD16;
            border: 1px solid #F7BD16;
            color: var(--color-primary);
        }

        .btn-secondary:hover {
            background:transparent;
            color: var(--color-white);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            margin-left: 15px;
            z-index: 1000;
        }
        .burger-menu.active{
          position: fixed;
          right: 15%;
        }

        .burger-menu span {
            width: 25px;
            height: 2px;
            background: var(--color-white);
            transition: 0.3s;
        }

        .burger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Main Navigation */
        nav {
            margin-top: 20px;
            padding: 0;
             font-family: "Manrope", sans-serif;

        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0;
        }
        .nav__left{
            display: flex;
        }
        .navActive{
          color: #F7BD16;
        }
        nav a {
            color: var(--color-white);
            background-color: #1F073D;
            border-radius: 5px;
            text-decoration: none;
            padding: 0 15px;
            height: 44px;
            line-height: 44px;
            display: block;
            transition: background 0.3s;
            border-bottom: 3px solid transparent;
            margin-right: 7px;
            font-size: 14px;
        }

        nav a:hover {
            border-bottom-color: var(--color-accent);
        }
        .nav__right{
            display: flex;
        }
        .navInput{
            height: 44px;
            outline: none;
            border: none;
            border-radius: 5px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;

            background-color: #1F073D;
            color: #FFFFFFB2;
            padding: 10px 15px;
        }
        .btn-search{
            background-color: #1F073D;
            height: 44px;
            border-radius: 5px;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;

        }
        /* Hero Section */
        .hero {
                    color: var(--color-white);
            padding: 80px 20px;
            text-align: left;
            position: relative;
            overflow: hidden;
        }


        .hero-content {
            max-width: 1000px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }


        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .feature-badge {
            background: var(--color-accent);
            color: #333333;
            padding: 12px 10px;
            border-radius: 5px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
         .feature-badge img{
            width: 40px;
            height: 40px;
            margin-right: 10px;
         }


        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 15px 30px;
            font-size: 16px;
        }

       section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }


        section h2 {
            font-size: 40px;
            margin-bottom: 15px;
        }



/* Section Alt end */
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .product-card {
            background: var(--color-white);
            border: 1px solid #eeeeee;
            border-radius:5px;
            padding: 20px;
            /* text-align: center; */
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .header_shopCart img{
          height: 100%;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-accent);
        }

        .product-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
            border-radius: 5px;

            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .product-card h3 {
            font-size: 16px;
            margin: 10px 0;
            margin-top:20px ;
            color: #333333;
        }

        .product-card p {
            font-size: 14px;
            color: #333333B2;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }


        .sale-banner {
  padding: 24px 32px;
    flex: 1;
  background-image: url('../images/salesBackground.jpg'); 
  background-size: cover;
  background-position: center;
  border-radius: 1px;
}

.sale-banner__inner {
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.sale-banner__content {
  padding: 40px 56px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sale-banner__title {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.sale-banner__subtitle {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.sale-banner__button {
max-width: 250px;

}

/* Trust */

.trust-section {
  padding: 80px 0;
  background-color: #f5f5f9;
}

.trust-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-section__title {
  margin: 0 0 40px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: #231638;
}

.trust-section__grid {
  display: flex;

  gap: 32px 40px;

}

.trust-section__photo {
  border-radius: 8px;
}

.trust-section__photo img {
  display: block;
  width: 300px;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* карточки справа */

.trust-section__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 24px;
}

.trust-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 20px 18px;
  display: grid;
  grid-template-columns: 1fr  56px;
  column-gap: 16px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(27, 14, 54, 0.06);
}

.trust-card__icon {
  width: 50px;
  height: 50px;

}



.trust-card__title {
  margin: 2px 0 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #333333;
}

.trust-card__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #5b5466;
}
.cartSection{
  background-image: url('../images/certBackground.jpg');    
}
.cert-section {
  padding: 72px 0 80px;
     /* фиолетовый фон */
  position: relative;
  overflow: hidden;
}

/* если нужна сетка, можно добавить псевдоэлемент с svg/градиентом */

.cert-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

.cert-section__head {
  max-width: 520px;
  margin-bottom: 40px;
}

.cert-section__title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.cert-section__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ряд сертификатов */

.cert-section__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}

.cert-card {
  position: relative;
  flex: 0 0 auto;
  width: 190px;             
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cert-card img {
  display: block;
  width: 100%;
  height: auto;
}
.overlay img{
    width: 30px;
}
.cert-card:hover .overlay {
  /* Show the overlay on hover of the container */
  cursor: pointer;
  opacity: 1;
}





/* hover‑эффект */

.cert-card:hover {
  transform: scale(1.05);
  
}
.overlay {
  /* Overlay styles, initially hidden */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0; /* Hide the overlay by default */
  transition: opacity 0.5s ease; /* Smooth transition for the fade-in */
  background-color: rgba(0, 0, 0, 0.6); /* Dark semi-transparent background */
  
  /* Center the icon within the overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}
.vendors {
  padding: 56px 0 40px;
  background-color: #f5f5f9;
  position: relative;
}
.vendors::after{
    content: " ";
    position: absolute;
    top: 0;
    right: -10px;
    width: 220px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, #F5F5F5, transparent);
    z-index: 5;
}
.vendors__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vendors__title {
  margin: 0 0 32px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: #231638;
}

/* swiper */

.vendors__slider {
  padding-bottom: 32px;
}

.vendor-card {
  height: 120px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: .3s;
  cursor:pointer;
}

.vendor-card:hover{
  background: #4a257f;
}

.vendor-card img {
  max-width: 80%;
  max-height: 70%;
}

/* стрелки/пагинация */

.vendors__nav .vendors__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.vendors__btn::after {
  font-size: 12px; /* стандартные иконки swiper */
  color: #4a257f;
}

.vendors__pagination {
  bottom: 0 !important;
}

.delivery {
  padding: 72px 0 56px;
}

.delivery__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.delivery__title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: #231638;
  max-width: 70%;
}

.delivery__subtitle {
  margin: 0 0 32px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.6;
  color: #6a6475;
}

/* заголовки «Наш офис / Склады» */

.delivery__tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.delivery__tab {
  background-color: #FFFFFF;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: #8e8699;
  cursor: pointer;
  position: relative;
  margin-right: 200px;
}

.delivery__tab--active {
  color: #2a163d;
}


/* карточки карт */

.delivery__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.delivery-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.delivery-card__map {
  overflow: hidden;
}

.delivery-card__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 15px;
  transition: .3s;
}
.delivery-card__map img:hover{
  transform: scale(1.01);
}

.delivery-card__meta {
  display: flex;
  align-items: center;
  padding: 10px 14px 12px;
  gap: 8px;
  font-size: 13px;
  color: #333333;
}

.delivery-card__icon {
  width: 14px;
  height: 14px;
  fill: #4a257f;

}

/* About */
.about {
  padding: 72px 0 64px;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about__title {
  margin: 0 0 32px;
  max-width: 880px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #231638;
}

.about__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: stretch;
}

/* картинка слева */

.about__image {
  border-radius: 8px;
  overflow: hidden;
}

.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* текст справа */

.about__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b6475;
}

.about__mission {
  margin-bottom: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid #532D83;
  font-size: 14px;
  line-height: 1.5;
  color: #3b3247;
  /* background-color: #fbf9ff; */
}

.about__note {
  margin: 0 0 24px;
  font-size: 13px;
  color: #9187a0;
}

/* кнопка */

.about__btn {
  padding: 12px 30px;
}

.about__btn:hover {
color: black;
}
.projects {
  padding: 72px 0 40px;
  background: #f5f5f9;
}

.projects__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.projects__title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #231638;
}

.projects__subtitle {
  margin: 0 0 32px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.6;
  color: #6c6476;
}

.projects__slider {
  position: relative;
  padding-bottom: 36px;
}

/* карточки */

.projects-card {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 320px;
}

.projects-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

 .projects-card__overlay {
   position: absolute; /* Key: Positions overlay relative to the container */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0; /* Key: Initially hide the overlay */
  transition: opacity 0.5s ease; /* Smooth transition for appearance */
  background-color: rgba(83, 45, 131, 0.6); /* Semi-transparent black overlay */
  /* Optional: Center content within the overlay */
  display: flex;

  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
  color: white;
}
.projects-card:hover .projects-card__overlay {
  cursor: pointer;
  opacity: 1; /* Key: Show the overlay when the container is hovered */
}


.projects-card__title {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  padding:0 20px;

}

.projects-card__bottom{
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.projects-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #ffba1a;
  color: #3b2400;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* стрелки и пагинация */

.projects__nav .projects__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.projects__btn::after {
  font-size: 14px;
  color: #4a257f;
}

.projects__pagination {
  bottom: 0 !important;
}



/* Contact Form */


.cta {
  background-image: url('../images/ctaBackground.jpg');
  background-size: cover;
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
}

.cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta__title {
  margin: 0 0 24px;
  max-width: 780px;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
}

.cta__steps {
  margin: 0 0 20px 18px;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.cta__note {
  margin: 0 0 24px;
  font-size: 14px;
}

/* форма */

.cta__form {
  margin-top: 12px;
}

.cta__fields {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1.1fr auto;
  gap: 12px;
  align-items: stretch;
}

.cta-field input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  border: none;
  padding: 0 18px;
  background: rgba(9, 0, 40, 0.5);
  color: #fff;
  font-size: 14px;
}

.cta-field input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.cta__submit {
  height: 56px;
  padding: 0 32px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.cta__submit:hover {
  /* background: #ffcf4d;
  transform: translateY(-1px); */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* чекбоксы */

.cta__agreements {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  font-size: 13px;
}

.cta-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cta-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cta-check__box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #ffc94c;
  box-sizing: border-box;
  background: transparent;
  position: relative;
}

.cta-check input:checked + .cta-check__box {
  background: #ffba1a;
}

.cta-check input:checked + .cta-check__box::after {
  content: "";
  position: absolute;
 left: 4px;
    top: -1px;
    width: 5px;
  height: 10px;
  border: 2px solid #3a2500;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.cta-check__label {
  color: rgba(255, 255, 255, 0.9);
}


.footer {
  margin-top: 50px;
  background: #261237;
  color: #ffffff;
  padding-top: 56px;
  font-size: 13px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr 1.1fr;
  column-gap: 48px;
  row-gap: 32px;
}

.footer__col--brand {
  font-size: 13px;
}

.footer__logo img {
  display: block;
  height: 35px;
  margin-bottom: 20px;
}

.footer__company div {
  margin-bottom: 4px;
  color: #d8d1e5;
}

.footer__title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.footer__title--mt {
  margin-top: 20px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 6px;
  list-style: none;
}

.footer__list a {
  color: #d3cce9;
  text-decoration: none;
}

.footer__list a:hover {
  color: #ffffff;
}

.footer__text {
  color: #d3cce9;
  line-height: 1.6;
}

.footer__link {
  color: #ffba1a;
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

/* низ футера */

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__policy {
  color: #d3cce9;
  text-decoration: none;
}

.footer__policy:hover {
  color: #ffffff;
}

.footer__copy {
  color: #a89fc0;
}

/* адаптив */

@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* адаптив */

@media (max-width: 992px) {
  .cta__title {
    font-size: 24px;
  }

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

  .cta__submit {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cta {
    padding: 56px 0 48px;
  }

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




/* адаптив и количество карточек */

.swiper.projects__slider .swiper-wrapper { /* на всякий */
  align-items: stretch;
}

@media (max-width: 992px) {
  .projects__title {
    font-size: 26px;
  }
  .projects-card {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .projects {
    padding: 56px 0 32px;
  }
  .projects__title {
    font-size: 22px;
  }
}

/* адаптив */

@media (max-width: 992px) {
  .about__content {
    grid-template-columns: 1fr;
  }

  .about__title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 56px 0 48px;
  }

  .about__title {
    font-size: 22px;
  }
}


/* адаптив */

@media (max-width: 1024px) {
  .delivery__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .delivery {
    padding: 56px 0 40px;
  }

  .delivery__title {
    font-size: 24px;
  }

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

@media (max-width: 768px) {
  .vendors__title {
    font-size: 22px;
  }

  .vendor-card {
    height: 96px;
  }
}


@media (max-width: 768px) {
  .cert-section {
    padding: 56px 0 64px;
  }

  .cert-section__title {
    font-size: 24px;
  }

  .cert-section__head {
    margin-bottom: 28px;
  }

  .cert-card {
    width: 130px;
  }

  .cert-card--zoom {
    width: 150px;
  }
}

/* адаптив */

@media (max-width: 1024px) {
  .trust-section__grid {
    grid-template-columns: 1fr;
  }

  .trust-section__photo {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 56px 0;
  }

  .trust-section__title {
    font-size: 24px;
  }

  .trust-section__cards {
    grid-template-columns: 1fr;
  }
.trust-section__grid {
flex-direction: column;
}
    .trust-section__photo {
        display: flex;
        justify-content: center;

    }


  .trust-card__icon {
    width: 48px;
    height: 48px;
  }
}


/* адаптив */
@media (max-width: 768px) {
  .sale-banner__inner {
    flex-direction: column;
  }

  .sale-banner__content {
    max-width: 100%;
    padding: 24px 20px;
  }

  .sale-banner__image {
    height: 180px;
  }

  .sale-banner__title {
    font-size: 24px;
  }
  .product-card h3{
    font-size: 14px;
            word-break: break-word;
  }
}

       @media (max-width: 1200px) {
        nav a{
            font-size: 10px;
        }
       }




                @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 15px;
            }

            .header-contacts {
                gap: 20px;
                width: 100%;
                flex-wrap:wrap;
                justify-content: center;
                text-align: center;
            }
            .contact-value {
              font-size: 14px;
            }
            .contact-label{
              font-size: 12px;
            }
            .btn-sm{
              font-size: 12px;
              padding: 5px 3px;
            }


            .burger-menu {
                display: flex;
            }

            nav {
                display: none;
                position: fixed;
                height: 100vh;
                top: 0;
                left: 0;
                right: 0;
                background: var(--color-primary);
                flex-direction: column;
                z-index: 999;
                margin: 0;
            }
            .nav-container {
                flex-direction: column-reverse;
                padding: 20px 0;
            }

            .nav__left{
              margin-top: 20px;
              flex-direction: column;
                gap: 10px;

            }

            nav.active {
                display: flex;
            }

            
            nav a {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                width: 80vw;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .cta-content {
                grid-template-columns: 1fr;
            }

            section h2 {
                font-size: 28px;
            }

            .catalog-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

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

        @media (max-width: 480px) {
            .hero {
                padding: 40px 15px;
            }

            .hero h1 {
                font-size: 24px;
            }

            section {
                padding: 40px 15px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }


        /* слой модалки */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal--open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* окно */

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 340px;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  text-align: left;
  font-size: 13px;
}

.modal__close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

.modal__title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #231638;
}

.modal__subtitle {
  margin: 0 0 16px;
  font-size: 12px;
  text-align: center;
  color: #7a7388;
}

/* форма */

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-input {
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid #ece7f4;
  background: #f9f8fc;
  font-size: 13px;
}

.modal-input::placeholder {
  color: #b4adc2;
}

/* кнопка */

.modal-submit {
  margin-top: 4px;
  width: 100%;
  padding: 10px 0;
  border-radius: 8px;
  border: none;
  background: #ffba1a;
  color: #3b2500;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* чекбоксы */

.modal-check {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  color: #8b8399;
}

.modal-check input {
  margin-top: 2px;
}

.modal-check a {
  color: #6e2fd4;
  text-decoration: underline;
}




.advantage-nums {
  list-style:none;
  padding-left:0
}
.advantage-num {
  font-weight:400;
  font-size:15px;
  line-height:1.33
}
.advantage-num__num {
  font-weight:500;
  display:block;
  font-size:30px
}
@media (min-width:960px) {
  .advantage-num {
    font-weight:500;
    max-width:210px;
    font-size:16px
  }
  .advantage-num__num {
    font-size:36px
  }
}
@media (min-width:1220px) {
  .advantage-num {
    max-width:255px;
    font-size:16px
  }
  .advantage-num__num {
    font-size:42px
  }
}
.uk-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: space-between;
  width: 100%;
}
@media (max-width:640px) {
  .uk-grid li {
    flex: 1 0;
	width: 50%;
  }
}
@media (min-width: 1220px) {
  .mt-80l {
    margin-top: 80px !important;
  }
}

.uk-flex {
  display:-ms-flexbox;
  display:flex
}
.uk-flex-inline {
  display:-ms-inline-flexbox;
  display:inline-flex
}
.uk-flex-inline::after,
.uk-flex-inline::before,
.uk-flex::after,
.uk-flex::before {
  display:none
}
.main-board__text {
  max-width:440px;
  margin-bottom:26px
}
.main-board__text ol,
.main-board__text p,
.main-board__text ul {
  opacity:.75;
  font-size:16px;
  line-height:1.3
}
.main-board__text ol:last-child,
.main-board__text p:last-child,
.main-board__text ul:last-child {
  margin-bottom:0
}
@media (min-width:960px) {
  .main-board__text {
    max-width:540px;
    margin-bottom:36px
  }
  .main-board__text ol,
  .main-board__text p,
  .main-board__text ul {
    font-size:18px;
    line-height:1.14
  }
}
@media (min-width:1220px) {
  .main-board__text {
    max-width:640px
  }
  .main-board__text ol,
  .main-board__text p,
  .main-board__text ul {
    font-size:18px
  }
}
.main-board .uk-h1,
.main-board h1 {
  line-height:1.1;
  font-size:30px;
  color:#fff;
  margin:0 0 20px
}
@media (min-width:640px) {
  .main-board .uk-h1,
  .main-board h1 {
    font-size:34px
  }
}
@media (min-width:960px) {
  .main-board .uk-h1,
  .main-board h1 {
    font-size:42px;
    line-height:.98;
    margin-bottom:25px
  }
}
@media (min-width:1220px) {
  .main-board .uk-h1,
  .main-board h1 {
    font-size:54px
  }
}
.main-board__buttons .uk-button {
  margin-right:20px
}
.main-board__buttons .uk-button:last-child {
  margin-right:0
}
@media (min-width:640px) {
  .main-board__buttons .uk-button {
    min-width:178px
  }
}
.uk-button{
  color: var(--color-white);
  background-color: #1F073D;
  border-radius: 5px;
  text-decoration: none;
  padding: 0 15px;
  height: 44px;
  line-height: 44px;
  display: block;
  transition: background 0.3s;
  text-align: center;
}
.uk-button.btn-light {
  background-color: #1F073D;
  border: 1px solid #1F073D;
  color: var(--color-white);
}
.uk-button.btn-border {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}
.uk-button:focus,
.uk-button:hover {
    border-bottom: 3px solid var(--color-accent);
}
.uk-container ol, p, pre, ul {
  margin: 0 0 20px 0;
    margin-top: 0px;
}
.uk-container ol, ul {
  padding-left: 30px;
}
.uk-container h2 {
    font-size: 32px;
}
.uk-container img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}