/* Card Styling */
.card {
    border-radius: 14px !important;
    border: 2px solid #d1d5db !important;
    /* darker border */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
}

/* Hover effect for better visibility */
.card:hover {
    border-color: #0d6efd !important;
    /* highlight border on hover */
    box-shadow: 0px 8px 20px rgba(13, 110, 253, 0.15);
}

/* Card Header with accent border */
.card h4 {
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.card h4 i {
    font-size: 1.4rem;
    color: #0d6efd;
}

/* Order Item */
.order-item {
    padding: 14px 10px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease;
}

.order-item:hover {
    background: #f9fbff;
}

.order-info {
    flex: 1;
}

.order-name {
    font-weight: 600;
    color: #222;
}

.order-unit-price {
    font-size: 13px;
    color: #28a745;
    font-weight: 500;
}

.qty-control button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: bold;
    transition: all 0.2s ease;
}

.qty-control button:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.qty-control input {
    width: 45px;
    text-align: center;
    border: none;
    background: #f8f9fa;
    font-weight: 500;
    margin: 0 5px;
    border-radius: 6px;
}

.item-price {
    min-width: 70px;
    text-align: right;
    font-weight: 600;
    color: #000;
}

/* Total Section */
.list-unstyled li.bg-light {
    border-radius: 12px;
    background: linear-gradient(90deg, #eaf4ff, #ffffff) !important;
}

/* Form Controls */
.form-control {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.2);
}

/* Place Order Button */
.btn-success {
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}