.wpfc-deck-selector{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: radial-gradient(circle at top, #fff6f2 0%, #f9fbff 55%);
}

.wpfc-deck-selector__panel{
    width: 100%;
    max-width: 680px;
    background: #ffffff;
    border-radius: 32px;
    text-align: center;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 35px 80px rgba(26,39,89,0.15);
    position: relative;
}

.pc_modal_close--deck{
    top: 1.25rem;
    right: 1.25rem;
}

.wpfc-deck-selector__eyebrow{
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff9b7b;
    margin-bottom: 0.65rem;
}

.wpfc-deck-selector__title{
    font-size: 2rem;
    color: #1f2a44;
    margin-bottom: 0.35rem;
}

.wpfc-deck-selector__subtitle{
    color: #5f6c86;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.wpfc-deck-selector__choices{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px){
    .wpfc-deck-selector__choices{
        flex-direction: row;
    }
}

.wpfc-deck-card{
    flex: 1;
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(42,63,102,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
}

.wpfc-deck-card--favorites{
    box-shadow: inset 0 0 0 1px rgba(230,94,72,0.18);
}

.wpfc-deck-card__icon{
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.wpfc-deck-card__title{
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    color: #1f2a44;
}

.wpfc-deck-card__desc{
    margin: 0 0 1.25rem;
    color: #5f6c86;
    line-height: 1.5;
}

.wpfc-deck-card__button{
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.25rem;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #ff9773;
    color: #fff;
    box-shadow: 0 12px 20px rgba(255,151,115,0.45);
}

.wpfc-deck-card__button:hover{
    transform: translateY(-1px);
    box-shadow: 0 16px 26px rgba(255,151,115,0.55);
}

.wpfc-deck-card__button--ghost{
    background: #ffffff;
    color: #1f2a44;
    box-shadow: inset 0 0 0 2px rgba(31,42,68,0.12);
}

.wpfc-deck-card__button--ghost:hover{
    box-shadow: inset 0 0 0 2px rgba(31,42,68,0.18);
}

.wpfc-deck-selector__note{
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #5b6275;
}
