/* Cociname Reservation v2 — based on design mockup */
:root {
    --coci-orange: #F2542D;
    --coci-orange-dark: #D8431F;
    --coci-blue: #1F7AED;
    --coci-blue-dark: #1763C9;
    --coci-green: #16A34A;
    --coci-text: #1B2436;
    --coci-muted: #7C8499;
    --coci-muted-light: #9AA3B5;
    --coci-border: #EEF2F8;
    --coci-border-input: #E6EBF3;
    --coci-bg-soft: #F4F7FB;
    --coci-shadow: 0 6px 20px rgba(27, 52, 92, 0.05);
    --coci-shadow-lg: 0 10px 30px rgba(27, 52, 92, 0.07);
}

.coci-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #EAF3FD 0%, #F6FAFE 60%, #FFFFFF 100%);
    color: var(--coci-text);
}

.coci-main {
    padding: 8px 12px 92px;
}

@media (min-width: 768px) {
    .coci-main {
        padding: 16px 24px 92px;
    }
}

@media (min-width: 1200px) {
    .coci-main {
        padding: 24px 32px 92px;
    }
}

/* Header Mis Reservas */
.coci-res-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.coci-res-header h1 {
    font-family: 'Goldplay', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 4vw, 34px);
    margin: 0;
    letter-spacing: -0.8px;
    line-height: 1.05;
}

.coci-res-header p {
    margin: 7px 0 0;
    color: var(--coci-muted);
    font-size: 14.5px;
}

.coci-btn-primary {
    background: var(--coci-orange);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 24px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(242, 84, 45, 0.32);
    transition: background 0.2s, transform 0.15s;
}

.coci-btn-primary:hover {
    background: var(--coci-orange-dark);
    transform: translateY(-1px);
}

.coci-btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #E0E6EF;
    color: #3B4658;
    border-radius: 999px;
    padding: 15px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.coci-btn-secondary:hover {
    background: #F7F9FC;
}

.coci-section-title {
    font-family: 'Goldplay', sans-serif;
    font-weight: 800;
    font-size: 21px;
    margin: 0 0 14px;
    letter-spacing: -0.4px;
}

/* Tabs */
.coci-tabs {
    display: flex;
    gap: 26px;
    border-bottom: 1px solid #E8EDF4;
    margin: 14px 0 22px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.coci-tabs::-webkit-scrollbar {
    display: none;
}

.coci-tab {
    padding: 10px 2px;
    border: none;
    background: transparent;
    color: var(--coci-muted-light);
    font-family: 'Goldplay', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    flex: 0 0 auto;
}

.coci-tab.active {
    color: var(--coci-orange);
    border-bottom-color: var(--coci-orange);
}

.coci-tab-count {
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #FFE3DA;
    color: var(--coci-orange);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

/* Subscription hero card */
.coci-hero-card {
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--coci-shadow-lg);
    border: 1px solid var(--coci-border);
    margin-bottom: 34px;
}

.coci-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.coci-hero-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #FFE7DD, #FFD2C2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex: none;
}

.coci-hero-name {
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
}

.coci-hero-meta {
    color: #8089A0;
    font-size: 13px;
    margin-top: 2px;
}

.coci-hero-price {
    text-align: right;
}

.coci-hero-price-value {
    font-family: 'Goldplay', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--coci-text);
}

.coci-hero-price-sub {
    color: #8089A0;
    font-size: 12.5px;
}

.coci-progress-bars {
    display: flex;
    gap: 6px;
    margin: 22px 0 16px;
}

.coci-progress-bar {
    flex: 1;
    height: 7px;
    border-radius: 999px;
    background: #E8EDF4;
}

.coci-progress-bar.active {
    background: var(--coci-orange);
}

.coci-progress-bar.done {
    background: var(--coci-orange);
}

.coci-hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.coci-hero-next {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5B6577;
    font-size: 13.5px;
}

.coci-hero-next-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--coci-orange);
    display: inline-block;
}

.coci-btn-blue {
    background: #EAF2FE;
    color: var(--coci-blue-dark);
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
}

.coci-btn-blue:hover {
    background: #dbeafe;
}

