/* Base button */
.btn {
    display: inline-block;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    border: 2px solid transparent;
    font-family: "Kanit", sans-serif;
    width: fit-content;

}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--dark {
    background: var(--color-heavy-metal);
    color: var(--color-white);
}

.btn--dark:hover {
    background: #000;
}

.btn--meteor {
    background: var(--color-meteor);
    color: var(--color-heavy-metal);
    font-weight: 900;
    font-style: italic;
}

.btn--gradient {
    background: linear-gradient(135deg, #E36D16 0%, #BC3217 130%);
    color: #1e1e1c;
    font-weight: 900;
    font-style: italic;
    border: none;
}

.btn--meteor:hover {
    /* background: var(--color-thunderbird); */
    /* color: var(--color-white); */
}

.btn--outline-meteor {
    background: transparent;
    color: var(--color-meteor);
    border: 2px solid var(--color-meteor);
}

.btn--outline-meteor:hover {
    background: var(--color-meteor);
    color: var(--color-white);
}

.btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn--outline-white:hover {
    background: var(--color-white);
    color: var(--color-heavy-metal);
}

.btn--outline-dark {
    background: transparent;
    color: var(--color-heavy-metal);
    border: 2px solid var(--color-heavy-metal);
}

.btn--outline-dark:hover {
    background: var(--color-heavy-metal);
    color: var(--color-white);
}

/* .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    background: var(--color-meteor);
    color: #1e1e1c;
    font-size: 18px;
                                font-weight: 900;
                                font-style: italic;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

/* .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
} */