/* ==================== MENÜ SAYFASI - GENEL ==================== */

.menu-page {
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
}

/* ==================== HEADER ==================== */

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    background: var(--bg-primary);
    flex-shrink: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.back-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: none;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.back-btn:hover {
    background: var(--accent-light);
    color: var(--accent-primary);
}

.back-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.menu-header-spacer {
    width: 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex: 1;
    justify-content: center;
    overflow: hidden;
}

.breadcrumb-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 700;
}

.breadcrumb-separator {
    color: var(--text-muted);
    flex-shrink: 0;
    font-size: 0.7rem;
}

/* ==================== MENÜ İÇERİK ==================== */

.menu-content {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* ==================== ANİMASYONLAR ==================== */

.menu-grid.slide-left {
    animation: slideLeft var(--transition-normal) ease-out;
}

.menu-grid.slide-right {
    animation: slideRight var(--transition-normal) ease-out;
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes swipeLeft {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes swipeRight {
    from { opacity: 0; transform: translateX(-100%); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==================== 1. KATEGORİLER - TAM GENİŞLİK DİKEY KARTLAR ==================== */

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    animation: fadeIn var(--transition-normal) ease-out;
}

.category-card {
    position: relative;
    height: 180px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.category-card:active {
    transform: translateY(-2px);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.category-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern dark style for categories without images */
.category-card.no-image {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
}

.category-card.no-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(255,255,255,0.02) 0%, transparent 50%);
    z-index: 1;
}

.category-card.no-image .category-card-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 2;
}

.category-card.no-image .category-card-content {
    z-index: 3;
}

.category-card.no-image .category-card-name {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.category-card.no-image .category-card-count {
    color: rgba(255,255,255,0.7);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
}

.category-card-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.category-card-count {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-top: var(--spacing-xs);
}

/* ==================== 2. ÜRÜN GRUPLARI - KARE KART GRİD ==================== */

.groups-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    animation: fadeIn var(--transition-normal) ease-out;
}

.group-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.group-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.group-card:active {
    transform: translateY(-2px);
}

.group-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #f8f9fa;
}

.group-card-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Color schemes for group placeholders */
.group-card-placeholder.scheme-1 { background: linear-gradient(145deg, #fef3c7 0%, #fde68a 100%); }
.group-card-placeholder.scheme-2 { background: linear-gradient(145deg, #d1fae5 0%, #a7f3d0 100%); }
.group-card-placeholder.scheme-3 { background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%); }
.group-card-placeholder.scheme-4 { background: linear-gradient(145deg, #fce7f3 0%, #fbcfe8 100%); }
.group-card-placeholder.scheme-5 { background: linear-gradient(145deg, #e0e7ff 0%, #c7d2fe 100%); }
.group-card-placeholder.scheme-6 { background: linear-gradient(145deg, #ffedd5 0%, #fed7aa 100%); }
.group-card-placeholder.scheme-7 { background: linear-gradient(145deg, #f3e8ff 0%, #e9d5ff 100%); }
.group-card-placeholder.scheme-8 { background: linear-gradient(145deg, #ccfbf1 0%, #99f6e4 100%); }

.group-card-info {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: center;
}

.group-card-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.group-card-count {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ==================== 3. ÜRÜNLER - CHIP BAR + LİSTE ==================== */

.products-page {
    animation: fadeIn var(--transition-normal) ease-out;
}

.chips-wrapper {
    padding: var(--spacing-sm) var(--spacing-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #fff;
    flex-shrink: 0;
    border-bottom: 1px solid #f0f0f0;
}

.chips-wrapper::-webkit-scrollbar {
    display: none;
}

.chips-container {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    width: max-content;
}

.chip {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.chip:hover {
    background: var(--accent-light);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.chip.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #ffffff;
}

.chip i {
    font-size: 0.85rem;
}

.products-container {
    animation: fadeIn var(--transition-fast) ease-out;
}

/* ==================== 3. ÜRÜNLER - LİSTE GÖRÜNÜMÜ ==================== */

.products-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-light);
}

.product-card:active {
    transform: translateX(2px);
}

.product-card-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    background: #f8f9fa;
    flex-shrink: 0;
}

.product-card-placeholder {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Color schemes for product placeholders */
.product-card-placeholder.scheme-1 { background: linear-gradient(145deg, #fef3c7 0%, #fde68a 100%); }
.product-card-placeholder.scheme-2 { background: linear-gradient(145deg, #d1fae5 0%, #a7f3d0 100%); }
.product-card-placeholder.scheme-3 { background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%); }
.product-card-placeholder.scheme-4 { background: linear-gradient(145deg, #fce7f3 0%, #fbcfe8 100%); }
.product-card-placeholder.scheme-5 { background: linear-gradient(145deg, #e0e7ff 0%, #c7d2fe 100%); }
.product-card-placeholder.scheme-6 { background: linear-gradient(145deg, #ffedd5 0%, #fed7aa 100%); }
.product-card-placeholder.scheme-7 { background: linear-gradient(145deg, #f3e8ff 0%, #e9d5ff 100%); }
.product-card-placeholder.scheme-8 { background: linear-gradient(145deg, #ccfbf1 0%, #99f6e4 100%); }

.product-card-info {
    flex: 1;
    min-width: 0;
}

.product-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.3;
}

.product-card-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Hızlı Ekle Butonu - Mobilde Gizli */
.product-quick-add {
    display: none;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card-media {
    display: contents;
}

/* Desktop Sepet Paneli - Mobilde Gizli */
.desktop-cart-panel {
    display: none;
}

/* Mobilde menu-main-column tam genişlik ve flex layout */
.menu-main-column {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Placeholder Renkleri */
.placeholder-color-1 { background: linear-gradient(135deg, #ffebee, #ffcdd2); color: #ef5350; }
.placeholder-color-2 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: #43a047; }
.placeholder-color-3 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #42a5f5; }
.placeholder-color-4 { background: linear-gradient(135deg, #fff8e1, #ffecb3); color: #ffa726; }
.placeholder-color-5 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); color: #ab47bc; }
.placeholder-color-6 { background: linear-gradient(135deg, #fff8e1, #ffecb3); color: #ff8f00; }
.placeholder-color-7 { background: linear-gradient(135deg, #fbe9e7, #ffccbc); color: #ff7043; }
.placeholder-color-8 { background: linear-gradient(135deg, #ede7f6, #d1c4e9); color: #7e57c2; }

/* ==================== SEPET İKONU (Sağ Üst) ==================== */

.cart-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--accent-light);
    border: none;
    border-radius: var(--border-radius-md);
    color: var(--accent-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon-btn:hover {
    background: var(--accent-primary);
    color: #fff;
}

.cart-icon-btn.added {
    background: linear-gradient(135deg, #ff8f00 0%, #e65100 100%);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(255, 143, 0, 0.5);
}

.cart-icon-btn i {
    font-size: 1rem;
}

.cart-icon-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #ef4444;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.cart-badge.visible {
    opacity: 1;
    transform: scale(1);
}

/* ==================== ÜRÜN DETAY SAYFASI (Tam Sayfa Sağdan Slide) ==================== */

.product-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #fff;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
}

.product-page.active {
    visibility: visible;
    pointer-events: auto;
}

.product-page-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.product-page.active .product-page-panel {
    transform: translateX(0);
}

.product-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    padding-top: calc(var(--spacing-md) + env(safe-area-inset-top, 0px));
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.product-page-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 12px;
}

.product-page-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    padding: 0;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

/* Desktop Close Button - Mobilde Gizli */
.desktop-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: none;
}

/* Mobilde product-page-top dikey layout */
.product-page-top {
    display: flex;
    flex-direction: column;
}

.product-page-image {
    width: 100%;
    height: 35vh;
    min-height: 150px;
    max-height: 280px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ccc;
    overflow: hidden;
    padding: 16px;
}

.product-page-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Mobilde info alanı */
.product-page-info {
    padding: 20px;
}

.product-page-body {
    padding: 20px;
}

.product-page-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.product-page-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.product-page-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ff8f00;
    margin-bottom: 24px;
}

/* Özel Not */
.note-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.note-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.note-input {
    width: 100%;
    padding: 14px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1a1a1a;
    resize: none;
    transition: border-color 0.15s;
}

.note-input:focus {
    outline: none;
    border-color: #ff8f00;
}

.note-input::placeholder {
    color: #94a3b8;
}

/* Ürün Sayfası Footer - Flex içinde sabit */
.product-page-footer {
    flex-shrink: 0;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

/* Ekstralar */
.extras-section {
    border-top: 1px solid #eee;
    padding: 16px 20px 0 20px;
    margin-top: 8px;
}

/* Not section mobil padding */
.note-section {
    padding: 0 20px;
}

.extras-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.15s;
}

.extra-item:hover {
    background: #f0f2f5;
}

.extra-item.selected {
    background: #fff8e1;
}

.extra-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
}

.extra-item.selected .extra-checkbox {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border-color: #ff8f00;
    color: #fff;
}

.extra-checkbox i {
    font-size: 12px;
    opacity: 0;
}

.extra-item.selected .extra-checkbox i {
    opacity: 1;
}

.extra-info {
    flex: 1;
}

.extra-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

.extra-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff8f00;
}

/* Footer - Adet ve Sepete Ekle */

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 4px;
    flex-shrink: 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.15s;
}

.quantity-btn:hover {
    background: #e8e8e8;
}

.quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.quantity-value {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.add-to-cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    min-height: 52px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #ff8f00 0%, #e65100 100%);
}

.add-to-cart-btn .total-price {
    font-weight: 700;
}

/* ==================== SEPET SAYFASI (Tam Sayfa) ==================== */

.cart-page {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-page.active {
    transform: translateX(0);
}

.cart-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    padding-top: calc(var(--spacing-md) + env(safe-area-inset-top, 0px));
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.cart-page-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    text-align: center;
}

.cart-page-scroll {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 140px;
    -webkit-overflow-scrolling: touch;
}

.cart-page-content {
    flex: 1;
    padding: 16px;
    padding-bottom: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.cart-empty p {
    font-size: 1.1rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 16px;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #fff8e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8f00;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.cart-item-extras {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 4px 0;
}

.cart-item-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin: 0 0 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.cart-item-note i {
    font-size: 0.7rem;
    margin-top: 2px;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff8f00;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-delete {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffebee;
    border: none;
    border-radius: 8px;
    color: #ef5350;
    font-size: 0.85rem;
    cursor: pointer;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 10px;
    padding: 4px;
}

.cart-item-qty button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.cart-item-qty span {
    font-size: 1rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.cart-page-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    padding-bottom: calc(50px + env(safe-area-inset-bottom, 30px));
    background: #fff;
    border-top: 1px solid #eee;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cart-summary-label {
    font-size: 1rem;
    color: #666;
}

.cart-summary-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.order-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s;
}

.order-btn:hover {
    background: linear-gradient(135deg, #ff8f00 0%, #e65100 100%);
}

.order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* ==================== RTL DESTEĞİ ==================== */

[dir="rtl"] .back-btn i {
    transform: rotate(180deg);
}

[dir="rtl"] .breadcrumb {
    flex-direction: row-reverse;
}

[dir="rtl"] .category-card-content {
    right: auto;
    left: 0;
    text-align: right;
}

[dir="rtl"] .product-card {
    flex-direction: row-reverse;
}

[dir="rtl"] .product-card:hover {
    transform: translateX(-4px);
}

[dir="rtl"] .product-card-info {
    text-align: right;
}

[dir="rtl"] .chips-container {
    flex-direction: row-reverse;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 360px) {
    .category-card {
        height: 150px;
    }
    
    .category-card-name {
        font-size: 1.2rem;
    }
    
    .group-card-placeholder {
        font-size: 2rem;
    }
    
    .group-card-name {
        font-size: 0.85rem;
    }
    
    .group-card-info {
        padding: var(--spacing-sm);
    }
    
    .chip {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.85rem;
    }
    
    .product-card-image,
    .product-card-placeholder {
        width: 70px;
        height: 70px;
    }
    
    .product-card-name {
        font-size: 0.9rem;
    }
    
    .product-modal-image {
        height: 200px;
    }
    
    .product-modal-name {
        font-size: 1.25rem;
    }
}

/* ==================== KÜÇÜK EKRANLAR (Kısa Telefonlar) ==================== */

@media (max-height: 667px) {
    .product-page-image {
        height: 28vh;
        min-height: 120px;
        max-height: 200px;
        padding: 12px;
    }
    
    .product-page-info {
        padding: 12px 16px;
    }
    
    .product-page-name {
        font-size: 1.2rem;
        margin: 0 0 4px 0;
    }
    
    .product-page-description {
        font-size: 0.85rem;
        margin: 0 0 6px 0;
    }
    
    .product-page-price {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .note-section {
        margin-top: 8px;
        padding: 12px 16px;
    }
    
    .note-input {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .product-page-footer {
        padding: 10px 14px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }
    
    .quantity-btn {
        width: 36px;
        height: 36px;
    }
    
    .add-to-cart-btn {
        padding: 10px 14px;
        min-height: 42px;
        font-size: 0.9rem;
    }
}

/* ==================== DESKTOP LAYOUT (768px+) ==================== */

@media (min-width: 768px) {
    /* Temel ayarlar */
    html, body {
        height: 100%;
        overflow: hidden;
        background: #fff;
    }
    
    /* ===== ANA LAYOUT - İKİ KOLON ===== */
    .menu-page {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background: #fff;
    }
    
    /* ===== SOL KOLON - MENÜ İÇERİĞİ ===== */
    .menu-main-column {
        flex: 1;
        min-width: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        overflow: hidden;
    }
    
    /* Header - Sabit üst */
    .menu-header {
        flex-shrink: 0;
        padding: 10px 16px;
        background: #fff;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .back-btn {
        width: 32px;
        height: 32px;
        border-radius: 6px;
        background: #f5f5f5;
        border: none;
        color: #333;
        font-size: 0.85rem;
    }
    
    .breadcrumb {
        flex: 1;
        justify-content: flex-start;
        font-size: 0.85rem;
    }
    
    /* Mobil sepet ikonu gizle */
    .cart-icon-btn {
        display: none !important;
    }
    
    /* İçerik Alanı - Scrollable */
    .menu-content {
        flex: 1;
        padding: 12px 16px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Kategoriler Grid */
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .category-card {
        height: 120px;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .category-card:hover {
        transform: scale(1.02);
    }
    
    .category-card-name {
        font-size: 1.1rem;
    }
    
    /* Gruplar Grid */
    .groups-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .group-card {
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .group-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }
    
    /* Chip Bar */
    .chips-wrapper {
        padding: 8px 16px;
        border-bottom: 1px solid #eee;
    }
    
    .chip {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
    
    /* ===== ÜRÜN KARTLARI ===== */
    .products-container {
        padding: 12px 0;
    }
    
    .products-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .product-card {
        flex-direction: column;
        padding: 0;
        border-radius: 10px;
        cursor: pointer;
        overflow: hidden;
        background: #fff;
        border: 1px solid #eee;
    }
    
    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    /* Kart Resmi */
    .product-card-media {
        display: block;
        width: 100%;
        height: 100px;
        overflow: hidden;
    }
    
    .product-card-image {
        width: 100%;
        height: 100px;
        object-fit: cover;
        background: #f8f9fa;
        border-radius: 10px 10px 0 0;
    }
    
    .product-card-placeholder {
        width: 100%;
        height: 100px;
        border-radius: 10px 10px 0 0;
    }
    
    /* Kart Bilgi Alanı */
    .product-card-info {
        padding: 10px;
    }
    
    .product-card-name {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 4px;
    }
    
    .product-card-description {
        font-size: 0.75rem;
        color: #888;
        margin-bottom: 8px;
        display: none;
    }
    
    .product-card-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .product-card-price {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--accent-primary);
    }
    
    /* Hızlı Ekle Butonu */
    .product-quick-add {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--accent-primary);
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
    }
    
    /* ===== SAĞ KOLON - SEPET PANELİ ===== */
    .desktop-cart-panel {
        flex: 0 0 300px;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fafafa;
        border-left: 1px solid #eee;
        overflow: hidden;
    }
    
    .desktop-cart-header {
        flex-shrink: 0;
        padding: 14px 16px;
        background: #fff;
        border-bottom: 1px solid #eee;
    }
    
    .desktop-cart-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .desktop-cart-title i {
        font-size: 1.2rem;
    }
    
    .desktop-cart-content {
        flex: 1;
        overflow-y: auto;
        padding: 12px;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Sepet Boş */
    .desktop-cart-empty {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
        color: #999;
        padding: 24px;
    }
    
    .desktop-cart-empty i {
        font-size: 2.5rem;
        margin-bottom: 12px;
        opacity: 0.4;
    }
    
    .desktop-cart-empty p {
        font-size: 1rem;
        font-weight: 600;
        color: #666;
        margin: 0 0 4px;
    }
    
    .desktop-cart-empty span {
        font-size: 0.85rem;
        color: #999;
    }
    
    /* Sepet Ürünleri */
    .desktop-cart-items {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .desktop-cart-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 10px;
    }
    
    .desktop-cart-item-image {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .desktop-cart-item-placeholder {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ccc;
        flex-shrink: 0;
        font-size: 1rem;
    }
    
    .desktop-cart-item-info {
        flex: 1;
        min-width: 0;
    }
    
    .desktop-cart-item-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .desktop-cart-item-extras {
        font-size: 0.75rem;
        color: #999;
        margin-bottom: 2px;
    }
    
    .desktop-cart-item-note {
        font-size: 0.75rem;
        color: #888;
        font-style: italic;
    }
    
    .desktop-cart-item-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 6px;
    }
    
    .desktop-cart-item-price {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--accent-primary);
    }
    
    .desktop-cart-item-qty {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .desktop-cart-qty-btn {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        border: 1px solid #ddd;
        background: #fff;
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 600;
        transition: all 0.15s ease;
    }
    
    .desktop-cart-qty-btn:hover {
        background: var(--accent-light);
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }
    
    .desktop-cart-qty-value {
        font-size: 0.9rem;
        font-weight: 600;
        min-width: 18px;
        text-align: center;
    }
    
    .desktop-cart-item-delete {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        border: none;
        background: transparent;
        color: #bbb;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        transition: all 0.15s ease;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .desktop-cart-item-delete:hover {
        background: #fee;
        color: #e53935;
    }
    
    /* Sepet Footer */
    .desktop-cart-footer {
        flex-shrink: 0;
        padding: 12px 16px;
        background: #fff;
        border-top: 1px solid #eee;
    }
    
    .desktop-cart-summary {
        margin-bottom: 12px;
    }
    
    .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 0;
        font-size: 0.9rem;
        color: #666;
    }
    
    .summary-row.total {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1a1a1a;
        border-top: 1px solid #eee;
        padding-top: 10px;
        margin-top: 6px;
    }
    
    .desktop-order-btn {
        width: 100%;
        padding: 14px;
        background: var(--accent-primary);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.2s ease;
    }
    
    .desktop-order-btn:hover:not(:disabled) {
        background: var(--accent-dark);
    }
    
    .desktop-order-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }
    
    .desktop-cart-table {
        text-align: center;
        font-size: 1.1rem;
        color: #999;
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    
    /* Mobil Sepet Sayfası - Desktop'ta Gizle */
    .cart-page {
        display: none !important;
    }
    
    /* ===== ÜRÜN MODALI - SAĞDAN SLIDE-IN ===== */
    
    .product-page {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 380px;
        max-width: 90vw;
        background: #fff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
        visibility: hidden;
        transition: visibility 0.25s ease;
        overflow: hidden;
        z-index: 1001;
    }
    
    .product-page-panel {
        transform: translateX(100%);
        transition: transform 0.25s ease;
    }
    
    .product-page::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 380px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.25s ease;
        pointer-events: none;
    }
    
    .product-page.active {
        visibility: visible;
    }
    
    .product-page.active .product-page-panel {
        transform: translateX(0);
    }
    
    .product-page.active::before {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Modal Header - Desktop'ta görünür */
    .product-page-header {
        display: flex;
        flex-shrink: 0;
        background: #fff;
        border-bottom: 1px solid #eee;
    }
    
    /* X Kapat Butonu - Desktop'ta görünür */
    .desktop-close-btn {
        display: flex;
    }
    
    /* Scroll Container */
    .product-page-scroll {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0;
        background: #ffffff;
        min-height: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    /* ① Resim - Tam Genişlik */
    .product-page-top {
        display: block;
        background: #ffffff !important;
    }
    
    .product-page-image {
        width: 100%;
        height: auto;
        min-height: 180px;
        max-height: 300px;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .product-page-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
    
    .product-page-image i {
        font-size: 2.5rem;
        color: #ccc;
    }
    
    /* ② İçerik Alanı */
    .product-page-info {
        padding: 20px 24px;
        background: #ffffff !important;
    }
    
    .product-page-name {
        font-size: 22px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 8px 0;
        line-height: 1.3;
    }
    
    .product-page-description {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin: 0 0 12px 0;
    }
    
    .product-page-price {
        font-size: 20px;
        font-weight: 700;
        color: var(--accent-primary);
        margin: 0;
    }
    
    /* Gizle: Eski body */
    .product-page-body {
        display: none;
    }
    
    /* ③ Ayırıcı + ④ Ekstralar */
    .extras-section {
        margin: 0;
        padding: 20px 24px;
        border-top: 1px solid #eee;
        background: #ffffff !important;
    }
    
    .extras-title {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 12px 0;
    }
    
    .extras-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .extra-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.15s ease;
    }
    
    .extra-item:hover {
        border-color: #ddd;
        background: #fafafa;
    }
    
    .extra-item.selected {
        border-color: var(--accent-primary);
        background: var(--accent-light);
    }
    
    .extra-checkbox {
        width: 20px;
        height: 20px;
        border: 2px solid #ddd;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .extra-checkbox i {
        font-size: 0.7rem;
        color: #fff;
        opacity: 0;
    }
    
    .extra-item.selected .extra-checkbox {
        background: var(--accent-primary);
        border-color: var(--accent-primary);
    }
    
    .extra-item.selected .extra-checkbox i {
        opacity: 1;
    }
    
    .extra-info {
        flex: 1;
    }
    
    .extra-name {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }
    
    .extra-price {
        font-size: 14px;
        font-weight: 600;
        color: var(--accent-primary);
    }
    
    /* Özel Not Alanı */
    .note-section {
        margin: 0;
        padding: 20px 24px;
        border-top: 1px solid #eee;
        background: #ffffff;
    }
    
    .note-label {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 10px;
        display: block;
    }
    
    .note-input {
        width: 100%;
        padding: 14px;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        color: #333;
        background: #f5f5f5;
        resize: none;
    }
    
    .note-input:focus {
        outline: none;
        background: #f0f0f0;
    }
    
    .note-input::placeholder {
        color: #999;
    }
    
    /* Footer - Flex ile sabit alt kısım */
    .product-page-footer {
        padding: 16px 24px;
        justify-content: space-between;
        gap: 16px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .quantity-selector {
        display: flex;
        align-items: center;
        gap: 0;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .quantity-btn {
        width: 42px;
        height: 42px;
        border: none;
        background: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.15s ease;
    }
    
    .quantity-btn:hover {
        background: #f5f5f5;
    }
    
    .quantity-value {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
        min-width: 40px;
        text-align: center;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        height: 42px;
        line-height: 42px;
    }
    
    .add-to-cart-btn {
        flex: 1;
        padding: 14px 24px;
        background: var(--accent-primary);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.2s ease;
    }
    
    .add-to-cart-btn:hover {
        background: var(--accent-dark);
    }
    
    .add-to-cart-btn .total-price {
        font-weight: 700;
    }
}

/* =====================================================
   TEMA 2 - EN VIE BEACH TARZI ELEGANT TASARIM
   ===================================================== */

/* Tema 2 - Renk Paleti */
[data-tema="2"] {
    --tema2-bg: #f6f1e4;
    --tema2-bg-warm: #efe9da;
    --tema2-text: #3d3529;
    --tema2-text-secondary: #6b6358;
    --tema2-border: #e0d9c8;
    --tema2-accent: #8b7355;
    --tema2-accent-light: #f0ebe0;
    
    /* Tipografi */
    --tema2-font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --tema2-font-sans: 'Inter', -apple-system, sans-serif;
}

/* ==================== TEMA 2 - GENEL ==================== */

[data-tema="2"] .menu-page {
    background: var(--tema2-bg);
}

/* ==================== TEMA 2 - HEADER ==================== */

[data-tema="2"] .menu-header {
    background: var(--tema2-bg);
    border-bottom: 1px solid var(--tema2-border);
    padding: 16px 20px;
}

[data-tema="2"] .back-btn {
    background: transparent;
    border: 1px solid var(--tema2-border);
    color: var(--tema2-text);
    border-radius: 8px;
    width: 38px;
    height: 38px;
}

[data-tema="2"] .back-btn:hover {
    background: var(--tema2-accent-light);
    border-color: var(--tema2-accent);
    color: var(--tema2-accent);
}

[data-tema="2"] .breadcrumb {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 1rem;
    color: var(--tema2-text);
    letter-spacing: 0.5px;
}

[data-tema="2"] .breadcrumb-item {
    max-width: 180px;
}

[data-tema="2"] .breadcrumb-item.active {
    font-weight: 500;
    color: var(--tema2-text);
}

[data-tema="2"] .breadcrumb-separator {
    color: var(--tema2-border);
}

/* Tema 2 - Sepet ikonu */
[data-tema="2"] .cart-icon-btn {
    background: transparent;
    border: 1px solid var(--tema2-border);
    color: var(--tema2-text);
    border-radius: 8px;
    padding: 8px 12px;
}

[data-tema="2"] .cart-icon-btn:hover {
    background: var(--tema2-accent);
    border-color: var(--tema2-accent);
    color: #fff;
}

[data-tema="2"] .cart-icon-btn.added {
    background: var(--tema2-accent);
    border-color: var(--tema2-accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(92, 74, 61, 0.3);
}

[data-tema="2"] .cart-badge {
    background: var(--tema2-accent);
}

/* ==================== TEMA 2 - KATEGORİLER ==================== */

[data-tema="2"] .menu-content {
    background: var(--tema2-bg);
    padding: 20px;
}

[data-tema="2"] .categories-grid {
    gap: 0;
}

[data-tema="2"] .category-card {
    height: auto;
    min-height: 80px;
    border-radius: 0;
    box-shadow: none;
    background: var(--tema2-bg);
    border-bottom: 1px solid var(--tema2-border);
    overflow: visible;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

[data-tema="2"] .category-card:first-child {
    border-top: 1px solid var(--tema2-border);
}

[data-tema="2"] .category-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--tema2-accent-light);
}

[data-tema="2"] .category-card:active {
    transform: none;
}

/* Tema 2 - Kategori görsel gizle */
[data-tema="2"] .category-card-bg,
[data-tema="2"] .category-card-gradient {
    display: none;
}

[data-tema="2"] .category-card-placeholder {
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    background: var(--tema2-accent-light);
    color: var(--tema2-accent);
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 16px;
}

[data-tema="2"] .category-card-content {
    position: relative;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[data-tema="2"] .category-card-name {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--tema2-text);
    text-shadow: none;
    letter-spacing: 0.5px;
}

[data-tema="2"] .category-card-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--tema2-text-secondary);
    margin-top: 4px;
}

/* Tema 2 - Kategori ok işareti */
[data-tema="2"] .category-card::after {
    content: '→';
    font-size: 1.2rem;
    color: var(--tema2-text-secondary);
    margin-left: auto;
    transition: transform 0.2s ease;
}

[data-tema="2"] .category-card:hover::after {
    transform: translateX(4px);
    color: var(--tema2-accent);
}

/* ==================== TEMA 2 - GRUP KARTLARI ==================== */

[data-tema="2"] .groups-grid {
    gap: 0;
    display: flex;
    flex-direction: column;
}

[data-tema="2"] .group-card {
    flex-direction: row;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--tema2-border);
    background: var(--tema2-bg);
    padding: 16px 0;
}

[data-tema="2"] .group-card:first-child {
    border-top: 1px solid var(--tema2-border);
}

[data-tema="2"] .group-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--tema2-accent-light);
}

[data-tema="2"] .group-card-image {
    width: 60px;
    height: 60px;
    aspect-ratio: 1;
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 16px;
    object-fit: contain;
    background: #f8f9fa;
}

[data-tema="2"] .group-card-placeholder {
    width: 60px;
    height: 60px;
    aspect-ratio: 1;
    border-radius: 8px;
    background: var(--tema2-accent-light);
    color: var(--tema2-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 16px;
}

[data-tema="2"] .group-card-info {
    padding: 0;
    text-align: left;
    flex: 1;
}

[data-tema="2"] .group-card-name {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--tema2-text);
    letter-spacing: 0.3px;
}

[data-tema="2"] .group-card-count {
    font-size: 0.75rem;
    color: var(--tema2-text-secondary);
    margin-top: 4px;
}

/* Tema 2 - Grup ok işareti */
[data-tema="2"] .group-card::after {
    content: '→';
    font-size: 1rem;
    color: var(--tema2-text-secondary);
    margin-left: auto;
    padding-right: 4px;
    transition: transform 0.2s ease;
}

[data-tema="2"] .group-card:hover::after {
    transform: translateX(4px);
    color: var(--tema2-accent);
}

/* ==================== TEMA 2 - ÜRÜN KARTLARI ==================== */

[data-tema="2"] .products-list {
    gap: 0;
}

[data-tema="2"] .product-card {
    flex-direction: row;
    align-items: flex-start;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--tema2-border);
    background: var(--tema2-bg);
    padding: 20px 0;
}

[data-tema="2"] .product-card:first-child {
    border-top: 1px solid var(--tema2-border);
}

[data-tema="2"] .product-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--tema2-accent-light);
    border-color: var(--tema2-border);
}

[data-tema="2"] .product-card-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 16px;
    object-fit: contain;
    background: #f8f9fa;
}

[data-tema="2"] .product-card-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: var(--tema2-accent-light);
    color: var(--tema2-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 16px;
}

[data-tema="2"] .product-card-info {
    flex: 1;
    min-width: 0;
}

[data-tema="2"] .product-card-name {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--tema2-text);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

[data-tema="2"] .product-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--tema2-text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
    -webkit-line-clamp: 3;
}

[data-tema="2"] .product-card-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--tema2-text);
}

/* ==================== TEMA 2 - CHIP BAR ==================== */

[data-tema="2"] .chips-wrapper {
    background: var(--tema2-bg);
    border-bottom: 1px solid var(--tema2-border);
    padding: 12px 20px;
}

[data-tema="2"] .chip {
    font-family: 'Inter', sans-serif;
    background: transparent;
    border: 1px solid var(--tema2-border);
    border-radius: 4px;
    color: var(--tema2-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    letter-spacing: 0.3px;
}

[data-tema="2"] .chip:hover {
    background: var(--tema2-accent-light);
    border-color: var(--tema2-accent);
    color: var(--tema2-accent);
}

[data-tema="2"] .chip.active {
    background: var(--tema2-accent);
    border-color: var(--tema2-accent);
    color: #ffffff;
}

/* ==================== TEMA 2 - ÜRÜN DETAY MODAL ==================== */

[data-tema="2"] .product-page {
    background: var(--tema2-bg);
}

[data-tema="2"] .product-page-panel {
    background: var(--tema2-bg);
}

[data-tema="2"] .product-page-header {
    background: var(--tema2-bg);
    border-bottom: 1px solid var(--tema2-border);
}

[data-tema="2"] .product-page-title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-weight: 500;
    color: var(--tema2-text);
    letter-spacing: 0.5px;
}

[data-tema="2"] .product-page-scroll {
    background: var(--tema2-bg);
}

[data-tema="2"] .product-page-image {
    background: var(--tema2-bg-warm);
}

[data-tema="2"] .product-page-info {
    background: var(--tema2-bg);
    padding: 24px 20px;
}

[data-tema="2"] .product-page-name {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--tema2-text);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

[data-tema="2"] .product-page-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--tema2-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

[data-tema="2"] .product-page-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--tema2-text);
    margin-bottom: 0;
}

/* Tema 2 - Ekstralar */
[data-tema="2"] .extras-section {
    background: var(--tema2-bg);
    border-top: 1px solid var(--tema2-border);
    padding: 20px;
}

[data-tema="2"] .extras-title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--tema2-text);
    letter-spacing: 0.3px;
}

[data-tema="2"] .extra-item {
    background: var(--tema2-bg);
    border: 1px solid var(--tema2-border);
    border-radius: 8px;
}

[data-tema="2"] .extra-item:hover {
    background: var(--tema2-accent-light);
}

[data-tema="2"] .extra-item.selected {
    background: var(--tema2-accent-light);
    border-color: var(--tema2-accent);
}

[data-tema="2"] .extra-checkbox {
    border-color: var(--tema2-border);
    border-radius: 4px;
}

[data-tema="2"] .extra-item.selected .extra-checkbox {
    background: var(--tema2-accent);
    border-color: var(--tema2-accent);
}

[data-tema="2"] .extra-name {
    font-family: 'Inter', sans-serif;
    color: var(--tema2-text);
}

[data-tema="2"] .extra-price {
    font-family: 'Inter', sans-serif;
    color: var(--tema2-accent);
}

/* Tema 2 - Not alanı */
[data-tema="2"] .note-section {
    background: var(--tema2-bg);
    border-top: 1px solid var(--tema2-border);
}

[data-tema="2"] .note-label {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-weight: 500;
    color: var(--tema2-text);
    letter-spacing: 0.3px;
}

[data-tema="2"] .note-input {
    background: var(--tema2-bg-warm);
    border: 1px solid var(--tema2-border);
    border-radius: 8px;
    color: var(--tema2-text);
}

[data-tema="2"] .note-input:focus {
    border-color: var(--tema2-accent);
}

/* Tema 2 - Footer */
[data-tema="2"] .product-page-footer {
    background: var(--tema2-bg);
    border-top: 1px solid var(--tema2-border);
    box-shadow: none;
}

[data-tema="2"] .quantity-selector {
    background: var(--tema2-bg-warm);
    border-radius: 8px;
}

[data-tema="2"] .quantity-btn {
    background: var(--tema2-bg);
    color: var(--tema2-text);
    border-radius: 6px;
}

[data-tema="2"] .quantity-btn:hover {
    background: var(--tema2-accent-light);
}

[data-tema="2"] .quantity-value {
    color: var(--tema2-text);
}

[data-tema="2"] .add-to-cart-btn {
    background: var(--tema2-accent);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

[data-tema="2"] .add-to-cart-btn:hover {
    background: #4a3c32;
}

/* ==================== TEMA 2 - SEPET SAYFASI ==================== */

[data-tema="2"] .cart-page {
    background: var(--tema2-bg);
}

[data-tema="2"] .cart-page-header {
    background: var(--tema2-bg);
    border-bottom: 1px solid var(--tema2-border);
}

[data-tema="2"] .cart-page-title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-weight: 500;
    color: var(--tema2-text);
    letter-spacing: 0.5px;
}

[data-tema="2"] .cart-item {
    background: var(--tema2-bg-warm);
    border-radius: 12px;
}

[data-tema="2"] .cart-item-name {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-weight: 500;
    color: var(--tema2-text);
}

[data-tema="2"] .cart-item-price {
    color: var(--tema2-text);
    font-weight: 600;
}

[data-tema="2"] .cart-item-delete {
    background: transparent;
    color: var(--tema2-text-secondary);
}

[data-tema="2"] .cart-item-delete:hover {
    background: #fee;
    color: #c00;
}

[data-tema="2"] .cart-page-footer {
    background: var(--tema2-bg);
    border-top: 1px solid var(--tema2-border);
    box-shadow: none;
}

[data-tema="2"] .cart-summary-total {
    color: var(--tema2-text);
}

[data-tema="2"] .order-btn {
    background: var(--tema2-accent);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

[data-tema="2"] .order-btn:hover {
    background: #4a3c32;
}

/* ==================== TEMA 2 - DESKTOP SEPETİ ==================== */

[data-tema="2"] .desktop-cart-panel {
    background: var(--tema2-bg-warm);
    border-left: 1px solid var(--tema2-border);
}

[data-tema="2"] .desktop-cart-header {
    background: var(--tema2-bg);
    border-bottom: 1px solid var(--tema2-border);
}

[data-tema="2"] .desktop-cart-title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-weight: 500;
    color: var(--tema2-text);
}

[data-tema="2"] .desktop-cart-empty {
    color: var(--tema2-text-secondary);
}

[data-tema="2"] .desktop-cart-empty p {
    color: var(--tema2-text);
}

[data-tema="2"] .desktop-cart-item {
    background: var(--tema2-bg);
    border: 1px solid var(--tema2-border);
    border-radius: 10px;
}

[data-tema="2"] .desktop-cart-item-name {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    color: var(--tema2-text);
}

[data-tema="2"] .desktop-cart-item-price {
    color: var(--tema2-text);
}

[data-tema="2"] .desktop-cart-footer {
    background: var(--tema2-bg);
    border-top: 1px solid var(--tema2-border);
}

[data-tema="2"] .summary-row {
    color: var(--tema2-text-secondary);
}

[data-tema="2"] .summary-row.total {
    color: var(--tema2-text);
    border-top-color: var(--tema2-border);
}

[data-tema="2"] .desktop-order-btn {
    background: var(--tema2-accent);
    border-radius: 8px;
}

[data-tema="2"] .desktop-order-btn:hover:not(:disabled) {
    background: #4a3c32;
}

[data-tema="2"] .desktop-cart-table {
    color: var(--tema2-text-secondary);
}

[data-tema="2"] .desktop-cart-qty-btn {
    border-color: var(--tema2-border);
}

[data-tema="2"] .desktop-cart-qty-btn:hover {
    background: var(--tema2-accent-light);
    border-color: var(--tema2-accent);
    color: var(--tema2-accent);
}

/* ==================== TEMA 2 - DESKTOP RESPONSIVE ==================== */

@media (min-width: 768px) {
    [data-tema="2"] .menu-header {
        padding: 12px 20px;
    }
    
    [data-tema="2"] .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 0;
    }
    
    [data-tema="2"] .category-card {
        border-right: 1px solid var(--tema2-border);
        padding: 20px 16px;
    }
    
    [data-tema="2"] .category-card:nth-child(odd):last-child {
        border-right: none;
    }
    
    [data-tema="2"] .groups-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    [data-tema="2"] .group-card {
        border-right: 1px solid var(--tema2-border);
        padding: 16px;
    }
    
    [data-tema="2"] .products-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    [data-tema="2"] .product-card {
        flex-direction: row;
        padding: 20px 16px;
        border-right: 1px solid var(--tema2-border);
    }
    
    [data-tema="2"] .product-card-image,
    [data-tema="2"] .product-card-placeholder {
        width: 80px;
        height: 80px;
    }
    
    [data-tema="2"] .product-page {
        width: 420px;
    }
    
    [data-tema="2"] .product-page-name {
        font-size: 1.8rem;
    }
}

/* =====================================================
   TEMA 2 - EN VIE BEACH TARZI TEK SAYFA MENU
   ===================================================== */

/* Tema 2 Menu Sayfasi */
[data-tema="2"] .tema2-menu-page {
    background: var(--tema2-bg);
    height: 100vh;
    height: 100dvh;
}

/* ==================== TEMA 2 - MENU HEADER ==================== */

[data-tema="2"] .tema2-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--tema2-bg);
    border-bottom: 1px solid var(--tema2-border);
    flex-shrink: 0;
    gap: 12px;
}

[data-tema="2"] .tema2-back-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--tema2-text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

[data-tema="2"] .tema2-back-btn:hover {
    background: var(--tema2-accent-light);
    color: var(--tema2-accent);
}

[data-tema="2"] .tema2-header-brand {
    flex: 1;
    text-align: left;
    padding: 0;
    min-width: 0;
}

[data-tema="2"] .tema2-header-restaurant {
    font-family: var(--tema2-font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--tema2-text);
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

[data-tema="2"] .tema2-header-lang {
    padding: 6px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--tema2-border);
    border-radius: 4px;
    color: var(--tema2-text);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

[data-tema="2"] .tema2-header-lang:hover {
    background: var(--tema2-accent-light);
    border-color: var(--tema2-accent);
    color: var(--tema2-accent);
}

/* ==================== TEMA 2 - CATEGORY TAB BAR ==================== */

[data-tema="2"] .tema2-category-tabs {
    flex-shrink: 0;
    padding: 8px 16px;
    background: var(--tema2-bg);
    border-bottom: 1px solid var(--tema2-border);
}

[data-tema="2"] .tema2-tabs-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

[data-tema="2"] .tema2-tabs-scroll::-webkit-scrollbar {
    display: none;
}

[data-tema="2"] .tema2-tabs-container {
    display: flex;
    gap: 16px;
    width: max-content;
}

[data-tema="2"] .tema2-tab {
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    font-family: var(--tema2-font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 1px;
}

[data-tema="2"] .tema2-tab:hover {
    color: var(--tema2-accent);
    background: transparent;
}

[data-tema="2"] .tema2-tab.active {
    color: var(--tema2-accent);
    border-bottom-color: var(--tema2-accent);
    background: transparent;
}

/* ==================== TEMA 2 - GROUP TAB BAR ==================== */

[data-tema="2"] .tema2-group-tabs {
    flex-shrink: 0;
    padding: 0 16px;
    background: var(--tema2-bg-warm);
    border-bottom: 1px solid var(--tema2-border);
}

[data-tema="2"] .tema2-group-tabs-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

[data-tema="2"] .tema2-group-tabs-scroll::-webkit-scrollbar {
    display: none;
}

[data-tema="2"] .tema2-group-tabs-container {
    display: flex;
    gap: 20px;
    width: max-content;
}

[data-tema="2"] .tema2-group-tab {
    padding: 10px 6px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    font-family: var(--tema2-font-serif);
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    color: #1a1a1a;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

[data-tema="2"] .tema2-group-tab:hover {
    color: var(--tema2-text);
    background: transparent;
}

[data-tema="2"] .tema2-group-tab.active {
    color: var(--tema2-text);
    border-bottom-color: var(--tema2-accent);
    background: transparent;
    font-weight: 600;
}

/* ==================== TEMA 2 - MENU CONTENT ==================== */

[data-tema="2"] .tema2-menu-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    background: var(--tema2-bg);
}

[data-tema="2"] .tema2-menu-grid {
    padding: 24px 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Loading Spinner */
[data-tema="2"] .tema2-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--tema2-text-secondary);
    font-size: 1.5rem;
}

/* ==================== TEMA 2 - SECTION (GRUP) ==================== */

[data-tema="2"] .tema2-section {
    margin-bottom: 40px;
}

[data-tema="2"] .tema2-section:last-child {
    margin-bottom: 0;
}

[data-tema="2"] .tema2-section-title {
    font-family: var(--tema2-font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--tema2-text);
    margin: 0 0 16px 0;
    letter-spacing: 1.5px;
    text-align: center;
}

[data-tema="2"] .tema2-section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--tema2-border), transparent);
    margin-bottom: 28px;
}

/* ==================== TEMA 2 - PRODUCT LIST ==================== */

[data-tema="2"] .tema2-products-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

[data-tema="2"] .tema2-product-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--tema2-border);
}

[data-tema="2"] .tema2-product-item:last-child {
    border-bottom: none;
}

[data-tema="2"] .tema2-product-info {
    flex: 1;
    min-width: 0;
    padding-right: 16px;
}

[data-tema="2"] .tema2-product-name {
    font-family: var(--tema2-font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--tema2-text);
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

[data-tema="2"] .tema2-product-description {
    font-family: var(--tema2-font-sans);
    font-size: 0.85rem;
    color: var(--tema2-text-secondary);
    line-height: 1.6;
    margin: 0;
}

[data-tema="2"] .tema2-product-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==================== TEMA 2 - LANGUAGE MODAL ==================== */

[data-tema="2"] .tema2-lang-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-tema="2"] .tema2-lang-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

[data-tema="2"] .tema2-lang-modal-content {
    position: relative;
    background: var(--tema2-bg);
    border-radius: 12px;
    padding: 24px;
    min-width: 280px;
    max-width: 90vw;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

[data-tema="2"] .tema2-lang-modal-title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--tema2-text);
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

[data-tema="2"] .tema2-lang-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

[data-tema="2"] .tema2-lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--tema2-bg-warm);
    border: 1px solid var(--tema2-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

[data-tema="2"] .tema2-lang-item:hover {
    background: var(--tema2-accent-light);
    border-color: var(--tema2-accent);
}

[data-tema="2"] .tema2-lang-item.active {
    background: var(--tema2-accent);
    border-color: var(--tema2-accent);
    color: #ffffff;
}

[data-tema="2"] .tema2-lang-flag {
    font-size: 1.3rem;
}

[data-tema="2"] .tema2-lang-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

[data-tema="2"] .tema2-lang-item.active .tema2-lang-name {
    color: #ffffff;
}

/* ==================== TEMA 2 - DESKTOP RESPONSIVE ==================== */

@media (min-width: 768px) {
    [data-tema="2"] .tema2-header-restaurant {
        font-size: 1.6rem;
    }
    
    [data-tema="2"] .tema2-tab {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    [data-tema="2"] .tema2-menu-grid {
        padding: 30px 40px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    [data-tema="2"] .tema2-section-title {
        font-size: 1.6rem;
    }
    
    [data-tema="2"] .tema2-product-item {
        padding: 20px 0;
    }
    
    [data-tema="2"] .tema2-product-name {
        font-size: 1.2rem;
    }
    
    [data-tema="2"] .tema2-product-description {
        font-size: 0.9rem;
    }
    
    [data-tema="2"] .tema2-product-price {
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    [data-tema="2"] .tema2-menu-grid {
        padding: 40px 60px;
        max-width: 1000px;
    }
}
