.lemans-padel-booking {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lpb-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lpb-label {
    font-weight: 600;
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lpb-duration-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lpb-pill {
    min-height: 44px;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.lpb-pill.is-active {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}

.lpb-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.lpb-cal-btn {
    min-width: 44px;
    min-height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    color: #475569;
}

.lpb-cal-title {
    font-weight: 600;
    font-size: 15px;
    flex: 1;
    text-align: center;
}

.lpb-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
}

.lpb-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.lpb-cal-day {
    min-height: 40px;
    border: none;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    color: #334155;
}

.lpb-cal-day-empty {
    background: transparent;
    cursor: default;
}

.lpb-cal-day.is-past,
.lpb-cal-day.is-unavailable {
    opacity: 0.35;
    cursor: not-allowed;
}

.lpb-cal-day.is-selectable {
    background: #e0f2fe;
    color: #0369a1;
}

.lpb-cal-day.is-available {
    background: #dcfce7;
    color: #166534;
}

.lpb-cal-day.is-selected {
    background: #2563eb;
    color: #fff;
}

.lpb-courts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lpb-court-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: border-color 0.15s;
}

.lpb-court-card.is-active {
    border-color: #2563eb;
    background: #f8fafc;
}

.lpb-court-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.lpb-court-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    font-size: 22px;
}

.lpb-court-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    display: block;
}

.lpb-court-meta {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

.lpb-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lpb-slot {
    min-width: 88px;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    text-align: center;
}

.lpb-slot.is-active {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}

.lpb-price-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lpb-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.lpb-price-note {
    margin: 0;
    padding: 0 4px;
    font-size: 12px;
    line-height: 1.45;
    color: #64748b;
}

.lpb-price-label {
    font-size: 14px;
    color: #64748b;
}

.lpb-price-value {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.lpb-error {
    display: none;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 13px;
}

.lpb-error.is-visible {
    display: block;
}

.lpb-book-btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s, opacity 0.15s;
}

.lpb-book-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lpb-book-btn:not(:disabled):hover {
    background: #1d4ed8;
}

.lpb-note {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.lpb-hint,
.lpb-loading {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.booking-card-partner .booking-header {
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .lpb-slot {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 0;
    }
}
