/* ===============================
   Booking Layout
================================ */

.photoez-booking-container {
    max-width:1100px;
    margin:0 auto;
    padding:40px 20px;
}

.photoez-booking-title {
    text-align:center;
    margin-bottom:40px;
    font-size:28px;
}

.photoez-sessions-grid {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:30px;
}

/* ===============================
   Session Card
================================ */

.photoez-session-card {
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.photoez-session-card:hover {
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.photoez-session-content h3 {
    margin-top:0;
    font-size:20px;
}

.photoez-session-description {
    font-size:14px;
    color:#666;
    margin:15px 0;
}

.photoez-session-price {
    font-size:22px;
    font-weight:600;
    margin-bottom:20px;
}

/* ===============================
   Buttons
================================ */

.photoez-select-session {
    background:#0073aa;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:6px;
    cursor:pointer;
    font-size:14px;
    transition:background 0.2s ease;
}

.photoez-select-session:hover {
    background:#005f8d;
}

/* ===============================
   Cancel Page
================================ */

.photoez-cancel-success {
    max-width:600px;
    margin:80px auto;
    padding:40px;
    text-align:center;
    background:#fff;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}
.photoez-session-image {
    height:600px;
    overflow:hidden;
    border-radius:10px;
    margin-bottom:15px;
}

.photoez-session-image img {
    width:100%;
    height:100%;
    object-fit:contain; /* change from cover */
    background:#f5f5f5;
}

/* =================================
   Step Wrapper
================================= */

.photoez-step-wrapper {
    max-width:700px;
    margin:40px auto;
    padding:30px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    animation:fadeInStep 0.25s ease;
}

@keyframes fadeInStep {
    from { opacity:0; transform:translateY(10px); }
    to { opacity:1; transform:translateY(0); }
}

/* =================================
   Progress Bar
================================= */

.photoez-progress {
    display:flex;
    justify-content:space-between;
    margin-bottom:30px;
}

.photoez-progress-step {
    flex:1;
    text-align:center;
    font-size:13px;
    position:relative;
}

.photoez-progress-step:after {
    content:'';
    position:absolute;
    top:8px;
    right:-50%;
    width:100%;
    height:2px;
    background:#ddd;
    z-index:-1;
}

.photoez-progress-step:last-child:after {
    display:none;
}

.photoez-progress-step.active {
    font-weight:600;
    color:#0073aa;
}

.photoez-progress-step.completed {
    color:#28a745;
}
.photoez-back-btn {
    margin-bottom:15px;
    background:none;
    border:none;
    color:#0073aa;
    cursor:pointer;
    font-size:14px;
}

.photoez-time-grid {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap:15px;
}

.photoez-time-slot {
    padding:12px;
    border-radius:6px;
    background:#f5f5f5;
    border:1px solid #ddd;
    cursor:pointer;
    transition:all 0.2s ease;
}

.photoez-time-slot:hover {
    background:#0073aa;
    color:#fff;
}
/* =========================
   Styled Date Picker
========================= */

#booking_date {
    width:100%;
    max-width:300px;
    padding:12px 15px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:14px;
    transition:border 0.2s ease, box-shadow 0.2s ease;
}

#booking_date:focus {
    outline:none;
    border-color:#0073aa;
    box-shadow:0 0 0 3px rgba(0,115,170,0.15);
}
/* =========================
   Add‑On Cards (Premium)
========================= */

.photoez-addon-card {
    border:1px solid #eaeaea;
    border-radius:12px;
    padding:20px;
    margin-bottom:20px;
    background:#fff;
    transition:all 0.25s ease;
}

.photoez-addon-card:hover {
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transform:translateY(-3px);
}

.photoez-addon-card.selected {
    border:2px solid #0073aa;
    background:#f5fbff;
}

.photoez-addon-header {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:15px;
}

.photoez-addon-name {
    font-weight:600;
    font-size:16px;
}

.photoez-addon-description {
    font-size:13px;
    color:#666;
    margin-top:5px;
}

.photoez-addon-price {
    font-weight:600;
    font-size:16px;
    color:#0073aa;
}

.photoez-addon-controls {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.photoez-addon-toggle input {
    margin-right:6px;
}

.photoez-addon-qty-wrapper input {
    width:60px;
    padding:6px;
    border-radius:6px;
    border:1px solid #ddd;
}
/* =================================
   Booking Layout With Sidebar
================================= */

.photoez-booking-layout {
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:40px;
    align-items:start;
    margin-top:40px;
}

@media (max-width: 900px) {
    .photoez-booking-layout {
        grid-template-columns: 1fr;
    }
}

/* =================================
   Summary Sidebar
================================= */

.photoez-summary {
    position:sticky;
    top:100px;
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.photoez-summary h3 {
    margin-top:0;
    margin-bottom:20px;
}

.photoez-summary-row {
    margin-bottom:12px;
    font-size:14px;
}

.photoez-summary-total {
    margin-top:20px;
    padding-top:15px;
    border-top:1px solid #eee;
    font-weight:600;
    font-size:16px;
}

.photoez-summary-deposit {
    font-size:13px;
    color:#666;
}