/* Phone Accessories Template - CASETiFY Inspired */

html { scroll-behavior: smooth; }

/* Scrollbar hide utility */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

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

/* Product card hover */
.group:hover .product-img { transform: scale(1.05); }

/* Promo bar marquee */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.promo-marquee { animation: marquee 20s linear infinite; }

/* Button hover glow */
.btn-glow:hover { box-shadow: 0 4px 20px rgba(241, 91, 65, 0.3); }

/* Category chip active */
.cat-chip-active { background: #000; color: #fff; }

/* Admin styles */
.sidebar a.active { background: #000; color: white; }
.sidebar a:hover:not(.active) { background: #f3f4f6; }
