body {
    background-color: #ffffff;
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center; 
    color: rgb(0, 0, 0);
}
/* АКОРДЕОН */
.accordion {
    display: flex;
    justify-content: space-between; /* Распределить текст и стрелку */
    align-items: center; /* Выравнивание по вертикали */
    max-width: 1200px;
    margin: 0 auto;
    font-size: 26px;
    font-family: "Unbounded", sans-serif;
    color: #3C3C3C;
    cursor: pointer;
    width: 100%;
    border: 1px solid #D9D9D9;
    padding: 30px 30px 30px 30px; /* Увеличил отступ справа */
}

.accordion:focus {
    outline: none;
}

.accordion-tooltip {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    padding: 3px;
    opacity: 50%;
}



.accordion-title {
    flex: 1; /* Заголовок занимает всё доступное пространство */
    text-align: left; /* Выравнивание текста по левому краю */
    margin-right: 10px; /* Расстояние между текстом и стрелкой */
}

.icon-arrow {
    margin-right: 50px;
    flex-shrink: 0; /* Не сжимать контейнер со стрелкой */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.icon-arrow img {
    width: 22px; /* Убедитесь, что размеры заданы */
    height: 12px;
    flex-shrink: 0; /* Запретите сжатие стрелки */
}

.accordion.active .icon-arrow {
    transform: rotate(180deg); /* Поворачиваем иконку при открытии */
}

.category1 {
    background-color: #EBE9DE;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.category2 {
    background-color: #DEDFBF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.active, .accordion:hover {
    background-color: #babe62;
    cursor: pointer;
}

.panel {
    display: flex;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    max-width: 1200px;
    margin: 0 auto;
}
/* АКОРДЕОН */

  
/* ЗАМОВЛЕННЯ ТА ПИТАННЯ */
h3 {
    font-size: 25px;
}
h3 img {
    width: 2em; 
    height: 2em; 
    vertical-align: middle; 
    margin-left: 0.2em; 
}
/* ЗАМОВЛЕННЯ ТА ПИТАННЯ */

.container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
    position: sticky;
}
.header-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-right: 220px;
}

.logotip {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #6E6E49;
    text-align: center;
    font-size: 64px; /* Размер шрифта */
    display: flex;
    align-items: center; /* Выравниваем текст и картинку */
    justify-content: center; /* Центрируем содержимое */
    gap: 15px; /* Добавляем небольшой отступ */
}

.logo-img {
    height: 1em; /* Делаем высоту логотипа равной размеру шрифта */
    width: auto; /* Сохраняем пропорции */
    object-fit: contain; /* Чтобы логотип не искажался */
}



.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #434343;
    border-radius: 10px;
    padding: 10px 15px;
    max-width: 660px;
    
}

input::placeholder {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
}

.search-box i {
    font-size: 16px;
    margin-right: 10px; 
    color: #666;
}

.search-box input {
    border: none;
    outline: none; 
    font-size: 16px;
    width: 100%;
}

.search-box input::placeholder {
    color: #999; 
    font-size: 22px;
    background-color: transparent;
}

h2 {
    font-family: "Unbounded", sans-serif;
    max-width: 320px;
    width: 100%;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: white;
    background-color: #434343;
    border-radius: 15px;
    cursor: pointer;
    padding: 20px 0px;
    text-align: center;
}

.open-site {
    color: white;
}


h2.open-modal:hover {
    background-color: #4b4d2b !important;
    color: #FFFFFF !important;
    cursor: pointer !important;
}


h2:hover {
    background-color: #000000;
}
.h2-wrapper {
    display: flex;
    flex-direction: column; 
    gap: 20px;
    max-width: 320px;
    width: 100%;
    
}

.modal {
    display: none; /* Скрыто по умолчанию */
    position: fixed; /* Фиксированное положение */
    z-index: 1000; /* Над другими элементами */
    left: 0;
    top: 0;
    width: 100%; /* Полная ширина */
    height: 100%; /* Полная высота */
    overflow: auto; /* Включить прокрутку, если нужно */
    background-color: rgba(0, 0, 0, 0.4); /* Черный с 40% прозрачностью */
}



