.faq-accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-answer {
    display: none;
}
.faq-answer.open {
    display: block;
}

.faq-question {
    width: auto;
    padding: 15px 20px;
    background: hsl(0deg 0% 100% / 6%);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background: hsl(0deg 0% 100% / 15%);
}

.faq-question:hover .faq-icon {
    text-decoration: none  !important ;
}

.faq-question.active {
    background: hsl(167.26deg 77.66% 36.86% / 16%);
    color: #fff;
}

.faq-icon {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: hsl(167deg 78% 37% / 10%);
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer p {
  padding: 20px;
  margin: 0;
  line-height: 1.6;
}



.b-Buy1click .buy1click-button_type_item {
    border-radius: 0px;
    padding: 12px 12px;
    font-weight: 400;
    text-transform: uppercase;
    width: 100% !important;
}


:root {
    --color-primary : #15a788;
    --color-primary-light: #19c39f;
    --color-bg : #fff;
    --color-white : #fff;
    
    --leadhook-color-primary: #15a788;
    --leadhook-color-primary-light: #19c39f;
    --leadhook-color-accent: #15a788;
    
    --bl-font-title: 1.2rem;
    --bl-color-primary:#15a788;
    --bl-color-primary-hover:#19c39f;
    
}

.floating {
    z-index: 9999;
}
.bl-dialog {
    z-index: 99999;
}
.floating--in .floating__btn {
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    cursor: pointer;
}

.floating__icon {
    fill: #fff;
}

.bbt-floating {
    background-color: var(--leadhook-color-primary);
    cursor: pointer;
}

.bbt-floating:hover {
    background-color: var(--leadhook-color-primary-light);
    color: var(--leadhook-color-bg);
}


.bl-dialog__title {
    margin: 0 0 var(--bl-space-4) 0;
}

.bl-form {
    grid-gap: 0.7rem;
    position: relative;
    display: grid;
}

.bl-input:focus,
.bl-textarea:focus {
    border-color: var(--bl-color-primary);
    box-shadow: inset 0 0 0 2px var(--bl-color-primary);
    outline: none;
}


.bl-input, .bl-textarea {
    height: auto !important;
    padding: 15px 18px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
}

.bl-button, .bl-submit {
    line-height: 1.2!important;
    height: 48px !important;
    
}

.floating__socal-bbt span {
    font-weight: 600!important;
    text-decoration: none!important;
}
.floating__socal-bbt:hower span {
    text-decoration: none!important;
}

.bl-thank {
    display: none;
    color: var(--bl-color-success);
    font-size: 1rem;
}

.bl-thank {
    display: none;
    color: var(--bl-color-success);
    font-size: 1rem;
}
.bl-thank .bl-button {
    margin-top: 20px;
}
















    
/* Основной контейнер - 100% ширины */
.subcategories-carousel-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.subcategories-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 15px; /* Увеличил для стрелок */
    box-sizing: border-box;
}

.subcategories-carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    scrollbar-width: none; /* Firefox */
}

.subcategories-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-sub {
    display: flex;
    gap: 15px;
    padding: 0px;
    margin: 0;
    list-style: none;
    width: max-content;
}

.category-links {
    flex-shrink: 0;
    width: 220px;
}

.category-llink-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 80px;
    padding: 20px;
    background: #1E262D;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}



/* Иконка стрелки при наведении */
.category-llink-item::after {
    content: '→';
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.category-llink-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Стрелки навигации */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #454545;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .06), 0 2px 4px rgba(0, 0, 0, .12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-arrow:hover:not(:disabled) {
        background: #15a788;
}

.carousel-arrow:hover:not(:disabled) svg {
    stroke: white;
    transform: scale(1.1);
}

.carousel-arrow:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow:disabled {
    opacity: 0;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.carousel-arrow:disabled:hover {
    background: white;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:disabled:hover svg {
    stroke: #6366f1;
    transform: scale(1);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    color: #fff;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.carousel-arrow-prev {
    left: 0;
}

.carousel-arrow-next {
    right: 0;
}

/* Состояния карусели */
.subcategories-carousel.grabbing {
    cursor: grabbing;
}

.subcategories-carousel.grabbing .category-llink-item {
    pointer-events: none;
}



/* Классы для градиентных краев */
.subcategories-carousel.at-start::before {
    opacity: 0;
}

.subcategories-carousel.at-end::after {
    opacity: 0;
}

/* Анимация появления элементов */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-links {
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
    opacity: 0;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .subcategories-carousel-container {
        padding: 0 20px;
    }
    
    .subcategories-carousel {
        height: 130px;
    }
    
    .category-links {
        width: 280px;
        height: 110px;
    }
    
    .category-llink-item {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .subcategories-carousel::before,
    .subcategories-carousel::after {
        width: 30px;
    }
}

/* Планшеты */
@media (min-width: 769px) and (max-width: 1024px) {
    .category-links {
        width: 280px;
    }
}

/* Десктоп */
@media (min-width: 1025px) {
    .subcategories-carousel-container {
        max-width: 1400px;
        margin: 0 auto;
    }
}