:root { --color-fondo: #FDFBF7; --color-texto: #2C2A28; }
body { font-family: 'Lato', sans-serif; background-color: var(--color-fondo); color: var(--color-texto); padding: 4rem 1.5rem; }
.header { text-align: center; margin-bottom: 4rem; }
.header h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; }
.container { max-width: 900px; margin: 0 auto; }

/* El grid para que se vean como fotos de revista */
.grid-regalos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.regalo-card {
    text-align: center;
    background: #fff;
    padding: 1rem;
    border: 1px solid #EEE;
    transition: transform 0.3s ease;
}

.regalo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Esto hace que todas las fotos se vean del mismo tamaño */
    margin-bottom: 1rem;
}

.regalo-card h3 { font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; }
.regalo-card p { font-size: 0.9rem; color: #666; font-style: italic; }

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin: 3rem 0 2rem;
    color: var(--color-texto);
    border-bottom: 1px solid var(--color-borde);
    padding-bottom: 0.5rem;
}