.modal-content {
    background-color: #F4F4F4;
    margin: 15% auto; 
    padding: 20px;
    width: 80%; 
    max-width: 800px; 
    border-radius: 15px; 
    transform: translateY(-30px); 
    opacity: 0; 
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.modal.show .modal-content {
    transform: translateY(0); 
    opacity: 1; 
}

.modal-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #6E6E49;
    text-align: center;
    margin: 20px;
}

.modal-divider {
    border: none; /* Убираем стандартные границы */
    height: 1px; /* Высота полосы */
    background-color: #434343; /* Цвет полосы */
    margin: 10px 0; /* Отступы сверху и снизу */
}

.modal-info {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #3C3C3C;
    text-align: center;
    margin: 30px;
}

h4 {
    text-align: center;
}


.manager{
    display: flex;
    gap: 20px;
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 22px;
}

.manager-1, .manager-2 {
    max-width: 360px;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #434343;
    padding: 20px;
}

.manager-1 .verh,
.manager-2 .verh {
   display: flex;
   align-items:center;
   gap: 20px;
   
}

.manager-1 .verh h1,
.manager-2 .verh h1 {
    color: #3C3C3C;
    font-family: "Unbounded", sans-serif; 
    font-weight: 400;
    font-size: 26px;
}

.manager-1 .niz,
.manager-2 .niz {
   display: flex;
   flex-direction: column;
   margin-top: 20px;
   gap: 14px;
   font-weight: Bold;
   font-size: 24px;
}

.manager-1 .niz a,
.manager-2 .niz a {
    color: #3C3C3C;; 
    text-decoration: none;
    transition: color 0.5s ease;
}

.manager-1 .niz a:hover,
.manager-2 .niz a:hover {
    color: #babe62; 
}

.telegram, .viber {
    display: flex;
    gap: 6px;
}

.icon-contact {
   
    width: 30px;
    height: 30px;
}

table {
    width: 1200px; 
    margin: 0 auto; 
    border-collapse: collapse;
}

td {
    padding: 10px; 
    border: 1px solid #D9D9D9;
}

.article-cell {
    background-color: #F5F5F5;
    text-align: center;
    color: #3C3C3C;
    font-size: 18px;
    width: 120px;
    height: 46px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}
.name-cell {
    background-color: #F5F5F5;
    text-align: center;
    color: #3C3C3C;
    font-size: 18px;
    width: 720px;
    height: 46px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    z-index: 999;
}
.opt-cell { 
    background-color: #8F9250;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    width: 118px;
    height: 46px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}
.drop-cell{
    background-color: #6E6E49;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    width: 118px;
    height: 46px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}
.rrp-cell{
    background-color: #CC8110;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    width: 117px;
    height: 46px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}
/* АРТИКУЛ, НАЗВА, ОПТ, ДРОП, РРЦ */