/* Reservation cards */
.coci-res-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: var(--coci-shadow);
    border: 1px solid var(--coci-border);
    margin-bottom: 18px;
}

.coci-res-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.coci-res-card-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coci-res-card-icon {
    color: var(--coci-orange);
    font-size: 20px;
}

.coci-res-card-name {
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 17px;
}

.coci-res-card-code {
    color: var(--coci-muted-light);
    font-size: 12px;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.coci-res-card-price {
    text-align: right;
}

.coci-res-card-price-value {
    font-family: 'Goldplay', sans-serif;
    font-weight: 800;
    font-size: 21px;
}

.coci-res-card-price-sub {
    color: var(--coci-muted-light);
    font-size: 12px;
}

.coci-session-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 4px;
    border-top: 1px solid #F1F4F9;
    flex-wrap: wrap;
}

.coci-session-index {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 2px solid #DCE3EE;
    color: #8089A0;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.coci-session-date {
    font-weight: 700;
    font-size: 14px;
}

.coci-session-time {
    color: var(--coci-muted-light);
    font-size: 12px;
}

.coci-btn-outline {
    background: none;
    border: 1.5px solid #FBD9CE;
    color: var(--coci-orange);
    border-radius: 999px;
    padding: 7px 15px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    cursor: pointer;
    white-space: nowrap;
}

.coci-btn-outline:hover {
    background: #FFF3EF;
}

.coci-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
}

.coci-badge--ok {
    background: #E3F5EC;
    color: #0E9F6E;
}

.coci-badge--pending {
    background: #FFF6E0;
    color: #9A6B00;
}

/* Wizard stepper */
.coci-wizard-wrap {
    max-width: 540px;
    margin: 0 auto;
}

.coci-stepper-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.coci-stepper-bars {
    flex: 1;
    display: flex;
    gap: 7px;
}

.coci-stepper-bar {
    flex: 1;
    height: 7px;
    border-radius: 999px;
    background: #E8EDF4;
    transition: background 0.2s;
}

.coci-stepper-bar.current,
.coci-stepper-bar.done {
    background: var(--coci-orange);
}

.coci-stepper-bar.next {
    background: #FAD0C3;
}

.coci-stepper-label {
    color: var(--coci-muted-light);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.coci-wizard-title {
    font-family: 'Goldplay', sans-serif;
    font-weight: 800;
    font-size: 27px;
    margin: 0 0 22px;
    letter-spacing: -0.6px;
}

/* Stepper controls */
.coci-step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0 18px;
}

.coci-step-row + .coci-step-row {
    border-top: 1.5px dashed var(--coci-border-input);
    padding-top: 18px;
}

.coci-step-label {
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 16.5px;
}

.coci-step-label-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coci-info-btn {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1.5px solid #D5DCE8;
    background: #fff;
    color: #7C8499;
    font-size: 12px;
    font-weight: 800;
    font-style: italic;
    font-family: Georgia, serif;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: none;
}

.coci-info-btn:hover {
    border-color: var(--coci-orange);
    color: var(--coci-orange);
    background: #FFF4F0;
}

.coci-step-sublabel {
    color: var(--coci-muted-light);
    font-size: 13px;
    margin-top: 3px;
}

.coci-step-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: none;
}

.coci-step-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1.5px solid var(--coci-border-input);
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coci-text);
}

.coci-step-btn:hover:not(:disabled) {
    background: var(--coci-bg-soft);
}

.coci-step-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.coci-step-value {
    min-width: 22px;
    text-align: center;
    font-family: 'Goldplay', sans-serif;
    font-weight: 800;
    font-size: 20px;
}

/* Pay mode toggle */
.coci-pay-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.coci-pay-toggle-btn {
    flex: 1;
    border-radius: 999px;
    padding: 12px 16px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: 1.5px solid var(--coci-border-input);
    background: #fff;
    color: #5B6577;
    transition: all 0.15s;
}

.coci-pay-toggle-btn.selected {
    border-color: var(--coci-green);
    background: #fff;
    color: var(--coci-text);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.12);
}

