/** Shopify CDN: Minification failed

Line 97:4 All "@import" rules must come first

**/
#spn-container {
    position: fixed;
    top: 70px;
    left: 20px;
    z-index: 9999;
    pointer-events: none;
    }

    .spn-popup {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    padding: 10px 12px;
    max-width: 240px;
    font-family: Arial, Helvetica, sans-serif;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: auto;
    }

    .spn-popup.spn-show {
    opacity: 1;
    transform: translateY(0);
    }

    .spn-avatar {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2f6fed;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .spn-body {
    flex: 1;
    min-width: 0;
    }

    .spn-name {
    margin: 0;
    font-size: 12px;
    color: #1a1a1a;
    font-weight: bold;
    line-height: 1.3;
    }

    .spn-text {
    margin: 2px 0 0;
    font-size: 12px;
    color: #444444;
    line-height: 1.3;
    }

    .spn-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #999999;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 2px;
    }

    @media (max-width: 480px) {
    .spn-popup {
    max-width: 200px;
    padding: 8px 10px;
    }
    .spn-avatar {
    width: 26px;
    height: 26px;
    font-size: 11px;
    }
    .spn-name, .spn-text {
    font-size: 11px;
    }
    }

    /* Fuente premium */
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

    /* Encabezado con el nombre de la tienda — ESTÁTICO, no fijo */
    .premium-store-header {
    width: 100%;
    text-align: center;
    padding: 14px 0 12px;
    background: #0d0d0d;
    }

    .premium-store-header__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #d4af37;
    margin: 0;
    text-transform: uppercase;
    }

    .premium-store-header__line {
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 8px auto 0;
    }

    /* Barra de anuncios: fija solo con la clase .spn-ticker-fixed (controlada por JS al hacer scroll) */
    .horizontal-ticker.spn-ticker-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    }
