/* ----------------------------------------------------
   CART PAGE — MATCH ORIGINAL OLD DESIGN
------------------------------------------------------ */
#cart-page .banner-wrapper p {
    color: #fff !important;
}

/* Summary top bar */
.atl-summary-bar {
    background:#325c52;
    padding:12px 0;
    color:#fff;
    position: relative;
    z-index: 10;
     border-radius: 14px;
    margin-bottom: 25px; /* NEW */
}

.atl-summary-inner {
    max-width:1200px;
    margin:0 auto;
    padding:0 15px;
}

/* Change Vehicle button in green header */
.atl-box-header .btn-outline-secondary {
    color: #fff !important;
    border-color: rgba(255,255,255,0.7) !important;
}

.atl-box-header .btn-outline-secondary:hover {
    color:#fff !important;
    border-color:#fff !important;
    background: rgba(255,255,255,0.15) !important;
}


/* Boxes (Vehicle, Passenger, Fare) */
.atl-box {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #dfe6e3;
}

/* Box header (green strip) */
.atl-box-header {
    background: #325c52;
    color: #fff;
    padding: 14px 22px;
    font-weight: 600;
    font-size: 17px;
    border-bottom: 1px solid #21433e;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Box body */
.atl-box-body {
    padding: 22px;
}

/* Distance / fare columns inside the vehicle box */
.atl-box-body .col-md-4 {
    border-right: 1px solid #e5e5e5;
}

.atl-box-body .col-md-4:last-child {
    border-right: none;
}

.atl-box-body .small {
    font-size: 13px;
    color: #6b6b6b;
}

/* Input styling inside boxes */
.atl-box input,
.atl-box textarea,
.atl-box select {
    border-radius: 10px !important;
    border: 1px solid #cfd9d5;
    padding: 10px 14px;
}

/* Field labels */
.atl-box label.form-label {
    font-weight: 600;
    color: #1e2f2c;
}

/* Fare detail rows */
.atl-box-body .d-flex {
    font-size: 15px;
    padding: 6px 0;
}

.atl-box-body hr {
    border-color: #dadada;
}

/* Payment checkbox card */
.atl-box-body label.border {
    background: #f6f6f6;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border-color: #ced4da !important;
}

/* Payment button */
#cart-page .btn-success {
    background: #325c52;
    border-color: #325c52;
    padding: 14px;
    font-size: 18px;
    border-radius: 10px;
}

#cart-page .btn-success:hover {
    background: #244a44;
    border-color: #244a44;
}

/* “Click Here For Payment” button (bottom full-width) */
#cart-page button.w-100 {
    background: #325c52;
    border-radius: 12px;
    padding: 16px;
    font-size: 18px;
    color: #fff;
    border: none;
}

#cart-page button.w-100:hover {
    background: #244a44;
}

/* Spacing between stacked blocks */
.atl-box {
    margin-bottom: 32px;
}

/* Clear button */
.atl-summary-bar a {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .atl-summary-inner {
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
        text-align: center;
    }

    .atl-box-body .col-md-4 {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 14px;
        margin-bottom: 14px;
    }

    .atl-box-body .col-md-4:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
