/* Contenedor principal flotante */
.stayu-promoter-banner {
    position: fixed;
    bottom: -100px; /* Oculto inicialmente para animarlo */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: bottom 0.4s ease-in-out;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.stayu-promoter-banner.show {
    bottom: 0;
}

/* Información izquierda (Texto) */
.stayu-promoter-info {
    display: flex;
    flex-direction: column;
    max-width: 60%;
}

.stayu-promoter-info strong {
    color: #334155;
    font-size: 16px;
    margin-bottom: 4px;
}

.stayu-promoter-info span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.2;
}

/* Botones derecha */
.stayu-promoter-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botón de Instalar */
.stayu-btn-install {
    background-color: #FF385C; /* Rojo Stayu */
    color: #ffffff !important;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(255, 56, 92, 0.25);
}

/* Botón de cerrar (X) */
.stayu-btn-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Instrucciones iOS */
.stayu-ios-instructions {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8fafc;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    color: #475569;
}

.stayu-icon-share {
    font-size: 18px;
    color: #007AFF; /* Azul nativo de iOS */
}