/* Seller tabs styling: give inactive tabs a gentle secondary background and keep active tab prominent */
.seller-tabs .nav-link {
    border: none;
    margin: 4px;
    padding: 10px 18px;
    border-radius: 12px;
    background-color: #dee2e6;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.seller-tabs .nav-link:hover {
    background-color: #adb5bd;
    color: #000;
}

.seller-tabs .nav-link.active {
    /* background-color: #0d6efd; */
    background-color: #6262A6;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(var(--theme-color), 0.4);
}

.tab-pane {
    margin-top: 20px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product option pill: adjust layout when only two icons are present */
.product-box .product-image .product-option.two-options {
    justify-content: center !important;
}

.product-box .product-image .product-option.two-options li {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.product-box .product-image .product-option.two-options li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-box .product-image .product-option.two-options li+li:after {
    left: 0 !important;
}

/* Product option pill for product-box-3: adjust layout when only two icons are present */

.product-box-3 .product-image .product-option.two-options {
    justify-content: center !important;
}

.product-box-3 .product-image .product-option.two-options li {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.product-box-3 .product-image .product-option.two-options li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-box-3 .product-image .product-option.two-options li+li:after {
    left: 0 !important;
}