.header-table {
    border-collapse: unset;
    border: none;
    border-spacing: 5px;
    width: 100%;
    max-width: 100%;
}
.header-table th{
    background: rgba(72, 72, 72, 0.15);
}
.header-table th span {
    text-align: center;
    white-space: nowrap;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
    display: inline-block;
    padding: 10px 0;
}
.header-table tbody tr:first-child th {
    border-top-right-radius: 12px;
}
.header-table tbody tr:last-child th{
    border-bottom-right-radius: 12px;
}
.header-table tbody tr:first-child td:last-child,
.header-table tbody tr:last-child td:last-child {
    text-align: center;
}
.header-table tbody tr:first-child td:last-child {
    border-top-left-radius: 12px;
}

.header-table tbody tr:last-child td:last-child {
    border-bottom-left-radius: 12px;
}
/*-----------------------------------*/
.products-table {
    margin-top: 20px;
    margin-bottom: 32px;
}
.products-table tfoot th {
    text-align: right;
}
/*-----------------------------------*/
.total-table-wrapper {
    display: flex;
    justify-content: space-between;
}
.total-table-wrapper > div {
    width: 50%;
}
.total-table th,
.total-table td {
    text-align: center;
    width: 50%;
}
.shipping-method-tfoot {
    border: 1px solid black;
    border-radius: 12px;
    padding: 10px 20px;
    margin: 10px 5px 0;
}
.shipping-label-products {
    margin-top: 12px;
    padding:12px 5px ;
}
.shipping-label-products .product-list{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}
.shipping-label-product-title,
.shipping-label-product-total {
    width: 100%;
}
.shipping-label-product {
    display: flex;
    width: calc(50% - 3px); /* Two rows per line */
    border: 1px solid #000;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 8px;
}
.shipping-label-product:only-child {
    width: 100%;
}

.product-list .product-item:nth-last-child(1):nth-child(odd) {
    width: 100%;
}

.shipping-label-product p {
    padding: 4px;
}

.shipping-label-product .product-name {
    flex: 1;
}
/*-----------------------------------*/
.footer-table td {
    width: 50%;
    vertical-align: top;
    height: 140px;
}
.footer-table td strong {
    display: block;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .header-table td {
        width: 100%;
        display: block;
        border-radius: 0 !important;
    }
    .header-table tbody tr:first-child td:last-child,
    .header-table tbody tr:last-child td:last-child {
        text-align: right;
    }
    .total-table-wrapper > div:first-child{
        display: none;
    }
    .total-table-wrapper > div:last-child {
        width: 100%;
    }
}

@media print {
    .page {
        zoom: 75%;
    }
}