/* ===========================================
   BASE TEMPLATE - Estilos Inline Separados
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap');

body {
    background: transparent;
    color: #f5f5f5;
    font-family: 'Montserrat', Arial, sans-serif;
}

.container {
    background: #181818cc;
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 #000a;
    padding: 2.5rem 2rem 2rem 2rem;
    margin: 40px auto;
}

.fade-in {
    animation: fadeIn 1.2s cubic-bezier(.4,2,.3,1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}

/* Navbar logo */
.navbar-brand img {
    filter: drop-shadow(0 0 16px #f5f5f5);
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}

/* Cart count badge */
#cartCount {
    font-size: 0.85em;
}

/* User badges */
.badge-glow-white {
    font-size: 0.85em;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Floating notification button */
.floating-notification-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: linear-gradient(90deg, #fff, #eaeaea);
    color: #23272f;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    box-shadow: 0 0 16px #fff8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-notification-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 24px #fff;
}