.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo img { height: 38px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.nav-links a:hover { background: #f4f4f4; color: #1a1a1a; }
.nav-links a.active {
    background: #fff5f5;
    color: #e01f1f;
    font-weight: 600;
}
.nav-links a.active:hover { background: #ffeded; color: #c41a1a; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.nav-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background .15s, color .15s;
    position: relative;
}
.nav-icon-btn:hover { background: #f4f4f4; color: #1a1a1a; }

.nav-bell .badge {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    background: #e01f1f;
    border-radius: 50%;
    border: 1.5px solid #fff;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 6px;
}
.nav-auth[data-auth-pending],
.promo-toast[data-auth-pending] {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.btn-entrar {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 8px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    transition: border-color .15s, background .15s;
    display: inline-block;
}
.btn-entrar:hover { border-color: #ccc; background: #f7f7f7; }

.btn-criar {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 8px 18px;
    border-radius: 10px;
    background: #e01f1f;
    transition: background .15s;
    display: inline-block;
}
.btn-criar:hover { background: #c41a1a; }


.nav-user-wrap { position: relative; }

.nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px 5px 5px;
    border-radius: 40px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: border-color .15s, background .15s;
    user-select: none;
}
.nav-user:hover { background: #f7f7f7; border-color: #ccc; }
.nav-user.open  { background: #f7f7f7; border-color: #ccc; }

.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nav-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-chevron {
    color: #aaa;
    transition: transform .2s ease;
    flex-shrink: 0;
}
.nav-user.open .nav-chevron { transform: rotate(180deg); }


.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 290px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 18px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 20px 56px -4px rgba(0,0,0,.18);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: opacity .16s ease, transform .16s ease;
    z-index: 200;
}

.nav-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.dd-header {
    padding: 22px 16px 16px;
    text-align: center;
    border-bottom: 1px solid #f3f3f3;
}
.dd-avatar {
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    background: #fff;
    box-shadow: 0 0 0 1px #ececec, 0 4px 14px -6px rgba(0, 0, 0, 0.1);
}
.dd-name {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 8px;
}
.dd-email {
    display: block;
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 8px;
    margin-top: 2px;
}
.dd-since {
    display: block;
    font-size: 11px;
    color: #aaa;
    margin-top: 6px;
}


.dd-saldo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 175, 44, 0.14), transparent 60%),
        linear-gradient(135deg, #fffaee 0%, #fff5d8 100%);
    border: 1px solid rgba(212, 150, 10, 0.22);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 12px 26px -16px rgba(212, 150, 10, 0.30);
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease, border-color .25s ease;
}
.dd-saldo::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4960a 50%, transparent 100%);
    opacity: .55;
    pointer-events: none;
    z-index: 1;
    transition: opacity .25s ease;
}
.dd-saldo::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 175, 44, 0.22), transparent 70%);
    filter: blur(14px);
    pointer-events: none;
    z-index: 0;
}
.dd-saldo > * { position: relative; z-index: 1; }
.dd-saldo:hover {
    transform: translateY(-1px);
    border-color: rgba(212, 150, 10, 0.38);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 16px 32px -16px rgba(212, 150, 10, 0.42);
}
.dd-saldo:hover::before { opacity: 1; }

