.woo-tabs-container {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.woo-tabs-nav {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
    justify-content: center;
    border-bottom: 1px solid #ddd;
}

.woo-tabs-nav li {
    padding: 10px 20px;
    background: #f1f1f1;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    transition: background 0.3s, color 0.3s;
}

.woo-tabs-nav li:hover,
.woo-tabs-nav li.active {
    background: #333;
    color: #fff;
}

.woo-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.woo-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Animation Styles */
[data-animation="fade"] .woo-tab-content.active {
    animation: fadeIn 0.5s ease;
}

[data-animation="slide"] .woo-tab-content.active {
    animation: slideIn 0.5s ease;
}

[data-animation="zoom"] .woo-tab-content.active {
    animation: zoomIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
