/* Vocalyy — currency toggle + pricing-card badges
   ------------------------------------------------------------------------- */

/* Currency pill toggle (RON / EUR) — shown above the pricing cards */
.vy-currency-toggle {
    display: inline-flex;
    background: #f4f4f5;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    font-family: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    margin: 0 auto 28px;
}
.vy-currency-toggle button {
    border: none;
    background: transparent;
    color: #71717a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.vy-currency-toggle button.vy-cur-active {
    background: #09090B;
    color: #fafafa;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.vy-currency-toggle button:not(.vy-cur-active):hover {
    color: #09090B;
}
.vy-currency-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

/* "VAT included" + "7-day money-back" small badges underneath the price */
.vy-price-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 4px;
    margin-bottom: 18px;
    align-items: center;
}
.vy-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: #71717a;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 999px;
    padding: 3px 9px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.vy-badge::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #16a34a;
    flex-shrink: 0;
}
.vy-badge.vy-badge-guarantee::before { background: #FD3A25; }

/* On the dark Professional card, switch the badge palette */
.pricing-item.style-black .vy-badge {
    color: rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.10);
}

/* Footnote line at the bottom of each pricing card with the policy summary */
.vy-pricing-note {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: #71717a;
    margin-top: 14px;
    text-align: center;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    padding-top: 12px;
}
.pricing-item.style-black .vy-pricing-note {
    color: rgba(255, 255, 255, 0.55);
    border-top-color: rgba(255, 255, 255, 0.10);
}

/* Mobile tweaks */
@media (max-width: 575px) {
    .vy-currency-toggle button { padding: 7px 14px; font-size: 12px; }
    .vy-badge { font-size: 11px; padding: 3px 8px; }
}
