@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url('https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css');
@import url('https://fonts.cdnfonts.com/css/self-deception');

/* ======== GENERAL ======== */
body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #ffd6e8, #ffe6f9, #fddde6);
    background-size: 300% 300%;
    animation: gradientBG 12s ease infinite;
    margin: 0;
    color: #333;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ======== SCROLLBAR ======== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff80ab, #ff4081);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #f50057, #c51162);
}

/* ======== CONTENEDOR ======== */
.container {
    max-width: 1200px;
}
.row {
    row-gap: 35px;
}

/* ======== TÍTULO ======== */
.titulo-confiteria {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: #ff4081;
    background: rgba(255,64,129,0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 15px;
    display: inline-block;
    text-align: center;
    margin: 0 auto 30px;
    box-shadow: 0 4px 12px rgba(255,64,129,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.titulo-confiteria:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255,64,129,0.3);
}

/* ======== TARJETAS DE PRODUCTO ======== */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(255,64,129,0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255,64,129,0.25);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 8px;
}

.product-card h5 {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #ff4081;
}

.product-card p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* Precio tachado */
.product-card del {
    color: #888;
    font-size: 0.9rem;
}

/* Precio con descuento */
.product-card strong {
    color: #2e7d32;
    font-size: 1.1rem;
}

/* Texto de descuento */
.product-card .text-success {
    font-size: 1rem;
    font-weight: 600;
}

/* ======== RESPONSIVIDAD ======== */
@media (max-width: 768px) {
    .titulo-confiteria {
        font-size: 1.6rem;
        padding: 0.5rem 1rem;
    }
    .product-card img {
        height: 150px;
    }
}
@media (max-width: 576px) {
    .product-card img {
        height: 120px;
    }
}

