#product.section_wrapper {
    padding: 16px;
}

.breadcrumb {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.breadcrumb a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    color: var(--sage);
}

.breadcrumb span {
    font-size: 14px;
    font-weight: 600;
    color: var(--sage);
}

#product .card_container {
    flex-direction: column;
    overflow-x: initial;
}

#product .card_image::-webkit-scrollbar {
    display: none;
}

#product .card_image {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: initial;
    gap: 16px;
    overflow-x: scroll;
}

#product .card_title {
    text-align: center;
}

#product .card_cta_button {
    margin: 0 auto;
}

#product .card_subtitle {
    font-size: 24px;
}

#productDescription.section_wrapper {
    padding: 16px 16px 128px 16px;
}

#productDescription .subtitle {
    text-align: left;
}

#productDescription ul {
    padding-left: 16px;
    list-style: disc;
}

@media only screen and (min-width: 580px) {
    #product .card {
        flex-direction: row;
        align-items: center;
    }
}

@media only screen and (min-width: 768px) {
    #product.section_wrapper {
        padding: 32px;
    }

    #productDescription.section_wrapper {
        padding: 32px 32px 128px 32px;
    }
}

@media only screen and (min-width: 960px) {
    #product.section_wrapper {
        padding: 64px;
    }

    #productDescription.section_wrapper {
        padding: 64px 64px 128px 64px;
    }
}