.shop {
    min-height: 100vh;
}

.shop .empty-products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 85vh;
}

.shop .empty-products .container-svg {
    color: var(--primary-color);
}

.shop .empty-products .container-svg svg {
    width: 8rem;
    height: 8rem;
}

.shop .empty-products h1 {
    font-size: 1.5rem;
    margin-top: 1rem;
    font-weight: 100;
    text-align: center;
}

/* HEADER (COLLECTION) */
.shop .header .collection-name,
.header .collection-description {
    text-align: center;
    padding-bottom: 1rem;
}

.shop .header .collection-name {
    padding-top: 2rem;
}

/* FILTERS */
.shop .filters {
    display: flex;
    justify-content: space-between;
    padding: 30px 48px;
}

.shop .filters .filter-container {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 3px;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    flex-basis: initial;
}

.shop .filters .filter-container .filter-button{
    height: 32px;
    line-height: calc(32px + 1px);
    padding: 0 12px;
    border-radius: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #000000;
}

.shop .filters .filter-container .filter-button .icons {    
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 0.8rem;
    height: 0.8rem;
}

/* PRODUCTS */
.shop .container {
    padding: 72px 48px;
}

.shop .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row dense;
    display: grid;
    align-items: start;
    grid-gap: 32px;
    justify-content: center;
}

.shop .products .product {
    display: flex;
    position: relative;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    width: 100%;
}

.shop .product a {
    display: block;
    width: 100%;
}

.shop .product .product-image-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.shop .product-image-wrapper .product-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding-bottom: 100%;
}

.shop .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
}

.shop .product-image .second-image {
    opacity: 0;
}

.shop .product-image:hover .second-image {
    opacity: 1;
}

.shop .product-image:hover .first-image {
    opacity: 0;
}

.shop .product-image-wrapper .quick-add-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 8px;
    display: block;
}

.shop .quick-add-wrapper .button-quick-add {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    opacity: .85;
    scale: 1;
    transition: 0.8s;
} 

.shop .product a:hover .button-quick-add {
    opacity: 1;
    scale : 1.1;
    transition: 0.8s;
}

.shop .button-quick-add .icon-plus {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.shop .product .product-info-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 16px;
}

.shop .product-info-container .product-info {
    display: flex;
    align-items: baseline;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    color: #000000;
}

.shop .product-info .product-name {
    text-transform: capitalize;
    word-break: break-word;
}

.shop .product-info .container-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop .container-price .product-price-before{
    font-size: 0.8rem;
    color: #8c8c8c;
    text-decoration: line-through;
}


/* PAGINATION */
.shop .pagination-container .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.shop .pagination .pagination-link {
    color: #000000;
    text-decoration: none;
    background-color: transparent;
}

.shop .pagination .container-pages {
    display: flex;
    align-items: center;
}

.shop .pagination .container-pages .page-item {
    margin: 0 0.2rem;
}

.shop .pagination .container-pages .page-item.active {
    border: 1px solid #e89b9b;
    border-radius: 50%;
}

.shop .pagination .container-pages .page-item a {
    color: #000000;
}

.shop .pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #eaeaea;
    border-radius: 50%;
}

@media (max-width: 1400px) {
    .shop .products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 1044px){
    .shop .products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .shop .products {
        grid-template-columns: minmax(auto, 2fr);
    }

    .shop .product-info-container .product-info {
        flex-direction: column;
    }

    .shop .filters .filter-container.filter-limit {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .shop .products {
        grid-template-columns: minmax(auto, 1fr);
    }
}

/* ANIMATION PRODUCTS */
/* .reveal-product {
    opacity: 0;
}

.reveal-visible-product {
    opacity: 1;
    transition: opacity .7s cubic-bezier(.45, .05, .55, .95) 0s, visibility .7s cubic-bezier(.45, .05, .55, .95) 0s;
} */


.reveal-product {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.4s cubic-bezier(.5, 0, 0, 1), transform 1.4s cubic-bezier(.5, 0, 0, 1);
}

.reveal-visible-product {
    opacity: 1;
    transform: translateY(0);
}