/* ======================================================
   1. VARIABLES Y CONFIGURACIÓN GENERAL
   ====================================================== */
:root {
    --primary: #E880A4;       /* Rosa principal */
    --secondary: #B880E8;     /* Morado suave */
    --accent: #FF9EB5;        /* Rosa claro */
    --bg-color: #FAFAFA;
    --text-dark: #333333;
    --card-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


/* --- PANTALLA DE CARGA (PRELOADER) --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999; /* ¡Encima de todo! */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* El círculo giratorio */
.custom-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Gris claro */
    border-top: 5px solid #E880A4; /* Tu Rosado de Marca */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Clase para ocultarlo suavemente */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}


html {
    scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    padding-bottom: 2rem;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }

/* ======================================================
   2. NAVBAR Y NAVEGACIÓN
   ====================================================== */
.navbar {
    padding: 0.8rem 1rem;
}

/* Enlaces de Escritorio (PC) */
.desktop-link {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #444 !important;
    text-transform: uppercase;
    padding: 0 15px !important;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.desktop-link:hover {
    color: var(--primary) !important;
}

.dropdown-item:hover {
    background-color: #fdf0f5;
    color: var(--primary);
}

/* --- LOGO RESPONSIVO INTELIGENTE --- */
/* MODO CELULAR (Centrado Absoluto) */
.logo-smart-position {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
}

.logo-img-responsive {
    height: 35px; 
    width: auto;
    object-fit: contain;
}

/* Ajuste para celulares muy pequeños */
@media (max-width: 380px) {
    .logo-img-responsive { height: 30px; }
    .fa-bars, .fa-shopping-bag { font-size: 1.2rem !important; }
}

/* MODO PC (Alineado a la Izquierda) */
@media (min-width: 992px) {
    .logo-smart-position {
        position: static;
        transform: none;
        margin-right: auto;
    }
    .logo-img-responsive {
        height: 40px; 
        transition: transform 0.3s ease;
    }
    .logo-img-responsive:hover {
        transform: scale(1.05);
    }
}

/* Icono del Carrito */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
}

.cart-count {
    position: absolute;
    top: -5px; right: -8px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-weight: bold;
}

/* --- MENÚ LATERAL (OFFCANVAS - MÓVIL) --- */
.nav-tabs .nav-link {
    background-color: #f8f9fa;
    color: #666;
    border: none;
    font-size: 0.85rem;
    padding: 15px 0;
}
.nav-tabs .nav-link.active {
    background-color: white;
    color: #333;
    border-bottom: 3px solid var(--primary);
}
.menu-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.2s;
}
.menu-link:hover {
    color: var(--primary);
    padding-left: 5px;
}
.text-warning { color: #d4af37 !important; }

/* ======================================================
   3. HERO (CARRUSEL PRINCIPAL)
   ====================================================== */
.hero-img {
    height: 60vh;
    min-height: 450px;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-caption {
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    padding-bottom: 3rem;
}
.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    margin-bottom: 1rem;
}
.carousel-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.cta-btn-bs {
    background-color: var(--primary) !important;
    border: none !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    margin-top: 15px;
    transition: transform 0.3s ease !important;
    color: white !important;
}
.cta-btn-bs:hover {
    background-color: var(--secondary) !important;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-img { height: 50vh; }
    .carousel-caption h1 { font-size: 2rem; }
}

/* ======================================================
   4. CATÁLOGO Y PRODUCTOS
   ====================================================== */
#catalogo {
    margin-top: 60px;
    scroll-margin-top: 100px;
}

.container { max-width: 1200px; margin: 0 auto; }

/* Grid de Productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

@media(min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

/* Tarjeta de Producto */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); }

/* Galería Mini en Tarjeta */
.image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.product-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.slider-arrows {
    position: absolute;
    top: 50%; width: 100%;
    display: flex; justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    pointer-events: none;
}
.arrow-btn {
    background: rgba(255, 255, 255, 0.7);
    border: none; color: #333;
    width: 30px; height: 30px;
    border-radius: 50%; cursor: pointer;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: auto; transition: 0.3s;
}
.arrow-btn:hover {
    background: var(--primary);
    color: white;
}
.image-counter {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2px 8px;
    border-radius: 10px; font-size: 12px;
}

