.product-overlay-container {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 16px;
    border: 2px solid var(--border);
    overflow: hidden;
}

.product-overlay-img {
    width: 100%;
    height: 50vh;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
}

.img-produk-1 {
    position: absolute;
}

.img-produk-2 {
    scale: 1.05;
    opacity: 0;
}

.product-overlay-container:hover .img-produk-1 {
    opacity: 0;
    scale: 1.05;
    transition: ease-in-out 500ms;
}

.product-overlay-container:hover .img-produk-2 {
    opacity: 1;
    scale: 1;
    transition: ease-in-out 500ms;
}

.product-overlay-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid var(--border);
    transition: var(--transition);
    opacity: 0;
}

.btn-product {
    width: 200px;
    border-radius: 0;
    background-color: var(--primary);
    font-size: 18px;
    font-family: var(--font-2);
    color: white;
    padding: 8px;
    transition: var(--transition);
}

.btn-product:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.product-overlay-container:hover .product-overlay-content {
    border-color: var(--primary);
    background-color: rgba(207, 165, 74, .25);
    opacity: 1;
    box-shadow: var(--shadow-lg);
}

.products-row-gap {
    row-gap: 48px;
}

.nav-tabs {
    border-bottom: 1px solid var(--primary);
}

.nav-tabs .nav-link {
    border-bottom: 1px solid var(--primary);
}

.nav-tabs:hover .nav-link:hover:not(.active) {
    border: 1px solid var(--primary);
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    border-top: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    border-left: 1px solid var(--primary);
}

@media only screen and (max-width: 767.98px) {

    .product-overlay-img {
        height: 40vh;
    }

    .btn-product {
        width: 100%;
    }

    .product-overlay-content {
        display: none;
    }

}

@media (min-width: 768px) and (max-width: 991.98px) {
    .product-overlay-img {
        height: 35vh;
    }

    .btn-product {
        width: 100%;
    }

    .product-overlay-content {
        display: none;
    }
}

