/* PAGAH-181: seletor de frete em formato de card (substitui radio circular simples) */
.frete-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.frete-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    padding: 12px 14px;
    cursor: pointer;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.frete-card:hover {
    border-color: #b7c5d6;
}

.frete-card.is-checked {
    border-color: #2e7dfb;
    box-shadow: 0 0 0 1px #2e7dfb inset;
    background: #f5f9ff;
}

.frete-card__radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.frete-card__dot {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #c0c4cc;
    position: relative;
    transition: border-color .15s ease;
}

.frete-card.is-checked .frete-card__dot {
    border-color: #2e7dfb;
}

.frete-card.is-checked .frete-card__dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2e7dfb;
    transform: translate(-50%, -50%);
}

.frete-card__info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.frete-card__nome-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.frete-card__nome {
    font-size: 14px;
    color: #303133;
}

.frete-card.is-checked .frete-card__nome {
    color: #2e7dfb;
}

.frete-card__flag {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #2e7dfb;
    background: #eaf2ff;
    border: 1px solid #2e7dfb;
    border-radius: 999px;
    padding: 1px 6px;
}

.frete-card.is-checked .frete-card__flag {
    color: #fff;
    background: #2e7dfb;
    border-color: #2e7dfb;
}

.frete-card__detalhe {
    font-size: 12px;
    color: #909399;
}

.frete-card__valores {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.frete-card__preco {
    font-size: 14px;
    font-weight: 700;
    color: #16a34a;
    white-space: nowrap;
}

.frete-card__prazo {
    font-size: 12px;
    color: #909399;
    white-space: nowrap;
    margin-top: 2px;
}

.frete-card__prazo--gratis {
    color: #16a34a;
}