.dd-saldo-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffc658 0%, #ffaf2c 50%, #d4960a 100%);
    color: #fff;
    flex-shrink: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        inset 0 -1px 0 rgba(0, 0, 0, 0.10),
        0 8px 18px -8px rgba(212, 150, 10, 0.55);
}
.dd-saldo-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.dd-saldo-label {
    font-size: 10.5px;
    font-weight: 700;
    color: #8a5a00;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.dd-saldo-value {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -.3px;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, #5b3a00 0%, #b87a05 25%, #ffaf2c 50%, #b87a05 75%, #5b3a00 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: dd-saldo-shimmer 5s cubic-bezier(.16, 1, .3, 1) infinite;
}
@keyframes dd-saldo-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.dd-saldo-add {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffd47e 0%, #ffaf2c 55%, #e6981a 100%);
    color: #3d2600;
    flex-shrink: 0;
    border: 1px solid rgba(184, 122, 5, 0.30);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(0, 0, 0, 0.10),
        0 6px 14px -6px rgba(212, 150, 10, 0.55);
    transition: background .2s cubic-bezier(.16, 1, .3, 1), transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .2s ease, border-color .2s ease;
}
.dd-saldo:hover .dd-saldo-add {
    background: linear-gradient(135deg, #ffe09a 0%, #ffbe4d 55%, #f0a51e 100%);
    color: #3d2600;
    border-color: rgba(184, 122, 5, 0.45);
    transform: rotate(90deg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(0, 0, 0, 0.10),
        0 10px 20px -8px rgba(212, 150, 10, 0.65);
}


.dd-links {
    padding: 4px 8px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.dd-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
    transition: background .12s ease;
}
.dd-link:hover { background: #f6f6f6; }
.dd-link:hover .dd-link-arrow { color: #888; transform: translateX(2px); }

.dd-link-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: #f4f4f4;
    color: #555;
    flex-shrink: 0;
    transition: background .15s ease, color .15s ease;
}
.dd-link:hover .dd-link-icon {
    background: #ececec;
    color: #1a1a1a;
}

.dd-link-discord .dd-link-icon {
    background: #eef0fb;
    color: #5865F2;
}
.dd-link-discord:hover .dd-link-icon {
    background: #5865F2;
    color: #fff;
}

.dd-link-admin .dd-link-icon {
    background: #fdf6e3;
    color: #b88800;
}
.dd-link-admin:hover .dd-link-icon {
    background: #d4960a;
    color: #fff;
}

.dd-link-entregador .dd-link-icon {
    background: #fef3e6;
    color: #d97706;
}
.dd-link-entregador:hover .dd-link-icon {
    background: #d97706;
    color: #fff;
}

.dd-link-editor .dd-link-icon {
    background: #f3f0ff;
    color: #7c3aed;
}
.dd-link-editor:hover .dd-link-icon {
    background: #7c3aed;
    color: #fff;
}

.dd-link-afiliado .dd-link-icon {
    background: #ecfdf5;
    color: #059669;
}
.dd-link-afiliado:hover .dd-link-icon {
    background: #059669;
    color: #fff;
}

.dd-parceiro {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    margin: 6px 0;
    background: linear-gradient(135deg, #e01f1f 0%, #b91c1c 100%);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    box-shadow:
        0 8px 22px -8px rgba(224, 31, 31, .55),
        0 2px 6px rgba(224, 31, 31, .20),
        inset 0 1px 0 rgba(255,255,255,.18);
    transition: transform .18s cubic-bezier(.22,.8,.3,1), box-shadow .2s ease;
}
.dd-parceiro:hover {
    transform: translateY(-1px);
    box-shadow:
        0 12px 28px -8px rgba(224, 31, 31, .70),
        0 4px 10px rgba(224, 31, 31, .25),
        inset 0 1px 0 rgba(255,255,255,.24);
}
.dd-parceiro:active { transform: translateY(0) scale(.99); }

.dd-parceiro-shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left .65s cubic-bezier(.22,.8,.3,1);
}
.dd-parceiro:hover .dd-parceiro-shine { left: 110%; }

.dd-parceiro-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    flex-shrink: 0;
}
.dd-parceiro-logo img {
    height: 18px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.dd-parceiro-text {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
}
.dd-parceiro-text strong {
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: -.2px;
    color: #fff;
}
.dd-parceiro-text span {
    font-size: 11px;
    color: rgba(255,255,255,.78);
    font-weight: 500;
}

.dd-parceiro-chev {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    transition: transform .2s ease, color .15s;
    flex-shrink: 0;
}
.dd-parceiro:hover .dd-parceiro-chev {
    transform: translateX(3px);
    color: #fff;
}


.dd-premium {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    margin: 6px 0;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .18s cubic-bezier(.22,.8,.3,1), box-shadow .2s ease;
}
.dd-premium:active { transform: translateY(0) scale(.99); }
.dd-premium:hover  { transform: translateY(-1px); }

.dd-premium-shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left .65s cubic-bezier(.22,.8,.3,1);
}
.dd-premium:hover .dd-premium-shine { left: 110%; }

.dd-premium-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,.14);
    color: #fff;
    flex-shrink: 0;
    transition: background .15s, transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.dd-premium:hover .dd-premium-icon {
    background: rgba(255,255,255,.22);
    transform: scale(1.06) rotate(-4deg);
}

.dd-premium-text {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
}
.dd-premium-text strong {
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: -.2px;
    color: #fff;
}
.dd-premium-text span {
    font-size: 11px;
    color: rgba(255,255,255,.78);
    font-weight: 500;
}

.dd-premium-chev {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    transition: transform .2s ease, color .15s;
    flex-shrink: 0;
}
.dd-premium:hover .dd-premium-chev {
    transform: translateX(3px);
    color: #fff;
}

.dd-premium-entregador {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow:
        0 8px 22px -8px rgba(217, 119, 6, .55),
        0 2px 6px rgba(217, 119, 6, .20),
        inset 0 1px 0 rgba(255,255,255,.18);
}
.dd-premium-entregador:hover {
    box-shadow:
        0 12px 28px -8px rgba(217, 119, 6, .70),
        0 4px 10px rgba(217, 119, 6, .25),
        inset 0 1px 0 rgba(255,255,255,.24);
}

.dd-premium-editor {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    box-shadow:
        0 8px 22px -8px rgba(124, 58, 237, .55),
        0 2px 6px rgba(124, 58, 237, .20),
        inset 0 1px 0 rgba(255,255,255,.18);
}
.dd-premium-editor:hover {
    box-shadow:
        0 12px 28px -8px rgba(124, 58, 237, .70),
        0 4px 10px rgba(124, 58, 237, .25),
        inset 0 1px 0 rgba(255,255,255,.24);
}

.dd-premium-admin {
    background:
        linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%);
    border: 1px solid rgba(212, 150, 10, .35);
    box-shadow:
        0 8px 22px -8px rgba(0, 0, 0, .65),
        0 2px 6px rgba(0, 0, 0, .35),
        inset 0 1px 0 rgba(212, 150, 10, .25);
}
.dd-premium-admin:hover {
    border-color: rgba(212, 150, 10, .55);
    box-shadow:
        0 12px 28px -8px rgba(0, 0, 0, .75),
        0 4px 10px rgba(212, 150, 10, .20),
        inset 0 1px 0 rgba(212, 150, 10, .40);
}
.dd-premium-admin .dd-premium-icon {
    background: linear-gradient(135deg, rgba(212, 150, 10, .25), rgba(212, 150, 10, .10));
    color: #fbbf24;
}
.dd-premium-admin:hover .dd-premium-icon {
    background: linear-gradient(135deg, rgba(212, 150, 10, .40), rgba(212, 150, 10, .18));
}
.dd-premium-admin .dd-premium-text strong { color: #fff; }
.dd-premium-admin .dd-premium-text span   { color: #fbbf24; }
.dd-premium-admin .dd-premium-chev        { color: rgba(251, 191, 36, .65); }
.dd-premium-admin:hover .dd-premium-chev  { color: #fbbf24; }
.dd-premium-admin .dd-premium-shine {
    background: linear-gradient(110deg, transparent 30%, rgba(251, 191, 36, .14) 50%, transparent 70%);
}

.dd-link-label { flex: 1; min-width: 0; }

.dd-link-arrow {
    color: #d0d0d0;
    flex-shrink: 0;
    transition: color .15s ease, transform .2s ease;
}

.dd-divider { display: none; }

.dd-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 16px);
    margin: 4px 8px 8px;
    padding: 13px 12px 11px;
    font-size: 13.5px;
    font-weight: 600;
    color: #c41a1a;
    background: none;
    font-family: var(--font);
    transition: background .12s ease;
    cursor: pointer;
    text-align: left;
    border-top: 1px solid #f3f3f3;
    border-radius: 0 0 12px 12px;
    margin-top: 4px;
}
.dd-logout svg { flex-shrink: 0; color: #c41a1a; }
.dd-logout:hover { background: #fff5f5; }


.nav-dropdown.open .dd-header,
.nav-dropdown.open .dd-saldo,
.nav-dropdown.open .dd-links > a,
.nav-dropdown.open .dd-logout {
    animation: dd-item-in .35s cubic-bezier(.16, 1, .3, 1) both;
}
.nav-dropdown.open .dd-header               { animation-delay: .03s; }
.nav-dropdown.open .dd-saldo                { animation-delay: .07s; }
.nav-dropdown.open .dd-links > a:nth-child(1) { animation-delay: .11s; }
.nav-dropdown.open .dd-links > a:nth-child(2) { animation-delay: .14s; }
.nav-dropdown.open .dd-links > a:nth-child(3) { animation-delay: .17s; }
.nav-dropdown.open .dd-links > a:nth-child(4) { animation-delay: .20s; }
.nav-dropdown.open .dd-links > a:nth-child(5) { animation-delay: .23s; }
.nav-dropdown.open .dd-links > a:nth-child(6) { animation-delay: .26s; }
.nav-dropdown.open .dd-logout               { animation-delay: .29s; }
@keyframes dd-item-in {
    0%   { opacity: 0; transform: translateY(-4px); }
    100% { opacity: 1; transform: translateY(0); }
}


.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 0;
    box-sizing: border-box;
    border-radius: 10px;
    border: 0;
    background: transparent;
    appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s;
}
.nav-hamburger:hover { background: #f4f4f4; }
.nav-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform .22s ease, opacity .22s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-overlay {
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(15, 15, 20, .35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 8px;
    right: 8px;
    z-index: 110;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    transform: translateY(-12px) scale(.97);
    transform-origin: top center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s cubic-bezier(.16, 1, .3, 1),
                transform .42s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 24px 60px -16px rgba(0, 0, 0, .25),
                0 0 0 1px rgba(0, 0, 0, .03);
    overflow: hidden;
    max-height: calc(100dvh - 86px);
}
.mobile-menu.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mobile-menu-header { display: none; }

.mobile-nav-links {
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    transition: background .15s, transform .15s;
    opacity: 0;
    transform: translateY(-6px);
}
.mobile-nav-links a:hover, .mobile-nav-links a:active { background: rgba(0, 0, 0, .04); }
.mobile-nav-links a:active { transform: translateY(0) scale(.98); }
.mobile-nav-links a svg { color: #888; flex-shrink: 0; transition: color .15s; }
.mobile-nav-links a:hover svg { color: #e01f1f; }
.mobile-nav-links a.active {
    background: rgba(224, 31, 31, 0.08);
    color: #e01f1f;
    font-weight: 700;
}
.mobile-nav-links a.active svg { color: #e01f1f; }

.mobile-menu.open .mobile-nav-links a,
.mobile-menu.open .mobile-menu-auth {
    animation: mm-item-in .42s cubic-bezier(.16, 1, .3, 1) both;
}
.mobile-menu.open .mobile-nav-links a:nth-child(1) { animation-delay: .04s; }
.mobile-menu.open .mobile-nav-links a:nth-child(2) { animation-delay: .07s; }
.mobile-menu.open .mobile-nav-links a:nth-child(3) { animation-delay: .10s; }
.mobile-menu.open .mobile-nav-links a:nth-child(4) { animation-delay: .13s; }
.mobile-menu.open .mobile-nav-links a:nth-child(5) { animation-delay: .16s; }
.mobile-menu.open .mobile-nav-links a:nth-child(6) { animation-delay: .19s; }
.mobile-menu.open .mobile-menu-auth { animation-delay: .22s; }
@keyframes mm-item-in {
    0%   { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
}

.mobile-menu-auth .btn-entrar,
.mobile-menu-auth .btn-criar { width: 100%; text-align: center; }

.mobile-menu-auth {
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    background: rgba(250, 250, 250, .5);
    opacity: 0;
}

.mobile-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 8px;
}

.mobile-user-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.mobile-user-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mobile-user-info strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-user-info span {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #e01f1f;
    border: 1.5px solid #ffd0d0;
    background: none;
    font-family: var(--font);
    transition: background .12s;
}
.mobile-logout:hover { background: #fff5f5; }


.nav-auth-wrap { position: relative; }

.promo-toast {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 200;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 16px 40px -4px rgba(0,0,0,.14);
    padding: 14px 36px 14px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 260px;
    animation: toast-in .25s cubic-bezier(.4,0,.2,1);
}

.promo-toast::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 28px;
    width: 11px;
    height: 11px;
    background: #fff;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
    transform: rotate(45deg);
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.promo-toast-close {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: background .12s, color .12s;
}
.promo-toast-close:hover { background: #f4f4f4; color: #555; }

.promo-toast-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 1px;
    display: grid;
    place-items: center;
}
.promo-toast-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.promo-toast-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.promo-toast-body strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.promo-toast-body span {
    font-size: 12px;
    color: #777;
    line-height: 1.45;
}

.promo-toast-body a {
    font-size: 13px;
    font-weight: 700;
    color: #e01f1f;
    margin-top: 6px;
    width: fit-content;
}
.promo-toast-body a:hover { text-decoration: underline; }


.cart-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 9px 18px 9px 11px;
    background: linear-gradient(180deg, #232323 0%, #0d0d0d 100%);
    color: #fff;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow:
        0 14px 36px -8px rgba(0,0,0,.55),
        0 4px 14px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.10);
    text-decoration: none;
    z-index: 300;
    opacity: 0;
    transform: translateY(16px) scale(.94);
    pointer-events: none;
    transition:
        opacity .26s cubic-bezier(.22,.8,.3,1),
        transform .26s cubic-bezier(.22,.8,.3,1),
        box-shadow .22s ease,
        border-color .22s ease;
    will-change: transform, opacity;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.cart-fab.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.cart-fab:hover {
    border-color: rgba(255,255,255,.16);
    box-shadow:
        0 18px 44px -8px rgba(0,0,0,.65),
        0 6px 18px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.14);
    transform: translateY(-2px) scale(1);
}
.cart-fab:active {
    transform: translateY(0) scale(.98);
}
.cart-fab.pending {
    background: linear-gradient(180deg, #fbbf24 0%, #b45309 100%);
    border-color: rgba(255,255,255,.20);
    box-shadow:
        0 14px 36px -8px rgba(180, 83, 9, .50),
        0 4px 14px rgba(180, 83, 9, .25),
        inset 0 1px 0 rgba(255,255,255,.30);
}
.cart-fab.pending:hover {
    box-shadow:
        0 18px 44px -8px rgba(180, 83, 9, .60),
        0 6px 18px rgba(180, 83, 9, .30),
        inset 0 1px 0 rgba(255,255,255,.36);
}

.cart-fab-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
    color: #fff;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.cart-fab:hover .cart-fab-icon {
    transform: rotate(-6deg) scale(1.04);
}
.cart-fab.pending .cart-fab-icon {
    background: linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,.10));
    color: #f3f3f3;
}
.cart-fab-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #e01f1f;
    color: #fff;
    border-radius: 9px;
    border: 2px solid #0d0d0d;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(224, 31, 31, .4);
    letter-spacing: 0;
}
.cart-fab.pending .cart-fab-count {
    border-color: #b45309;
    background: #fff;
    color: #92400e;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
}

.cart-fab-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.15;
}
.cart-fab-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .9px;
    color: rgba(255,255,255,.55);
}
.cart-fab.pending .cart-fab-label {
    color: rgba(255,255,255,.85);
}
.cart-fab-total {
    font-size: 14px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.2px;
}
.cart-fab-arrow {
    display: inline-flex;
    opacity: .45;
    transition: transform .2s cubic-bezier(.22,.8,.3,1), opacity .15s;
}
.cart-fab:hover .cart-fab-arrow { transform: translateX(4px); opacity: 1; }

.cart-fab.compact {
    padding: 8px;
    gap: 0;
    width: 52px;
    height: 52px;
    justify-content: center;
    border-radius: 50%;
}
.cart-fab.compact .cart-fab-text,
.cart-fab.compact .cart-fab-arrow { display: none; }
.cart-fab.compact .cart-fab-icon { width: 36px; height: 36px; }
.cart-fab.compact:hover { transform: translateY(-2px) scale(1.04); }

@media (max-width: 520px) {
    .cart-fab { right: 12px; bottom: 12px; padding: 8px 16px 8px 9px; gap: 11px; }
    .cart-fab-icon { width: 30px; height: 30px; }
    .cart-fab-total { font-size: 13px; }
}

@media (max-width: 768px) {
    .cart-fab.compact {
        right: 0;
        bottom: 96px;
        width: auto;
        height: auto;
        gap: 10px;
        padding: 10px 14px 10px 22px;
        border-radius: 14px 0 0 14px;
        justify-content: flex-start;
        transform: translateX(calc(100% - 34px));
        transition:
            transform .26s cubic-bezier(.22, .8, .3, 1),
            opacity .26s cubic-bezier(.22, .8, .3, 1),
            box-shadow .22s ease,
            border-color .22s ease;
    }
    .cart-fab.compact.visible {
        opacity: 1;
        transform: translateX(calc(100% - 34px));
    }
    .cart-fab.compact .cart-fab-icon { width: 30px; height: 30px; }
    .cart-fab.compact .cart-fab-text { display: none; }
    .cart-fab.compact .cart-fab-arrow { display: none; }

    .cart-fab.compact::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-left: 2px solid currentColor;
        border-top: 2px solid currentColor;
        transform: translateY(-50%) rotate(-45deg);
        opacity: .7;
        transition: transform .25s cubic-bezier(.22, .8, .3, 1), left .25s, right .25s, opacity .15s;
        pointer-events: none;
    }

    .cart-fab.compact.peek-open,
    .cart-fab.compact.peek-open.visible {
        transform: translateX(0);
        padding: 9px 18px 9px 11px;
        border-radius: 999px;
        gap: 14px;
        justify-content: flex-start;
    }
    .cart-fab.compact.peek-open .cart-fab-text { display: flex; }
    .cart-fab.compact.peek-open .cart-fab-arrow { display: inline-flex; }
    .cart-fab.compact.peek-open::before {
        left: auto;
        right: 14px;
        transform: translateY(-50%) rotate(135deg);
        opacity: 0;
    }
    .cart-fab.compact:hover { transform: translateX(calc(100% - 34px)); }
    .cart-fab.compact.peek-open:hover { transform: translateX(0) translateY(-2px); }

    .cart-fab.compact.visible ~ .support-fab { bottom: 14px; }

    body.sup-chat-page .cart-fab,
    body.sup-chat-page .support-fab { display: none !important; }
}

.support-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, #ff4747 0%, #c41a1a 100%);
    color: #fff;
    box-shadow:
        0 14px 36px -8px rgba(224, 31, 31, .55),
        0 4px 14px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 301;
    transition: bottom .26s cubic-bezier(.22,.8,.3,1),
                transform .22s cubic-bezier(.34, 1.56, .64, 1),
                box-shadow .22s ease,
                border-color .22s ease;
}
.support-fab:hover {
    transform: scale(1.06);
    border-color: rgba(255, 255, 255, .22);
    box-shadow:
        0 18px 44px -8px rgba(224, 31, 31, .65),
        0 6px 18px rgba(0, 0, 0, .22),
        inset 0 1px 0 rgba(255, 255, 255, .26);
}
.support-fab:active { transform: scale(.96); }
.support-fab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.support-fab:hover .support-fab-icon { transform: rotate(-8deg) scale(1.05); }
.support-fab-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(224, 31, 31, .45);
    opacity: 0;
    animation: support-fab-pulse 2.4s cubic-bezier(.16, 1, .3, 1) infinite;
    pointer-events: none;
}
@keyframes support-fab-pulse {
    0%   { opacity: .55; transform: scale(.85); }
    70%  { opacity: 0;   transform: scale(1.25); }
    100% { opacity: 0;   transform: scale(1.25); }
}

.cart-fab.visible ~ .support-fab { bottom: 88px; }

@media (max-width: 520px) {
    .support-fab { right: 12px; bottom: 12px; width: 50px; height: 50px; }
    .support-fab-icon { width: 32px; height: 32px; }
    .cart-fab.visible ~ .support-fab { bottom: 74px; }
}

.cart-btn { position: relative; }
.cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #e01f1f;
    border-radius: 8px;
    border: 2px solid #fff;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s;
    line-height: 1;
}
.cart-badge.visible { opacity: 1; }

