/* Product Tabs Widget Styles */
.ept-product-tabs-wrapper {
    font-family: inherit; /* Inherit Elementor theme font */
}

/* Navigation */
.ept-tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Spacing between tabs */
}

.ept-tab-title {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.ept-tab-title::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Align with separator */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.ept-tab-title.ept-active::after {
    background-color: #333; /* Dark underline for active tab */
}

.ept-tabs-separator {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    margin-bottom: 40px;
}

/* Content Area */
.ept-tab-content {
    display: none;
    animation: eptFadeIn 0.5s ease;
}

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

.ept-tab-content-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image Column */
.ept-product-image-col {
    flex: 1;
    max-width: 50%;
}

.ept-product-image-col img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Optional soft shadow */
}

/* Text Column */
.ept-product-text-col {
    flex: 1;
    max-width: 50%;
}

.ept-product-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

.ept-product-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ept-tabs-nav {
        gap: 20px;
        flex-wrap: wrap;
    }

    .ept-tab-title {
        font-size: 16px;
    }

    .ept-tab-content-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .ept-product-image-col, 
    .ept-product-text-col {
        max-width: 100%;
    }

    .ept-product-title {
        font-size: 28px;
    }
}

/* Keyframes */
@keyframes eptFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
