/* ====================================================
   ESTILOS EXCLUSIVOS PARA LA TIENDA PÚBLICA (E-Commerce)
   ==================================================== */
   
body { 
    background-color: #fdfdfd; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; 
    padding: 0; 
}

/* Cabecera Flotante Premium */
.public-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 15px 40px;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s ease;
}

.public-header.scrolled { 
    padding: 10px 40px; 
    background: rgba(255, 255, 255, 1); 
}

/* Sección Hero (Banner Principal) */
.hero-section {
    margin-top: 70px;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(to right, rgba(0, 163, 162, 0.9), rgba(31, 45, 61, 0.7)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
    position: relative; overflow: hidden;
}

.hero-content { max-width: 800px; padding: 20px; z-index: 2; }
.hero-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 15px; letter-spacing: -1px; line-height: 1.1; }
.hero-subtitle { font-size: 1.2rem; font-weight: 400; margin-bottom: 30px; opacity: 0.9; }

.hero-btn { 
    background: var(--color-super-naranja); 
    color: #111; padding: 15px 35px; border-radius: 50px; 
    font-size: 1.1rem; font-weight: bold; text-decoration: none; 
    display: inline-block; transition: 0.3s; 
    box-shadow: 0 10px 20px rgba(250, 169, 22, 0.4); border: none; cursor: pointer;
}
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(250, 169, 22, 0.6); }

/* Barra de Beneficios */
.benefits-bar {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
    background: white; padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; z-index: 10;
    margin-top: -30px; border-radius: 15px; max-width: 1000px; margin-left: auto; margin-right: auto;
}
.benefit-item { display: flex; align-items: center; gap: 15px; color: var(--text-principal); }
.benefit-icon { font-size: 2rem; color: var(--color-andina-cian); }
.benefit-text h4 { margin: 0; font-size: 1.1rem; font-weight: 800; }
.benefit-text p { margin: 0; font-size: 0.85rem; color: var(--text-secundario); }

/* Buscador integrado */
.store-container { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.store-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 15px; }
.search-modern { flex: 1; min-width: 300px; position: relative; }
.search-modern input { width: 100%; padding: 15px 20px 15px 50px; border-radius: 50px; border: 2px solid var(--borde-suave); font-size: 1rem; outline: none; transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.02); box-sizing: border-box;}
.search-modern input:focus { border-color: var(--color-andina-cian); box-shadow: 0 4px 20px rgba(0,163,162,0.1); }
.search-modern i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--text-secundario); font-size: 1.2rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .public-header { padding: 15px 20px; }
    .benefits-bar { margin: 20px; border-radius: 10px; flex-direction: column; gap: 20px; }
}
/* =========================================
   CLUSTERS DE PRODUCTOS (ESTILO DÍA)
   ========================================= */
.cluster-section { 
    margin-bottom: 40px; 
}
.cluster-header { 
    margin-bottom: 20px; 
    border-left: 5px solid var(--color-super-naranja); 
    padding-left: 15px; 
}
.cluster-header h3 { 
    margin: 0; 
    color: var(--color-andina-cian); 
    font-size: 1.6rem; 
    font-weight: 900; 
}
.cluster-header p { 
    margin: 5px 0 0 0; 
    color: var(--text-secundario); 
    font-size: 1rem; 
    font-weight: 500; 
}
/* Comportamiento del scroll táctil */
.cluster-slider { 
    display: flex; 
    overflow-x: auto; 
    gap: 15px; 
    padding-bottom: 15px; 
    scroll-snap-type: x mandatory; 
    -ms-overflow-style: none;  /* IE y Edge */
    scrollbar-width: none;  /* Firefox */
}
.cluster-slider::-webkit-scrollbar { 
    display: none; /* Chrome, Safari y Opera */
}
.cluster-slider .product-card { 
    min-width: 220px; 
    max-width: 220px; 
    scroll-snap-align: start; 
    flex-shrink: 0; 
}