/* WooCommerce Vertical Tabs Widget Styles */

.woo-vertical-tabs-container {
    display: flex;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    
}

.woo-vertical-tabs-nav {
    flex: 0 0 250px;
    background-color: #f8f8f8;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    padding-bottom: 2%;
}

.woo-vertical-tabs-header {
    padding: 30px 20px 20px;
    border-bottom: 1px solid #000000;
    background-color: #fff;
}

.woo-catalog-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    text-align: left;
}

.woo-vertical-tabs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.woo-vertical-tab-item {
    padding: 20px 30px;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.woo-vertical-tab-item:hover {
    background-color: #fff;
    color: #333;
    padding-left: 35px;
}

.woo-vertical-tab-item.active {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    padding-left: 35px;
}

.woo-vertical-tab-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #000000;
}

.woo-vertical-tab-item:last-child {
    border-bottom: none;
}

.woo-vertical-tabs-content {
    flex: 1;
    padding: 40px;
    position: relative;
    background-color: #fff;
}

.woo-tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.woo-tab-content.active {
    display: block;
}

.woo-content-header {
    margin-bottom: 30px;
}

.woo-content-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woo-content-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.woo-content-image {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    border: 1px solid black;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.woo-content-image:hover {
    transform: translateY(-5px);
}

.woo-content-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.woo-tab-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .woo-vertical-tabs-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .woo-vertical-tabs-nav {
        flex: none;
        width: 100%;
    }
    
    .woo-vertical-tabs-header {
        text-align: center;
        padding: 20px;
    }
    
    .woo-catalog-title {
        font-size: 20px;
        text-align: center;
    }
    
    .woo-vertical-tabs-list {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .woo-vertical-tab-item {
        flex: 0 0 auto;
        padding: 15px 20px;
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
        font-size: 12px;
    }
    
    .woo-vertical-tab-item:last-child {
        border-right: none;
    }
    
    .woo-vertical-tab-item:hover,
    .woo-vertical-tab-item.active {
        padding-left: 20px;
    }
    
    .woo-vertical-tabs-content {
        padding: 20px;
    }
    
    .woo-content-images {
        flex-direction: column;
    }
    
    .woo-content-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .woo-vertical-tabs-content {
        padding: 15px;
    }
    
    .woo-content-header h3 {
        font-size: 16px;
    }
    
    .woo-content-image img {
        height: 200px;
    }
}