@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    /* Asegurar que el body ocupe toda la altura en PWA */
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

/* Ajustes para PWA en móviles */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

html {
    height: -webkit-fill-available;
}

/* Colores corporativos Gomez Market */
:root {
    --gm-blue: #0047AB;
    --gm-yellow: #FFB81C;
    --gm-dark-blue: #003580;
    --gm-light-blue: #3399FF;
}

.bg-gm-blue { background-color: var(--gm-blue); }
.bg-gm-yellow { background-color: var(--gm-yellow); }
.bg-gm-dark-blue { background-color: var(--gm-dark-blue); }
.text-gm-blue { color: var(--gm-blue); }
.text-gm-yellow { color: var(--gm-yellow); }
.border-gm-yellow { border-color: var(--gm-yellow); }

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gm-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gm-yellow);
}

/* Animaciones optimizadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(2deg); 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(255, 184, 28, 0.7);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 10px rgba(255, 184, 28, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shine {
    0% { 
        left: -100%;
    }
    100% { 
        left: 200%;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Clases de animación */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 3s ease-in-out infinite;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-bounceIn {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Navbar mejorado */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(0, 71, 171, 0.98);
    box-shadow: 0 8px 32px rgba(0, 71, 171, 0.3);
    padding: 12px 24px;
}

.navbar.scrolled .gm-logo {
    width: 50px;
    height: 50px;
}

.navbar.scrolled .gm-logo::before,
.navbar.scrolled .gm-logo::after {
    content: none !important;
    display: none !important;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--gm-blue);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 30px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gm-yellow);
    padding-left: 10px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .desktop-menu {
        display: none;
    }
}

/* Logo Gomez Market mejorado - Ahora usa imagen */
.gm-logo {
    width: 60px;
    height: 60px;
    background: transparent !important;
    border: none !important;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 0;
}

/* Forzar que solo se muestre la imagen */
.gm-logo > *:not(img) {
    display: none !important;
}

.gm-logo img,
.gm-logo .logo-img {
    width: 100% !important;
    height: 100% !important;
    min-width: 60px !important;
    min-height: 60px !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 15px;
    position: relative;
    z-index: 10;
    display: block !important;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.gm-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 184, 28, 0.6);
}

.gm-logo::before {
    content: none !important;
    display: none !important;
    /* Logo ahora es imagen, no texto */
}

.gm-logo::after {
    content: none !important;
    display: none !important;
    /* Barra azul removida, logo es imagen */
}

/* Cart icon in logo - Deshabilitado, logo ahora es imagen */
.logo-shine {
    display: none;
}

@keyframes logoShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Hero Background mejorado */
.hero-bg {
    background: linear-gradient(135deg, var(--gm-blue) 0%, var(--gm-dark-blue) 50%, #001a4d 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gm-yellow) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gm-light-blue) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    opacity: 0.12;
    animation: float 10s ease-in-out infinite reverse;
}

/* Animated particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gm-yellow);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Cards mejoradas */
.strategy-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 28, 0.1), transparent);
    transition: left 0.5s ease;
}

.strategy-card:hover::before {
    left: 100%;
}

.strategy-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 71, 171, 0.25);
    border-color: var(--gm-yellow);
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.3) 0%, rgba(255, 184, 28, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.image-card:hover::before {
    opacity: 1;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover img {
    transform: scale(1.15);
}

/* Botones mejorados */
.btn-primary {
    background: linear-gradient(135deg, var(--gm-yellow) 0%, #FFD700 100%);
    color: var(--gm-blue);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 184, 28, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 184, 28, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid var(--gm-yellow);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gm-yellow);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--gm-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 28, 0.4);
}

/* Section Headers mejorados */
.section-header {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gm-yellow), var(--gm-blue));
    border-radius: 3px;
    animation: lineExpand 1s ease-out forwards;
}

@keyframes lineExpand {
    to { width: 100%; }
}

