.basket-image
{
    width:170px;
}

.basket-image-container
{
    padding-top:2rem;
    padding-bottom:2rem;
}

.basket-message-container
{
    position: relative;
}

.btn-home {
    position: relative;
    padding-left:55px
}

.btn-home .home-icon-white
{
    width: 25px;
    height: 25px;
    display: inline-block;
    background-image: url(/artwork/furniture/home-white.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    position: absolute;
    margin-left:-30px;
}

.basket-price
{
    vertical-align: middle;
    text-align:right;
}

.basket-table .basket-qty
{
    text-align: center;
    vertical-align: middle;
}

.qty-control
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qty-btn
{
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 4px;
    line-height: 1;
    padding: 0;
}

.qty-btn:disabled
{
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-value
{
    min-width: 24px;
    display: inline-block;
    text-align: center;
}

.qty-btn.trash
{
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff url(/artwork/furniture/remove-photo.svg) center center no-repeat;
    background-size: 16px 16px;
    color: transparent;
}

.basket-product
{
    display: flex;
    align-items: center;
    gap: 12px;
}

.basket-product-info
{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.basket-product-title
{
    font-weight: 500;
}

.basket-product-personalised
{
    color: var(--yappy-purple);
    font-size: 1.0rem;
    font-weight: 500;
}

.basket-product-image
{
    cursor:pointer !important;
}

@media (max-width: 576px)
{
    .basket-product
    {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        justify-items: start;
    }
}

.basket-table th
{
    text-align: center;
}

.image-lightbox
{
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1050;
}

.image-lightbox.is-open
{
    display: block;
}

.image-lightbox-backdrop
{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.image-lightbox-content
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
}

.image-lightbox-img
{
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.image-lightbox-close
{
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: #fff;
    color: #000;
    border: 0;
    line-height: 28px;
    text-align: center;
    font-size: 20px;
}

.basket-auth-buttons
{
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 576px)
{
    .basket-auth-buttons
    {
        flex-direction: column;
        align-items: center;
    }
    
    .basket-auth-buttons .btn
    {
        width: 100%;
        max-width: 300px;
    }
    
    .text-end p
    {
        text-align: center !important;
    }
}