 :root {
            --darkblue: #07364b;
            --blue: #006d88;
            --skyblue: #02a2c1;
            --yellow: #f8b003;
        }
        body {
  font-family: "Poppins", sans-serif;
            background-color: #f8f9fa;
        }
        .top-header {
            padding: 20px 0;
        }
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .category-nav {
            overflow-x: auto;
            white-space: nowrap;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .category-nav a {
            color: #fff;
            display: inline-block;
            padding: 10px 20px;
            text-decoration: none;
            font-weight: 500;
            background-image: linear-gradient(to bottom right, #0b394e, #30373b);
            border-right: solid 1px #fff;
            border-radius: 5px;
        }
        .category-nav a:hover {
            background-color: var(--skyblue);
            color: #fff;
        }
        h2.category-title {
            color: var(--darkblue);
            border-bottom: 3px solid var(--yellow);
            padding-bottom: 10px;
            margin-top: 60px;
        }
        .list-group-item {
            background-color: #fff;
            border: 1px solid #e4e4e4;
        }
        .badge {
            background-color: var(--yellow);
            color: #000;
        }
        /* Menü Modal */
        .modal-fullscreen {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            z-index: 1050;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.85);
            transition: opacity 0.3s ease;
        }
        .modal-fullscreen.show {
            display: block;
        }
.kapak {
    display: none; }

@media (max-width: 768px) {
    .kapak {
        display: block;     }
}
