/* assets/css/style.css */
body {
    font-family: 'Inter', sans-serif;
    background: #fcf9f7;
    color: #333;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
    filter: brightness(0.7);
}
.carousel-caption h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Tarjetas de productos */
.card-producto {
    border: none;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}
.card-producto:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.card-producto img {
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #f0ecea;
}
.card-body {
    padding: 1.5rem;
}
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}
.precio-actual {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a3a;
}
.precio-anterior {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}
.descripcion {
    color: #666;
    font-size: 0.95rem;
    margin: 10px 0;
}
.btn-whatsapp {
    background-color: #25d366;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    transition: background 0.2s;
    width: 100%;
}
.btn-whatsapp:hover {
    background-color: #1da851;
    color: white;
}

/* Responsivo */
@media (max-width: 768px) {
    .carousel-item img {
        height: 250px;
    }
    .card-producto img {
        height: 200px;
    }
}