/* Utilitare care nu există în Tailwind CDN implicit */

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar { display: none; }

/* Scrollbar subtil pe restul paginii */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f5f5f4; }
::-webkit-scrollbar-thumb { background: #4C9F38; border-radius: 4px; }

/* Ascunde săgețile input number */
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; }

/* line-clamp fallback */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Inimă favorită activă */
.fav-btn.is-fav { color: #EF4444; }
.fav-btn.is-fav svg { fill: #EF4444; }

/* Meniu mobil deschis */
#mobileMenu.is-open { transform: translateX(0); }

/* Animație popup */
#giftPopup > div:last-child { animation: popIn .35s cubic-bezier(.2,.9,.3,1.2); }
@keyframes popIn {
    from { opacity: 0; transform: scale(.9) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
