.bz-orders-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.bz-order-card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0px 2px 20px 0px hsl(0, 0%, 0%, 0.12);
}
.bz-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px 16px;
    background-color: #F8F8F8;
}
.bz-order-row {
    display: flex;
    gap: 32px;
    align-items: center;
}
.bz-order-products {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
}
.bz-order-product {
    display: flex;
    gap: 6px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 115px;
}
.bz-order-product img {
    max-width: 115px;
    max-height: 115px;
    object-fit: contain;
}
.bz-order-qty {
    font-size: 12px;
    position: absolute;
    left: 0;
    padding: 2px 6px;
    background-color: #021B40;
    color: white;
    font-weight: normal;
}
.bz-order-title {
    font-size: 13px;
    color: #333;
}
.bz-order-footer {
    margin-top: 10px;
    text-align: right;
}
.bz-orders-title {
    font-size: 24px;
    margin: 16px 0;
}
.bz-order-number {font-size: 17px;}
.bz-order-date {
    font-size: 14px;
    color: #667085;
}
.bz-order-more {
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}