/* Shine Effect mejorado */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 4s infinite;
    z-index: 1;
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* Payment Badge mejorado */
.payment-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Construction Badge mejorado */
.construction-badge {
    background: linear-gradient(135deg, var(--gm-yellow) 0%, #FFD700 100%);
    color: var(--gm-blue);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2.5s infinite;
    box-shadow: 0 4px 15px rgba(255, 184, 28, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll Reveal mejorado */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Float Button mejorado */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    animation: pulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes ripple {
    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-header {
        font-size: 2.5rem;
    }
    
    .strategy-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-bg {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    .section-header {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .gm-logo {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        display: flex !important;
        visibility: visible !important;
    }
    
    .gm-logo::before {
        content: none !important;
        display: none !important;
    }
    
    .gm-logo::after {
        content: none !important;
        display: none !important;
    }
    
    .gm-logo img {
        width: 100% !important;
        height: 100% !important;
        min-width: 50px !important;
        min-height: 50px !important;
        object-fit: contain !important;
        object-position: center center !important;
        margin: 0 auto;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .strategy-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* Estilos para imagen Cashea */
.cashea-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.cashea-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.cashea-image-container img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cashea-image-container img {
        max-height: 150px;
    }
}

/* ============================================
   CASHEA POPUP MODAL
   ============================================ */
.cashea-popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none; /* Removido !important para permitir control desde JS */
    justify-content: center !important;
    align-items: center !important;
    z-index: 99999 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.cashea-popup-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.cashea-popup-content {
    background: white !important;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative !important;
    margin: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    transform: scale(0.7) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100000 !important;
}

.cashea-popup-overlay.active .cashea-popup-content {
    transform: scale(1) translateY(0) !important;
}

.cashea-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--gm-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

.cashea-popup-close:hover {
    background: var(--gm-yellow);
    color: var(--gm-blue);
    transform: rotate(90deg) scale(1.1);
}

.cashea-popup-body {
    padding: 40px 30px 30px;
}

.cashea-image-container-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    margin: 20px 0;
}

.cashea-popup-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.5s ease-out;
}

@media (max-width: 768px) {
    .cashea-popup-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 20px;
    }
    
    .cashea-popup-body {
        padding: 30px 20px 20px;
    }
    
    .cashea-popup-image {
        max-height: 300px;
    }
    
    .cashea-popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cashea-popup-body {
        padding: 25px 15px 15px;
    }
    
    .cashea-image-container-popup {
        padding: 15px;
    }
    
    .cashea-popup-image {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    /* Ajustes para PWA en móviles pequeños */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        padding-top: 70px; /* Compensar navbar fijo */
    }
    
    .navbar {
        padding: 12px 16px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .container {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .gm-logo {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
        display: flex !important;
        visibility: visible !important;
    }
    
    .gm-logo img {
        width: 100% !important;
        height: 100% !important;
        min-width: 45px !important;
        min-height: 45px !important;
        object-fit: contain !important;
        object-position: center center !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 100%;
    }
    
    .construction-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    /* Asegurar que las imágenes se ajusten correctamente */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ajustes para secciones en móvil */
    section {
        padding: 40px 16px !important;
    }
}

/* Print Styles */
@media print {
    .navbar, .whatsapp-float, .hamburger {
        display: none;
    }
}

/* ============================================
   PUSH NOTIFICATIONS UI
   ============================================ */
.push-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 16px 20px;
    z-index: 10000;
    transform: translateX(450px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 4px solid var(--gm-blue);
}

.push-notification.show {
    transform: translateX(0);
}

.push-notification-content {
    flex: 1;
}

.push-notification-content strong {
    display: block;
    color: var(--gm-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.push-notification-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.push-notification-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.push-notification-close:hover {
    color: var(--gm-blue);
}

.push-notification-success {
    border-left-color: #25D366;
}

.push-notification-success .push-notification-content strong {
    color: #25D366;
}

.push-notification-warning {
    border-left-color: var(--gm-yellow);
}

.push-notification-warning .push-notification-content strong {
    color: var(--gm-yellow);
}

.push-notification-error {
    border-left-color: #e74c3c;
}

.push-notification-error .push-notification-content strong {
    color: #e74c3c;
}

.push-notification-info {
    border-left-color: var(--gm-blue);
}

@media (max-width: 480px) {
    .push-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-150px);
    }
    
    .push-notification.show {
        transform: translateY(0);
    }
}

