.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 800;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn span.small {
    display: block;
    font-size: 12px;
    font-weight: 700;
    opacity: .9;
}

.btn .stack {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    align-items: flex-start;
}

.btn-pro {
    background: linear-gradient(180deg, rgba(34,197,94,.95), rgba(22,163,74,.92));
    color: #06210f;
}

.btn-pro:hover {
    filter: brightness(1.03);
}

.btn-contra {
    background: linear-gradient(180deg, rgba(249,115,22,.96), rgba(194,65,12,.95));
    color: #2a0a02;
}

.btn-contra:hover {
    filter: brightness(1.03);
}

.btn-outline {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,.12);
}

.btn-ghost {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
}

.btn-ghost:hover {
    background: #f8fafc;
}

.primary {
    background: linear-gradient(180deg, #1d4ed8, #163fb5);
    border-color: rgba(255,255,255,.18);
    color: #fff;
}

.primary:hover {
    filter: brightness(1.03);
}

.widget-button-standard {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 12px 16px;
    background: linear-gradient(180deg, #1d4ed8, #163fb5);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 800;
}

.widget-button-standard:hover {
    filter: brightness(1.03);
}

.widget-button-delete {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 10px 20px;
    background-color: var(--color-error);
    color: var(--color-text-inverse);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.widget-button-delete:hover {
    opacity: 0.9;
}

.widget-button-google {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 10px 20px;
    background-color: var(--color-google-button-bg);
    color: var(--color-text-inverse);
    border: 1px solid var(--color-google-button-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.widget-button-google:hover {
    background-color: var(--color-google-button-bg-hover);
    border-color: var(--color-google-button-border-hover);
}

.widget-button-google:active {
    background-color: var(--color-google-button-bg-active);
}
