/* Cart page - layout modern, consistent cu create_pre_order și client_info */
.omni-cart-page {
    padding: 20px 0 32px;
}

.omni-cart-wrapper {
    max-width: 100%;
}

.omni-cart-card .omni-detail-card,
.omni-cart-empty .omni-detail-card {
    border-radius: 10px;
}

/* Header coș */
.omni-cart-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--dash-border, #e2e8f0);
}

.omni-cart-title {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e293b;
}

/* Body - tabel și totaluri */
.omni-cart-body {
    padding-top: 0;
}

.omni-cart-body .fr1 {
    display: flex;
    flex-direction: column;
}

.omni-cart-body .s_table {
    margin-bottom: 0;
}

.omni-cart-body .invoice-items-table th {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    padding: 12px 16px;
    border-bottom: 1px solid var(--dash-border, #e2e8f0);
}

.omni-cart-body .invoice-items-table td {
    padding: 16px;
    vertical-align: middle !important;
    border-bottom: 1px solid var(--dash-border, #e2e8f0);
    font-size: 1.0625rem;
    color: #1e293b;
}

.omni-cart-body .invoice-items-table .product.pic {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.omni-cart-body .invoice-items-table .old-price {
    font-size: 0.9375rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.omni-cart-body .line_data.qty {
    width: 80px;
    min-height: 38px;
    border: 1px solid var(--dash-border, #e2e8f0);
    border-radius: 6px;
    text-align: center;
}

.omni-cart-body .line_data.qty:focus {
    border-color: var(--dash-primary, #2563eb);
    outline: none;
}

.omni-cart-body .fa-times {
    cursor: pointer;
    opacity: 0.7;
}

.omni-cart-body .fa-times:hover {
    opacity: 1;
    color: #dc2626 !important;
}

/* Totaluri - box sub tabel */
.omni-cart-totals-wrap {
    margin-top: 24px;
    align-self: flex-end;
    max-width: 320px;
}

.omni-cart-totals-table {
    width: 100%;
    min-width: 260px;
    margin-bottom: 0;
    background: #f8fafc;
    border: 1px solid var(--dash-border, #e2e8f0);
    border-radius: 8px;
    overflow: hidden;
}

.omni-cart-totals-table td {
    padding: 10px 16px;
    border-top: 1px solid var(--dash-border, #e2e8f0);
    font-size: 1.0625rem;
    color: #1e293b;
}

.omni-cart-totals-table tr:first-child td {
    border-top: none;
}

.omni-cart-totals-table td:first-child {
    text-align: right;
    width: 60%;
}

.omni-cart-totals-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.omni-cart-totals-table tr:last-child td {
    padding-top: 12px;
    padding-bottom: 12px;
    border-top-width: 2px;
    background: #f1f5f9;
}

/* Acțiuni - buton comandă */
.omni-cart-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--dash-border, #e2e8f0);
}

.omni-cart-checkout-btn {
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--dash-primary, #2563eb) !important;
    border: none !important;
    color: #fff !important;
}

.omni-cart-checkout-btn:hover {
    background: var(--dash-primary-hover, #1d4ed8) !important;
    color: #fff !important;
}

/* Coș gol */
.omni-cart-empty {
    text-align: center;
}

.omni-cart-empty-body {
    padding: 48px 24px;
}

.omni-cart-empty-title {
    margin: 0 0 24px 0;
    font-size: 1.375rem;
    color: #64748b;
}

.omni-cart-back-btn {
    padding: 10px 24px;
    border-radius: 8px;
}

.omni-cart-back-btn i {
    margin-right: 8px;
}