body {
  margin: 0;
  padding-top: 0px; 
  font-family: 'Manrope', sans-serif;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Шапка */
.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
}

.nav__menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav__menu li a {
  color: white;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.nav__menu li a:hover,
.nav__menu li a.active {
  color: #80C342;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__lang a {
  color: white;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
  margin: 0 3px;
}

.nav__btn {
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.nav__btn:hover {
  background-color: white;
  color: #13751E;
}

.hero {
  position: relative;
  height: 60vh;
  background: url('../img/hero-bg.webp') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 60px;
  font-weight: bold;
  margin: 0;
}  



.product-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}



.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}


.product-card .product-status {
    color: #33cc33;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0 0 15px;
    display: flex;
    align-items: center;
}

.product-card .product-status::before {
    content: "●";
    color: #33cc33;
    margin-right: 5px;
}

.product-card h3 {
    margin: 15px 15px 10px 15px;
    font-size: 18px;
    color: #333;
}

.product-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0 15px 15px 15px;
}


.product-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-card {
    width: 280px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; 
}


.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}
.product-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    background-color: #ffffff;
}



.product-card .availability {
    color: #38A169;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin: 10px 20px 0 20px;
}

.product-card .availability::before {
    content: "•";
    color: #38A169;
    margin-right: 8px;
    font-size: 20px;
}

.product-card .product-info {
    padding: 20px;
}

.product-card .product-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-card .product-description {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.product-card .product-description strong {
    font-weight: 700;
}
.product-section-tiles {
    padding: 40px 20px;
    background-color: #f9f9f9;
}


.product-tile {
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}


.product-tile__image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 12px 12px 0 0;
}


.product-tile__overlay {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
}


.product-tile__title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: white;
}


.tile-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.tile-toggle img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.product-tile.open .tile-toggle img {
    transform: rotate(90deg); 
}


.product-subcards {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    animation: fadein 0.4s ease;
}

.product-tile.open .product-subcards {
    display: flex;
}


.product-item {
    width: 280px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.product-item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 10px;
}


.product-item .product-link-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-block;
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.product-item .product-link-arrow img {
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease;
}

.product-item .product-link-arrow:hover img {
    transform: scale(1.2); 
}

/* Стили для статуса "У наявності" */
.product-item .availability {
    color: #38A169;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item .availability::before {
    content: "●";
    color: #38A169;
    margin-right: 8px;
    font-size: 20px;
}

/* Текст описания продукта */
.product-description-text {
    width: 100%;
    padding: 20px 30px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Скрытый текст при закрытой плашке */
.product-subcards {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    animation: fadein 0.4s ease;
}

/* Текст описания */
.product-description-text {
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    border-bottom: 6px solid #ddd;
    text-align: center;
    margin-bottom: 20px;
}

/* Открытие карточек */
.product-tile.open .product-subcards {
    display: flex;
}

/* Анимация появления */
@keyframes fadein {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Стили для второго блока (Полістирол) */
.product-tile-polystyrene {
    max-width: 1100px;
    margin: 60px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* Изображение карточки */
.product-tile-polystyrene__image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 12px 12px 0 0;
}

/* Оверлей */
.product-tile-polystyrene__overlay {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 12px 12px;
}

/* Заголовок карточки */
.product-tile-polystyrene__title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: white;
}

/* Кнопка поворота стрелки */
.tile-toggle-polystyrene {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.tile-toggle-polystyrene img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.product-tile-polystyrene.open .tile-toggle-polystyrene img {
    transform: rotate(90deg); /* Исправлено, чтобы было только 90 градусов */
}

/* Подкарточки */
.product-subcards-polystyrene {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    animation: fadein 0.4s ease;
}

.product-tile-polystyrene.open .product-subcards-polystyrene {
    display: flex;
}

/* Карточка продукта */
.product-item-polystyrene {
    width: 280px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.product-item-polystyrene img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Текст под карточками */
.product-description-polystyrene {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.product-description-polystyrene strong {
    font-weight: 700;
}

/* Заголовок карточки */
.product-title-polystyrene {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

/* Статус "У наявності" */
.availability-polystyrene {
    color: #38A169;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.availability-polystyrene::before {
    content: "•";
    color: #38A169;
    margin-right: 8px;
    font-size: 20px;
}


.product-subcards {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    animation: fadein 0.4s ease;
}

.product-subcards.open {
    display: flex;
} 
.product-subcards {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    animation: fadein 0.4s ease;
}

.product-subcards.open {
    display: flex;
}
.footer {
    position: relative;
    background-color: #092810;
    color: white;
    padding-top: 0px; 
    padding-bottom: 30px;
    font-family: 'Manrope', sans-serif;
  }
  
  .footer-arc {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-col h4 {
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .footer-col p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
 .footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col a:hover {
    color: #80C342; 
    } 

.contact-form {
    background-color: #ffffff;
    padding: 60px 20px;
    margin-top: 0
  }
  
  .contact-form__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .contact-form__title h2 {
  color: #13751E;
  font-size: 28px;
  font-weight: 400; 
  margin: 0;
  line-height: 1.2;
  text-align: left;
}
  .contact-form__fields {
    display: flex;
    flex: 1;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
  }
  
  .form-group label {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
  }
  
  .form-group input {
    padding: 10px 15px;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
  }
  
  .submit-btn {
    background-color: #13751E;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
  }
  
  .submit-btn:hover {
    background-color: #0f5f18;
  } 
/* Бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Открытое бургер-меню */
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Скрытое меню */
.nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

/* Адаптивное меню */
@media screen and (max-width: 1024px) {
    .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        padding: 40px 20px;
        gap: 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .header__container {
        justify-content: space-between;
    }

    .header__right {
        display: none;
    }

    .nav__menu li a {
        color: #333 !important;
    }
}

/* Стили для меню */
.nav__menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav__menu li {
    list-style: none;
}

.nav__menu li a {
    color: white;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.nav__menu li a:hover,
.nav__menu li a.active {
    color: #80C342;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__lang a {
    color: white;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    margin: 0 3px;
}

.nav__btn {
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.nav__btn:hover {
    background-color: white;
    color: #13751E;
}


@media screen and (max-width: 1024px) {
    .header__right .nav__btn {
        display: none;
    }
} 

/* Скрыть чекбокс */
.burger-toggle {
  display: none;
}

/* Стили бургер-иконки */
.burger-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  z-index: 1001;
}

.burger-label span {
  width: 100%;
  height: 3px;
  background-color: white;
  display: block;
  transition: all 0.3s ease;
}

/* Мобильная адаптация */
@media screen and (max-width: 768px) {
  .burger-label {
    display: flex;
    position: absolute;
    top: 25px;
    right: 20px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    padding: 30px 20px;
    z-index: 1000;
  }

  .burger-toggle:checked ~ .nav {
    display: flex;
  }

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

  .nav__menu li a {
    color: #000;
    font-size: 18px;
  }

  .header__right .nav__btn {
    display: none;
  }
}


