/* Product Tabs Styling */
.product.info.detailed {
    margin-top: 30px;
    clear: both;
}

/* Tab Navigation */
.product-tabs-nav {
    border-bottom: 2px solid #e1e1e1;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

.tab-button {
    background: #f8f8f8;
    border: 1px solid #e1e1e1;
    border-bottom: none;
    padding: 12px 24px;
    margin-right: 5px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 4px 4px 0 0;
    min-width: 120px;
    text-align: center;
}

.tab-button:hover {
    background: #e8e8e8;
    color: #000;
}

.tab-button.active {
    background: #fff;
    border-bottom: 2px solid #fff;
    margin-bottom: -2px;
    color: #000;
    position: relative;
    z-index: 1;
}

/* Tab Content */
.product-tabs-content {
    border: 1px solid #e1e1e1;
    border-top: none;
    background: #fff;
    min-height: 200px;
}

.tab-content {
    padding: 25px;
    display: none;
}

.tab-content.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-tabs-nav {
        flex-direction: column;
    }
    
    .tab-button {
        margin-right: 0;
        margin-bottom: 5px;
        border-radius: 4px;
        border-bottom: 1px solid #e1e1e1;
        min-width: auto;
    }
    
    .tab-button.active {
        margin-bottom: 5px;
        border-bottom: 1px solid #e1e1e1;
    }
    
    .product-tabs-content {
        border-top: 1px solid #e1e1e1;
    }
} 