/* Plan cards — apilados en una columna; suscripción en scroll horizontal */
.coci-plans-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.coci-plans-grid.plans-grid--subscription,
.plans-grid.plans-grid--subscription {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.coci-plans-grid.plans-grid--subscription .plan-card,
.plans-grid.plans-grid--subscription .plan-card {
    flex: 0 0 min(300px, 82vw);
    scroll-snap-align: start;
}

.coci-plan-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    border-radius: 18px;
    padding: 16px 15px;
    cursor: pointer;
    background: #fff;
    border: 2px solid var(--coci-border-input);
    transition: all 0.15s;
}

.coci-plan-card.selected,
.plan-card.selected {
    border-color: var(--coci-green) !important;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.13) !important;
}

/* Sticky footer nav — fijo abajo, ancho completo del área de contenido */
.coci-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    background: #fff;
    backdrop-filter: blur(8px);
    border-top: 1px solid #E8EDF4;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: stretch;
    z-index: 200;
    box-shadow: 0 -4px 18px rgba(27, 52, 92, 0.06);
}

.coci-sticky-footer .coci-btn-secondary,
.coci-sticky-footer .coci-btn-primary {
    flex: 1 1 0;
    min-width: 0;
    width: 50%;
    min-height: 48px;
    padding: 14px 16px;
    font-size: 15px;
}

.coci-modal-footer .coci-btn-secondary,
.coci-modal-footer .coci-btn-primary {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
}

@media (min-width: 769px) {
    .sidebar:not(.collapsed) ~ .coci-main .coci-sticky-footer {
        left: 33.333333%;
        width: 66.666667%;
    }

    .sidebar.collapsed ~ .coci-main .coci-sticky-footer {
        left: 88px;
        width: calc(100% - 88px);
    }
}

@media (min-width: 992px) {
    .sidebar:not(.collapsed) ~ .coci-main .coci-sticky-footer {
        left: 20%;
        width: 80%;
    }
}

/* Address block on agenda */
.coci-address-block {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--coci-shadow);
    border: 1px solid var(--coci-border);
    margin-bottom: 16px;
}

.coci-address-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.coci-address-text {
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.35;
}

.coci-address-edit {
    flex: none;
    background: none;
    border: none;
    color: var(--coci-blue-dark);
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
}

.coci-address-add {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 14px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    border: 1.5px dashed var(--coci-orange);
    background: #FFF6F2;
    color: var(--coci-orange);
}

.coci-address-add:hover {
    background: #FFEDE6;
}

/* Direccion modal */
#screenDireccion.coci-modal-mode {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 320;
    background: rgba(20, 30, 50, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

#screenDireccion.coci-modal-mode.open {
    display: flex !important;
}

#screenDireccion.coci-modal-mode.active {
    display: none !important;
}

#screenDireccion.coci-modal-mode.active.open {
    display: flex !important;
}

#screenDireccion.coci-modal-mode > .card,
#screenDireccion.coci-modal-mode .coci-modal-inner {
    background: #fff;
    border-radius: 26px;
    max-width: 540px;
    width: 100%;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    max-height: 92vh;
    overflow-y: auto;
    margin: auto;
    padding: 24px;
}

#screenDireccion.coci-modal-mode .logo {
    display: none;
}

/* Empty state */
.coci-empty {
    background: #fff;
    border-radius: 22px;
    padding: 48px 24px;
    text-align: center;
    box-shadow: var(--coci-shadow);
    border: 1px solid var(--coci-border);
}

.coci-empty p {
    color: var(--coci-muted);
    font-size: 16px;
    margin: 16px 0 0;
}

/* Override legacy styles inside coci page */
.coci-page .btn-primary {
    background: var(--coci-orange);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(242, 84, 45, 0.32);
}

.coci-page .btn-primary:hover {
    background: var(--coci-orange-dark);
}

.coci-page .tabs {
    display: none;
}

.coci-page .navigation-buttons {
    display: flex;
    gap: 14px;
    border-top: none;
    padding-top: 0;
    background: transparent;
    box-shadow: none;
}

.coci-page .screen:not(.active) {
    display: none;
}

.coci-page .screen.active {
    display: block;
}

.coci-page .subscription-mixed-card {
    border-radius: 24px;
    box-shadow: var(--coci-shadow-lg);
    border: 1px solid var(--coci-border);
}

