.mp-booking-header {
    background-color: #0e2438;
    padding-bottom: 60px;
}

.mp-booking-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.mp-booking-intro {
    padding-top: 40px;
    color: #f4ede0;
}

.mp-booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.mp-booking-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: #cfc4ae;
    font-size: 15px;
    line-height: 1.7;
}

.mp-booking-widget-section {
    background: #f5f3ee;
    padding: 0 0 80px;
}

.mp-booking-card {
    background: #f5f3ee;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px;
}

.mp-booking-venue {
    margin-bottom: 24px;
}

.mp-booking-venue-logo {
    width: 100px;
    margin-bottom: 12px;
}

.mp-booking-venue-name {
    color: #0e2438;
    font-size: 14px;
}

/* Steps */
.mp-booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ddd6c8;
}

.mp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9a927e;
    font-size: 14px;
}

.mp-step-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #b7b0a0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.mp-step.active .mp-step-circle {
    background: #0e2438;
}

.mp-step.completed .mp-step-circle {
    background: #c9ab6d;
}

.mp-step.active .mp-step-label {
    color: #0e2438;
    font-weight: 600;
}

.mp-step-line {
    flex: 1;
    height: 1px;
    background: #ddd6c8;
    margin: 0 16px;
    max-width: 200px;
}

/* Step 1: calendar + guests */
.mp-booking-step-panel {
    display: none;
}

.mp-booking-step-panel.active {
    display: block;
}

.mp-booking-step1-row {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.mp-booking-calendar-wrap {
    display: flex;
}

.mp-calendar-sidebar {
    background: #0e2438;
    color: #fff;
    padding: 24px;
    min-width: 130px;
}

.mp-calendar-year {
    font-size: 22px;
    margin-bottom: 8px;
}

.mp-calendar-selected-day {
    font-size: 14px;
    color: #cfc4ae;
}

.mp-calendar-main {
    padding: 24px;
    flex: 1;
}

.mp-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mp-calendar-month-label {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #0e2438;
}

.mp-cal-nav-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #0e2438;
    cursor: pointer;
    padding: 0 8px;
}

.mp-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    color: #9a927e;
    margin-bottom: 8px;
}

.mp-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.mp-cal-day {
    aspect-ratio: 1;
    border: none;
    background: none;
    border-radius: 50%;
    font-size: 14px;
    color: #2c2c2c;
    cursor: pointer;
}

.mp-cal-day:hover:not(.mp-cal-day-disabled):not(.mp-cal-day-blank) {
    background: #f0ece2;
}

.mp-cal-day-blank {
    cursor: default;
}

.mp-cal-day-disabled {
    color: #d8d2c4;
    cursor: not-allowed;
}

.mp-cal-day-weekend:not(.mp-cal-day-disabled) {
    color: #c65b3d;
}

.mp-cal-day-selected {
    background: #0e2438 !important;
    color: #fff !important;
}

.mp-booking-guests-wrap {
    background: #fff;
    padding: 32px 28px;
    border-left: 1px solid #eee7d8;
}

.mp-guests-heading {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #0e2438;
    margin-bottom: 24px;
}

.mp-guests-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9a927e;
    margin-bottom: 8px;
}

.mp-guests-control {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mp-guests-count {
    width: 90px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ddd6c8;
    border-radius: 4px;
    padding: 10px;
    background: #fff;
    color: #0e2438;
}

.mp-guests-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.mp-guests-minus {
    background: #e4dfd2;
    color: #0e2438;
}

.mp-guests-plus {
    background: #0e2438;
    color: #fff;
}

/* Step 2 / 3 shared card look */
.mp-booking-details-wrap,
.mp-booking-summary-wrap {
    background: #fff;
    border-radius: 4px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.mp-form-group {
    margin-bottom: 18px;
}

.mp-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0e2438;
    margin-bottom: 6px;
}

.mp-form-control {
    width: 100%;
    border: 1px solid #ddd6c8;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
}

.mp-form-control:focus {
    outline: none;
    border-color: #c9ab6d;
}

.mp-form-textarea {
    resize: vertical;
}

.mp-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0ece2;
    font-size: 14px;
    color: #2c2c2c;
}

.mp-summary-row:last-child {
    border-bottom: none;
}

/* Actions */
.mp-booking-actions {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 32px auto 0;
}

.mp-btn-back,
.mp-btn-next,
.mp-btn-confirm {
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.mp-btn-back {
    background: #d8d2c4;
    color: #fff;
}

.mp-btn-back:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.mp-btn-next,
.mp-btn-confirm {
    background: #7a746a;
    color: #fff;
}

.mp-btn-confirm {
    background: #0e2438;
}

@media (max-width: 767px) {
    .mp-booking-calendar-wrap {
        flex-direction: column;
    }
    .mp-booking-guests-wrap {
        border-left: none;
        border-top: 1px solid #eee7d8;
    }
    .mp-booking-actions {
        flex-direction: column;
        gap: 12px;
    }
}
