@media (max-width: 768px) {
/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    z-index: 1000;
}

.sidebar--active {
    left: 0;
}

.overflow-hidden {
    overflow: hidden;
}



.menu-toggle {
    cursor: pointer;
}

.sidebar-close {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 1001;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hover efekti */
.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Active (tıklama) efekti */
.sidebar-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Material icons için stil */
.sidebar-close .material-icons-round {
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
    color: #b92020;
}

/* Kleur pictogram in zweefstand */
.sidebar-close:hover .material-icons-round {
    color: #000;
}

.container {
    padding: 0 0px !important;
}

/* Main Content */
.main-content {
    margin-left: 0;
    padding: 10px;
    width: 100%;
    overflow-x: hidden;
}

/* Top Header */
.top-header {
    padding: 8px 10px;
}

.menu-toggle {
    display: flex;
}

.search-bar {
    margin: 0 8px;
}

.cart-button {
    padding: 6px;
}

/* Hero Section */
.hero-section {
    flex-direction: column;
    padding: 20px 15px;
    text-align: center;
}

.hero-section__content {
    max-width: 100%;
    margin-bottom: 15px;
}

.hero-section__content h1 {
    font-size: 28px;
}

.hero-section__content p {
    font-size: 14px;
}

.hero-section__btn {
    padding: 10px 20px;
}

.hero-section__image img {
    max-width: 100%;
    height: auto;
}

/* Menu Section */
.menu-section {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    overflow-x: hidden;
}

.category-tabs {
    padding: 8px;
    gap: 8px;
}

.category-tab {
    width: 110px;
    height: 110px;
    padding: 12px;
}

.category-tab__image {
    width: 36px;
    height: 36px;
}

.category-tab__title {
    font-size: 11px;
}

/* Menu Grid */
.menu-grid {
    min-height: 120px;
    width: 100%;
    overflow-x: hidden;
}

.category-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}

.item-card {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.item-card__image-wrapper {
    width: 100%;
    overflow: hidden;
}

.item-card__image {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.item-card__content {
    padding: 10px;
}

.item-card__title {
    font-size: 14px;
}

.item-card__description {
    font-size: 11px;
    line-height: 1.3;
}

.item-card__panel {
    padding: 8px;
}

.item-card__price {
    font-size: 13px;
}

.item-card__add-btn {
    width: 30px;
    height: 30px;
}

/* Popular Section */
.popular-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}

.popular-card__image-wrapper img {
    height: 160px;
}

.popular-card__content {
    padding: 12px;
}

.popular-card__title {
    font-size: 16px;
}

.popular-card__desc {
    font-size: 12px;
}

.popular-card__price {
    font-size: 14px;
}

.popular-card__add-btn {
    padding: 8px 15px;
    font-size: 12px;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1a3c5e;
    font-size: 11px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item.active {
    color: rgb(40, 121, 176);
}

.nav-item .material-icons {
    font-size: 22px;
    margin-bottom: 3px;
}

.fab-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: rgb(40, 121, 176);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.fab-button:hover {
    transform: translateY(-10px);
    background: rgb(50, 141, 196);
}

.fab-button .material-icons {
    font-size: 26px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f43f5e;
    color: #fff;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 50%;
}

.iconred {
    color: #fff;
}
}