/** Shopify CDN: Minification failed

Line 179:1 Expected "}" to go with "{"

**/
/* =========================================
   SELORA - SHOP BY COLLECTION
========================================= */

.selora-collections {
    background: #FCF5F0;
    padding: 20px 0;
}

.selora-collections__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}


/* =========================================
   HEADER
========================================= */

.selora-collections__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 10px;
}

.selora-collections__heading h2 {
    margin: 0;

    color: #8B2027;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
}

.selora-collections__heading p {
    margin: 8px 0 0;

    color: #514946;

    font-size: 16px;
}

.selora-collections__view-all {
    color: #8B2027;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    white-space: nowrap;
}

.selora-collections__view-all span {
    margin-left: 6px;
    font-size: 20px;
}


/* =========================================
   DESKTOP
========================================= */

.selora-collections__grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

}


/* =========================================
   CARD
========================================= */

.selora-collection-card {
    display: block;

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    text-decoration: none;

    line-height: 0;
}

.selora-collection-card img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 3 / 4;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.selora-collection-card:hover img {
    transform: scale(1.03);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 990px) {

    .selora-collections__inner {
        padding: 0 25px;
    }

    .selora-collections__grid {
        gap: 8px;
    }

}
@media (max-width: 640px) {

    .selora-collections__grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;

        gap: 6px;

        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 0 8px;
        margin: 0;

        box-sizing: border-box;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .selora-collections__grid::-webkit-scrollbar {
        display: none;
    }

   .selora-collection-card {
    flex: 0 0 calc((100% - 6px) / 1.8);
    min-width: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 14px;
    overflow: hidden;
}

.selora-collection-card img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border-radius: 14px;
}