.button {
    position: relative;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s ease, color .3s ease;
}
.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.45) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform .65s var(--ease);
}
.button:hover::before { transform: translateX(120%); }
.button:hover { transform: translateY(-3px); }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button--primary { color: var(--ink); background: var(--brand); box-shadow: 0 14px 30px rgba(226, 210, 30, .32); }
.button--primary:hover { background: #f0df22; box-shadow: 0 18px 40px rgba(226, 210, 30, .42); }
.button--ghost { color: var(--ink); background: rgba(255,255,255,.74); border: 1px solid rgba(17,17,17,.12); backdrop-filter: blur(10px); }
.button--ghost:hover { background: var(--paper); box-shadow: var(--shadow-sm); }
.button--whatsapp { color: #fff; background: #1f9d58; box-shadow: 0 14px 30px rgba(31, 157, 88, .28); }
.button--whatsapp:hover { background: #19884b; box-shadow: 0 18px 40px rgba(31, 157, 88, .35); }
.button--whatsapp .whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
}
.button--whatsapp .whatsapp-icon path { fill: currentColor; stroke: none; }

.button--block { width: 100%; }

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1500;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    width: min(390px, calc(100% - 32px));
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    color: #fff;
    background: #141414;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(.97);
    transition: opacity .3s ease, transform .3s var(--ease);
}
.toast.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.toast__icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--brand); font-weight: 800; }
.toast strong, .toast small { display: block; }
.toast small { color: rgba(255,255,255,.68); }
.toast button { border: 0; color: #fff; background: transparent; font-size: 24px; cursor: pointer; }

/* Simple internal category landing */
.simple-page__hero { position: relative; min-height: 70svh; display: grid; align-items: end; overflow: hidden; color: #fff; background: #111; }
.simple-page__hero-media, .simple-page__hero-overlay { position: absolute; inset: 0; }
.simple-page__hero-media img { width: 100%; height: 100%; object-fit: cover; }
.simple-page__hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.2)); }
.simple-page__hero-content { position: relative; z-index: 2; padding-top: 220px; padding-bottom: 90px; }
.simple-page__hero-content h1 { max-width: 800px; margin: 0 0 18px; color: #fff; font-size: clamp(46px,7vw,92px); line-height: .94; }
.simple-page__hero-content > p:not(.section-kicker) { max-width: 650px; margin: 0 0 28px; color: rgba(255,255,255,.78); font-size: 18px; }
