/**
 * Product Tabs Frontend CSS
 *
 * @package ANCS_Suite
 */

.ancs-tab .ancs-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 20px;
}

.ancs-tab .ancs-col.text {
    width: 70%;
    line-height: 1.7;
    color: #333;
}

.ancs-tab .ancs-col.image {
    width: 30%;
}

.ancs-tab .ancs-col.image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid #ccc;
}

.ancs-tab .ancs-col.image img:hover {
    transform: scale(1.05);
}

.ancs-tab .ancs-full-text {
    margin-top: 20px;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    .ancs-tab .ancs-row {
        flex-direction: column;
    }

    .ancs-tab .ancs-col.text,
    .ancs-tab .ancs-col.image {
        width: 100%;
    }
}

.woocommerce-tabs .tabs li.active a {
    color: #007BC4 !important;
    font-weight: 600;
}

.woocommerce-tabs .tabs li.active a i {
    color: #007BC4 !important;
}
