:root {
    --celeste: #b2e2f2;
    --rosa: #f9c5d5;
    --marron: #8d6e63;
    --crema: #fff5f8;
    --texto: #4e342e;
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   
    background: linear-gradient(135deg, var(--rosa), var(--crema), var(--rosa));

    color: var(--texto);
    margin: 0;
}

header {
    background-image: url('img/fondo.jpg');
    background-size: contain;
    background-position: center;
    padding: 2rem;
    text-align: center;
    border-bottom: 5px solid var(--marron);
    
}
header p {
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0.5rem 0 0;
    color: var(--texto);
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--marron);
    font-weight: bold;
    color: var(--marron);
    overflow: hidden;
}

.logo-placeholder img { width: 100%; height: auto; }

h1 { font-family: 'Brush Script MT', cursive; font-size: 3rem; margin: 0; color: var(--text); }

/* Secciones */
section { padding: 20px; max-width: 1200px; margin: auto; }

h2.seccion-titulo {
    border-left: 5px solid var(--rosa);
    padding-left: 15px;
    color: var(--marron);
}

/* Grid de Productos */
.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.producto-card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.producto-card:hover { transform: translateY(-5px); }

.imagen-contenedor {
    background-color: #fdfdfd;
    height: 180px;
    border-radius: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-contenedor img { max-height: 100%; border-radius: 10px; }

.precio-tag {
    background-color: var(--rosa);
    color: white;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.stock-hoy {
    font-size: 0.85rem;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 2px 10px;
    border-radius: 10px;
}

/* Filtros */
#buscador {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: 2px solid var(--celeste);
    margin-top:25px;
    margin-bottom: 0px;
}
/* Whatsapp  */
#whatsapp-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.btn-whatsapp {
    background-color: #25d366; /* Color oficial de WhatsApp */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.05); /* Se agranda un poquito al pasar el mouse */
}

/* Si quieres que flote en una esquina, usa este estilo en su lugar */
/*
*/
@media (max-width: 768px) {
    .btn-whatsapp {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }
    
}
