:root {
    --bg-dark: #050a05;
    --card-bg: #0d120d;
    --text-white: #e8eee8;
    --text-gray: #8c998c;
    --green-price: #4ade80;
}
::selection {
    background-color: var(--brand-color);
    color: #ffffff;
    text-shadow: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}
body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding-bottom: 90px;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}
.view-section {
    display: none;
    animation: fadeView 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.view-section.active {
    display: block;
}
@keyframes fadeView {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: linear-gradient(180deg, var(--brand-glow) 0%, var(--bg-dark) 100%);
    border-radius: 0 0 25px 25px;
    border: 1px solid var(--brand-color);
    border-top: none;
    margin: 0 10px 18px 10px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
}
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.icon-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), color 0.2s;
    will-change: transform;
}
.icon-btn:active {
    transform: scale(0.85);
    color: var(--brand-color);
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.brand-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-color);
}
.brand-logo span {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px var(--brand-color);
}
.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}
.cart-toggle-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--brand-color);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
    box-shadow: 0 0 8px var(--brand-glow);
}
.search-container {
    padding: 0 15px;
    margin-bottom: 20px;
}
.search-box {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    border: 1px solid #1a261a;
    border-radius: 20px;
    padding: 12px 20px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.search-box:focus-within {
    border-color: var(--brand-color);
    box-shadow: 0 0 15px var(--brand-glow);
}
.search-box i {
    color: var(--text-gray);
    margin-right: 12px;
}
.search-box:focus-within i {
    color: var(--brand-color);
}
.search-box input {
    background: none;
    border: none;
    color: #ffffff;
    width: 100%;
    outline: none;
    font-size: 14px;
}
.banners-container {
    position: relative;
    margin: 0 15px 20px 15px;
    border-radius: 14px;
    border: 1px solid var(--brand-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    overflow: hidden;
    transform: translateZ(0);
}
.banners-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    will-change: scroll-position;
}
.banners-track::-webkit-scrollbar {
    display: none;
}
.banner-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    position: relative;
    aspect-ratio: 16/7;
    background: #000000;
}
.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    pointer-events: none;
}
#bannerTextWrapper {
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}
.banner-note {
    color: var(--brand-color);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0,0,0,1);
    display: block;
}
.banner-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    padding-right: 50px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}
.banners-dots {
    position: absolute;
    bottom: 12px;
    right: 15px;
    display: flex;
    gap: 6px;
    pointer-events: none;
}
.b-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.b-dot.active {
    background: var(--brand-color);
    width: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--brand-color);
}
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 15px;
    margin-bottom: 15px;
}
.plat-btn {
    background-color: var(--card-bg);
    border: 1px solid #1a261a;
    color: #ffffff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.plat-btn:active {
    transform: scale(0.96);
}
.plat-btn.active {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    box-shadow: 0 0 12px var(--brand-glow);
}
.sub-consoles {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    margin-bottom: 15px;
}
.sub-c-btn {
    flex: 1;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid #1a261a;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    background-color: #0b110b;
    color: var(--text-gray);
    transition: all 0.3s ease;
}
.sub-c-btn.active {
    background-color: #e8eee8;
    color: #050a05;
    border-color: #e8eee8;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}
.info-note {
    background-color: rgba(46,168,75,0.06);
    margin: 0 15px 15px;
    padding: 12px 15px;
    border-left: 3px solid var(--brand-color);
    border-radius: 8px;
    font-size: 12px;
    color: #9aa69a;
    line-height: 1.5;
    animation: fadeView 0.4s ease;
}
.categories-scroll {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 0 15px 15px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
}
.categories-scroll::-webkit-scrollbar {
    display: none;
}
.cat-chip {
    padding: 8px 18px;
    background: var(--card-bg);
    border: 1px solid #1a261a;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}
.cat-chip:active {
    transform: scale(0.92);
}
.cat-chip.active {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #ffffff;
    box-shadow: 0 0 10px var(--brand-glow);
}
.filter-container {
    padding: 0 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}
.sort-select {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
}
.sort-select option {
    background-color: var(--bg-dark);
    color: #ffffff;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 15px;
}
@media (min-width: 600px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}
.game-card {
    background-color: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #162016;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    will-change: transform;
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px var(--brand-glow);
    border-color: var(--brand-color);
}
.game-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #000;
}
.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.game-card:hover .game-image img {
    transform: scale(1.05);
}
.game-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.game-title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}
.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
    font-size: 12px;
    color: var(--text-gray);
}
.price-green {
    color: var(--green-price);
    font-weight: 900;
    text-shadow: 0 0 6px rgba(74, 222, 128, 0.3);
}
.btn-add-cart {
    background-color: transparent;
    border: 1px solid #2a3d2a;
    color: #ffffff;
    padding: 8px 0;
    border-radius: 8px;
    width: 100%;
    margin-top: auto;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-add-cart:active {
    transform: scale(0.96);
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    box-shadow: 0 0 12px var(--brand-glow);
}
.retro-divider {
    padding: 25px 15px 10px;
    margin-top: 15px;
    border-top: 1px dashed #1a261a;
}
.retro-divider h3 {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 900;
    margin-bottom: 4px;
}
.retro-divider p {
    font-size: 11px;
    color: #5b6e5b;
}
.refs-faq-section {
    padding: 15px;
    margin-bottom: 25px;
}
.section-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--text-white);
    text-align: center;
    text-shadow: 0 0 10px var(--brand-glow);
}
.section-title i {
    color: var(--brand-color);
    margin-right: 8px;
}
.refs-carousel {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    transform: translateZ(0);
}
.refs-carousel::-webkit-scrollbar {
    display: none;
}
.ref-img {
    height: 220px;
    width: auto;
    aspect-ratio: 9/16;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #1a261a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    flex-shrink: 0;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid #1a261a;
    transition: border-color 0.3s;
}
.faq-item:active {
    border-color: var(--brand-color);
}
.faq-question {
    padding: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    transition: color 0.3s;
}
.faq-question:active {
    color: var(--brand-color);
}
.faq-answer {
    padding: 0 16px 16px 16px;
    font-size: 13px;
    color: var(--text-gray);
    display: none;
    line-height: 1.6;
    animation: fadeView 0.3s ease;
}
.discrete-footer {
    text-align: center;
    padding: 30px 15px;
    font-size: 11px;
    color: #334433;
    font-weight: 600;
    margin-top: 25px;
}
.discrete-footer a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}
.discrete-footer a:active {
    color: var(--brand-color);
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateZ(0);
}
.overlay.show {
    opacity: 1;
}
.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 1002;
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-right: 1px solid #1a261a;
    box-shadow: 4px 0 20px rgba(0,0,0,0.8);
    transform: translateZ(0);
}
.sidebar.active {
    left: 0;
}
.sidebar-header {
    display: flex;
    align-items: center;
    padding: 22px;
    border-bottom: 1px solid #1a261a;
    background: var(--card-bg);
}
.sidebar-header img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 14px;
    border: 2px solid var(--brand-color);
}
.sidebar-header h2 {
    font-size: 16px;
    font-weight: 900;
    flex-grow: 1;
    text-shadow: 0 0 8px var(--brand-glow);
}
.close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s;
}
.close-btn:active {
    transform: scale(0.8);
    color: var(--brand-color);
}
.sidebar-menu {
    list-style: none;
    padding: 15px 0;
}
.sidebar-menu li a {
    display: block;
    padding: 16px 22px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.3s;
}
.sidebar-menu li a:active {
    background: rgba(74,222,128,0.1);
    color: var(--brand-color);
}
.sidebar-menu li a i {
    font-size: 18px;
    width: 22px;
    text-align: center;
    color: var(--text-gray);
}
.admin-link {
    margin-top: 20px;
    border-top: 1px solid #1a261a;
    padding-top: 12px;
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid #1a261a;
    box-shadow: -5px 0 25px rgba(0,0,0,0.9);
    transform: translateZ(0);
}
.cart-sidebar.active {
    right: 0;
}
.cart-header {
    display: flex;
    align-items: center;
    padding: 22px;
    border-bottom: 1px solid #1a261a;
    background: var(--card-bg);
}
.cart-header h2 {
    font-size: 18px;
    font-weight: 900;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 8px var(--brand-glow);
}
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    -webkit-overflow-scrolling: touch;
}
.cart-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #1a261a;
    animation: fadeView 0.3s ease;
}
.cart-item-info h4 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}
.cart-item-format {
    font-size: 10px;
    font-weight: 900;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cart-item-price {
    font-size: 16px;
    font-weight: 900;
    color: var(--green-price);
    margin-top: 6px;
}
.btn-delete {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 20px;
    cursor: pointer;
    font-weight: 800;
    padding: 10px;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-delete:active {
    transform: scale(0.8);
}
.cart-footer {
    padding: 22px;
    border-top: 1px solid #1a261a;
    background: var(--card-bg);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--text-gray);
}
.checkout-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
}
.checkout-btn:active {
    transform: scale(0.97);
}
.btn-oxxo {
    background-color: #25d366;
    color: #050a05;
    box-shadow: 0 4px 15px rgba(37,211,102,0.2);
}
.btn-mp {
    background-color: #009ee3;
    box-shadow: 0 4px 15px rgba(0,158,227,0.2);
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transform: translateZ(0);
}
.format-modal {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 360px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
    border: 1px solid var(--brand-color);
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
    pointer-events: auto;
}
.format-modal.show {
    opacity: 1;
    transform: scale(1);
}
.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    border: 1px solid #2a3d2a;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 15px;
    z-index: 10;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: auto;
}
.close-modal:active {
    transform: scale(0.85);
    background: var(--brand-color);
    border-color: var(--brand-color);
}
.modal-header-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid var(--brand-color);
}
.modal-body-content {
    padding: 22px;
}
.modal-body-content h2 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 0 6px var(--brand-glow);
}
.subtitle-modal {
    color: var(--text-gray);
    font-size: 12px;
    margin-bottom: 18px;
    line-height: 1.5;
}
.elige-formato {
    color: var(--brand-color);
    font-size: 11px;
    margin-bottom: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}