.coci-page .reserva-card-new {
    border-radius: 22px;
    box-shadow: var(--coci-shadow);
    border: 1px solid var(--coci-border);
}

.coci-page .curso-card {
    border-radius: 24px;
    box-shadow: var(--coci-shadow-lg);
}

.coci-page body,
.coci-page {
    background: linear-gradient(180deg, #EAF3FD 0%, #F6FAFE 60%, #FFFFFF 100%);
}

/* Agenda */
.coci-agenda-wrap {
    max-width: 540px !important;
}

.coci-agenda-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--coci-shadow);
    border: 1px solid var(--coci-border);
    margin-bottom: 16px;
}

.coci-agenda-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--coci-text);
    margin-bottom: 16px;
}

.coci-agenda-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #FFF4F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: none;
    overflow: hidden;
}

.coci-agenda-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.coci-agenda-hint {
    color: var(--coci-muted);
    font-size: 13px;
    margin: 0 0 16px;
    line-height: 1.5;
}

.coci-horarios-label {
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--coci-text);
    margin: 18px 0 12px;
}

#screenAgenda .horarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

#screenAgenda .horario-slot {
    padding: 13px 8px;
    border: 1.5px solid var(--coci-border-input);
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #3B4658;
    background: #fff;
    transition: all 0.15s;
}

#screenAgenda .horario-slot:hover {
    border-color: #FBD9CE;
    background: #FFF8F5;
}

#screenAgenda .horario-slot.selected {
    border-color: var(--coci-orange);
    color: var(--coci-orange);
    background: #FFF4F0;
    box-shadow: none;
}

#screenAgenda .agenda-datetime-body,
#screenAgenda .agenda-time-column {
    border: none;
    padding: 0;
}

#screenAgenda .horarios-scroll {
    max-height: none;
    overflow: visible;
}

.coci-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #F1F4F9;
}

.coci-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #5B6577;
}

.coci-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    flex: none;
}

.coci-legend-dot--selected { background: var(--coci-orange); }
.coci-legend-dot--available { background: #C9D0DC; }
.coci-legend-dot--low { background: #F2542D; }
.coci-legend-dot--discount { background: var(--coci-green); }

#screenAgenda .calendario-grid {
    gap: 4px;
    padding: 0;
    max-width: 100%;
}

#screenAgenda #calendarioContainer {
    max-width: 100%;
    overflow: hidden;
}

#screenAgenda .calendario-day {
    aspect-ratio: unset !important;
    min-height: 34px;
    height: 38px;
    border-radius: 10px !important;
    font-size: 13px;
    padding: 0 4px;
}

#screenAgenda .calendario-header {
    padding: 6px 2px;
    font-size: 11px;
}

#screenAgenda .calendario-day.selected,
#screenAgenda .calendario-day:not(.disabled):active {
    background: var(--coci-orange) !important;
    color: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 10px rgba(242, 84, 45, 0.3);
}

/* Modal dirección */
.coci-modal-inner {
    background: #fff;
    border-radius: 26px;
    max-width: 540px;
    width: 100%;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    max-height: 92vh;
    overflow-y: auto;
    margin: auto;
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
}

.coci-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.coci-modal-header h2 {
    font-family: 'Goldplay', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin: 0;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.coci-modal-header p {
    color: var(--coci-muted);
    font-size: 13.5px;
    margin: 8px 0 0;
    line-height: 1.45;
}

.coci-modal-close {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: #EEF2F8;
    color: #6B7585;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coci-modal-close:hover {
    background: #E0E6EF;
}

.coci-field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--coci-text);
    margin: 0 0 8px;
}

.coci-field-input,
.coci-modal-inner select,
.coci-modal-inner input[type="text"],
#screenDireccion select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--coci-border-input);
    border-radius: 14px;
    font-size: 14.5px;
    font-family: 'Goldplay', sans-serif;
    background: #ffffff;
    margin-bottom: 14px;
    box-sizing: border-box;
}

#screenDireccion #formNuevaDireccion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#screenDireccion #formNuevaDireccion label {
    margin-top: 2px;
}

#screenDireccion .direccion-search-group {
    position: relative;
    z-index: 20;
    margin-bottom: 14px;
}