.oinbox-wrap { position: relative; }
.oinbox-btn  { position: relative; }
.oinbox-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #e01f1f;
    border-radius: 8px;
    border: 2px solid #fff;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s;
    line-height: 1;
}
.oinbox-badge.visible { opacity: 1; }

.oinbox-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: -8px;
    width: 360px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 16px 48px -4px rgba(0,0,0,.14);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: opacity .16s ease, transform .16s ease;
    z-index: 200;
    display: flex;
    flex-direction: column;
}
.oinbox-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.oinbox-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
}
.oinbox-panel-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}
.oinbox-see-all {
    font-size: 12px;
    font-weight: 600;
    color: #e01f1f;
    text-decoration: none;
}
.oinbox-see-all:hover { text-decoration: underline; }

.oinbox-list {
    max-height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.oinbox-loading {
    display: none;
    padding: 24px;
    text-align: center;
    font-size: 12px;
    color: #aaa;
}
.oinbox-loading.active { display: block; }
.oinbox-empty {
    display: none;
    text-align: center;
    padding: 40px 20px;
    font-size: 13px;
    color: #aaa;
}

.oinbox-item {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 16px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background .12s;
    border-top: 1px solid #f5f5f5;
}
.oinbox-item:first-child { border-top: none; }
.oinbox-item:hover { background: #fafafa; }
.oinbox-item.unread { background: #fff8f8; }
.oinbox-item.unread:hover { background: #fff0f0; }

.oinbox-item-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: #faf6f6;
    flex-shrink: 0;
    position: relative;
}
.oinbox-item-avatar img { width: 100%; height: 100%; object-fit: cover; }
.oinbox-item-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #e01f1f;
}
.oinbox-item-role {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.oinbox-item-role.role-admin { background: #e01f1f; }
.oinbox-item-role.role-entregador { background: #1a1a1a; }
.oinbox-item-role.role-system { background: #b45309; }

.oinbox-item-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.oinbox-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}
.oinbox-item-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.oinbox-item-time {
    font-size: 11px;
    color: #bbb;
    flex-shrink: 0;
}
.oinbox-item-preview {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.oinbox-msg-svg {
    width: 12px;
    height: 12px;
    vertical-align: -2px;
    color: #888;
}
.oinbox-item-meta {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
    font-weight: 600;
}

.oinbox-item-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: #e01f1f;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 4px;
}

.notif-wrap { position: relative; }

.notif-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #e01f1f;
    border-radius: 8px;
    border: 2px solid #fff;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s;
    line-height: 1;
}
.notif-badge.visible { opacity: 1; }

.notif-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: -8px;
    width: 340px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 16px 48px -4px rgba(0,0,0,.14);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: opacity .16s ease, transform .16s ease;
    z-index: 200;
    display: flex;
    flex-direction: column;
}
.notif-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.notif-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.notif-panel-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.notif-mark-all {
    font-size: 12px;
    font-weight: 600;
    color: #e01f1f;
    background: none;
    font-family: var(--font);
    transition: color .12s;
}
.notif-mark-all:hover { color: #c41a1a; }

.notif-list {
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.notif-loader-bottom {
    display: flex;
    justify-content: center;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: height .2s ease, padding .2s ease;
    flex-shrink: 0;
}
.notif-loader-bottom.active { height: 40px; padding: 10px 0; }

.notif-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid #f0f0f0;
    border-top-color: #e01f1f;
    border-radius: 50%;
    animation: notif-spin .7s linear infinite;
}

@keyframes notif-spin { to { transform: rotate(360deg); } }

.notif-empty {
    display: none;
    text-align: center;
    padding: 40px 20px;
    font-size: 13px;
    color: #aaa;
}

.notif-item-wrap {
    position: relative;
    overflow: hidden;
    background: var(--surface, #fff);
    min-height: 74px;
    flex-shrink: 0;
    transition: max-height .22s ease, min-height .22s ease, opacity .2s ease;
}
.notif-item-wrap + .notif-item-wrap { border-top: 1px solid #f5f5f5; }
.notif-item-wrap.notif-removing {
    max-height: 0 !important;
    min-height: 0 !important;
    opacity: 0;
    pointer-events: none;
}
.notif-item-wrap.notif-removing .notif-item {
    transform: translateX(-110%);
    transition: transform .2s ease;
}

.notif-swipe-reveal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, transparent 0%, #e01f1f 35%);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 0;
}
.notif-swipe-reveal svg { width: 20px; height: 20px; }

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    min-height: 74px;
    cursor: pointer;
    transition: background .12s, transform .2s ease;
    position: relative;
    color: inherit;
    text-decoration: none;
    background: inherit;
    z-index: 1;
    touch-action: pan-y;
    box-sizing: border-box;
}
.notif-item-link:hover { text-decoration: none; }
.notif-item:hover { background: #fafafa; }
.notif-item.unread { background: #fff8f8; }
.notif-item.unread:hover { background: #fff0f0; }

.notif-item-del {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: transparent;
    border: 0;
    color: #999;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .12s, background .12s, color .12s;
}
.notif-item:hover .notif-item-del,
.notif-item:focus-within .notif-item-del {
    opacity: 1;
    pointer-events: auto;
}
.notif-item-del:hover {
    background: rgba(224, 31, 31, .1);
    color: #c41a1a;
}
.notif-item:hover .notif-dot,
.notif-item:focus-within .notif-dot {
    opacity: 0;
}
@media (hover: none) {
    .notif-item-del { display: none; }
}

.notif-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.notif-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 14px;
}

.notif-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.notif-item-msg {
    font-size: 12px;
    color: #666;
    line-height: 1.45;
}

.notif-item-time {
    font-size: 11px;
    color: #bbb;
    margin-top: 3px;
}

.notif-dot {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: #e01f1f;
    border-radius: 50%;
    flex-shrink: 0;
}


@media (max-width: 900px) {
    .nav-inner     { padding: 0 14px; gap: 8px; min-width: 0; }
    .nav-links     { display: none; }
    .nav-hamburger { display: flex; }
    .nav-logo      { flex-shrink: 0; }
    .nav-right     { margin-left: auto; gap: 4px; min-width: 0; }
    .nav-icon-btn  { display: none; }
    .notif-wrap .nav-icon-btn  { display: flex; }
    .oinbox-wrap .nav-icon-btn { display: flex; }
    .cart-btn        { display: flex; }
    .oinbox-panel    { position: fixed; top: 64px; left: 8px; right: 8px; width: auto; transform-origin: top right; }
    .btn-criar       { display: none; }
    .btn-entrar      { background: #e01f1f; color: #fff; border-color: #e01f1f; padding: 8px 16px; }
    .btn-entrar:hover { background: #c41a1a; border-color: #c41a1a; }
    .promo-toast     { width: min(260px, calc(100vw - 32px)); }
    .notif-panel     { position: fixed; top: 64px; left: 8px; right: 8px; width: auto; transform-origin: top right; }

    .nav-auth        { gap: 6px; margin-left: 0; }
    .nav-auth-wrap   { min-width: 0; }
    .nav-user        { padding: 3px; gap: 0; border-radius: 50%; border-width: 1.5px; }
    .nav-user-name,
    .nav-chevron     { display: none; }
    .nav-avatar      { width: 32px; height: 32px; }
    .nav-dropdown    {
        position: fixed;
        top: 64px;
        left: 8px;
        right: 8px;
        width: auto;
        max-height: calc(100dvh - 76px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 520px) {
    .nav-inner { padding: 0 10px; gap: 6px; height: 60px; }
    .nav-hamburger,
    .nav-icon-btn { width: 36px; height: 36px; }
    .nav-avatar { width: 30px; height: 30px; }
    .nav-logo img { height: 32px; }
    .oinbox-panel,
    .notif-panel,
    .nav-dropdown { top: 60px; left: 6px; right: 6px; }
    .nav-dropdown { max-height: calc(100dvh - 72px); }
    .mobile-overlay { inset: 60px 0 0 0; }
    .mobile-menu { top: 60px; }
}

@media (max-width: 380px) {
    .nav-right .oinbox-wrap { display: none; }
}


.hero {
    position: relative;
    width: 100%;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 32px 64px;
}

.hero-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    letter-spacing: -.8px;
    margin-bottom: 10px;
    line-height: 1.05;
}
.hero-title span {
    background: linear-gradient(135deg, #e01f1f 0%, #ff4747 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 28px;
}

.hero-search-wrap {
    position: relative;
    max-width: 720px;
    margin: 0 auto 36px;
    z-index: 20;
}
.hero-search {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 18px;
    gap: 10px;
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .06);
    transition: border-color .2s cubic-bezier(.16, 1, .3, 1), box-shadow .25s cubic-bezier(.16, 1, .3, 1);
}
.hero-search:focus-within {
    border-color: #e01f1f;
    box-shadow: 0 8px 28px -8px rgba(224, 31, 31, .26);
}
.hero-search-clear {
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    line-height: 0;
    transition: background .15s, color .15s;
}
.hero-search-clear:hover { background: rgba(0, 0, 0, .05); color: #1a1a1a; }
.hero-search-clear[hidden] { display: none !important; }

.hero-search-icon {
    display: inline-flex;
    color: #e01f1f;
    flex-shrink: 0;
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    font-family: var(--font);
    font-size: 15px;
    color: #1a1a1a;
    background: transparent;
    padding: 14px 0;
}
.hero-search input::placeholder { color: #aaa; }

.hero-search-submit {
    background: #e01f1f;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 30px;
    border-radius: 10px;
    transition: background .15s;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}
.hero-search-submit:hover { background: #c41a1a; }

.hero-search-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .22);
    max-height: 480px;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 50;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .2s cubic-bezier(.16, 1, .3, 1), transform .25s cubic-bezier(.16, 1, .3, 1);
    padding: 6px 0;
}
.hero-search-panel[hidden] { display: none !important; }
.hero-search-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hs-section { padding: 6px 0; }
.hs-section + .hs-section { border-top: 1px solid var(--border); }
.hs-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px 4px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--muted);
}
.hs-section-count {
    background: rgba(224, 31, 31, .1);
    color: #c41a1a;
    padding: 1px 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
}
.hs-section-action {
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 2px 6px;
    border-radius: 6px;
    transition: background .15s, color .15s;
    font-family: inherit;
}
.hs-section-action:hover { background: rgba(224, 31, 31, .08); color: #c41a1a; }

.hs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: background .15s cubic-bezier(.16, 1, .3, 1);
    position: relative;
}
.hs-item:hover, .hs-item.is-active {
    background: linear-gradient(90deg, rgba(224, 31, 31, .06), rgba(224, 31, 31, .015));
}
.hs-item.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, #e01f1f, #c41a1a);
}
.hs-thumb {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f4f4;
    flex-shrink: 0;
    position: relative;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}
.hs-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hs-thumb-fallback {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #e01f1f, #6b1010);
}
.hs-thumb-gp .hs-thumb-fallback { background: linear-gradient(135deg, #f59e0b, #8b5cf6); }

.hs-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hs-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hs-title mark {
    background: rgba(224, 31, 31, .15);
    color: #c41a1a;
    padding: 0 2px;
    border-radius: 3px;
    font-weight: 800;
}
.hs-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--muted);
    flex-wrap: wrap;
}
.hs-kind {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, .06);
    color: #444;
}
.hs-item-gp .hs-kind { background: rgba(245, 158, 11, .15); color: #b45309; }
.hs-item-game .hs-kind { background: rgba(224, 31, 31, .12); color: #c41a1a; }
.hs-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.hs-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
}
.hs-live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .55);
    animation: hs-pulse 1.6s ease-in-out infinite;
}
@keyframes hs-pulse { 50% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); } }
.hs-meta-best {
    background: linear-gradient(135deg, rgba(245, 158, 11, .2), rgba(245, 158, 11, .1));
    color: #b45309;
    padding: 1px 7px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.hs-game-name { font-weight: 600; }
.hs-price {
    font-weight: 800;
    font-size: 13.5px;
    color: #1a1a1a;
    font-variant-numeric: tabular-nums;
    margin-left: auto;
    margin-right: 6px;
}
.hs-arrow { color: var(--muted); flex-shrink: 0; transition: transform .2s cubic-bezier(.16, 1, .3, 1); }
.hs-item:hover .hs-arrow, .hs-item.is-active .hs-arrow { transform: translateX(2px); color: #e01f1f; }

.hs-sugg-icon {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: rgba(224, 31, 31, .08);
    color: #e01f1f;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.hs-recent-icon { background: rgba(0, 0, 0, .06); color: var(--muted); }
.hs-sugg-text {
    flex: 1;
    font-size: 13.5px;
    color: #1a1a1a;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hs-recent-del {
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    line-height: 0;
    transition: background .15s, color .15s;
}
.hs-recent-del:hover { background: rgba(224, 31, 31, .1); color: #c41a1a; }

.hs-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(180deg, transparent, rgba(224, 31, 31, .04));
    border-top: 1px solid var(--border);
    text-decoration: none;
    color: #1a1a1a;
    font-size: 13.5px;
    font-weight: 600;
    transition: background .2s cubic-bezier(.16, 1, .3, 1);
    cursor: pointer;
}
.hs-footer:hover, .hs-footer.is-active {
    background: linear-gradient(180deg, rgba(224, 31, 31, .06), rgba(224, 31, 31, .12));
    color: #c41a1a;
}
.hs-footer > span { flex: 1; }
.hs-footer svg:first-of-type { color: #e01f1f; }
.hs-footer svg:last-of-type { color: var(--muted); transition: transform .2s; }
.hs-footer:hover svg:last-of-type, .hs-footer.is-active svg:last-of-type {
    transform: translateX(2px);
    color: #c41a1a;
}

.hs-empty {
    padding: 30px 18px 22px;
    text-align: center;
}
.hs-empty-icon {
    width: 56px; height: 56px;
    border-radius: 18px;
    background: rgba(224, 31, 31, .08);
    color: #e01f1f;
    margin: 0 auto 12px;
    display: grid; place-items: center;
}
.hs-empty-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.hs-empty-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 14px;
}
.hs-empty-cta {
    display: inline-block;
    background: #e01f1f;
    color: #fff;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
}
.hs-empty-cta:hover { background: #c41a1a; }

.hs-skel-row {
    height: 56px;
    margin: 4px 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .08) 50%, rgba(0, 0, 0, .04) 100%);
    background-size: 200% 100%;
    animation: hs-shimmer 1.2s linear infinite;
}
@keyframes hs-shimmer { to { background-position: -200% 0; } }

.hs-error {
    padding: 24px 18px;
    text-align: center;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 700;
}

[data-theme="dark"] .hero-search { background: var(--surface, #161616); border-color: var(--border, #2a2a2a); box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .45); }
[data-theme="dark"] .hero-search:focus-within { border-color: #ff6b6b; box-shadow: 0 8px 28px -8px rgba(255, 107, 107, .35); }
[data-theme="dark"] .hero-search input { color: #f4f4f5; }
[data-theme="dark"] .hero-search input::placeholder { color: #7a7a82; }
[data-theme="dark"] .hero-search-clear:hover { background: rgba(255, 255, 255, .06); color: #f4f4f5; }
[data-theme="dark"] .hero-search-submit { background: #e54848; }
[data-theme="dark"] .hero-search-submit:hover { background: #ff6b6b; }

[data-theme="dark"] .hero-search-panel { background: var(--surface, #161616); border-color: var(--border, #2a2a2a); box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .6); }
[data-theme="dark"] .hs-section + .hs-section { border-top-color: var(--border, #2a2a2a); }
[data-theme="dark"] .hs-section-head { color: var(--text-3, #8b8b95); }
[data-theme="dark"] .hs-section-count { background: rgba(255, 107, 107, .15); color: #ff8e8e; }
[data-theme="dark"] .hs-section-action:hover { background: rgba(255, 107, 107, .12); color: #ff8e8e; }
[data-theme="dark"] .hs-item:hover, [data-theme="dark"] .hs-item.is-active { background: linear-gradient(90deg, rgba(255, 107, 107, .1), rgba(255, 107, 107, .02)); }
[data-theme="dark"] .hs-thumb { background: #2a2a2a; }
[data-theme="dark"] .hs-title { color: #f4f4f5; }
[data-theme="dark"] .hs-title mark { background: rgba(255, 107, 107, .18); color: #ff8e8e; }
[data-theme="dark"] .hs-meta { color: var(--text-3, #8b8b95); }
[data-theme="dark"] .hs-kind { background: rgba(255, 255, 255, .08); color: var(--text-2, #ccc); }
[data-theme="dark"] .hs-item-game .hs-kind { background: rgba(255, 107, 107, .15); color: #ff8e8e; }
[data-theme="dark"] .hs-item-gp .hs-kind { background: rgba(245, 158, 11, .2); color: #fbbf24; }
[data-theme="dark"] .hs-meta-best { background: linear-gradient(135deg, rgba(245, 158, 11, .25), rgba(245, 158, 11, .1)); color: #fbbf24; }
[data-theme="dark"] .hs-price { color: #f4f4f5; }
[data-theme="dark"] .hs-sugg-icon { background: rgba(255, 107, 107, .12); color: #ff8e8e; }
[data-theme="dark"] .hs-recent-icon { background: rgba(255, 255, 255, .08); color: var(--text-3, #8b8b95); }
[data-theme="dark"] .hs-sugg-text { color: #f4f4f5; }
[data-theme="dark"] .hs-recent-del:hover { background: rgba(255, 107, 107, .15); color: #ff8e8e; }
[data-theme="dark"] .hs-footer { color: #f4f4f5; border-top-color: var(--border, #2a2a2a); background: linear-gradient(180deg, transparent, rgba(255, 107, 107, .06)); }
[data-theme="dark"] .hs-footer:hover, [data-theme="dark"] .hs-footer.is-active { background: linear-gradient(180deg, rgba(255, 107, 107, .08), rgba(255, 107, 107, .16)); color: #ff8e8e; }
[data-theme="dark"] .hs-empty-icon { background: rgba(255, 107, 107, .12); color: #ff8e8e; }
[data-theme="dark"] .hs-empty-title { color: #f4f4f5; }
[data-theme="dark"] .hs-empty-sub { color: var(--text-3, #8b8b95); }
[data-theme="dark"] .hs-empty-cta { background: #e54848; }
[data-theme="dark"] .hs-empty-cta:hover { background: #ff6b6b; }
[data-theme="dark"] .hs-skel-row { background: linear-gradient(90deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .04) 100%); background-size: 200% 100%; }
[data-theme="dark"] .hs-error { color: #ff8e8e; }

@media (max-width: 720px) {
    .hero-search-panel { max-height: 70vh; }
    .hs-item { padding: 9px 12px; }
    .hs-thumb { width: 34px; height: 34px; }
    .hs-title { font-size: 13px; }
    .hs-price { font-size: 12.5px; }
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 780px;
    margin: 0 auto;
}

@media (min-width: 761px) and (max-width: 1280px) {
    .hero-cards { grid-template-columns: 1fr; }
    .hero-card { min-height: 168px; }
    .hero-card:has(.hero-card-art[data-art]) { padding-right: clamp(260px, 30vw, 360px); }
    .hero-card-art[data-art] { width: clamp(260px, 30vw, 360px); height: clamp(260px, 30vw, 360px); }
}

.hero-card {
    position: relative;
    border-radius: 18px;
    padding: 18px 16px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow: hidden;
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
    isolation: isolate;
    z-index: 1;
}
.hero-card-robux  { z-index: 3; }
.hero-card:hover  { z-index: 5; }
.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 50%, rgba(255, 255, 255, .18), transparent 60%);
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}
.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -16px rgba(0, 0, 0, .25);
}

.hero-card-robux    { background: linear-gradient(135deg, #ff3535 0%, #b81616 100%); }
.hero-card-gamepass { background: linear-gradient(135deg, #5fd64a 0%, #239014 100%); }

.hero-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.hero-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 11px 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    white-space: nowrap;
}
.hero-card-tag svg { flex-shrink: 0; }

.hero-card-shine {
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transition: left 0.8s ease;
}
.hero-card:hover .hero-card-shine { left: 130%; }

.hero-card h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.6px;
    line-height: 1;
}

.hero-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 10px;
    margin-top: 6px;
    white-space: nowrap;
    transition: gap .2s ease, transform .2s ease;
}
.hero-card-cta svg { transition: transform .2s ease; }
.hero-card:hover .hero-card-cta { gap: 12px; }
.hero-card:hover .hero-card-cta svg { transform: translateX(2px); }

.hero-card-art {
    position: relative;
    z-index: 1;
    width: 170px;
    height: 150px;
    flex-shrink: 0;
    translate: 0 0;
    scale: 1;
    rotate: 0deg;
    animation: hero-art-float 3.6s ease-in-out infinite;
    transition: scale .35s cubic-bezier(.34, 1.56, .64, 1),
                rotate .35s cubic-bezier(.34, 1.56, .64, 1);
}
.hero-card:has(.hero-card-art[data-art]) {
    overflow: visible;
    padding-right: 18px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.hero-card:has(.hero-card-art[data-art]):hover {
    transform: none;
    box-shadow: none;
}
.hero-card:has(.hero-card-art[data-art]) > .hero-card-shine { display: none; }

.hero-card-art[data-art] {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: clamp(180px, 22vw, 240px);
    height: clamp(180px, 22vw, 240px);
    pointer-events: none;
    animation: none;
    transition: transform .4s cubic-bezier(.34, 1.3, .64, 1), scale .4s cubic-bezier(.34, 1.3, .64, 1);
    z-index: 2;
}
.hero-card-gamepass .hero-card-art { animation-delay: -1.8s; }
.hero-card:hover .hero-card-art {
    scale: 1.08;
    rotate: -4deg;
}
.hero-card-robux:hover    .hero-card-art[data-art] { transform: translateY(-24px) translateX(4px); scale: 1.06; rotate: 0deg; }
.hero-card-gamepass:hover .hero-card-art[data-art] { transform: translateY(-24px) translateX(4px); scale: 1.06; rotate: 0deg; }
.hero-card:hover          .hero-card-art[data-art]::after { transform: scale(1.3); opacity: .55; }

.hero-card-art-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1.5px dashed rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.hero-card-art-placeholder::before { content: attr(data-label); }

.hero-card-art[data-art] > .art-png,
.hero-card-art[data-art] > .art-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: opacity .08s linear;
}
.hero-card-art[data-art="png1"]     > .art-png-1     { opacity: 1; will-change: transform; }
.hero-card-art[data-art="png2"]     > .art-png-2     { opacity: 1; will-change: transform; }
.hero-card-art[data-art="entering"] > .art-vid-enter { opacity: 1; }
.hero-card-art[data-art="leaving"]  > .art-vid-leave { opacity: 1; }

.hero-card-art[data-art]::after {
    content: '';
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: 6%;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .5), rgba(0, 0, 0, .15) 45%, transparent 70%);
    filter: blur(12px);
    z-index: -1;
    pointer-events: none;
    will-change: transform, opacity;
}

.hero-card-art[data-art="png1"] > .art-png-1,
.hero-card-art[data-art="png2"] > .art-png-2 {
    animation: hero-art-idle 3.2s ease-in-out infinite;
    transform-origin: center bottom;
}
.hero-card-art[data-art="png1"]::after,
.hero-card-art[data-art="png2"]::after {
    animation: hero-art-shadow-idle 3.2s ease-in-out infinite;
}
.hero-card-gamepass .hero-card-art[data-art="png1"] > .art-png-1,
.hero-card-gamepass .hero-card-art[data-art="png2"] > .art-png-2,
.hero-card-gamepass .hero-card-art[data-art="png1"]::after,
.hero-card-gamepass .hero-card-art[data-art="png2"]::after {
    animation-duration: 3.8s;
}

@keyframes hero-art-idle {
    0%, 100% { transform: translateY(0)    scale(1); }
    50%      { transform: translateY(-6px) scale(1.02); }
}
@keyframes hero-art-shadow-idle {
    0%, 100% { transform: scale(1)   ; opacity: .85; }
    50%      { transform: scale(.88) ; opacity: .55; }
}

@keyframes anim1-idle {
    0%, 14% {
        transform: translateY(0px) scaleX(1) scaleY(1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    44% {
        transform: translateY(-22px) scaleX(0.93) scaleY(1.09);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    58% {
        transform: translateY(0px) scaleX(1.12) scaleY(0.86);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    72% {
        transform: translateY(-9px) scaleX(0.97) scaleY(1.04);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    82% {
        transform: translateY(0px) scaleX(1.04) scaleY(0.97);
        animation-timing-function: ease-out;
    }
    91% {
        transform: translateY(-3px) scaleX(1) scaleY(1);
    }
    100% {
        transform: translateY(0px) scaleX(1) scaleY(1);
    }
}
@keyframes anim1-active {
    0%, 14% {
        transform: translateY(0px) scaleX(1) scaleY(1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    44% {
        transform: translateY(-28px) scaleX(0.91) scaleY(1.11);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    58% {
        transform: translateY(0px) scaleX(1.14) scaleY(0.84);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    72% {
        transform: translateY(-12px) scaleX(0.96) scaleY(1.05);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    84% {
        transform: translateY(0px) scaleX(1.05) scaleY(0.96);
    }
    100% {
        transform: translateY(0px) scaleX(1) scaleY(1);
    }
}
@keyframes anim1-shadow-idle {
    0%, 14% {
        transform: scale(1);   opacity: .58;
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    44% {
        transform: scale(0.65); opacity: .24;
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    58% {
        transform: scale(1.4);  opacity: .78;
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    72% {
        transform: scale(0.82); opacity: .40;
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    82% {
        transform: scale(1.14); opacity: .62;
    }
    100% {
        transform: scale(1);   opacity: .58;
    }
}
@keyframes anim1-shadow-active {
    0%, 14% {
        transform: scale(1);   opacity: .58;
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    44% {
        transform: scale(0.58); opacity: .20;
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    58% {
        transform: scale(1.5);  opacity: .82;
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    72% {
        transform: scale(0.78); opacity: .36;
    }
    100% {
        transform: scale(1);   opacity: .58;
    }
}

:root[data-card-anim="2"] .hero-card-art[data-art="png1"] > .art-png-1 { animation: anim2-idle 5s ease-in-out infinite; transform-origin: center; }
:root[data-card-anim="2"] .hero-card-art[data-art="png2"] > .art-png-2 { animation: anim2-active 4.5s ease-in-out infinite; transform-origin: center; }
:root[data-card-anim="2"] .hero-card-art[data-art="png1"]::after       { animation: anim2-shadow-idle 5s ease-in-out infinite; }
:root[data-card-anim="2"] .hero-card-art[data-art="png2"]::after       { animation: anim2-shadow-active 4.5s ease-in-out infinite; }

@keyframes anim2-idle {
    0%, 100% { transform: scale(1)    translateY(0); }
    50%      { transform: scale(1.02) translateY(-2px); }
}
@keyframes anim2-active {
    0%, 100% { transform: scale(1)    translateY(0); }
    50%      { transform: scale(1.06) translateY(-10px); }
}
@keyframes anim2-shadow-idle {
    0%, 100% { transform: scale(1)    ; opacity: .85; }
    50%      { transform: scale(1.06) ; opacity: .78; }
}
@keyframes anim2-shadow-active {
    0%, 100% { transform: scale(1)    ; opacity: .85; }
    50%      { transform: scale(1.25) ; opacity: .5; }
}

:root[data-card-anim="3"] .hero-card-art[data-art="png1"] > .art-png-1 { animation: anim3-idle 3.8s ease-in-out infinite; transform-origin: 50% 0; }
:root[data-card-anim="3"] .hero-card-art[data-art="png2"] > .art-png-2 { animation: anim3-active 3.4s ease-in-out infinite; transform-origin: 50% 0; }
:root[data-card-anim="3"] .hero-card-art[data-art="png1"]::after       { animation: anim3-shadow-idle 3.8s ease-in-out infinite; }
:root[data-card-anim="3"] .hero-card-art[data-art="png2"]::after       { animation: anim3-shadow-active 3.4s ease-in-out infinite; }

@keyframes anim3-idle {
    0%, 100% { transform: rotate(-1deg); }
    50%      { transform: rotate(1deg); }
}
@keyframes anim3-active {
    0%, 100% { transform: rotate(-4deg); }
    50%      { transform: rotate(4deg); }
}
@keyframes anim3-shadow-idle {
    0%, 100% { transform: translateX(2px)  scale(1); opacity: .8; }
    50%      { transform: translateX(-2px) scale(1); opacity: .8; }
}
@keyframes anim3-shadow-active {
    0%, 100% { transform: translateX(8px)  scale(.95); opacity: .8; }
    50%      { transform: translateX(-8px) scale(.95); opacity: .8; }
}

:root[data-card-anim="4"] .hero-card-art[data-art="png1"] > .art-png-1 { animation: anim4-idle 4.6s ease-in-out infinite; transform-origin: 50% 100%; }
:root[data-card-anim="4"] .hero-card-art[data-art="png2"] > .art-png-2 { animation: anim4-active 1.8s cubic-bezier(.45, 0, .5, 1) infinite; transform-origin: 50% 100%; }
:root[data-card-anim="4"] .hero-card-art[data-art="png1"]::after       { animation: anim4-shadow-idle 4.6s ease-in-out infinite; }
:root[data-card-anim="4"] .hero-card-art[data-art="png2"]::after       { animation: anim4-shadow-active 1.8s cubic-bezier(.45, 0, .5, 1) infinite; }

@keyframes anim4-idle {
    0%, 100% { transform: scale(1, 1)       translateY(0); }
    50%      { transform: scale(1.01, 0.99) translateY(0); }
}
@keyframes anim4-active {
    0%   { transform: scale(1, 1)        translateY(0); }
    20%  { transform: scale(1.12, 0.88)  translateY(0); }
    50%  { transform: scale(0.94, 1.06)  translateY(-16px); }
    80%  { transform: scale(1.12, 0.88)  translateY(0); }
    100% { transform: scale(1, 1)        translateY(0); }
}
@keyframes anim4-shadow-idle {
    0%, 100% { transform: scale(1)    ; opacity: .85; }
    50%      { transform: scale(1.04) ; opacity: .82; }
}
@keyframes anim4-shadow-active {
    0%   { transform: scale(1, 1)        ; opacity: .85; }
    20%  { transform: scale(1.25, 0.85)  ; opacity: .92; }
    50%  { transform: scale(0.55, 1)     ; opacity: .35; }
    80%  { transform: scale(1.25, 0.85)  ; opacity: .92; }
    100% { transform: scale(1, 1)        ; opacity: .85; }
}

:root[data-card-anim="5"] .hero-card-art[data-art="png1"] > .art-png-1 { animation: anim5-idle 5.2s ease-in-out infinite; transform-origin: center; }
:root[data-card-anim="5"] .hero-card-art[data-art="png2"] > .art-png-2 { animation: anim5-active 4.6s ease-in-out infinite; transform-origin: center; }
:root[data-card-anim="5"] .hero-card-art[data-art="png1"]::after       { animation: anim5-shadow-idle 5.2s ease-in-out infinite; }
:root[data-card-anim="5"] .hero-card-art[data-art="png2"]::after       { animation: anim5-shadow-active 4.6s ease-in-out infinite; }

@keyframes anim5-idle {
    0%, 100% { transform: perspective(900px) rotateY(0); }
    50%      { transform: perspective(900px) rotateY(4deg); }
}
@keyframes anim5-active {
    0%, 100% { transform: perspective(900px) rotateY(0)     translateY(0)     scale(1); }
    25%      { transform: perspective(900px) rotateY(8deg)  translateY(-6px)  scale(1.02); }
    50%      { transform: perspective(900px) rotateY(0)     translateY(-12px) scale(1.04); }
    75%      { transform: perspective(900px) rotateY(-8deg) translateY(-6px)  scale(1.02); }
}
@keyframes anim5-shadow-idle {
    0%, 100% { transform: scale(1)    ; opacity: .85; }
    50%      { transform: scale(1.05) ; opacity: .8; }
}
@keyframes anim5-shadow-active {
    0%, 100% { transform: scale(1)    ; opacity: .85; }
    50%      { transform: scale(1.28) ; opacity: .45; }
}

@keyframes hero-art-float {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -6px; }
}

.why-us-section { background: linear-gradient(180deg, transparent 0%, #fafafa 50%, transparent 100%); }
[data-theme="dark"] .why-us-section { background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .025) 50%, transparent 100%); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.why-card {
    position: relative;
    padding: 28px 24px 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .25s cubic-bezier(.16, 1, .3, 1),
                box-shadow .25s cubic-bezier(.16, 1, .3, 1),
                border-color .25s cubic-bezier(.16, 1, .3, 1);
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e01f1f 0%, #ff6b6b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.why-card:hover {
    transform: translateY(-4px);
    border-color: #f0d0d0;
    box-shadow: 0 20px 40px -22px rgba(224, 31, 31, .25);
}
.why-card:hover::before { transform: scaleX(1); }

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff1f1, #ffe0e0);
    color: #e01f1f;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1),
                background .25s ease;
}
.why-card:hover .why-card-icon {
    transform: scale(1.08) rotate(-4deg);
    background: linear-gradient(135deg, #ffe5e5, #ffcfcf);
}

.why-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -.3px;
    margin: 0 0 8px;
}
.why-card-desc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 16px;
}
.why-card-stat {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 99px;
    background: #fff5f5;
    color: #c41a1a;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .2px;
    font-variant-numeric: tabular-nums;
}

[data-theme="dark"] .why-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}
[data-theme="dark"] .why-card:hover {
    border-color: rgba(224, 31, 31, .35);
    box-shadow: 0 20px 40px -22px rgba(224, 31, 31, .4);
}
[data-theme="dark"] .why-card-title { color: #f4f4f5; }
[data-theme="dark"] .why-card-desc { color: #999; }
[data-theme="dark"] .why-card-icon {
    background: linear-gradient(135deg, rgba(224, 31, 31, .12), rgba(224, 31, 31, .06));
    color: #ff6b6b;
}
[data-theme="dark"] .why-card:hover .why-card-icon {
    background: linear-gradient(135deg, rgba(224, 31, 31, .2), rgba(224, 31, 31, .1));
}
[data-theme="dark"] .why-card-stat {
    background: rgba(224, 31, 31, .12);
    color: #ff6b6b;
}

@media (max-width: 760px) {
    .why-grid { grid-template-columns: 1fr; gap: 14px; }
    .why-card { padding: 22px 20px 20px; }
    .why-card-icon { width: 48px; height: 48px; margin-bottom: 14px; }
    .why-card-title { font-size: 16px; }
}


@media (max-width: 760px) {
    .hero-inner       { padding: 28px 16px 44px; }
    .hero-title       { font-size: 26px; }
    .hero-subtitle    { font-size: 14px; margin-bottom: 22px; }
    .hero-search      { padding: 6px; gap: 6px; }
    .hero-search-icon { display: none; }

    .hero-search input{ padding: 12px 10px; font-size: 14px; }
    .hero-search button { padding: 10px 20px; font-size: 13px; }
    .hero-cards       { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-card        {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 14px;
        min-height: 170px;
        border-radius: 16px;
        gap: 6px;
    }
    .hero-card-content { display: contents; }
    .hero-card-tag,
    .hero-card h2,
    .hero-card-cta    { position: relative; z-index: 2; }
    .hero-card-tag    { order: 1; font-size: 9px; padding: 3px 8px 3px 7px; letter-spacing: .6px; gap: 4px; }
    .hero-card-tag svg { width: 10px; height: 10px; }
    .hero-card h2     { order: 2; font-size: 22px; letter-spacing: -.3px; }
    .hero-card-cta    {
        order: 4;
        font-size: 10px;
        padding: 4px 10px;
        margin-top: 2px;
        gap: 3px;
        align-self: center;
        border-radius: 7px;
        font-weight: 600;
    }
    .hero-card-cta svg { width: 10px; height: 10px; }
    .hero-card-art     { width: 56px; height: 48px; align-self: flex-end; }
    .hero-card:has(.hero-card-art[data-art]) {
        overflow: hidden;
        padding-right: 14px;
        clip-path: none;
        transition: transform .25s ease, box-shadow .25s ease;
    }
    .hero-card:has(.hero-card-art[data-art]) > .hero-card-shine { display: block; }
    .hero-card-art[data-art] {
        order: 3;
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 0;
        width: 130px;
        height: 90px;
        align-self: center;
        filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .35));
    }
    .hero-card-art-placeholder { font-size: 7px; letter-spacing: .6px; border-width: 1px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-card-art { animation: none; }
    .hero-card-art[data-art] > .art-png,
    .hero-card-art[data-art]::after { animation: none !important; }
}


.home-section {
    width: 100%;
    padding: 64px 0;
}
.home-section + .home-section { padding-top: 0; }

.section-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #e01f1f;
    background: #fff5f5;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.6px;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.section-header.section-header-row {
    text-align: left;
    max-width: none;
    margin: 0 0 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}
.section-header-text {
    min-width: 0;
}
.section-header-row .section-title {
    font-size: 36px;
    margin-bottom: 8px;
}
.section-more {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s cubic-bezier(.16, 1, .3, 1),
                background .2s cubic-bezier(.16, 1, .3, 1),
                color .2s cubic-bezier(.16, 1, .3, 1),
                box-shadow .2s cubic-bezier(.16, 1, .3, 1),
                transform .2s cubic-bezier(.16, 1, .3, 1);
}
.section-more svg {
    transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}
.section-more:hover {
    border-color: #e5d5d5;
    color: #e01f1f;
    box-shadow: 0 12px 26px -18px rgba(224, 31, 31, .5);
    transform: translateY(-1px);
}
.section-more:hover svg {
    transform: translateX(3px);
}
.section-more:focus-visible {
    outline: 2px solid #e01f1f;
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .section-header-row .section-title { font-size: 28px; }
}
@media (max-width: 720px) {
    .section-header.section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 22px;
    }
    .section-header-row .section-title { font-size: 25px; }
    .section-more { align-self: flex-start; }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card {
    position: relative;
    padding: 26px 22px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e01f1f, #ff6f6f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: #f0d0d0;
    box-shadow: 0 16px 36px -18px rgba(224, 31, 31, .25);
}
.step-card:hover::before { transform: scaleX(1); }

.step-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 38px;
    font-weight: 900;
    color: #c4c4c4;
    letter-spacing: -1px;
    line-height: 1;
    transition: color .25s ease;
}
.step-card:hover .step-number { color: #f9a8a8; }

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff1f1, #ffe2e2);
    color: #e01f1f;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.step-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -.2px;
}

.step-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.55;
}


.showcase-section[hidden] { display: none; }
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
}
.showcase-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .2s cubic-bezier(.16, 1, .3, 1),
                box-shadow .2s cubic-bezier(.16, 1, .3, 1);
}
.showcase-card-wrap {
    transition: transform .28s cubic-bezier(.16, 1, .3, 1);
    transform-origin: center center;
}
.showcase-card-wrap.is-hovering {
    transform: translateY(-2px);
}
.showcase-card-wrap.is-preview-open {
    transform: translateY(-4px) scale(1.04);
    z-index: 5;
}
.showcase-card-wrap.is-hovering > .showcase-card,
.showcase-card-wrap.is-preview-open > .showcase-card {
    border-color: #e5d5d5;
    box-shadow: 0 14px 32px -18px rgba(224, 31, 31, .22);
}
.showcase-card-thumb-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f4f4f5;
    overflow: hidden;
}
.showcase-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.showcase-card:hover .showcase-card-thumb { transform: scale(1.04); }
.showcase-card-thumb-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    font-size: 56px;
    font-weight: 800;
}
.showcase-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.showcase-card-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -.2px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: calc(1.3em * 2);
    word-break: break-word;
    overflow-wrap: anywhere;
}
.showcase-card-creator {
    font-size: 12px;
    color: #888;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[data-theme="dark"] .showcase-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}
[data-theme="dark"] .showcase-card:hover {
    border-color: rgba(224, 31, 31, .35);
    box-shadow: 0 14px 32px -18px rgba(224, 31, 31, .35);
}
[data-theme="dark"] .showcase-card-thumb-wrap { background: #0f0f0f; }
[data-theme="dark"] .showcase-card-name { color: #f4f4f5; }
[data-theme="dark"] .showcase-card-creator { color: #888; }

.showcase-card.is-featured {
    border-color: rgba(245, 158, 11, .45);
    box-shadow: 0 14px 32px -18px rgba(245, 158, 11, .35);
}
.showcase-card.is-featured:hover {
    border-color: rgba(245, 158, 11, .7);
    box-shadow: 0 18px 38px -16px rgba(245, 158, 11, .45);
}
.showcase-card-star {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 4px 7px;
    border-radius: 99px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px -2px rgba(245, 158, 11, .45);
    z-index: 2;
}
.showcase-card-star svg {
    width: 12px;
    height: 12px;
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .2));
}

[data-theme="dark"] .showcase-card.is-featured {
    border-color: rgba(245, 158, 11, .5);
    box-shadow: 0 14px 32px -18px rgba(245, 158, 11, .55);
}

@keyframes reco-enter {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes reco-skel {
    0%   { background-position:   0% 0; }
    100% { background-position: 200% 0; }
}
.reco-enter {
    animation: reco-enter .55s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: var(--enter-delay, 0ms);
}

.recomendados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}
.reco-card-wrap {
    position: relative;
    aspect-ratio: 16 / 8;
    border-radius: 18px;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1);
    transform-origin: center center;
}
.reco-card-wrap.is-hovering {
    transform: translateY(-2px);
}
.reco-card-wrap.is-preview-open {
    transform: translateY(-4px) scale(1.04);
    z-index: 5;
}

@property --reco-progress {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}
.reco-card-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 21px;
    padding: 3px;
    --reco-progress: 0%;
    background: conic-gradient(from -90deg at 50% 50%,
        transparent 0%,
        transparent calc(var(--reco-progress) - 38%),
        rgba(224, 31, 31, .15) calc(var(--reco-progress) - 32%),
        #e01f1f calc(var(--reco-progress) - 20%),
        #ff2929 calc(var(--reco-progress) - 8%),
        #ff7373 var(--reco-progress),
        transparent var(--reco-progress),
        transparent 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(224, 31, 31, .80))
            drop-shadow(0 0 18px rgba(224, 31, 31, .55))
            drop-shadow(0 0 36px rgba(224, 31, 31, .30));
    transition:
        --reco-progress 1s cubic-bezier(.4, 0, .6, 1),
        opacity .28s cubic-bezier(.16, 1, .3, 1);
}
[data-theme="dark"] .reco-card-wrap::before {
    background: conic-gradient(from -90deg at 50% 50%,
        transparent 0%,
        transparent calc(var(--reco-progress) - 38%),
        rgba(255, 59, 59, .14) calc(var(--reco-progress) - 32%),
        #ff3b3b calc(var(--reco-progress) - 20%),
        #ff5e5e calc(var(--reco-progress) - 8%),
        #ffd0d0 var(--reco-progress),
        transparent var(--reco-progress),
        transparent 100%);
    filter: drop-shadow(0 0 6px rgba(255, 59, 59, .55))
            drop-shadow(0 0 14px rgba(255, 59, 59, .35));
}
.reco-card-wrap.is-rewinding::before {
    opacity: 1;
    --reco-progress: 0%;
    transition:
        --reco-progress .42s cubic-bezier(.34, 0, .3, 1),
        opacity .14s ease .36s;
}
.reco-card-wrap.is-hovering::before {
    opacity: 1;
    --reco-progress: 100%;
}
.reco-card-wrap.is-preview-open::before {
    opacity: 0;
    --reco-progress: 0%;
}
@supports not (background: conic-gradient(from 0deg, red 50%, transparent 0)) {
    .reco-card-wrap::before { display: none; }
}

.reco-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border: 1px solid var(--border, #e5e5e5);
    box-shadow: 0 14px 32px -20px rgba(0, 0, 0, .22);
    transition:
        box-shadow .42s cubic-bezier(.16, 1, .3, 1),
        border-color .35s cubic-bezier(.16, 1, .3, 1);
    isolation: isolate;
    z-index: 1;
}
.reco-card-wrap.is-hovering > .reco-card,
.reco-card-wrap.is-preview-open > .reco-card,
.reco-card:focus-visible {
    border-color: #e5d5d5;
    box-shadow: 0 14px 32px -18px rgba(224, 31, 31, .22);
}
.reco-card:focus-visible { outline: none; }
[data-theme="dark"] .reco-card-wrap.is-hovering > .reco-card,
[data-theme="dark"] .reco-card-wrap.is-preview-open > .reco-card,
[data-theme="dark"] .reco-card:focus-visible {
    border-color: rgba(224, 31, 31, .35);
    box-shadow: 0 14px 32px -18px rgba(224, 31, 31, .35);
}
.reco-card-bg {
    position: absolute;
    inset: 0;
    background-color: #181818;
    background-size: cover;
    background-position: center;
    transition: transform .55s cubic-bezier(.16, 1, .3, 1),
                filter .35s cubic-bezier(.16, 1, .3, 1);
    z-index: -2;
    filter: saturate(1.05);
}
.reco-card-wrap.is-hovering .reco-card-bg,
.reco-card-wrap.is-preview-open .reco-card-bg,
.reco-card:hover .reco-card-bg { transform: scale(1.06); filter: saturate(1.2); }
.reco-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, transparent 0%, rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, .75) 100%);
    z-index: -1;
    transition: background .42s cubic-bezier(.16, 1, .3, 1);
}
.reco-card-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}
.reco-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, .35);
}
.reco-card-title {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 900;
    letter-spacing: -.6px;
    line-height: 1.1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .55);
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.reco-card-creator {
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
    letter-spacing: .2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.reco-skel {
    aspect-ratio: 16 / 8;
    border-radius: 18px;
    background: linear-gradient(90deg,
        var(--surface-2, #f4f4f4) 0%,
        rgba(0, 0, 0, .06) 50%,
        var(--surface-2, #f4f4f4) 100%);
    background-size: 200% 100%;
    animation: reco-skel 1.2s linear infinite;
}
[data-theme="dark"] .reco-skel {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    background-size: 200% 100%;
}

@media (max-width: 720px) {
    .recomendados-grid { gap: 12px; }
    .reco-card-body { padding: 16px 18px; }
}

.showcase-card-wrap {
    position: relative;
}
.showcase-card-wrap > .showcase-card {
    text-decoration: none;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
}
.showcase-card-wrap.is-disabled > .showcase-card {
    cursor: not-allowed;
    opacity: .55;
    filter: grayscale(.5);
    pointer-events: none;
}
.showcase-card-wrap.is-disabled .showcase-card-thumb-wrap {
    position: relative;
}
.showcase-card-disabled-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 99px;
    background: rgba(15, 15, 15, .82);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    z-index: 2;
}
.showcase-card-disabled-badge svg { width: 11px; height: 11px; }

@property --sc-progress {
    syntax: '<percentage>';
    initial-value: 0%;
    inherits: false;
}

.showcase-card-wrap {
    --sc-progress: 0%;
}
.showcase-card-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 19px;
    padding: 3px;
    background: conic-gradient(from -90deg at 50% 50%,
        transparent 0%,
        transparent calc(var(--sc-progress) - 38%),
        rgba(224, 31, 31, .15) calc(var(--sc-progress) - 32%),
        #e01f1f calc(var(--sc-progress) - 20%),
        #ff2929 calc(var(--sc-progress) - 8%),
        #ff7373 var(--sc-progress),
        transparent var(--sc-progress),
        transparent 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(224, 31, 31, .80))
            drop-shadow(0 0 18px rgba(224, 31, 31, .55))
            drop-shadow(0 0 36px rgba(224, 31, 31, .30));
    transition:
        --sc-progress 1s cubic-bezier(.4, 0, .6, 1),
        opacity .28s cubic-bezier(.16, 1, .3, 1);
}
[data-theme="dark"] .showcase-card-wrap::before {
    background: conic-gradient(from -90deg at 50% 50%,
        transparent 0%,
        transparent calc(var(--sc-progress) - 38%),
        rgba(255, 59, 59, .14) calc(var(--sc-progress) - 32%),
        #ff3b3b calc(var(--sc-progress) - 20%),
        #ff5e5e calc(var(--sc-progress) - 8%),
        #ffd0d0 var(--sc-progress),
        transparent var(--sc-progress),
        transparent 100%);
    filter: drop-shadow(0 0 6px rgba(255, 59, 59, .55))
            drop-shadow(0 0 14px rgba(255, 59, 59, .35));
}

.showcase-card-wrap.is-rewinding::before {
    opacity: 1;
    --sc-progress: 0%;
    transition:
        --sc-progress .42s cubic-bezier(.34, 0, .3, 1),
        opacity .14s ease .36s;
}
.showcase-card-wrap.is-hovering::before {
    opacity: 1;
    --sc-progress: 100%;
}
.showcase-card-wrap.is-preview-open::before {
    opacity: 0;
    --sc-progress: 0%;
}
.showcase-card-wrap.is-completing::before {
    animation: sc-ring-burst-light .55s cubic-bezier(.16, 1, .3, 1) forwards;
}
[data-theme="dark"] .showcase-card-wrap.is-completing::before {
    animation: sc-ring-burst .55s cubic-bezier(.16, 1, .3, 1) forwards;
}
@keyframes sc-ring-burst {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(255, 59, 59, .55))
                drop-shadow(0 0 14px rgba(255, 59, 59, .35));
    }
    35% {
        opacity: 1;
        transform: scale(1.04);
        filter: drop-shadow(0 0 14px rgba(255, 90, 90, .95))
                drop-shadow(0 0 32px rgba(255, 90, 90, .55))
                drop-shadow(0 0 60px rgba(255, 90, 90, .25));
    }
    100% {
        opacity: 0;
        transform: scale(1.18);
        filter: drop-shadow(0 0 0 transparent);
    }
}
@keyframes sc-ring-burst-light {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(224, 31, 31, .80))
                drop-shadow(0 0 18px rgba(224, 31, 31, .55));
    }
    35% {
        opacity: 1;
        transform: scale(1.04);
        filter: drop-shadow(0 0 18px rgba(224, 31, 31, 1))
                drop-shadow(0 0 38px rgba(224, 31, 31, .75))
                drop-shadow(0 0 72px rgba(224, 31, 31, .40));
    }
    100% {
        opacity: 0;
        transform: scale(1.18);
        filter: drop-shadow(0 0 0 transparent);
    }
}
.showcase-card-wrap.is-disabled::before { display: none; }

.showcase-card-wrap > .showcase-card {
    position: relative;
    z-index: 1;
    isolation: isolate;
}

@supports not (background: conic-gradient(from 0deg, red 50%, transparent 0)) {
    .showcase-card-wrap::before { display: none; }
}

@keyframes sc-preview-in {
    from { opacity: 0; transform: translateY(-6px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sc-preview-card-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes sc-skel {
    0%   { background-position:   0% 0; }
    100% { background-position: 200% 0; }
}

.sc-pop {
    position: fixed;
    top: 0;
    left: 0;
    width: 360px;
    z-index: 9000;
    background: #fff;
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 16px;
    box-shadow: 0 26px 60px -22px rgba(0, 0, 0, .32),
                0 4px 14px -6px rgba(0, 0, 0, .12);
    padding: 14px;
    opacity: 0;
    transform: scale(.94) translateY(6px);
    transform-origin: var(--tail-x, 50%) var(--tail-y, 50%);
    pointer-events: none;
    transition:
        opacity .22s cubic-bezier(.16, 1, .3, 1),
        transform .28s cubic-bezier(.16, 1, .3, 1);
    will-change: transform, opacity;
}
.sc-pop.is-open {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}
.sc-pop.is-closing {
    opacity: 0;
    transform: scale(.96) translateY(4px);
    pointer-events: none;
    transition:
        opacity .18s cubic-bezier(.4, 0, 1, 1),
        transform .22s cubic-bezier(.4, 0, 1, 1);
}
.sc-pop-backdrop {
    position: fixed;
    inset: 0;
    z-index: 8998;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s cubic-bezier(.16, 1, .3, 1);
}
.sc-pop-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}
body.sc-sheet-open { overflow: hidden; }
[data-theme="dark"] .sc-pop {
    background: #1a1a1a;
    border-color: #2a2a2a;
    box-shadow: 0 26px 60px -22px rgba(0, 0, 0, .7),
                0 4px 14px -6px rgba(0, 0, 0, .4);
}
.sc-pop::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: inherit;
    border: 1px solid var(--border, #e5e5e5);
    transform: rotate(45deg);
}
[data-theme="dark"] .sc-pop::before { border-color: #2a2a2a; }
.sc-pop[data-placement="right"]::before {
    left: -7px;
    top: var(--tail-y, 50%);
    margin-top: -6px;
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 0 3px;
}
.sc-pop[data-placement="left"]::before {
    right: -7px;
    top: var(--tail-y, 50%);
    margin-top: -6px;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 3px 0 0;
}
.sc-pop[data-placement="bottom"]::before {
    top: -7px;
    left: var(--tail-x, 50%);
    margin-left: -6px;
    border-right: 0;
    border-bottom: 0;
    border-radius: 3px 0 0 0;
}
.sc-pop[data-placement="top"]::before {
    bottom: -7px;
    left: var(--tail-x, 50%);
    margin-left: -6px;
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 3px 0;
}

.sc-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding: 0 2px;
}
.sc-preview-title {
    font-size: 12.5px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -.1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
[data-theme="dark"] .sc-preview-title { color: #f4f4f5; }
.sc-preview-link {
    font-size: 11.5px;
    font-weight: 800;
    color: #e01f1f;
    text-decoration: none;
    letter-spacing: .2px;
    flex-shrink: 0;
    transition: opacity .15s cubic-bezier(.16, 1, .3, 1);
}
.sc-preview-link:hover { opacity: .75; }


.sc-pop-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 2px 14px 2px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-soft, #ececec);
}
[data-theme="dark"] .sc-pop-head { border-bottom-color: rgba(255, 255, 255, .06); }
.sc-pop-head-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f4f5, #e8e8ea);
    border: 1px solid var(--border-soft, #ececec);
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #aaa;
    position: relative;
}
.sc-pop-head-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sc-pop-head-thumb svg { width: 22px; height: 22px; }
[data-theme="dark"] .sc-pop-head-thumb {
    background: linear-gradient(135deg, #232323, #1a1a1a);
    border-color: rgba(255, 255, 255, .06);
    color: #555;
}
.sc-pop-head-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sc-pop-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
    padding: 2px 8px 2px 6px;
    background: linear-gradient(135deg, rgba(224, 31, 31, .12), rgba(245, 158, 11, .10));
    color: #c41a1a;
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid rgba(224, 31, 31, .14);
}
.sc-pop-eyebrow svg { width: 10px; height: 10px; }
[data-theme="dark"] .sc-pop-eyebrow {
    background: linear-gradient(135deg, rgba(255, 77, 77, .15), rgba(251, 191, 36, .10));
    color: #ff8b8b;
    border-color: rgba(255, 77, 77, .25);
}
.sc-pop-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--text-1, #1a1a1a);
    letter-spacing: -.2px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 2px;
}
[data-theme="dark"] .sc-pop-title { color: var(--text, #f4f4f5); }
.sc-pop-submeta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1px;
}
.sc-pop-submeta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-3, #888);
    letter-spacing: -.05px;
}
.sc-pop-submeta-item svg { width: 11px; height: 11px; opacity: .85; }
.sc-pop-submeta-item:nth-child(2) svg { color: #16a34a; opacity: 1; }
[data-theme="dark"] .sc-pop-submeta-item:nth-child(2) svg { color: #4ade80; }
.sc-pop-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px 6px 12px;
    background: rgba(34, 197, 94, .10);
    border: 1px solid rgba(34, 197, 94, .30);
    border-radius: 999px;
    color: #15803d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2px;
    text-decoration: none;
    flex-shrink: 0;
    align-self: center;
    transition: background .18s ease, color .18s ease;
}
.sc-pop-link svg { width: 12px; height: 12px; }
.sc-pop-link:hover {
    background: rgba(34, 197, 94, .18);
}
[data-theme="dark"] .sc-pop-link {
    background: rgba(34, 197, 94, .14);
    border-color: rgba(34, 197, 94, .35);
    color: #4ade80;
}
[data-theme="dark"] .sc-pop-link:hover {
    background: rgba(34, 197, 94, .22);
}


.sc-pop-foot {
    margin-top: 12px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, .08), rgba(34, 197, 94, .03));
    border: 1px solid rgba(34, 197, 94, .18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    color: #15803d;
    letter-spacing: -.05px;
}
.sc-pop-foot svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0;
}
[data-theme="dark"] .sc-pop-foot {
    background: linear-gradient(135deg, rgba(34, 197, 94, .12), rgba(34, 197, 94, .04));
    border-color: rgba(34, 197, 94, .25);
    color: #4ade80;
}


.sc-preview-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.sc-preview-empty svg {
    width: 28px;
    height: 28px;
    color: var(--text-faint, #aaa);
    opacity: .7;
}

.sc-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.sc-preview-card {
    --sc-preview-glow: 224, 31, 31;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    background: #f8f8f9;
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color .3s cubic-bezier(.16, 1, .3, 1),
                transform .3s cubic-bezier(.16, 1, .3, 1),
                box-shadow .3s cubic-bezier(.16, 1, .3, 1);
    animation: sc-preview-card-in .35s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: var(--enter-delay, 0ms);
}
.sc-preview-card:hover {
    border-color: rgba(var(--sc-preview-glow), .45);
    transform: translateY(-2px);
    box-shadow:
        0 10px 22px -10px rgba(var(--sc-preview-glow), .42),
        0 0 18px -4px rgba(var(--sc-preview-glow), .22);
}
[data-theme="dark"] .sc-preview-card {
    background: #232323;
    border-color: #2f2f2f;
}
.sc-preview-thumb-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 10%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
[data-theme="dark"] .sc-preview-thumb-wrap { background: #0f0f0f; }
.sc-preview-thumb {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.sc-preview-card:hover .sc-preview-thumb { transform: scale(1.03); }

.sc-preview-glow {
    position: absolute;
    inset: -22%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    background:
        radial-gradient(circle at center,
            rgba(var(--sc-preview-glow), .38) 0%,
            rgba(var(--sc-preview-glow), .22) 28%,
            rgba(var(--sc-preview-glow), .09) 50%,
            transparent 72%);
    filter: blur(2px);
    transform: scale(.82);
    transition:
        opacity .85s cubic-bezier(.16, 1, .3, 1),
        transform .85s cubic-bezier(.16, 1, .3, 1);
}
.sc-preview-card:hover .sc-preview-glow {
    opacity: 1;
    transform: scale(1);
    animation: sc-preview-glow-breathe 3.6s ease-in-out infinite;
    transition:
        opacity .45s cubic-bezier(.16, 1, .3, 1),
        transform .55s cubic-bezier(.16, 1, .3, 1);
}
@keyframes sc-preview-glow-breathe {
    0%, 100% { opacity: .8; }
    50%      { opacity: 1; }
}
[data-theme="dark"] .sc-preview-glow {
    background:
        radial-gradient(circle at center,
            rgba(var(--sc-preview-glow), .42) 0%,
            rgba(var(--sc-preview-glow), .26) 28%,
            rgba(var(--sc-preview-glow), .11) 50%,
            transparent 72%);
}

.sc-preview-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 3;
    opacity: 0;
    transition: opacity 1s cubic-bezier(.16, 1, .3, 1);
}
.sc-preview-card:hover .sc-preview-fx {
    opacity: 1;
    transition: opacity .55s cubic-bezier(.16, 1, .3, 1);
}
.sc-preview-spark {
    position: absolute;
    pointer-events: none;
    color: rgba(var(--sc-preview-glow), .95);
    filter:
        drop-shadow(0 0 2px rgba(255, 255, 255, .9))
        drop-shadow(0 0 4px rgba(var(--sc-preview-glow), .65));
    opacity: 0;
    will-change: transform, opacity;
    display: block;
    line-height: 0;
}
.sc-preview-spark svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.sc-preview-spark.is-tl {
    top: 8%;
    left: 8%;
    width: 9px;
    height: 9px;
    animation: sc-preview-shoot-tl 4800ms cubic-bezier(.45, 0, .55, 1) 0ms infinite;
}
.sc-preview-spark.is-tr {
    top: 12%;
    right: 8%;
    width: 12px;
    height: 12px;
    animation: sc-preview-shoot-tr 5400ms cubic-bezier(.45, 0, .55, 1) 2500ms infinite;
}
@keyframes sc-preview-shoot-tl {
    0%   { transform: translate(-8px, -8px)  rotate(0deg)   scale(.3); opacity: 0; }
    18%  { transform: translate(6px, 10px)   rotate(45deg)  scale(1);  opacity: .9; }
    52%  { transform: translate(40px, 36px)  rotate(180deg) scale(.85); opacity: .6; }
    82%  { transform: translate(70px, 62px)  rotate(290deg) scale(.45); opacity: 0; }
    100% { transform: translate(70px, 62px)  rotate(290deg) scale(.45); opacity: 0; }
}
@keyframes sc-preview-shoot-tr {
    0%   { transform: translate(8px, -8px)   rotate(0deg)   scale(.3); opacity: 0; }
    18%  { transform: translate(-6px, 10px)  rotate(-45deg) scale(1);  opacity: .9; }
    52%  { transform: translate(-40px, 36px) rotate(-180deg) scale(.85); opacity: .6; }
    82%  { transform: translate(-70px, 62px) rotate(-290deg) scale(.45); opacity: 0; }
    100% { transform: translate(-70px, 62px) rotate(-290deg) scale(.45); opacity: 0; }
}
.sc-preview-card-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 4px 8px -2px rgba(217, 119, 6, .4);
}
.sc-preview-card-badge svg { width: 12px; height: 12px; }
.sc-preview-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    padding: 0 2px 2px;
}
.sc-preview-name {
    font-size: 11.5px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 30px;
}
[data-theme="dark"] .sc-preview-name { color: #f4f4f5; }
.sc-preview-price {
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.2px;
}
[data-theme="dark"] .sc-preview-price { color: #f4f4f5; }

.sc-preview-empty {
    padding: 22px 12px;
    text-align: center;
    color: #888;
    font-size: 12.5px;
}

.sc-skel {
    background: linear-gradient(90deg, #f4f4f5 0%, rgba(0, 0, 0, .05) 50%, #f4f4f5 100%);
    background-size: 200% 100%;
    animation: sc-skel 1.2s linear infinite;
    border-radius: 8px;
    display: block;
}
[data-theme="dark"] .sc-skel {
    background: linear-gradient(90deg, #232323 0%, #2f2f2f 50%, #232323 100%);
    background-size: 200% 100%;
}
.sc-skel-title { height: 14px; width: 60%; }
.sc-skel-link  { height: 26px; width: 76px; border-radius: 999px; align-self: center; flex-shrink: 0; }
.sc-skel-head-thumb { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
.sc-skel-eyebrow { height: 10px; width: 70px; border-radius: 999px; }
.sc-pop-head-skel { align-items: center; }
.sc-skel-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    background: #f8f8f9;
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 12px;
}
[data-theme="dark"] .sc-skel-card { background: #232323; border-color: #2f2f2f; }
.sc-skel-thumb  { aspect-ratio: 1 / 1; border-radius: 8px; }
.sc-skel-line   { height: 11px; width: 80%; }
.sc-skel-line-2 { height: 13px; width: 40%; }

.sc-pop.is-sheet {
    position: fixed;
    left: 0 !important;
    right: 0;
    bottom: 0;
    top: auto !important;
    width: 100% !important;
    max-height: 88vh;
    max-height: 88dvh;
    border-radius: 22px 22px 0 0;
    border: none;
    border-top: 1px solid var(--border, #e5e5e5);
    padding: 22px 18px max(20px, env(safe-area-inset-bottom)) 18px;
    transform: translateY(100%);
    transform-origin: center bottom;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 -24px 60px -20px rgba(0, 0, 0, .55);
    z-index: 8999;
}
.sc-pop.is-sheet.is-open {
    transform: translateY(0);
}
.sc-pop.is-sheet.is-closing {
    transform: translateY(100%);
    opacity: 1;
    transition:
        transform .32s cubic-bezier(.4, 0, 1, 1);
}
.sc-pop.is-sheet::before { display: none; }
.sc-pop-handle {
    width: 44px;
    height: 4px;
    margin: 2px auto 14px;
    border-radius: 999px;
    background: var(--border, #d4d4d4);
    flex-shrink: 0;
    position: sticky;
    top: -8px;
    z-index: 10;
}
[data-theme="dark"] .sc-pop.is-sheet {
    border-top-color: rgba(255, 255, 255, .06);
    box-shadow: 0 -24px 60px -20px rgba(0, 0, 0, .85);
}
[data-theme="dark"] .sc-pop-handle { background: rgba(255, 255, 255, .18); }

@media (max-width: 720px) {
    .sc-pop:not(.is-sheet) { width: calc(100vw - 24px) !important; }
}

.sc-preview-card {
    position: relative;
    cursor: default;
    color: inherit;
}
.sc-preview-add {
    position: absolute;
    inset: auto 6px 6px 6px;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 10px;
    background: #e01f1f;
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
    cursor: pointer;
    box-shadow: 0 6px 14px -6px rgba(224, 31, 31, .55);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s cubic-bezier(.16, 1, .3, 1),
                transform .2s cubic-bezier(.16, 1, .3, 1),
                background .15s cubic-bezier(.16, 1, .3, 1);
}
.sc-preview-card:hover .sc-preview-add,
.sc-preview-card:focus-within .sc-preview-add {
    opacity: 1;
    transform: translateY(0);
}
.sc-preview-add:hover { background: #c41a1a; }
.sc-preview-add svg { width: 12px; height: 12px; }
@media (max-width: 720px) {
    .sc-preview-add { opacity: 1; transform: none; }
}

@keyframes sc-nick-in {
    from { opacity: 0; transform: translateY(14px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sc-nick-fade {
    from { opacity: 0 } to { opacity: 1 }
}

.sc-nick-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s cubic-bezier(.16, 1, .3, 1);
}
.sc-nick-modal.is-open { opacity: 1; pointer-events: auto; }
.sc-nick-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
}
.sc-nick-card {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    background: #fff;
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 16px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .45);
    transform: translateY(14px) scale(.96);
    opacity: 0;
    transition: opacity .25s cubic-bezier(.16, 1, .3, 1),
                transform .25s cubic-bezier(.16, 1, .3, 1);
}
.sc-nick-modal.is-open .sc-nick-card { transform: translateY(0) scale(1); opacity: 1; }
[data-theme="dark"] .sc-nick-card { background: #1a1a1a; border-color: #2a2a2a; }
.sc-nick-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: transparent;
    color: var(--muted, #888);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.sc-nick-close:hover { background: rgba(0,0,0,.06); color: var(--text, #1a1a1a); }
[data-theme="dark"] .sc-nick-close:hover { background: rgba(255,255,255,.06); color: #fff; }
.sc-nick-close svg { width: 14px; height: 14px; }
.sc-nick-body { padding: 24px 24px 14px; }
.sc-nick-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--text, #1a1a1a);
    margin: 0 0 6px;
    letter-spacing: -.3px;
}
[data-theme="dark"] .sc-nick-title { color: #fff; }
.sc-nick-sub {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted, #666);
    margin: 0 0 16px;
}
[data-theme="dark"] .sc-nick-sub { color: #999; }
.sc-nick-sub strong { color: var(--text, #1a1a1a); font-weight: 700; }
[data-theme="dark"] .sc-nick-sub strong { color: #fff; }
.sc-nick-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--muted, #888);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px;
}
.sc-nick-input {
    box-sizing: border-box;
    width: 100%;
    padding: 11px 14px;
    background: #fff;
    color: var(--text, #1a1a1a);
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: border-color .15s, box-shadow .15s;
}
[data-theme="dark"] .sc-nick-input { background: #222; color: #fff; border-color: #2a2a2a; }
.sc-nick-input:focus {
    outline: none;
    border-color: #e01f1f;
    box-shadow: 0 0 0 3px rgba(224, 31, 31, .14);
}
.sc-nick-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #c41a1a;
}
[data-theme="dark"] .sc-nick-error { color: #fca5a5; }
.sc-nick-foot {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 18px 18px;
    border-top: 1px solid var(--border, #e5e5e5);
}
[data-theme="dark"] .sc-nick-foot { border-color: #2a2a2a; }
.sc-nick-ghost {
    appearance: none;
    padding: 10px 16px;
    background: transparent;
    color: var(--muted, #666);
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 9px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
.sc-nick-ghost:hover { background: #f4f4f5; color: var(--text, #1a1a1a); }
[data-theme="dark"] .sc-nick-ghost { border-color: #2a2a2a; color: #999; }
[data-theme="dark"] .sc-nick-ghost:hover { background: #222; color: #fff; }
.sc-nick-ok {
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #e01f1f;
    color: #fff;
    border: 0;
    border-radius: 9px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px -10px rgba(224, 31, 31, .5);
    transition: background .15s, transform .15s;
}
.sc-nick-ok:hover { background: #c41a1a; transform: translateY(-1px); }
.sc-nick-ok svg { width: 13px; height: 13px; transition: transform .15s; }
.sc-nick-ok:hover svg { transform: translateX(3px); }

.sc-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 14px);
    z-index: 4000;
    padding: 12px 18px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    box-shadow: 0 18px 36px -12px rgba(0, 0, 0, .5);
    opacity: 0;
    transition: opacity .22s cubic-bezier(.16, 1, .3, 1),
                transform .22s cubic-bezier(.16, 1, .3, 1);
}
.sc-toast.is-open { opacity: 1; transform: translate(-50%, 0); }
.sc-toast.is-success { background: #16a34a; }
.sc-toast.is-error   { background: #c41a1a; }
@media (max-width: 480px) {
    .sc-toast { left: 12px; right: 12px; transform: translateY(14px); bottom: 12px; }
    .sc-toast.is-open { transform: translateY(0); }
}

@media (max-width: 720px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .showcase-card-body { padding: 10px 12px 12px; }
    .showcase-card-name { font-size: 13px; }
    .showcase-card-creator { font-size: 11px; }
}


.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
    border-color: #f0d0d0;
    box-shadow: 0 12px 28px -16px rgba(224, 31, 31, .2);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #e01f1f; }

.faq-chev {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #999;
    background: #f6f6f6;
    transition: transform .25s ease, background .15s ease, color .15s ease;
    flex-shrink: 0;
}
.faq-item[open] .faq-chev {
    transform: rotate(180deg);
    background: #fff5f5;
    color: #e01f1f;
}
.faq-item summary:hover .faq-chev { color: #e01f1f; }

.faq-item p {
    padding: 0 22px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


.cta-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 44px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: #fff;
    isolation: isolate;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0d0d 100%);
}
.cta-card-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 85% 50%, rgba(224, 31, 31, .35), transparent 55%),
        radial-gradient(circle at 15% 100%, rgba(224, 31, 31, .25), transparent 45%);
}
.cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 80%);
}

.cta-card-content { max-width: 540px; }

.cta-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ff8a8a;
    background: rgba(255, 138, 138, .12);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.cta-card h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
}

.cta-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: background .15s, color .15s, transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.cta-btn svg { transition: transform .2s ease; }

.cta-btn-primary {
    background: #e01f1f;
    color: #fff;
    box-shadow: 0 12px 28px -10px rgba(224, 31, 31, .55);
}
.cta-btn-primary:hover {
    background: #ff3535;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(224, 31, 31, .65);
}
.cta-btn-primary:hover svg { transform: translateX(3px); }

.cta-btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}
.cta-btn-ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .25);
}


@media (max-width: 900px) {
    .home-section { padding: 48px 0; }
    .section-title { font-size: 24px; }
    .section-sub   { font-size: 14px; }
    .section-header { margin-bottom: 28px; }

    .steps-grid    { grid-template-columns: 1fr; gap: 12px; }

    .cta-card {
        padding: 28px 22px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 22px;
        border-radius: 20px;
    }
    .cta-card-content { max-width: none; }
    .cta-card h2 { font-size: 22px; }
    .cta-card-actions { flex-direction: row; }
    .cta-btn { flex: 1; padding: 12px 16px; font-size: 13.5px; }
}

@media (max-width: 480px) {
    .cta-card-actions { flex-direction: column; }
}
