:root {
--dsb-primary:   #4f46e5;
--dsb-primary-h: #4338ca;
--dsb-success:   #10b981;
--dsb-danger:    #ef4444;
--dsb-gray:      #6b7280;
--dsb-light:     #f9fafb;
--dsb-border:    #e5e7eb;
--dsb-radius:    10px;
}
.dsb-booking-wrap { max-width: 760px; margin: 0 auto; font-family: inherit; }
.dsb-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 24px; color: #111; } .dsb-step { display: none; }
.dsb-step.active { display: block; animation: dsbFadeIn .25s ease; }
@keyframes dsbFadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }
.dsb-step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; color: var(--dsb-gray); } .dsb-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.dsb-service-card {
padding: 14px 16px;
border: 2px solid var(--dsb-border);
border-radius: var(--dsb-radius);
cursor: pointer;
transition: border-color .2s, box-shadow .2s;
background: #fff;
}
.dsb-service-card:hover { border-color: var(--dsb-primary); box-shadow: 0 2px 12px rgba(79,70,229,.1); }
.dsb-service-card.selected { border-color: var(--dsb-primary); background: #eef2ff; }
.dsb-service-name { display: block; font-weight: 600; color: #111; margin-bottom: 4px; }
.dsb-service-duration, .dsb-service-price { display: inline-block; font-size: .8rem; color: var(--dsb-gray); margin-right: 8px; }
.dsb-service-price { color: var(--dsb-primary); font-weight: 600; }
.dsb-service-desc { font-size: .82rem; color: var(--dsb-gray); margin: 6px 0 0; } .dsb-calendar-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.dsb-month-label { font-weight: 600; font-size: 1rem; flex:1; text-align:center; }
.dsb-calendar { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.dsb-cal-header { text-align: center; font-size: .75rem; font-weight: 600; color: var(--dsb-gray); padding: 4px; }
.dsb-cal-day {
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
font-size: .9rem;
cursor: pointer;
border: 2px solid transparent;
transition: background .15s, border-color .15s;
}
.dsb-cal-day:hover:not(.dsb-cal-empty):not(.dsb-cal-past):not(.dsb-cal-unavail) { background: #eef2ff; border-color: var(--dsb-primary); }
.dsb-cal-day.selected { background: var(--dsb-primary); color: #fff; }
.dsb-cal-day.dsb-cal-today { border-color: var(--dsb-primary); font-weight: 700; }
.dsb-cal-day.dsb-cal-past,
.dsb-cal-day.dsb-cal-unavail { color: #d1d5db; cursor: default; }
.dsb-cal-day.dsb-cal-has-slots { background: #d1fae5; }
.dsb-cal-day.dsb-cal-has-slots.selected { background: var(--dsb-primary); color: #fff; } .dsb-slots-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.dsb-slot {
padding: 8px 16px;
border: 2px solid var(--dsb-border);
border-radius: 8px;
cursor: pointer;
font-size: .9rem;
font-weight: 500;
background: #fff;
transition: border-color .15s, background .15s;
}
.dsb-slot:hover { border-color: var(--dsb-primary); background: #eef2ff; }
.dsb-slot.selected { border-color: var(--dsb-primary); background: var(--dsb-primary); color: #fff; } .dsb-summary {
background: var(--dsb-light);
border: 1px solid var(--dsb-border);
border-radius: 8px;
padding: 12px 16px;
margin-bottom: 20px;
font-size: .9rem;
color: #374151;
}
.dsb-summary .dsb-summary-row { display: flex; gap: 8px; margin-bottom: 4px; }
.dsb-summary .dsb-summary-label { font-weight: 600; min-width: 90px; }
.dsb-form .dsb-field { margin-bottom: 16px; }
.dsb-form label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 4px; color: #374151; }
.dsb-form input[type="text"],
.dsb-form input[type="email"],
.dsb-form input[type="tel"],
.dsb-form textarea {
width: 100%;
box-sizing: border-box;
padding: 9px 12px;
border: 2px solid var(--dsb-border);
border-radius: 8px;
font-size: .95rem;
transition: border-color .2s;
outline: none;
}
.dsb-form input:focus, .dsb-form textarea:focus { border-color: var(--dsb-primary); }
.dsb-required { color: var(--dsb-danger); } .dsb-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 9px 22px;
border-radius: 8px;
font-size: .95rem;
font-weight: 600;
cursor: pointer;
border: 2px solid transparent;
transition: background .15s, opacity .15s;
}
.dsb-btn:disabled { opacity: .45; cursor: not-allowed; }
.dsb-btn-primary { background: var(--dsb-primary); color: #fff; border-color: var(--dsb-primary); }
.dsb-btn-primary:hover:not(:disabled) { background: var(--dsb-primary-h); }
.dsb-btn-secondary { background: #fff; color: #374151; border-color: var(--dsb-border); }
.dsb-btn-secondary:hover { background: var(--dsb-light); } .dsb-nav { display: flex; justify-content: space-between; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--dsb-border); }
.dsb-form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; } .dsb-success { text-align: center; padding: 48px 20px; }
.dsb-success-icon { font-size: 3rem; color: var(--dsb-success); background: #d1fae5; width: 72px; height: 72px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.dsb-success h3 { font-size: 1.4rem; margin-bottom: 8px; } .dsb-loading { text-align: center; padding: 24px; }
.dsb-spinner {
display: inline-block;
width: 28px; height: 28px;
border: 3px solid var(--dsb-border);
border-top-color: var(--dsb-primary);
border-radius: 50%;
animation: dsb-spin .7s linear infinite;
}
@keyframes dsb-spin { to { transform: rotate(360deg); } } .dsb-message { padding: 12px 16px; border-radius: 8px; font-size: .9rem; margin-top: 12px; }
.dsb-message.dsb-msg-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.dsb-message.dsb-msg-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; } .dsb-notice { padding: 12px 16px; border-left: 4px solid var(--dsb-primary); background: #eef2ff; border-radius: 6px; } @media (max-width: 480px) {
.dsb-services-grid { grid-template-columns: 1fr; }
.dsb-slots-grid { gap: 6px; }
.dsb-slot { padding: 7px 12px; font-size: .85rem; }
}