:root {
    --primary-color: #007A44;  /* Kurumsal renk */
    --secondary-color: #007A44;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-radius: 16px;
    --card-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

/* Header */
header {
    background: white;
    box-shadow: var(--card-shadow);
    padding: 1rem 0;
}

.logo {
    max-height: 100px;
    width: auto;
}

/* Container */
.container {
    max-width: 95%;
    width: 95%;
    margin: 0 auto;
    padding: 0.25rem;
}

/* Category */
.category-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0.75rem 0 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Menu Navigation */
.menu-nav {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--card-shadow);
    padding: 0.4rem 0;
    margin-bottom: 1rem;
}

.nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0.4rem;
    padding-bottom: 4px;
}

.nav::-webkit-scrollbar {
    display: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap;
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    transition: all 0.2s;
    font-weight: 500;
    font-size: 0.75rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: white;
}

/* Category Section */
.category-section {
    margin-bottom: 2rem;
    scroll-margin-top: 4rem;
}

/* Product Card */
.product-card {
    width: 100%;
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    align-items: center;
    padding: 0;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.product-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.product-info {
    flex: 1;
    padding: 0.5rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background: white;
}

.product-details {
    flex: 1;
    padding-left: 0;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.product-description {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    background: none;
    padding: 0;
    border-radius: 0;
}

/* Responsive */
@media (min-width: 992px) {
    .col-lg-4 {
        width: 50%; /* Desktop'ta 2 sütun */
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-md-6 {
        width: 50%; /* Tablet'te 2 sütun */
    }
}

@media (max-width: 767px) {
    .col-md-6 {
        width: 100%; /* Mobilde tek sütun */
    }
}

/* Dil Seçimi */
.language-selector {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.language-selector .btn {
    border-radius: 4px;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    min-width: 36px;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.language-selector .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.language-selector .btn-outline-primary {
    color: var(--primary-color);
    background-color: white;
    border-color: var(--primary-color);
}

.language-selector .btn-outline-primary:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: white;
    padding: 1rem 0;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.08);
}

footer small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

/* Category Styles */
.category-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-description {
    color: #666;
    font-size: 0.95rem;
}

/* Product Card Styles */
.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.card-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Lightbox */
.sl-overlay {
    background: #000;
}

.sl-wrapper .sl-navigation button {
    color: #fff;
}

.sl-wrapper .sl-close {
    color: #fff;
}

/* Menü Tasarımı */
.menu-header {
    background-color: var(--primary-color);
    padding: 2rem 0;
    color: white;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo {
    max-height: 120px;
    max-width: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
}

.menu-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Menü Navigasyonu */
.menu-nav {
    background: #fff;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1000;
}

.menu-nav .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.25rem;
}

.menu-nav .nav-link {
    color: var(--primary-color);
    padding: 0.35rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.menu-nav .nav-link.active,
.menu-nav .nav-link:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Tablet Tasarım */
@media (min-width: 769px) and (max-width: 991px) {
    .col-md-6 {
        width: 100%; /* Tablet'te tek sütun */
    }
    
    .product-image {
        width: 140px;
        height: 140px;
    }
}

/* Row spacing */
.row.g-4 {
    --bs-gutter-y: 0.25rem;
    --bs-gutter-x: 0.25rem;
}

/* Column padding */
.col-12, .col-md-6, .col-lg-6 {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-bottom: calc(var(--bs-gutter-y) * 0.5);
}

/* Main spacing */
main {
    padding-top: 0.25rem;
}

/* Menu Nav Container */
.menu-nav .container {
    max-width: 95%;
    width: 95%;
    margin: 0 auto;
} 