.format-option {
    background-color: #080c08;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #162016;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: auto;
}
.format-option.selected {
    border-color: var(--brand-color);
    background-color: rgba(74,222,128,0.12);
    box-shadow: inset 0 0 15px var(--brand-glow);
}
.format-text h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 3px;
}
.format-text p {
    font-size: 11px;
    color: var(--text-gray);
}
.format-price {
    font-size: 17px;
    color: var(--green-price);
    font-weight: 900;
}
.btn-add-modal {
    width: 100%;
    padding: 15px;
    background: var(--brand-color);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px var(--brand-glow);
    position: relative;
    z-index: 5;
    pointer-events: auto;
}
.btn-add-modal:active {
    transform: scale(0.96);
}
.fab-cart {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background-color: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    z-index: 990;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateZ(0);
}
.fab-cart:active {
    transform: scale(0.9);
}
.fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}
.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(13,18,13,0.95);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid var(--brand-color);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(0,0,0,0.9);
    white-space: nowrap;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.wa-notification {
    position: fixed;
    bottom: 30px;
    left: -120%;
    background: var(--card-bg);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 5px 5px 25px rgba(0,0,0,0.9);
    z-index: 1000;
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 85%;
    cursor: pointer;
    border-left: 4px solid var(--brand-color);
    border-top: 1px solid #162016;
    border-bottom: 1px solid #162016;
    border-right: 1px solid #162016;
}
.wa-notification.show {
    left: 0;
}
.wa-notification img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-color);
}
.wa-name {
    font-weight: 900;
    font-size: 10px;
    color: var(--brand-color);
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wa-text p {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}
