.rsrv-card .rsrv-subtitle {
    font-size: 13px;
    color: var(--t2);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.7;
}

/* Calendar */
.rsrv-calendar {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--surface-2);
}

.rsrv-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--accent);
    color: #fff;
}

.rsrv-cal-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
}

.rsrv-cal-nav:hover {
    background: rgba(255,255,255,.32);
}

.rsrv-cal-month {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
}

.rsrv-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px 8px 4px;
    gap: 2px;
}

.rsrv-cal-wd {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--t3);
    padding: 4px 0;
}

.rsrv-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 4px 8px 8px;
    gap: 3px;
}

.rsrv-cal-day {
    text-align: center;
    padding: 8px 2px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    transition: all .15s;
    color: var(--t1);
}

.rsrv-cal-empty {
    visibility: hidden;
}

.rsrv-cal-clickable {
    cursor: pointer;
}

.rsrv-cal-clickable:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.08);
}

.rsrv-cal-disabled {
    color: var(--t3);
    opacity: .35;
    cursor: not-allowed;
}

.rsrv-cal-today {
    background: var(--accent-pale);
    color: var(--accent);
    font-weight: 800;
    border: 1.5px solid var(--accent);
}

.rsrv-cal-selected {
    background: var(--accent) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
    transform: scale(1.05);
}

/* Time section */
.rsrv-time-section {
    margin-top: 14px;
    animation: fadeUp .3s ease both;
}

.rsrv-time-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 10px;
}

.rsrv-time-header i {
    color: var(--accent);
    font-size: 14px;
}

.rsrv-time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.rsrv-slot {
    padding: 10px 6px;
    text-align: center;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--t1);
    cursor: pointer;
    transition: all .15s;
    background: var(--surface);
    font-family: 'Vazirmatn', sans-serif;
}

.rsrv-slot:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-pale);
    transform: translateY(-2px);
}

.rsrv-slot-active {
    background: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

.rsrv-slot-full {
    opacity: .5;
    cursor: not-allowed;
    color: var(--t3) !important;
    background: var(--surface-2);
    border-style: dashed;
}

.rsrv-slot-full:hover {
    transform: none;
    border-color: var(--border);
    background: var(--surface-2);
}

.rsrv-slot-full i {
    margin-left: 4px;
    font-size: 11px;
}

.rsrv-slot-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 16px;
    font-size: 12px;
    color: var(--t3);
}

.rsrv-slot-empty i {
    margin-left: 6px;
}

/* Form */
.rsrv-form {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    animation: fadeUp .3s ease both;
}

.rsrv-form-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 12px;
}

.rsrv-form-title i {
    color: var(--accent);
    font-size: 14px;
}

.rsrv-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 13px;
    font-family: 'Vazirmatn', sans-serif;
    background: var(--surface-2);
    color: var(--t1);
    margin-bottom: 8px;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.rsrv-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}

.rsrv-textarea {
    resize: vertical;
    min-height: 60px;
}

.rsrv-submit {
    padding: 12px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-size: 14px;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    width: 100%;
    margin-top: 4px;
}

.rsrv-submit:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    transform: translateY(-1px);
}

.rsrv-submit:active {
    transform: translateY(1px) scale(.98);
}

.rsrv-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Status */
.rsrv-status {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    animation: fadeUp .3s ease both;
}

.rsrv-status-success {
    background: #ECFDF5;
    color: #059669;
}

.rsrv-status-error {
    background: #FEF2F2;
    color: #DC2626;
}

[data-theme="dark"] .rsrv-status-success {
    background: #052E16;
    color: #4ADE80;
}

[data-theme="dark"] .rsrv-status-error {
    background: #4C0519;
    color: #FB7185;
}

@media (max-width: 360px) {
    .rsrv-time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}
