/* Page Stylesheet for index.blade.php */

.gradient-text {
            color: var(--color-ink-primary) !important;
            background: none !important;
            -webkit-text-fill-color: initial !important;
        }

        .category-navbar {
            padding: 20px 0;
            backdrop-filter: blur(12px);
            transition: box-shadow 0.3s ease;
            overflow: hidden;
        }

        .category-navbar.sticky {
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .category-slider {
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 24px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            padding-bottom: 12px;
        }



        /* Thinner, premium gold scrollbar for category slider */
        .category-slider::-webkit-scrollbar {
            height: 5px;
        }
        .category-slider::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }
        .category-slider::-webkit-scrollbar-thumb {
            background: var(--color-secondary);
            border-radius: 10px;
        }
        .category-slider::-webkit-scrollbar-thumb:hover {
            background: var(--color-secondary-hover);
        }

        .category-card {
            flex: 0 0 320px;
            height: 150px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        @media (max-width: 768px) {
            .category-card {
                flex: 0 0 200px;
                height: 200px;
            }
        }

        .category-img-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .category-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.4s ease;
        }

        .category-overlay h6 {
            color: var(--color-surface) !important;
            font-weight: 600;
            font-size: 1.5rem;
            margin: 0;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .category-card:hover .category-overlay {
            background: rgba(0, 0, 0, 0.6);
        }

        .category-card:hover .category-overlay h6 {
            opacity: 1;
            transform: translateY(0);
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        }

