/* Estilos para los enlaces de producto */

/* Título del producto */
h3 a {
    text-decoration: none;
    color: #111827;
    transition: color 0.2s;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

h3 a:hover {
    color: #2563eb;
}

/* Botón Ver Producto */
.product-view-button a {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid #e5e7eb;
    color: #374151;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
    text-decoration: none;
}

.product-view-button a:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}

.product-view-button a::before {
    content: "👁️";
    margin-right: 0.5rem;
}