/* Style modification for collection list */
.section-collection-list .collection-slider-row.has-padding {
    padding: 40px 16px 80px;
    margin: 0;

    .container {
        padding: 0;
    }

    .hometitle {
        padding: 0 16px;
        margin-bottom: 56px;
        color: var(--Colours-Neutral-Black-texts, #373737);
        text-align: center;
        font-family: Catamaran;
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%; /* 36.4px */
        text-transform: none;
    }

    @media screen and (min-width: 768px) {
        .collection-slider-row.has-padding {
            padding: 56px 0 100px;
        }

        .hometitle {
            font-size: 40px;
        }
    }

    /*** Product Grid ***/
    .product-grid {
        max-width: 1064px;
        margin: auto;
        column-gap: 16px;
        row-gap: 32px;
    }

    .container--no-max .product-grid {
        max-width: unset;
        padding: 0 60px;
    }

    @media screen and (min-width: 768px) {
        .product-grid {
            column-gap: 24px;
            row-gap: 56px;
        }
    }

    /*** Product Cards ***/
    .product-block__detail {
        margin: 12px 0 0;

        .subheading {
            margin: 0;
            color: var(--Colours-Neutral-Texts, #646363);
            font-family: Catamaran;
            font-size: 14px;
            font-weight: 600;
            line-height: 140%; /* 19.6px */
            letter-spacing: 0.84px;
            text-transform: uppercase;
        }

        .product-block__title {
            color: var(--Colours-Neutral-Black-texts, #373737);
            font-family: Poppins;
            font-size: 16px;
            font-weight: 500;
            line-height: 140%; /* 22.4px */
        }

        .small {
            color: var(--Colours-Neutral-Texts, #646363);
            font-family: Poppins;
            font-size: 12px;
            font-weight: 400;
            line-height: 140%; /* 16.8px */
        }
    }

    @media screen and (min-width: 768px) {
        .product-block__detail {
            margin: 20px 0 0;

            .subheading {
                font-size: 14px;
            }

            .product-block__title {
                margin-bottom: 8px;
                font-size: 20px;
            }

            .small {
                font-size: 14px;
            }
        }
    }
}

.section-collection-list .collection-slider-row {
    .product-block__image img {
        border-radius: 16px;
    }
}