/** Shopify CDN: Minification failed

Line 10:0 Unexpected "{"
Line 10:1 Expected identifier but found "%"
Line 11:31 Unexpected "-"
Line 11:45 Unterminated string token
Line 14:1 Expected identifier but found "%"

**/
{% comment %} 
  DISEÑO FINAL HARPER & NEYER - FATHER'S DAY
  - Desktop: Centrado estándar (Logo arriba, Botón abajo)
  - Mobile: Jerarquía invertida (Botón al centro vertical, Logo debajo)
{% endcomment %}

/* ==========================================
   1. ESTILOS COMPARTIDOS Y DESKTOP
   ========================================== */

.button-wrapper {
    margin-top: 40px !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.button-wrapper .multi-column__link {
    display: inline-block !important;
    background-color: transparent !important;
    color: #ffffff !important;
    padding: 14px 45px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.25em !important;
    text-decoration: none !important;
    border: 1.5px solid #ffffff !important;
    border-radius: 12px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(3px);
    cursor: pointer;
}

.button-wrapper .multi-column__link:hover {
    background-color: #2d3b44 !important;
    border-color: #2d3b44 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   2. CONFIGURACIÓN ESPECIAL PARA MÓVIL
   ========================================== */

@media screen and (max-width: 740px) {
    /* Seleccionamos el contenedor que guarda el logo y el botón */
    /* En el tema Focal suele ser .multi-column__item o .slideshow__content */
    .multi-column__item, .slideshow__text-wrapper {
        display: flex !important;
        flex-direction: column-reverse !important; /* INVIERTE EL ORDEN: Botón arriba, Logo abajo */
        justify-content: center !important; /* Centra el bloque verticalmente en la imagen */
        align-items: center !important;
        min-height: 450px !important; /* Asegura espacio suficiente para el centrado */
    }

    /* El botón ahora es el elemento superior, le damos margen inferior para separar del logo */
    .button-wrapper {
        margin-top: 0 !important;
        margin-bottom: 30px !important; /* Espacio entre botón y el logo que ahora está debajo */
        order: 1 !important;
    }

    /* Ajuste de tamaño de botón en móvil */
    .button-wrapper .multi-column__link {
        padding: 12px 35px !important;
        font-size: 11px !important;
        letter-spacing: 0.2em !important;
        min-width: 220px;
    }

    /* Si el logo es una imagen, forzamos que sea el segundo elemento */
    .multi-column__item img, .multi-column__item .image-wrapper {
        order: 2 !important;
        margin-top: 10px !important;
        max-width: 80% !important; /* Ajustamos el logo para que no sature el pie */
    }
}