.coci-field-input:focus,
.coci-modal-inner select:focus,
.coci-modal-inner input[type="text"]:focus {
    outline: 2px solid rgba(31, 122, 237, 0.25);
    border-color: #1F7AED;
}

.coci-map-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1.5px solid var(--coci-border-input);
    height: 180px;
    isolation: isolate;
}

.coci-map-wrap #map {
    height: 180px !important;
    width: 100%;
    margin: 0 !important;
}

.coci-map-hint {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11.5px;
    color: #5B6577;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.coci-vivienda-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.coci-vivienda-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 18px;
    padding: 15px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    border: 1.5px solid var(--coci-border-input);
    background: #fff;
    color: #5B6577;
    transition: all 0.15s;
}

.coci-vivienda-btn.selected {
    border-color: var(--coci-orange);
    color: var(--coci-orange);
    background: #FFF4F0;
}

.coci-modal-footer {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    padding-top: 8px;
}

.coci-modal-footer .coci-btn-primary {
    flex: 1 1 0;
}

.coci-modal-saved {
    margin-bottom: 14px;
}

.coci-modal-saved .direccion-item {
    border-radius: 14px !important;
    margin-bottom: 8px;
    border: 1.5px solid #E6EBF3;
    background: #fff;
    padding: 12px 14px;
    cursor: pointer;
    gap: 10px;
}

.coci-modal-saved .direccion-item.is-selected {
    border-color: #ff5744 !important;
    background: #fff5f4 !important;
}

.coci-address-new-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1.5px dashed #F2542D;
    border-radius: 14px;
    background: #FFF8F5;
    color: #F2542D;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.coci-address-new-btn:hover {
    background: #FFEDE6;
    border-color: #D8431F;
}

.coci-address-form-title {
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--coci-text);
    margin: 0 0 12px;
}

#screenDireccion.coci-modal-mode > .coci-modal-inner,
#screenDireccion.coci-modal-mode > .card {
    padding: 24px;
}

.coci-page .btn-back.active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #5B6577;
    font-family: 'Goldplay', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 12px;
    padding: 4px 0;
}

/* Pago / Finaliza tu reserva */
.coci-pago-wrap {
    max-width: 540px !important;
}

.coci-pago-platos-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--coci-border);
}

.coci-pago-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--coci-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.coci-pago-platos-lista {
    margin: 0;
    padding: 0;
    list-style: none;
}

.coci-pago-platos-lista li {
    font-family: 'Goldplay', sans-serif;
    font-size: 14px;
    color: var(--coci-text);
    padding: 2px 0;
}

.coci-pago-edit {
    background: #F4F7FB;
    border: none;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    flex: none;
    font-size: 16px;
}

.coci-pago-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--coci-muted);
    border-bottom: 1px solid #F0F3F8;
}

.coci-pago-info-row strong {
    color: var(--coci-text);
    font-family: 'Goldplay', sans-serif;
    text-align: right;
}

.coci-pago-cupon {
    margin: 16px 0 8px;
}

.coci-pago-cupon label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--coci-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.coci-pago-cupon-row {
    display: flex;
    gap: 8px;
}

.coci-pago-cupon-row input {
    flex: 1;
    border: 1.5px solid var(--coci-border-input);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: 'Goldplay', sans-serif;
}

.coci-pago-cupon-btn {
    border: none;
    background: #F4F7FB;
    color: var(--coci-text);
    border-radius: 12px;
    padding: 10px 14px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.coci-pago-cupon-msg {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--coci-muted);
}

.coci-pago-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--coci-border);
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--coci-text);
}

.coci-pago-total {
    font-size: 28px;
    font-weight: 800;
    color: var(--coci-orange);
}

.coci-pago-nota {
    font-size: 12px;
    color: var(--coci-muted);
    margin: 8px 0 0;
}

.coci-adicionales-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coci-adicional-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1.5px solid var(--coci-border);
    border-radius: 16px;
    background: #fff;
    transition: border-color 0.15s, background 0.15s;
}

.coci-adicional-card--added {
    border-color: #00BA96;
    background: #F3FBF8;
}

.coci-adicional-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #FFF4F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: none;
}

