/* ============================================
   Bosphorus Grill – Shared Styles
   ============================================ */

/* Hide scrollbar for category navigation */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Category scrollbar styling */
.category-scroll::-webkit-scrollbar {
    height: 4px;
}
.category-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.category-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.25);
    border-radius: 999px;
}
.category-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 229, 255, 0.25) transparent;
}

/* Scroll fade effect */
.scroll-fade {
    position: relative;
}
.scroll-fade::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background: linear-gradient(to right, transparent, #131313);
    pointer-events: none;
    z-index: 10;
}

/* Subtle pulse animation for CTA / floating buttons */
@keyframes pulse-subtle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.animate-pulse-subtle {
    animation: pulse-subtle 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