/* Info del Producto */
.product-info {
    padding: 1rem;
    display: flex; flex-direction: column;
    flex-grow: 1; justify-content: space-between;
}
.product-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #444;
}
.product-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}
.add-btn {
    margin-top: 10px;
    width: 100%; padding: 8px;
    border: 1px solid var(--primary);
    background: white;
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}
.add-btn:hover {
    background: var(--primary);
    color: white;
}

/* --- REGLA PARA FORZAR 2 COLUMNAS EN CELULAR --- */
@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.4rem;
    }

    .product-card .image-container {
        height: auto;
        aspect-ratio: 1 / 1; /* Cuadrado perfecto */
    }

    .product-info { padding: 0.6rem; }

    .product-title {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-price { font-size: 0.95rem; }

    .add-btn {
        padding: 5px;
        font-size: 0.85rem;
        margin-top: 5px;
    }
    
    .arrow-btn { width: 24px; height: 24px; font-size: 14px; }
    .image-counter { font-size: 10px; padding: 2px 5px; }
}

/* ======================================================
   5. VISTA DE DETALLE DE PRODUCTO
   ====================================================== */
.btn-back-suahs {
    background: transparent;
    border: 2px solid #E880A4;
    color: #E880A4;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.btn-back-suahs:hover {
    background: #E880A4;
    color: white;
    transform: translateX(-5px);
}

.detail-image-wrapper {
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(232, 128, 164, 0.15);
    text-align: center;
}
.detail-image-wrapper img {
    border-radius: 15px;
    max-height: 450px;
    object-fit: cover;
    width: 100%;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 2.5rem;
    color: #333; margin-bottom: 10px;
}
.detail-price {
    font-family: 'Poppins', sans-serif;
    color: #E880A4; font-weight: 600;
    font-size: 1.8rem; margin-bottom: 20px;
}
.detail-description {
    color: #666; line-height: 1.6; margin-bottom: 30px;
}

