/**
 * The Cold Protocol CSS
 * Breathflow Connection
 *
 * Reuses .bft-selector, .bft-zone, .bft-state-btn, .bft-context,
 * .bft-change, .bft-zone-text from breathe-for-this.css
 */

/* =========================================================
   COLD TYPE TOGGLE
   ========================================================= */

.cp-type-toggle {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.cp-type-btn {
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7A8599;
    background: transparent;
    border: 1px solid rgba(86, 196, 224, 0.12);
    cursor: pointer;
    transition: all 0.15s ease;
    min-height: 40px;
}

.cp-type-btn:hover {
    color: rgba(232, 237, 243, 0.8);
    border-color: rgba(86, 196, 224, 0.25);
}

.cp-type-btn.active {
    color: #56C4E0;
    border-color: rgba(86, 196, 224, 0.4);
    background: rgba(86, 196, 224, 0.06);
}

@media (max-width: 480px) {
    .cp-type-toggle {
        flex-wrap: wrap;
    }
    .cp-type-btn {
        flex: 1;
        min-width: 0;
        padding: 0.5rem 0.5rem;
        font-size: 0.5625rem;
    }
}

/* =========================================================
   RESPONSE CARD
   ========================================================= */

.cp-card {
    border: 1px solid rgba(86, 196, 224, 0.15);
    padding: 2rem 1.75rem;
    margin-bottom: 2rem;
    transition: border-color 0.3s ease;
}

@media (min-width: 640px) {
    .cp-card {
        padding: 2.5rem 2.25rem;
    }
}

/* Verdict border colors */
.cp-card--perfect {
    border-color: rgba(86, 196, 224, 0.4);
}

.cp-card--go {
    border-color: rgba(219, 176, 80, 0.35);
}

.cp-card--adjust {
    border-color: rgba(219, 176, 80, 0.25);
}

.cp-card--not_now {
    border-color: rgba(122, 133, 153, 0.25);
}

/* =========================================================
   VERDICT
   ========================================================= */

.cp-verdict {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

@media (min-width: 640px) {
    .cp-verdict {
        font-size: 1.5rem;
    }
}

.cp-verdict--perfect {
    color: #56C4E0;
}

.cp-verdict--go {
    color: #dbb050;
}

.cp-verdict--adjust {
    color: #c9a445;
}

.cp-verdict--not_now {
    color: #7A8599;
}

/* =========================================================
   PROTOCOL TEXT
   ========================================================= */

.cp-protocol {
    font-size: 0.9375rem;
    color: rgba(232, 237, 243, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* =========================================================
   SECTIONS (Why / Do not)
   ========================================================= */

.cp-section {
    margin-bottom: 1.25rem;
}

.cp-section:last-child {
    margin-bottom: 0;
}

.cp-section__label {
    display: block;
    font-size: 0.5625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7A8599;
    margin-bottom: 0.375rem;
}

.cp-section__text {
    font-size: 0.875rem;
    color: rgba(232, 237, 243, 0.6);
    line-height: 1.65;
}

.cp-section--donot .cp-section__text {
    color: rgba(232, 237, 243, 0.75);
    font-style: italic;
}

/* =========================================================
   ACTIONS
   ========================================================= */

.cp-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
