/* Estilos específicos para productos recientes - usando el mismo diseño que categorías */

/* Badge de categoría del producto */
.product-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    z-index: 10;
}

/* Precio del producto simple */
.product-price-simple {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin: 8px 0;
    text-align: center;
}

/* Acciones del producto */
.product-actions-simple {
    margin-top: 15px;
    text-align: center;
}

.btn-simple {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Animaciones */
.product-card-simple {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.product-card-simple:nth-child(1) { animation-delay: 0.1s; }
.product-card-simple:nth-child(2) { animation-delay: 0.2s; }
.product-card-simple:nth-child(3) { animation-delay: 0.3s; }
.product-card-simple:nth-child(4) { animation-delay: 0.4s; }
.product-card-simple:nth-child(5) { animation-delay: 0.5s; }
.product-card-simple:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-category-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .product-price-simple {
        font-size: 18px;
    }
    
    .btn-simple {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .product-category-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .product-price-simple {
        font-size: 16px;
    }
}

/* Hover effects para iconos */
.btn-simple i {
    transition: transform 0.3s ease;
}

.btn-simple:hover i {
    transform: scale(1.1);
}
