/* PREPARATY HUB - Beżowo-brązowa paleta (pasuje do #faf6f3) */

.bc-preparaty-hub {
    margin: 40px 0;
}

/* FILTER SECTION */
.bc-preparaty-filter-section {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #faf6f3 0%, #f0ebe6 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bc-filter-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 16px;
    color: #5d4037;
}

.bc-problem-filter-dropdown {
    width: 100%;
    max-width: 500px;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #d7ccc8;
    border-radius: 8px;
    background: white;
    color: #5d4037;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bc-problem-filter-dropdown:hover {
    border-color: #a1887f;
}

.bc-problem-filter-dropdown:focus {
    border-color: #8d6e63;
    outline: none;
    box-shadow: 0 0 0 3px rgba(141,110,99,0.1);
}

/* TABS NAVIGATION */
.bc-preparaty-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d7ccc8;
}

.bc-preparat-tab-btn {
    padding: 14px 28px;
    background: #efebe9;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #5d4037;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bc-preparat-tab-btn:hover {
    background: #d7ccc8;
    color: #3e2723;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.bc-preparat-tab-btn.active {
    background: #8d6e63;
    color: white;
    border-color: #6d4c41;
    box-shadow: 0 4px 12px rgba(141,110,99,0.3);
}

/* TABS CONTENT */
.bc-preparat-tab-panel {
    display: none;
}

.bc-preparat-tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PREPARAT CONTENT */
.bc-preparat-title {
    font-size: 32px;
    font-weight: 700;
    color: #3e2723;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #8d6e63;
}

.bc-preparat-problems {
    background: #fff8e1;
    border-left: 4px solid #ffa726;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.bc-preparat-problems strong {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    color: #e65100;
}

.bc-preparat-problems ul {
    margin: 0;
    padding-left: 25px;
}

.bc-preparat-problems li {
    margin: 10px 0;
    color: #e65100;
    font-weight: 500;
    line-height: 1.6;
}

.bc-preparat-section {
    margin: 35px 0;
}

.bc-preparat-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #8d6e63;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d7ccc8;
}

.bc-preparat-section ul {
    padding-left: 25px;
}

.bc-preparat-section li {
    margin: 12px 0;
    line-height: 1.7;
    color: #5d4037;
}

.bc-preparat-section p {
    line-height: 1.8;
    margin: 15px 0;
    color: #5d4037;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bc-preparaty-filter-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .bc-preparaty-tabs-nav {
        flex-direction: column;
    }

    .bc-preparat-tab-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .bc-preparat-title {
        font-size: 26px;
    }

    .bc-preparat-section h3 {
        font-size: 20px;
    }
}
