﻿.ott-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.ott-btn--primary {
    background-color: #111;
    border-color: #111;
    color: #fff;
}

    .ott-btn--primary:hover {
        background-color: #000;
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    }

.ott-btn--ghost {
    background-color: transparent;
    border-color: #d4d4d8;
    color: #111;
}

    .ott-btn--ghost:hover {
        background-color: #f4f4f5;
    }

.ott-btn--sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
}

.ott-btn--lg {
    padding: 0.8rem 1.9rem;
    font-size: 1rem;
}

.ott-btn--full {
    width: 100%;
}
