/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 13 2026 | 18:10:42 */
/* Estilo principal del Banner FruityWoof */
#fruitywoof-shipping-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999; /* Asegura que esté por encima de cualquier menú */
    text-align: center;
    padding: 10px 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Usa la fuente nativa del usuario para máxima legibilidad */
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: background-color 0.4s ease, color 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

#fruitywoof-shipping-banner p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3;
}

/* Evita que el banner tape el logo o el menú de tu tienda empujando el body hacia abajo */
body {
    padding-top: 40px !important; 
}

/* Optimización móvil estricta (Donde ocurre el 80% de tus ventas) */
@media (max-width: 768px) {
    #fruitywoof-shipping-banner {
        font-size: 13px; /* Texto un poco más pequeño para que quepa en una sola línea */
        padding: 8px 10px;
    }
    body {
        padding-top: 35px !important;
    }
}