body {
    font-family: 'Inter', sans-serif;
}

.category-pill, .product-card {
    transition: all 0.2s ease-in-out;
}

.cart-icon-pop {
    animation: pop 0.3s ease-out;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.product-card {
    min-height: 160px;
}

/* --- MEJORA: PERMITIR NOMBRES LARGOS --- */
.product-card h3 {
    white-space: normal;
    word-break: break-word;
}