/* ─── Alma de Campo — Reservas & Canasta ─────────────────────── */
.cyr {
    max-width: 960px;
    margin: 20px auto 40px;
    padding: 28px;
    background: #FFFFFF;
    border: 1px solid rgba(183, 192, 183, 0.5);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(23, 32, 25, 0.06);
    color: #172019;
    font-family: 'Manrope', system-ui, sans-serif;
}

.cyr-header-box {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(183, 192, 183, 0.35);
}

.cyr-eyebrow-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #23452F;
    background: rgba(35, 69, 47, 0.08);
    border: 1px solid rgba(35, 69, 47, 0.15);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.cyr h1 {
    font-family: 'Literata', Georgia, serif;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    color: #173321;
    margin: 0 0 6px;
    line-height: 1.2;
}

.cyr-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #23452F;
    background: #FAF7F2;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(35, 69, 47, 0.12);
}

/* Layout en 2 columnas */
.cyr-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.cyr-section-title {
    font-family: 'Literata', Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    color: #173321;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cyr-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #23452F;
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
}

/* Lista de Productos */
.cyr-products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cyr-prod-card {
    display: grid;
    grid-template-columns: 68px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 16px;
    background: #FAF7F2;
    border: 1px solid rgba(183, 192, 183, 0.4);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.cyr-prod-card.has-qty {
    background: #FFFFFF;
    border-color: #23452F;
    box-shadow: 0 4px 16px rgba(35, 69, 47, 0.08);
}

.cyr-prod-img {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    object-fit: cover;
    background: #E8ECE8;
}

.cyr-prod-info h4 {
    margin: 0 0 3px;
    font-family: 'Literata', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #173321;
    line-height: 1.3;
}

.cyr-prod-meta {
    font-size: 12.5px;
    color: #4D5A50;
    margin-bottom: 2px;
}

.cyr-prod-price {
    font-size: 14px;
    font-weight: 700;
    color: #23452F;
}

/* Stepper de Cantidad */
.cyr-stepper {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid rgba(183, 192, 183, 0.6);
    border-radius: 999px;
    overflow: hidden;
}

.cyr-stepper button {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #23452F;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.cyr-stepper button:hover {
    background: rgba(35, 69, 47, 0.1);
}

.cyr-stepper input.cyr-qty {
    width: 36px;
    height: 32px;
    border: none;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #173321;
    padding: 0;
    background: transparent;
    -moz-appearance: textfield;
}

.cyr-stepper input.cyr-qty::-webkit-outer-spin-button,
.cyr-stepper input.cyr-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Panel de Entrega y Formulario */
.cyr-form-panel {
    background: #FAF7F2;
    border: 1px solid rgba(183, 192, 183, 0.5);
    border-radius: 20px;
    padding: 20px 22px;
}

.cyr-field-group {
    margin-bottom: 16px;
}

.cyr-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #23452F;
    margin-bottom: 6px;
}

.cyr-input,
.cyr-select {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    background: #FFFFFF;
    border: 1.5px solid rgba(183, 192, 183, 0.6);
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #172019;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.cyr-input:focus,
.cyr-select:focus {
    border-color: #23452F;
    box-shadow: 0 0 0 3px rgba(35, 69, 47, 0.12);
    outline: none;
}

/* Grilla de Franjas Horarias */
.cyr-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cyr-slot-card {
    padding: 10px 12px;
    background: #FFFFFF;
    border: 1.5px solid rgba(183, 192, 183, 0.5);
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.cyr-slot-card:hover:not(:disabled) {
    border-color: #23452F;
    background: #F4F7F4;
    transform: translateY(-1px);
}

.cyr-slot-card.selected {
    background: #23452F !important;
    border-color: #23452F !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(35, 69, 47, 0.25);
}

.cyr-slot-card.selected strong,
.cyr-slot-card.selected small {
    color: #FFFFFF !important;
}

.cyr-slot-card.disabled {
    background: #EDEAE4 !important;
    border-color: #D6D1C7 !important;
    color: #8C857B !important;
    cursor: not-allowed;
    opacity: 0.8;
}

.cyr-slot-card strong {
    font-size: 13.5px;
    color: #173321;
}

.cyr-slot-card small {
    font-size: 11.5px;
    color: #4D5A50;
    margin-top: 2px;
}

/* Resumen de Totales y Pago */
.cyr-summary-box {
    background: #FFFFFF;
    border: 1px solid rgba(183, 192, 183, 0.4);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 18px 0;
}

.cyr-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: #4D5A50;
    margin-bottom: 6px;
}

.cyr-summary-total {
    display: flex;
    justify-content: space-between;
    font-family: 'Literata', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #173321;
    padding-top: 8px;
    border-top: 1px dashed rgba(183, 192, 183, 0.6);
    margin-top: 6px;
}

.cyr-payment-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FAF4E9;
    border: 1px solid rgba(224, 165, 43, 0.4);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12.5px;
    color: #674900;
    margin-bottom: 16px;
}

.cyr-btn-submit {
    width: 100%;
    min-height: 50px;
    background: #23452F;
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(35, 69, 47, 0.25);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cyr-btn-submit:hover:not(:disabled) {
    background: #173321;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(23, 51, 33, 0.32);
}

.cyr-btn-submit:disabled {
    background: #B7C0B7;
    cursor: not-allowed;
    box-shadow: none;
}

/* Pantalla de Éxito */
.cyr-success-box {
    text-align: center;
    padding: 32px 20px;
    background: #FAF7F2;
    border-radius: 20px;
    border: 1.5px solid #23452F;
}

.cyr-success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.cyr-success-title {
    font-family: 'Literata', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #173321;
    margin-bottom: 8px;
}

.cyr-success-desc {
    font-size: 15px;
    color: #4D5A50;
    max-width: 480px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.cyr-wa-confirm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #128C7E;
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-family: 'Manrope', sans-serif;
    font-size: 15.5px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(18, 140, 126, 0.3);
    transition: all 0.25s ease;
}

.cyr-wa-confirm-btn:hover {
    background: #075E54;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cyr {
        margin: 10px;
        padding: 18px;
    }
    .cyr-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cyr-slots-grid {
        grid-template-columns: 1fr;
    }
}