.article{
    text-align: center;
    color: #3C3C3C;
    font-size: 25px;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.article-action{
    text-align: center;
    color: #3C3C3C;
    font-size: 25px;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.table-pizda {
    height: 70px;
}

.name-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    background: none; 
    border: none; 
    padding: 0; 
    font: inherit;
    color: #3C3C3C;
    cursor: pointer; 
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
}
.name-btn:focus {
    outline: none;
}
.name-btn:hover {
    text-decoration: none;
    color: #6E6E49;
}

.icon-container {
    position: absolute; 
    left: 20px; 
    top: 50%; 
    transform: translateY(-50%); 
}

.icon {
    width: 24px; 
    height: 24px; 
    fill: #6E6E49; 
    cursor: pointer; 
    
}

.opt-price {
    
    text-align: center;
    color: #3C3C3C;
    font-size: 25px;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}
.drop-price {
    
    text-align: center;
    color: #3C3C3C;
    font-size: 25px;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}
.rrp-price {
    
    text-align: center;
    color: #3C3C3C;
    font-size: 25px;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}



/* МОДАЛЬНОЕ ОКНО ДЛЯ ТОВАРА */

.modal2 {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content2 {
    background-color: #E4E4E4;
    margin: 3% auto;
    width: 100%;
    max-width: 1100px;
    border-radius: 30px;
    position: relative; /* Важное изменение */
    
}

.close {
    position: absolute; /* Закрепляем кнопку в правом верхнем углу */
    top: 10px;
    right: 10px;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 1000;
}

.close:hover {
    background: rgb(204, 129, 16);
    color: #fff;
}

.close-mdl {
    position: absolute; /* Закрепляем кнопку в правом верхнем углу */
    top: 10px;
    right: 10px;
    border: none;
    color: #6E6E49;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 1000;
}

.close-mdl:hover {
    background: rgb(191, 214, 187);
    color: #6E6E49;
}



.modal-title2 {
    font-size: 26px;
    text-align: start;
    color: #fff;
    background-color: #434343;
    padding: 38px;
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    position: relative; /* Для позиционирования кнопки относительно этого элемента */
}


.close-btn:hover {
    color: red; /* Цвет крестика при наведении */
}



.modal-divider2 {
    border: 2px solid #ccc;
    margin: 15px 0;
}

.modal-info2 {
    font-size: 18px;
    text-align: left;
    color: #666;
    font-family: "Mulish", sans-serif;
    font-weight: Bold;
    font-size: 18px;
    color: #3C3C3C;
    padding: 0px 50px 50px 50px;

}

.table-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 40px 0px 40px 50px;
    
}


.product-table-modal {
    width: 360px;  
    margin: 0;
    border-collapse: collapse;

}






/* Общие стили для всех ячеек */
.opt-cell-modal, .drop-cell-modal, .rrp-cell-modal {
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    /* height: 46px; */
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    width: 120px;  /* Устанавливаем ширину ячеек */
    max-width: none;
    border: 1px solid #BABABA;

}

/* Индивидуальные стили для каждой ячейки */
.opt-cell-modal {
    background-color: #8F9250;
}

.drop-cell-modal {
    background-color: #6E6E49;
}

.rrp-cell-modal {
    background-color: #CC8110;
}

.opt-price-modal, .drop-price-modal, .rrp-price-modal {
    
    text-align: center;
    color: #3C3C3C;
    font-size: 25px;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    
}

.art {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #6E6E49;
    font-size: 24px;
    padding-left: 50px;
}

.product-link a {
    text-decoration: none;
    color: #a2a560 !important;
}


.product-link {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #a2a560 !important;
    font-size: 16px;
    padding-left: 50px;
    margin-top: 20px;
    text-decoration: underline;
}

.product-link a:visited {
    color: #505022; /* Цвет для посещенной ссылки */
}

.product-link a:hover {
    text-decoration: underline;
}

.product-link a:active {
    color: #565823; /* Цвет при нажатии */
}


.article-cell-action {
    background-color: #F5F5F5;
    text-align: center;
    color: #3C3C3C;
    font-size: 18px;
    width: 120px;
    height: 46px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}
.opt-cell-action { 
    background-color: #8F9250;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    width: 118px;
    height: 46px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}
.drop-cell-action{
    background-color: #6E6E49;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    width: 118px;
    height: 46px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}
.rrp-cell-action{
    background-color: #CC8110;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    width: 117px;
    height: 46px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}


/* Прелоадер на весь экран */
/* .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.preloader .spinner {
    border: 4px solid rgba(0, 0, 0, 0.2);
    border-top: 4px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.preloader .loading-text {
    margin-top: 15px;
    font-size: 16px;
    font-family: "Unbounded", sans-serif;
    color: #3C3C3C;
    color: #000;
    font-weight: bold;
    text-align: center;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


 */

 .preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8); /* Полупрозрачный фон */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }
  
  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #6E6E49;
    border-radius: 50%;
    animation: spin 1s linear infinite; /* бесконечная анимация */
  }
  
  .preloader-text {
    margin-top: 10px;
    font-size: 16px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #6E6E49;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #EBE9DE;
    color: #3C3C3C;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.footer-logo {
    text-align: center;
    font-size: 16px;
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center; /* Центрируем иконку и текст */
    gap: 10px;
}

.contact-icon {
    font-size: 20px;
    color: #6E6E49;
    display: flex; /* Делаем иконку flex-элементом */
    align-items: center; /* Центрируем внутри */
}


.contact-item a {
    color: #3C3C3C;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f0a500;
}

.footer-copy {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.7;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px; /* Устанавливаем ширину */
    height: 50px; /* Делаем высоту равной ширине */
    background-color: #6E6E49;
    color: white;
    border: none;
    border-radius: 50%; /* Делаем кнопку круглой */
    cursor: pointer;
    display: none; /* Изначально скрыта */
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.back-to-top:hover {
    background-color: #a2a560;
    transform: scale(1.1);
}

  






  















