/* Form de reserva en página de producto */

.pg-ck-form { margin: 16px 0 24px; }

.pg-ck-fecha,
.pg-ck-personas,
.pg-ck-combo-info {
    margin: 14px 0;
    padding: 14px 16px;
    background: #f8fdf4;
    border: 1px solid #c8e6b0;
    border-radius: 6px;
}

.pg-ck-combo-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #41602d;
    font-size: 14px;
}

.pg-ck-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #41602d;
    margin-bottom: 8px;
}

.pg-ck-required { color: #c0392b; }

.pg-ck-input-date {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #b8d9a0;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}

.pg-ck-input-date:focus {
    outline: none;
    border-color: #f4a300;
    box-shadow: 0 0 0 3px rgba(244, 163, 0, 0.15);
}

.pg-ck-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Selectores de personas */

.pg-ck-persona-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #d8e8c0;
}

.pg-ck-persona-row:last-child { border-bottom: none; }

.pg-ck-persona-info { display: flex; flex-direction: column; gap: 2px; }

.pg-ck-persona-label { font-size: 15px; font-weight: 600; color: #1a1a1a; }
.pg-ck-persona-sub { font-size: 11px; color: #888; }
.pg-ck-persona-price { font-size: 12px; color: #41602d; font-weight: 600; }

.pg-ck-persona-counter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg-ck-counter-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #b8d9a0;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: #41602d;
    cursor: pointer;
    transition: background .15s, transform .1s;
    line-height: 1;
}

.pg-ck-counter-btn:hover { background: #e8f5d8; }
.pg-ck-counter-btn:active { transform: scale(.92); }
.pg-ck-counter-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.pg-ck-persona-counter input[type=number] {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    -moz-appearance: textfield;
}

.pg-ck-persona-counter input::-webkit-outer-spin-button,
.pg-ck-persona-counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pg-ck-unavailable {
    padding: 14px 16px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    color: #795548;
    font-size: 14px;
}
