/*
 * Categories and product listing
 */

@media (max-width: 640px) {
    body#category footer {
        padding-bottom: 5rem;
    }

    #dz-category {
        background-image: none;
    }
}

#dz-category-menu .selected,
.dz-category-buttons .selected {
    background-color: var(--primary);
    color: var(--white);
}
#dz-category-menu .selected i {
    color: var(--white);
}

/* Product highlighted */

#products-list .product-highlighted {
    position: relative;
    grid-column: span 2;
    height: 245px;
    background-color: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

#products-list .product-highlighted-container {
    display: block;
    width: 100%;
    height: 100%;
}

#products-list .product-highlighted-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#products-list .product-highlighted-details {
    position: absolute;
    width: 100%;
    top: 20px;
}
/* 
#products-list .product-highlighted-name {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1;
} */

#products-list .product-highlighted-name::before,
#products-list .product-highlighted-name::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: var(--primary);
}

/* #products-list .product-highlighted-name::before {
    top: 5px;
} */

/* #products-list .product-highlighted-name::after {
    bottom: 5px;
} */

/* #products-list .product-highlighted-name > h1 {
    margin: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
} */

#products-list .product-highlighted-price {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    left: 50%;
    background-color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border: 2px solid transparent;
    border-top: none;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-md);
}

#products-list .product-highlighted-price span {
    margin-top: -10px;
}

#products-list .product-highlighted-price sup {
    font-weight: normal;
}

#products-list .product-highlighted .dz-cart-button-container {
    position: absolute;
    width: auto;
    min-width: 200px;
    bottom: 20px;
    left: 50%;
    border: 0;
    box-shadow: var(--shadow);
    transform: translateX(-50%);
    overflow: hidden;
}

#products-list .product-highlighted .dz-cart-button-container > span {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 640px) {
    #products-list .product-highlighted {
        height: 285px;
    }
}


/* Product availability */
.product-container-not-available {
    background-color: rgba(0, 0, 0, 0.2);
}

.product-container-not-available span {
    text-shadow: 0 1px 0 var(--black);
}

#products-list .product-no-image-icon {
    font-size: 50px;
}

.product-no-image-icon {
    color: var(--gray);
}