.coci-adicional-body {
    flex: 1;
    min-width: 0;
}

.coci-adicional-name {
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--coci-text);
}

.coci-adicional-desc {
    font-size: 12px;
    color: var(--coci-muted);
    margin-top: 2px;
}

.coci-adicional-link {
    background: none;
    border: none;
    padding: 0;
    margin-top: 4px;
    font-size: 12px;
    color: #1f8feb;
    font-weight: 600;
    cursor: pointer;
}

.coci-adicional-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex: none;
    flex-shrink: 0;
}

.coci-adicional-price {
    font-family: 'Goldplay', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--coci-orange);
    white-space: nowrap;
}

.coci-adicional-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1.5px solid var(--coci-border);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--coci-text);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 36px;
    box-sizing: border-box;
}

.coci-adicional-btn--added {
    background: #00BA96;
    border-color: #00BA96;
    color: #fff;
}

.coci-pago-comentario {
    width: 100%;
    border: 1.5px solid var(--coci-border-input);
    border-radius: 14px;
    padding: 12px 14px;
    font-family: 'Goldplay', sans-serif;
    font-size: 14px;
    resize: vertical;
    min-height: 88px;
    box-sizing: border-box;
}

.coci-pago-comentario:focus {
    outline: none;
    border-color: var(--coci-orange);
    box-shadow: 0 0 0 3px rgba(242, 84, 45, 0.12);
}

.coci-pago-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.coci-pago-tab {
    flex: 1;
    border: 1.5px solid var(--coci-border);
    background: #fff;
    border-radius: 12px;
    padding: 10px 8px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--coci-muted);
    cursor: pointer;
}

.coci-pago-tab.active {
    border-color: var(--coci-orange);
    color: var(--coci-orange);
    background: #FFF4F0;
}

.coci-pago-tab.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.coci-comprobante-hint {
    margin: 0 0 14px;
    color: var(--coci-muted);
    font-size: 13px;
    line-height: 1.45;
}

.coci-comprobante-switch {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    padding: 4px;
    border-radius: 14px;
    background: #f3f6fa;
}

.coci-comprobante-option {
    flex: 1;
    border: none;
    border-radius: 12px;
    background: transparent;
    padding: 10px 8px;
    font-family: 'Goldplay', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--coci-muted);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.coci-comprobante-option.active {
    background: #fff;
    color: var(--coci-orange);
    box-shadow: 0 1px 4px rgba(26, 35, 50, 0.08);
}

.coci-comprobante-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--coci-text);
}

.coci-comprobante-input {
    width: 100%;
    border: 1.5px solid var(--coci-border-input);
    border-radius: 14px;
    padding: 12px 14px;
    font-family: 'Goldplay', sans-serif;
    font-size: 15px;
    color: var(--coci-text);
    box-sizing: border-box;
}

.coci-comprobante-input:focus {
    outline: none;
    border-color: var(--coci-orange);
    box-shadow: 0 0 0 3px rgba(242, 84, 45, 0.12);
}

.coci-comprobante-input.is-invalid {
    border-color: #d9534f;
    box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
}

.coci-comprobante-error {
    margin: 10px 0 0;
    color: #d9534f;
    font-size: 12px;
}

.coci-comprobante-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border: 1.5px solid var(--coci-border-input);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-family: 'Goldplay', sans-serif;
}

.coci-comprobante-toggle-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--coci-text);
}

.coci-comprobante-switch-track {
    position: relative;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--coci-border-input);
    transition: background 0.18s ease;
}

.coci-comprobante-switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    transition: transform 0.18s ease;
}

.coci-comprobante-toggle-row.on .coci-comprobante-switch-track {
    background: var(--coci-orange);
}

.coci-comprobante-toggle-row.on .coci-comprobante-switch-thumb {
    transform: translateX(18px);
}

.coci-comprobante-subfield {
    margin-bottom: 14px;
}

.coci-comprobante-subfield:last-child {
    margin-bottom: 0;
}

.coci-comprobante-select-wrap {
    position: relative;
}

.coci-comprobante-select-wrap::after {
    content: "▾";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--coci-muted);
    font-size: 13px;
    pointer-events: none;
}

