hr {
    width: 100%;
    margin: 0;
}

#cart-accessories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

#cart-product-summary {
    flex-direction: row !important;
    align-items: center;
}

div.products-section-title {
    font-weight: 600;
}

#cart-accessory {
    display: flex;
    gap: 0.5rem;
}

#cart-accessory a {
    width: 200px;
    max-height: 170px;
    border-radius: 0.25rem;
}

#cart-accessory a img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

#cart-accessory a img:hover {
    opacity: 0.8;
    cursor: pointer;
}

#cart-product-summary {
    display: flex;
    gap: 0.5rem;
}

#cart-product-summary img {
    object-fit: contain;
    width: 200px;
    max-height: 170px;
    border-radius: 0.25rem;
}


#cart-product-summary img:hover {
    opacity: 0.8;
    cursor: pointer;
}

#accessory-description {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    flex: 1;
}

#accessory-description h2 {
    font-weight: bold;
    font-size: 0.9rem;
}

.products-section-title {
    margin-top: 1rem;
    font-size: 1.2rem;
}

button.btn-modal-add-to-cart {
    background: white !important;
    color: black !important;    
}

.cart-crosseling .h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.cart-crosseling__list {
    gap: 12px;
}

.cart-crosseling article.product-miniature {
    width: 312px!important;
    flex-shrink: 0;
    background-color: #FFF;
    border: 1px solid #dee2e6;
}

.cart-crosseling article.product-miniature .xcard-body {
    padding: 8px 8px;
}

@media (max-width: 767px) {
    hr {
        margin: 0;
    }

    .btn-modal-add-to-cart {
        padding: 0.25rem 1.5rem;
        font-size: 0.75rem;
        background: white;
        color: black;    
    }

    #accessory-description {
        margin-left: 0;
    }

    #accessory-description h2 {
        font-weight: 600;
        font-size: 0.8rem;
        margin: 0;
    }

    #cart-product-summary {
        margin-top: 1.5rem;
    }

    #cart-accessory {
        gap: 0.5rem;
    }

    #cart-accessory a {
        width: 150px;
        max-height: 125px;
    }

    #cart-accessory a img {
        object-fit: contain;
    }

    #cart-product-summary {
        gap: 0.5rem;
    }

    #cart-product-summary img {
        width: 150px;
        max-height: 125px;
        object-fit: contain;
    }

    .blockcart-modal .modal-dialog .modal-content {
        height: 100% !important;
        overflow-y: auto !important;
    }

    .cart-crosseling .h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .cart-crosseling__list {
        gap: 8px;
    }

    .cart-crosseling article.product-miniature {
        width: 205px!important;    
    }

    .cart-crosseling .karrow {
        display: none;
    }
}