/**
 * BFD Single Product Functions - Product Tabs Styles
 * 
 * @package BFDSingleProductFunctions
 */

.product-info-tabs-wrapper {
    width: 100%;
}

.product-info-tabs-nav {
    display: flex;
    margin-bottom: 32px;
    background: #e6f2ff;
    border-radius: 99px;
}

.product-info-tab-button {
    padding: 24px !important;
    border: none;
    font-weight: 600 !important;
    color: #000;
    transition: all 0.3s ease;
    flex: 1;
}

.product-info-tab-button:hover {
    color: #fff;
    background: #000C5E;
}

.product-info-tab-button.active {
    color: #fff;
    background: #000C5E;
}

.product-info-tab-content {
    display: none;
}

.product-info-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 767px) {
    .product-info-tabs-nav {
        flex-direction: column;
        gap: 8px;
        background: transparent;
        border-radius: 0;
    }
    
    .product-info-tab-button {
        padding: 16px !important;
        font-size: 14px;
        background: #e6f2ff;
        border-radius: 8px;
    }
    
    .product-info-tab-button.active {
        background: #000C5E;
    }
}
