* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #FFF9F7;
    color: #2C1A1D;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

header {
    background: linear-gradient(135deg, #2C1A1D 0%, #4A2C30 100%);
    color: #FFF9F7;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 3px solid #D4AF37;
}

header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

header h1::before {
    content: "💋 ";
    font-size: 2.5rem;
}

header p {
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: #E8D5D8;
}

nav {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #FFF9F7;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s;
    background: rgba(212, 175, 55, 0.1);
}

nav a:hover, nav a.activo {
    background: #D4AF37;
    color: #2C1A1D;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.producto-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #F0E6E3;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.producto-imagen {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 2px solid #D4AF37;
}

.producto-info {
    padding: 1.5rem;
}

.producto-categoria {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B57281;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.producto-titulo {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2C1A1D;
}

.producto-descripcion {
    font-size: 0.85rem;
    color: #6B5B5E;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.producto-precio {
    font-size: 1.6rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
}


.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.02);
}

footer {
    text-align: center;
    padding: 2rem;
    background: #2C1A1D;
    color: #E8D5D8;
    margin-top: 3rem;
    font-size: 0.85rem;
}
/* Logo styles */
.logo-container {
    margin-bottom: 1rem;
}
.logo-img {
    max-width: 120px;
    height: auto;
    border-radius: 50%;
    border: 3px solid #D4AF37;
    padding: 5px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.logo-img:hover {
    transform: scale(1.05);
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 15px 0;
}
.social-icons a {
    color: #D4AF37;
    font-size: 1.3rem;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
}
.social-icons a:hover {
    color: #2C1A1D;
    background: #D4AF37;
    transform: translateY(-3px);
}
.producto-precio { text-align: center; }

/* Botón WhatsApp elegante */
.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.7rem;
    text-align: center;
    transition: all 0.3s ease;
    width: auto;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-whatsapp:hover {
    background: #20b859;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Botón WhatsApp centrado */
.btn-whatsapp {
    display: block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.7rem;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 8px auto 0 auto;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-whatsapp:hover {
    background: #20b859;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
