/* =========================
   WRAPPER
========================= */

#cor-booking-app {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.cor-booking-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow:
        0 8px 30px rgba(0,0,0,.08);
}

/* =========================
   HEADINGS
========================= */

.cor-booking-card h2 {
    margin: 0 0 25px;
    font-size: 30px;
    font-weight: 700;
}

.cor-booking-card h3 {
    margin: 20px 0 15px;
    font-size: 20px;
}

/* =========================
   INPUTS
========================= */

#cor-booking-app input[type="text"],
#cor-booking-app input[type="date"],
#cor-booking-app select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 12px;
    font-size: 15px;
}

#cor-booking-app textarea {
    width: 100%;
}

/* =========================
   BUTTONS
========================= */

.cor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border: 0;
    border-radius: 8px;

    background: #222;
    color: #fff;

    cursor: pointer;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: .2s ease;
}

.cor-btn:hover {
    opacity: .9;
}

.cor-btn-primary {
    background: #16a34a;
}

.cor-btn-primary:hover {
    background: #15803d;
}

/* =========================
   STEP SPACING
========================= */

.cor-step {
    margin-bottom: 25px;
}

/* =========================
   SERVICES
========================= */

.cor-service {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    border: 1px solid #ddd;
    border-radius: 10px;

    padding: 14px;

    margin-bottom: 12px;

    cursor: pointer;
    transition: .2s ease;
}

.cor-service:hover {
    border-color: #16a34a;
}

.cor-service input {
    margin-top: 4px;
}

.cor-service strong {
    display: block;
    margin-bottom: 4px;
}

/* =========================
   SLOTS
========================= */

.cor-slot {
    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid #ddd;
    border-radius: 10px;

    padding: 14px;

    margin-bottom: 10px;

    cursor: pointer;
}

.cor-slot:hover {
    border-color: #16a34a;
}

.cor-slot small {
    color: #777;
    display: block;
    margin-top: 4px;
}

/* =========================
   ADDRESS CARDS
========================= */

.cor-address-card {
    display: block;

    border: 1px solid #ddd;
    border-radius: 10px;

    padding: 15px;

    margin-bottom: 12px;

    cursor: pointer;
}

.cor-address-card:hover {
    border-color: #16a34a;
}

.cor-address-card input {
    margin-right: 8px;
}

/* =========================
   SUMMARY
========================= */

#cor-summary {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}

.cor-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 12px;
}

.cor-summary-row strong {
    font-size: 16px;
}

/* =========================
   MESSAGES
========================= */

.cor-message {
    display: none;

    padding: 12px 15px;

    border-radius: 8px;

    margin-bottom: 15px;

    font-size: 14px;
}

.cor-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}

.cor-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .cor-booking-card {
        padding: 20px;
    }

    .cor-booking-card h2 {
        font-size: 24px;
    }

    .cor-booking-card h3 {
        font-size: 18px;
    }

    .cor-btn {
        width: 100%;
    }

    .cor-summary-row {
        font-size: 14px;
    }
}