:root {
    --asorti-primary: #0d6efd;
    --asorti-dark: #0f172a;
    --asorti-green: #10b981;
}

/* 🌟 Glass Card */
.as-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* 🔥 Hover Premium */
.as-hover {
    transition: all 0.25s ease;
}
.as-hover:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* 💎 Badge Modern */
.as-badge {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.as-badge-green { background: #d1fae5; color: #065f46; }
.as-badge-blue { background: #dbeafe; color: #1e3a8a; }
.as-badge-red { background: #fee2e2; color: #7f1d1d; }

/* 📱 Sticky Cart (mobil) */
.as-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px;
    z-index: 999;
}

/* 🧊 Skeleton */
.as-skeleton {
    background: linear-gradient(90deg,#eee,#f5f5f5,#eee);
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0% { background-position: -200px 0 }
    100% { background-position: 200px 0 }
}

/* 🧭 Category Scroll (iOS hissi) */
.as-scroll-x {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.as-scroll-x::-webkit-scrollbar {
    display: none;
}

/* 🔘 Button Premium */
.as-btn {
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
}

/* 📱 Responsive */
@media (max-width: 640px) {
    .as-card {
        padding: 12px;
    }
}