/* Import ../components Products Archive Orange Moon */

@import url(../components/breadcrumb-header-general.css);
@import url(../components/aside-archive.css);
@import url(../components/products-archive.css);
@import url(../components/product-card.css);

/* Sec Content Products Archive Page Orange Moon */

.sec-content-archive {
    margin: 200px auto;
    margin-top: 100px;
}

.products-page #wrapper {
    height: 100vh;
    overflow: visible;
}

/* All Media Queris Products Archive Orange Moon */

@media screen and (max-width: 768px) {
    .sec-content-archive {
        margin-top: 0;
        margin-bottom: 100px;
    }
}


.pr__card .woocommerce-loop-product__title {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 600;
    text-align: center;
    font-family: var(--font-secondary);
    color: #2D2E30;
    cursor: default;
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.pr__card a {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    background: #fff;
    border: 2px solid #DCDCDC;
    position: relative;
    transition: .4s ease;
    padding: 1rem;
}

.pr__card img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    height: 100%;
    aspect-ratio: 1;
}

.pr__card:hover a {
    border-color: #E63B0E;
}

.pr__card {
    width: 100%;
    /* aspect-ratio: 1 / 1.5; */
    overflow: hidden;
    border-radius: 25px;
    background: transparent;
    position: relative;
    z-index: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    margin-inline: auto;
}



ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}