.coci-comprobante-select {
    width: 100%;
    border: 1.5px solid var(--coci-border-input);
    border-radius: 14px;
    padding: 12px 40px 12px 14px;
    font-family: 'Goldplay', sans-serif;
    font-size: 15px;
    color: var(--coci-text);
    background: #fff;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.coci-comprobante-select:focus {
    outline: none;
    border-color: var(--coci-orange);
    box-shadow: 0 0 0 3px rgba(242, 84, 45, 0.12);
}

.coci-comprobante-optional {
    font-weight: 400;
    color: var(--coci-muted);
}

.coci-yape-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    color: var(--coci-text);
    border: 1.5px solid #f0e6f2;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: none;
}

.coci-yape-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f6eef8;
}

.coci-yape-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.coci-yape-content {
    min-width: 0;
    flex: 1;
}

.coci-yape-text {
    color: #1f2a37;
    font-size: 16px;
    line-height: 1.5;
}

.coci-yape-text strong {
    font-weight: 800;
}

.coci-pago-num-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
}

.coci-pago-num {
    color: #ff4336;
    font-weight: 800;
}

.coci-yape-name {
    color: #4b5563;
    font-size: 14px;
    margin-top: 6px;
    opacity: 1;
}

.coci-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #4b5563;
    cursor: pointer;
    flex: 0 0 auto;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.coci-copy-btn:hover {
    background: #f7f8fa;
}

.coci-copy-btn:active {
    transform: scale(0.92);
}

.coci-copy-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.coci-copy-btn.is-copied {
    border-color: #16a34a;
    background: #ecfdf3;
    color: #16a34a;
}

.coci-transfer-box {
    border: 1.5px solid #f0e6f2;
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 18px;
    background: #fff;
}

.coci-transfer-amount {
    font-size: 16px;
    color: #1f2a37;
    margin-bottom: 6px;
}

.coci-transfer-amount strong {
    font-weight: 800;
}

.coci-transfer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid #f3f0f5;
    font-size: 14px;
    line-height: 1.35;
}

.coci-transfer-label {
    color: #4b5563;
    flex: 0 0 auto;
}

.coci-transfer-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #1f2a37;
    text-align: right;
    justify-content: flex-end;
    word-break: break-word;
}

.coci-transfer-value--link {
    color: #ff4336;
}

.coci-pago-toast {
    position: fixed;
    left: 50%;
    bottom: 110px;
    transform: translate(-50%, 16px);
    z-index: 12000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    white-space: nowrap;
}

.coci-pago-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.coci-pago-toast svg {
    width: 18px;
    height: 18px;
    stroke: #4ade80;
    fill: none;
    stroke-width: 2.5;
}

@media (max-width: 768px) {
    .coci-tabs {
        gap: 16px;
        margin: 10px 0 16px;
    }

    .coci-tab {
        font-size: 13px;
        padding: 10px 4px;
        gap: 6px;
    }

    .coci-tab-count {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .coci-yape-box {
        padding: 12px;
        gap: 10px;
    }

    .coci-yape-icon {
        width: 34px;
        height: 34px;
    }

    /* Compra de ingredientes: botón completo en móvil */
    .coci-adicional-card {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        overflow: visible;
    }

    .coci-adicional-side {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
    }

    .coci-adicional-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 40px;
    }

    /* Espacio para el footer fijo (Atrás / Confirmar) */
    #screenPago .coci-pago-wrap,
    #screenPago .coci-wizard-wrap {
        padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
    }
}

.coci-upload-area {
    border: 2px dashed #d7dbe0;
    border-radius: 16px;
    padding: 34px 16px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s, background 0.15s;
}

.coci-upload-area:hover {
    border-color: #FBD9CE;
    background: #FFF8F5;
}

.coci-upload-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.coci-upload-area p {
    margin: 0;
    font-family: 'Goldplay', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #1f2a37;
}

.coci-upload-hint {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #9aa4b2 !important;
    margin-top: 6px !important;
}

/* Info modals (personas / platos) */
.coci-info-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(20, 30, 50, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.coci-info-modal-overlay.open {
    display: flex;
}

.coci-info-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 380px;
    width: 100%;
    padding: 32px 28px 24px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    font-family: 'Goldplay', sans-serif;
}

