/* WooCommerce Custom Tabs Styles */

.wc-custom-tabs-wrapper {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Навігація */
.wc-custom-tabs-nav {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 0;
}

.wc-custom-tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    font-weight: 400;
}

.wc-custom-tab-btn:hover {
    color: #111827;
}

.wc-custom-tab-btn.active {
    color: #111827;
    border-bottom-color: #111827;
    font-weight: 600;
}

/* Зірочки рейтингу */
.wc-tab-stars {
    color: #fbbf24;
    letter-spacing: 2px;
    margin-left: 5px;
}

/* Контент вкладок */
.wc-custom-tabs-panels {
    position: relative;
}

.wc-custom-tab-content {
    padding: 20px 0;
    color: #374151;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

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

/* Стилі для списків */
.wc-custom-tab-content ul {
    margin: 0;
    padding-left: 20px;
}

.wc-custom-tab-content li {
    margin-bottom: 8px;
    color: #4b5563;
}

.wc-custom-tab-content li:last-child {
    margin-bottom: 0;
}

/* Адаптивність */
@media (max-width: 768px) {
    .wc-custom-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .wc-custom-tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .wc-custom-tab-content {
        padding: 15px 0;
    }
}

/* WooCommerce інтеграція */
.wc-custom-tab-content .woocommerce-Reviews {
    width: 100%;
}

.wc-custom-tab-content .commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc-custom-tab-content .comment {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.wc-custom-tab-content .comment:last-child {
    border-bottom: none;
}