body {
    background-color: #fff;
}

.logo {
    height: 60px;
    object-fit: contain;
}

.nav-tabs {
    border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-link {
    color: #666;
    border: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    color: #000;
    border-bottom: 2px solid #000;
    background: none;
}

.menu-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
}

.menu-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-weight: 500;
    z-index: 1;
}

.view-options .btn-link {
    color: #666;
    padding: 5px 10px;
}

.view-options .btn-link.active {
    color: #000;
}

.list-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.text-item {
    border-bottom: 1px solid #eee;
}

/* Text görünümü için stiller */
.text-view .text-item {
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.text-view .text-item:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* Text görünümünde yazı stili */
.text-view .text-item {
    color: #333;
    font-size: 16px;
    text-align: center;
}

/* Arama ikonunu sağa yerleştirmek için */
.text-item {
    position: relative;
}

.text-item::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('path-to-search-icon.svg'); /* Arama ikonu için */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}

/* Liste görünümü için stiller */
.list-view .list-item {
    background: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.list-view .list-item:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* Liste görünümündeki resim stili */
.list-view .list-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* Liste görünümündeki metin stili */
.list-view .list-item .menu-title {
    position: static; /* Grid görünümündeki absolute pozisyonu override */
    color: #333;
    font-size: 16px;
    text-shadow: none;
    margin-left: 15px;
}

/* Arama ikonu için */
.list-view .list-item {
    position: relative;
}

.list-view .list-item::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('path-to-search-icon.svg'); /* Arama ikonu için */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    border-radius: 8px;
}

/* Hakkımızda sayfası stilleri */
#hakkimizda h1 {
    margin-top: 2rem;
    font-size: 2.5rem;
    color: #333;
}

#hakkimizda p {
    max-width: 800px;
    line-height: 1.6;
    color: #666;
} 

.scrolling-categories {
    position: relative;
    overflow: hidden;
}

.scroll-wrapper {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.category-btn {
    white-space: nowrap;
    padding: 8px 20px;
    margin-right: 10px;
    border: none;
    background: #f5f5f5;
    border-radius: 20px;
    color: #666;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: #333;
    color: white;
}

/* Ürün Kartları */
.product-card {
    position: relative;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
}

/* Fiyat etiketi stili */
.price {
    position: absolute;
    right: 10px;
    bottom: 45px;
    background: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Ürün ismi stili */
.product-info {
    padding: 10px 0;
}

.product-info h6 {
    color: #333;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Grid görünümü için kolon ayarları */
#grid-3-view .col-12 {
    width: 100%;
}

@media (min-width: 768px) {
    #grid-3-view .col-md-4 {
        width: 33.333333%;
    }
}

/* Liste görünümü için özel stiller */
.list-view .list-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.list-view .list-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.list-view .product-info {
    padding-left: 15px;
}

.list-view .price {
    transform: translateY(-50%);
}

/* Görünüm Seçenekleri */
.view-options .btn-link {
    color: #666;
    padding: 5px 10px;
}

.view-options .btn-link.active {
    color: #000;
}

/* Header stili */
.header-wrapper {
    border-bottom: 1px solid #eee;
}

.logo {
    height: 40px;
}

/* Geri dön butonu */
.back-btn {
    border: none;
    background: none;
    padding: 8px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arama butonu */
.search-btn {
    border: none;
    background: none;
    padding: 8px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

/* Arama overlay stili */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
}

.search-wrapper {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.search-wrapper .input-group {
    position: relative;
}

.search-wrapper .form-control {
    border: none;
    border-radius: 0;
    padding: 10px 40px 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.search-wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
}

.search-wrapper .btn-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    background: none;
    padding: 8px;
}

/* Sayfa opaklığı için */
.main-content.dimmed {
    opacity: 0.5;
    pointer-events: none;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-wrapper .back-btn {
    position: absolute;
    left: 0;
}

.header-wrapper .search-btn {
    position: absolute;
    right: 0;
}

.header-wrapper .logo {
    margin: 0 auto;
    position: relative;
}