.coci-info-modal--wide {
    max-width: 420px;
    text-align: left;
}

.coci-info-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coci-info-modal-icon--people {
    background: #FFF0EB;
}

.coci-info-modal-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.coci-info-modal h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--coci-text);
    line-height: 1.25;
}

.coci-info-modal--wide h3 {
    text-align: center;
}

.coci-info-modal p {
    margin: 0 0 24px;
    font-size: 14px;
    color: var(--coci-muted);
    line-height: 1.55;
}

.coci-info-modal .coci-btn-primary {
    width: 100%;
}

.coci-info-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.coci-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #3B4658;
    line-height: 1.45;
    margin-bottom: 12px;
}

.coci-info-check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #FFF0EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    margin-top: 1px;
}

.coci-info-check img {
    width: 14px;
    height: 14px;
}

.coci-info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFF5F0;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 20px;
}

.coci-info-note-icon {
    font-size: 18px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coci-info-note-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.coci-info-note p {
    margin: 0;
    font-size: 13px;
    color: #5B6577;
    line-height: 1.45;
}

/* Compra ingredientes modal — encima del sticky footer (z-index: 200) */
.coci-compra-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10060;
    background: rgba(15, 24, 40, 0.55);
    align-items: flex-start;
    justify-content: center;
    padding: 48px 16px 16px;
    overflow-y: auto;
}

body.coci-compra-modal-open {
    overflow: hidden;
}

body.coci-compra-modal-open .coci-sticky-footer {
    display: none !important;
    pointer-events: none !important;
}

.coci-compra-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: min(92vh, 720px);
    overflow: auto;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    margin: auto;
    font-family: 'Goldplay', sans-serif;
    -webkit-overflow-scrolling: touch;
}

.coci-compra-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #e9edf2;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 22px;
    color: #7b8797;
    cursor: pointer;
    line-height: 1;
}

.coci-compra-modal h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1a2332;
    margin: 0 36px 18px 0;
    line-height: 1.2;
}

.coci-compra-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #5a6778;
    font-size: 14px;
    line-height: 1.45;
}

.coci-compra-step-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: #e6eef7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f8feb;
    font-size: 16px;
}

.coci-compra-step p {
    margin: 0;
}

.coci-compra-step strong {
    color: #1a2332;
}

.coci-compra-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 16px 0;
}

.coci-compra-box {
    border-radius: 14px;
    padding: 14px;
    font-size: 13px;
    color: #1a2332;
}

.coci-compra-box--yes {
    background: #eaf6ef;
}

.coci-compra-box--no {
    background: #fbeef0;
}

.coci-compra-box-title {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.coci-compra-box--yes .coci-compra-box-title {
    color: #00a86b;
}

.coci-compra-box--no .coci-compra-box-title {
    color: #ff4a3d;
}

.coci-compra-box-item {
    margin-bottom: 6px;
    line-height: 1.35;
}

.coci-compra-box-item i {
    margin-right: 6px;
}

.coci-compra-box--yes .coci-compra-box-item i {
    color: #00a86b;
}

.coci-compra-box--no .coci-compra-box-item i {
    color: #ff4a3d;
}

.coci-compra-warning {
    background: #fff5da;
    border: 1px solid #f3bf3f;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #e06b00;
    line-height: 1.35;
}

.coci-compra-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #1f2a37;
    line-height: 1.4;
    cursor: pointer;
}

.coci-compra-terms input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex: none;
}

.coci-compra-terms a {
    color: #1f8feb;
    font-weight: 600;
}

.coci-compra-continue {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 999px;
    background: #c8d7e6;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    font-family: 'Goldplay', sans-serif;
    cursor: not-allowed;
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin-top: 4px;
    box-shadow: 0 -10px 18px rgba(255, 255, 255, 0.95);
}

.coci-compra-continue.is-ready {
    background: linear-gradient(97deg, #ff6833 2%, #ff4336 100%);
    cursor: pointer;
}

.coci-pago-edit img {
    width: 14px;
    height: 14px;
    display: block;
}

.coci-adicional-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.coci-upload-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.75;
}