.detail-actions {
    display: flex; gap: 15px; align-items: center;
}
.btn-suahs-primary {
    background: linear-gradient(135deg, #E880A4 0%, #B880E8 100%);
    color: white; border: none;
    padding: 12px 30px; border-radius: 50px;
    font-size: 1.1rem; font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(232, 128, 164, 0.4);
    flex-grow: 1;
}
.btn-suahs-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 128, 164, 0.6);
}
.btn-suahs-whatsapp {
    background: #25D366; color: white;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
.btn-suahs-whatsapp:hover {
    transform: scale(1.1); color: white;
}
.detail-features { font-size: 0.9rem; color: #888; }
.feature-item { margin-bottom: 5px; }

@media (max-width: 768px) {
    .detail-title { font-size: 1.8rem; }
}

/* ======================================================
   6. GALERÍA Y ZOOM (LIGHTBOX)
   ====================================================== */
.thumbnail-img {
    width: 70px; height: 70px;
    object-fit: cover; border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent; opacity: 0.6;
    transition: all 0.3s ease;
}
.thumbnail-img:hover {
    opacity: 1; transform: translateY(-2px);
}
.thumbnail-img.active {
    opacity: 1; border-color: #E880A4;
    box-shadow: 0 4px 10px rgba(232, 128, 164, 0.3);
}

.lightbox-overlay {
    display: none; position: fixed;
    z-index: 3000; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center; align-items: center;
    animation: fadeIn 0.3s;
}
.lightbox-content {
    max-width: 90%; max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s;
}
.close-lightbox {
    position: absolute; top: 20px; right: 35px;
    color: #fff; font-size: 40px; font-weight: bold;
    cursor: pointer; transition: 0.3s;
}
.close-lightbox:hover { color: #E880A4; }

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ======================================================
   7. CARRITO DE COMPRAS
   ====================================================== */
.cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(3px);
    z-index: 1040; display: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.active { display: block; }

/* Busca esto en tu style.css y actualízalo */
.cart-modal {
    position: fixed; 
    top: 0; 
    right: -100%;
    width: 90%; 
    max-width: 400px; 
    
    /* 🔴 CORRECCIÓN IMPORTANTE PARA CELULARES */
    height: 100vh;       /* Fallback para navegadores antiguos */
    height: 100dvh;      /* Altura dinámica real (descuenta las barras del navegador) */
    
    background: #fff; 
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex; 
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
}
.cart-modal.active { right: 0; }

.cart-header {
    padding: 1.5rem; border-bottom: 1px solid #f0f0f0;
    display: flex; justify-content: space-between; align-items: center;
    background: #fff;
}
.cart-header h3 { font-size: 1.4rem; color: #333; margin: 0; font-family: 'Playfair Display', serif; }

.cart-items {
    flex: 1; overflow-y: auto; padding: 1.5rem;
    background-color: #fafafa;
}

.cart-item {
    display: flex; align-items: center; background: white;
    padding: 10px; border-radius: 12px; margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.2s; border: 1px solid #f5f5f5;
}
.cart-item:hover { transform: translateY(-2px); }

.cart-item-img {
    width: 65px; height: 65px; border-radius: 8px;
    object-fit: cover; border: 1px solid #eee; margin-right: 15px;
}

.cart-item-info {
    flex-grow: 1; display: flex; flex-direction: column; justify-content: center;
}
.cart-item-name {
    font-size: 0.95rem; font-weight: 600; color: #444; margin-bottom: 4px; line-height: 1.2;
}
.cart-item-price {
    font-size: 0.9rem; color: #E880A4; font-weight: 700;
}

.cart-remove-btn {
    background: none; border: none; color: #bbb;
    cursor: pointer; font-size: 1.1rem; padding: 8px;
    transition: color 0.3s;
}
.cart-remove-btn:hover { color: #ff4d4d; }

/* --- PIE DEL CARRITO (Más compacto) --- */
.cart-footer {
    padding: 15px 20px; /* Reducimos el espacio de relleno */
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.05); /* Sombra suave hacia arriba */
    z-index: 10;
}

/* --- BOTÓN DE WHATSAPP (Estilo Píldora Compacto) --- */
.checkout-btn {
    width: 100%;
    padding: 12px 15px; /* Menos alto, más elegante */
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px; /* Bordes totalmente redondos */
    font-size: 0.9rem;   /* Letra más pequeña para que entre en 1 línea */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Espacio entre el ícono y el texto */
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); /* Sombra verde bonita */
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.checkout-btn:active {
    transform: scale(0.98);
}

.checkout-btn i {
    font-size: 1.2rem; /* Tamaño del ícono de WhatsApp */
}

/* ======================================================
   8. NOTIFICACIÓN EMERGENTE (TOAST)
   ====================================================== */
.suahs-toast {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: white; padding: 15px 25px; border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 15px;
    z-index: 2000; opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid #E880A4; min-width: 300px;
}
.suahs-toast.show {
    transform: translateX(-50%) translateY(0); opacity: 1;
}

.toast-icon {
    background: #E880A4; color: white;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
}
.toast-content { display: flex; flex-direction: column; }
.toast-title { font-weight: 700; color: #333; font-size: 0.9rem; }
.toast-message { font-size: 0.85rem; color: #E880A4; }

@media (max-width: 768px) {
    .suahs-toast { width: 90%; bottom: 20px; }
}

/* ======================================================
   9. FOOTER
   ====================================================== */
footer {
    margin-top: 5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.footer-link:hover {
    text-decoration: underline !important; opacity: 0.9;
    color: #ffe6f2 !important;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.social-btn {
    display: inline-flex; justify-content: center; align-items: center;
    width: 35px; height: 35px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white; border-radius: 50%; text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.social-btn:hover {
    background-color: white; color: #E880A4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* --- ESTILOS DEL FORMULARIO DE ENVÍO --- */
.shipping-section {
    background-color: #fcfcfc;
}

.form-check-input:checked {
    background-color: #E880A4;
    border-color: #E880A4;
}

.form-select:focus, .form-control:focus {
    border-color: #E880A4;
    box-shadow: 0 0 0 0.25rem rgba(232, 128, 164, 0.25);
}
/* --- NUEVA CLASE: EL ENVOLTORIO QUE HACE SCROLL --- */
.cart-scroll-wrapper {
    flex: 1;            /* Ocupa todo el espacio disponible en el medio */
    overflow-y: auto;   /* ¡AQUÍ ESTÁ LA MAGIA! Permite bajar y subir */
    background: #fafafa;
}

/* --- ACTUALIZAMOS .cart-items PARA QUE NO PELEE --- */
.cart-items {
    /* Quitamos flex: 1 y overflow antiguo porque ahora manda el wrapper */
    flex: none;       
    overflow: visible; 
    padding: 1rem;
    padding-bottom: 0; /* Quitamos espacio abajo para que se una con el mapa */
}
/* --- BLOQUEO DE SCROLL (Para cuando el carrito está abierto) --- */
body.no-scroll {
    overflow: hidden !important;
    height: 100vh; /* Fija la altura a la pantalla visible */
    touch-action: none; /* Ayuda extra para móviles */
}
/* ======================================================
   10. PRODUCTOS RELACIONADOS (CARRUSEL HORIZONTAL)
   ====================================================== */
.related-scroll-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px; /* Espacio para el scrollbar */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Suavidad en iPhone */
}

/* Barra de scroll personalizada (delgada y rosada) */
.related-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}
.related-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.related-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #E880A4; 
    border-radius: 10px;
}

/* Tarjeta mini para relacionados */
.related-card {
    min-width: 150px; /* Ancho fijo para móvil */
    max-width: 150px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
    flex-shrink: 0; /* Evita que se aplasten */
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(232, 128, 164, 0.2);
}

.related-img {
    width: 100%;
    height: 150px; /* Imagen cuadrada */
    object-fit: cover;
}

.related-info {
    padding: 10px;
    text-align: center;
}

.related-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Pone ... si es muy largo */
    margin-bottom: 4px;
}

.related-price {
    font-size: 0.9rem;
    color: #E880A4;
    font-weight: 700;
}

/* Ajuste para PC */
@media (min-width: 768px) {
    .related-card {
        min-width: 180px;
        max-width: 180px;
    }
    .related-img {
        height: 180px;
    }
}
/* --- CONTENEDOR RELATIVO PARA POSICIONAR FLECHAS --- */
.related-wrapper-relative {
    position: relative;
    display: flex;
    align-items: center;
}

/* --- ESTILO DE LOS BOTONES DE DESPLAZAMIENTO --- */
.related-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    color: #E880A4;
    transition: all 0.3s ease;
    
    /* Centrar el ícono */
    display: flex;
    justify-content: center;
    align-items: center;
}

.related-scroll-btn:hover {
    background: #E880A4;
    color: white;
    box-shadow: 0 6px 15px rgba(232, 128, 164, 0.4);
}

.left-btn { left: -20px; }
.right-btn { right: -20px; }

/* --- OCULTAR FLECHAS EN CELULAR (Mejor UX táctil) --- */
@media (max-width: 768px) {
    .related-scroll-btn {
        display: none;
    }
}
/* --- ANIMACIONES DEL CARRUSEL --- */
.animate-fade-down {
    animation: fadeDown 1s ease-out;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejora de textos en celular */
@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 2.2rem !important; /* Título más grande en móvil */
    }
    .carousel-caption .lead {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .badge {
        font-size: 0.85rem !important; /* Etiqueta legible */
    }
}
/* ======================================================
   11. ESTILOS DEL BUSCADOR (CORREGIDO) ✅
   ====================================================== */

/* Arreglo para la cuadrícula de resultados */
#grid {
    display: grid;
    /* En celular: SIEMPRE 2 columnas */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
}

@media (min-width: 768px) {
    #grid {
        /* En PC: 3 o 4 columnas */
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

/* Clase mágica para que el título ocupe todo el ancho de la grilla */
.full-width-span {
    grid-column: 1 / -1; /* Esto le dice: "ocupa desde la columna 1 hasta el final" */
    width: 100%;
    text-align: center;
}

/* Título de resultados */
.search-results-header {
    font-family: 'Playfair Display', serif;
    color: #E880A4;
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Ícono de "No Encontrado" (Con el fix de la advertencia) */
.no-results-icon i {
    font-size: 5rem;
    background: linear-gradient(135deg, #E880A4, #B880E8);
    background-clip: text;          /* Estándar (Quita la advertencia) */
    -webkit-background-clip: text;  /* Para Chrome/Safari */
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

/* Contenedor de "No encontrado" */
.no-results-container {
    padding: 40px 20px;
    background-color: #fffafa;
    border-radius: 15px;
    border: 2px dashed #f0d0e0;
    margin-top: 20px;
    /* También debe ocupar todo el ancho */
    grid-column: 1 / -1; 
}

/* Botón secundario */
.btn-suahs-secondary {
    background: #fff;
    color: #B880E8;
    border: 2px solid #B880E8;
    border-radius: 25px;
    padding: 8px 25px;
    font-weight: 600;
}