:root {
    --primary-color: #000000;
    --secondary-color: #4ecdc4;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --background-color: #ffffff;
}

/* Genel Stiller */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.mobile-container {
    max-width: 480px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.menu-header {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

    .menu-header img.logo {
        max-width: 120px;
        max-height: 120px;
    }

    .menu-header .social-links {
        margin-top: 10px;
    }

        .menu-header .social-links a {
            color: var(--dark-gray);
            margin: 0 5px;
            font-size: 1.2rem;
        }

/* Navigation */
.menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.40);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: white;
    border-bottom: 1px solid var(--medium-gray);
    position: relative;
    z-index: 900;
}

.title {
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
    z-index: 900;
    position: relative;
    color: #000;
}

.title-dropdown {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 300;
    font-size: 24px;
    color: #000;
}

    .title-dropdown i {
        margin-left: 5px;
        font-size: 13px;
        color: #000;
    }

/* Menü Navigasyon Yardımcı Elementleri */
.back-button, .search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.2s;
    text-decoration: none;
    font-size: 25px;
    z-index: 900;
    position: relative;
}

    .back-button:hover, .search-button:hover {
        background-color: #f0f0f0;
    }

/* Arama Genişletme */
.search-expanded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

    .search-expanded .search-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 10px;
        font-size: 16px;
        outline: none;
    }

    .search-expanded .close-search {
        padding: 10px;
        color: #555;
        cursor: pointer;
    }

/* Menü Dropdown Stili */
.menu-dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
}

.menu-dropdown-content {
    padding: 10px 0;
}

.menu-dropdown-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.2s;
}

    .menu-dropdown-item:last-child {
        border-bottom: none;
    }

    .menu-dropdown-item:hover {
        background-color: var(--light-gray);
    }

    .menu-dropdown-item.active {
        background-color: var(--light-gray);
        font-weight: 600;
    }

/* Menu List */
.menu-list {
    padding: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.menu-item {
    display: flex;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.menu-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.menu-item-content {
    padding: 10px 15px;
    flex-grow: 1;
}

.menu-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.menu-item-description {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.menu-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Category List */
.category-list {
    padding: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Kategori ayırıcı çizgi için azaltılmış margin değerleri */
hr.category-divider {
    margin: 6px 0 12px 0;
}

.category-card {
    display: flex;
    align-items: center;
    background-color: white;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #eee;
    margin-top: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .category-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.category-card-content {
    flex: 1;
    padding-right: 15px;
}

.category-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.category-card-description {
    font-size: 13px;
    color: #777;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-card-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
}

    .category-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 30px;
}

/* Product List */
.product-list {
    padding: 0 15px;
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
}

.product-grid {
    display: flex;
    flex-direction: column;
}

/* Ürün Kartı - 3 Katlı Yeni Tasarım */
.product-card {
    display: flex;
    overflow: hidden;
    background: white;
    margin-bottom: 15px;
    padding: 0px 0px 0px 0px;
    display: flex;
    flex-direction: column; /* Dikey yerleşim - 3 kat için */
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    position: relative;
    border-bottom: 1px solid #eee;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* 1. Kat - Ürün başlık/açıklama ve resim */
.product-card-main {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.product-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Ürün açıklamasının taşmaması için */
    max-width: 60%; /* İçerik alanının maksimum genişliği azaltıldı */
    padding-right: 0; /* Gap kullanıldığı için padding kaldırıldı */
}

.product-card-title {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 8px;
    color: #333;
}

.product-card-description {
    font-size: 10px;
    color: #666;
    margin: 0;
    word-wrap: break-word; /* Uzun kelimelerin taşmaması için */
    overflow-wrap: break-word;
}

/* Genel resim konteynırı stili */
.product-card-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    align-self: flex-start; /* Resmin üstte kalmasını sağlar */
    flex-shrink: 0; /* Konteynırın küçülmesini engeller */
    position: relative; /* İçindeki resimler için pozisyonlama */
}

/* Ürün sayfası için resim konteynırı (Products.cshtml) */
.product-page .product-card-image-container {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    height: 110px;
}

/* Kategori kartları için resim konteynırı (Categories.cshtml) */
.category-card .product-card-image-container,
.category-list .product-card-image-container {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    height: 130px;
}

/* Ürün sayfalarındaki resimler için kesin boyut (Products.cshtml) */
#productGrid .product-card .product-card-image-container,
.product-page .product-card-image-container {
    width: 110px !important;
    min-width: 110px !important;
    max-width: 110px !important;
    height: 110px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

#productGrid .product-card .product-card-image,
.product-page .product-card-image {
    width: 110px !important;
    height: 110px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    position: relative !important;
}

#productGrid .product-card .product-card-image img,
.product-page .product-card-image img {
    width: 110px !important;
    height: 110px !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

/* Özel yuvarlatılmış köşeler için yeni sınıf */
.rounded-image {
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    overflow: hidden !important;
}

.product-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

    .product-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

/* 2. Kat - Alerjenler ve Fiyat */
.product-card-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Üst hizalama - farklı yüksekliklerde sorun olmaması için */
    width: 100%;
}

.product-card-allergens {
    flex: 1;
    min-width: 0; /* Taşmayı önlemek için */
    margin-right: 10px;
}

.product-allergens-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.product-allergen-tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: #f5f5f5;
    border-radius: 12px;
    font-size: 11px;
    color: #444;
    white-space: nowrap;
}

.product-card-price-container {
    text-align: right;
    min-width: 80px; /* Minimum genişlik */
    margin-left: 10px; /* Alerjenlerden uzaklık */
}

.product-card-price {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
}

/* 3. Kat - Çalışma saati bilgilendirmesi */
.product-card-hours {
    width: 100%;
    margin-top: 2px;
    padding-top: 2px;
}

.product-hours {
    font-size: 12px;
    color: #777;
    margin: 0;
    text-align: center;
    font-style: italic;
    border-radius: 5px;
}

.product-working-hours-closed {
    font-size: 12px;
    text-align: center;
    padding: 5px 8px;
    border-radius: 5px;
}

/* Çalışma saati dışındaki ürün ve kategorilerin görünümü */
.out-of-hours .product-card-title,
.out-of-hours .product-card-description,
.category-out-of-hours .product-card-title,
.category-out-of-hours .product-card-description {
    color: #999;
}

.out-of-hours .product-card-image,
.category-out-of-hours .product-card-image {
    opacity: 0.6;
    filter: grayscale(50%);
}

.no-products-message, .no-results-message {
    text-align: center;
    padding: 30px;
    color: #777;
    font-style: italic;
}

/* Product Detail */
.product-detail {
    padding-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-detail-content {
    padding: 20px 15px;
}

.product-detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: #333;
}

.product-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#total-price {
    color: #2ecc71;
    font-weight: 700;
}

.product-detail-description {
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-options {
    margin-bottom: 20px;
}

.product-options-title {
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-option {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.product-option-name {
    font-size: 0.9rem;
}

.product-option-price {
    font-size: 0.9rem;
    font-weight: 600;
}

.product-allergens {
    margin-bottom: 20px;
}

.product-allergens-title {
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-allergen {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 10px;
    background-color: var(--light-gray);
}

.product-nutrition {
    margin-bottom: 20px;
}

.product-nutrition-title {
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--medium-gray);
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.9rem;
}

/* Product working hours styling */
.product-hours {
    font-size: 10px;
    color: #666;
    display: flex;
    align-items: center;
}

    .product-hours:before {
        content: "\f017";
        font-family: "Font Awesome 5 Free";
        margin-right: 5px;
        color: #888;
        font-style: normal;
    }

.product-working-hours-closed {
    font-weight: 500;
    font-size: 10px;
    margin: 2px 0;
    display: block;
}

.product-working-hours-source {
    color: #777;
    font-size: 0.75rem;
    font-style: italic;
    margin-left: 4px;
}

/* No Menus */
.no-menus {
    text-align: center;
    padding: 50px 20px;
}

    .no-menus i {
        font-size: 3rem;
        color: var(--dark-gray);
        margin-bottom: 20px;
    }

    .no-menus h2 {
        margin-bottom: 15px;
    }

    .no-menus p {
        color: var(--dark-gray);
    }

/* Responsive */
@media (min-width: 768px) {
    .mobile-container {
        max-width: 768px;
    }
}

/* Mobil cihazlar için ek iyileştirmeler */
@media (max-width: 576px) {
    .menu-header h1 {
        font-size: 1.5rem;
    }

    .menu-header h2 {
        font-size: 1.2rem;
    }

    .product-detail-image {
        height: 390px;
    }

    .product-detail-title {
        font-size: 1.3rem;
    }
}



/* Restoran Başlık */
.restaurant-header {
    text-align: center;
    padding: 30px 15px 10px 15px;
    background-color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.40);
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo-container {
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-logo {
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.restaurant-name {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px;
}

.branch-name {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin: 0 0 15px;
}

/* Sosyal Medya Linkleri */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .social-link:hover {
        background-color: #e0e0e0;
        transform: translateY(-2px);
    }

/* Arama Kutusu */

.search-box-form {
    flex: 1;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    flex: 1;
    padding: 0 0px 0px 15px;
    margin-right: 10px;
    border: 1px solid #4A4A4A;
}

.search-container {
    display: flex;
    padding: 0px 10px 0px 10px;
    background-color: white;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.search-icon, .translate-icon, .back-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #4A4A4A;
    color: #4A4A4A;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 12px;
    outline: none;
    font-style: italic;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    margin-right: 4px;
}

.language-btn {
    background-color: white;
    border: 1px solid #4A4A4A;
    border-radius: 20px;
    padding: 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s;
    height: 40px;
    width: 60px;
}

    .language-btn:hover, .language-btn:focus {
        background-color: #f8f9fa;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .language-btn i {
        font-size: 1.2rem;
        color: #3b82f6;
    }

/* Center the translate icon within fixed-width button */
.language-btn .translate-icon {
    margin-right: 0;
}

.language-selector .dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
    min-width: 160px;
}

.language-selector .dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s;
}

    .language-selector .dropdown-item:hover {
        background-color: #f0f7ff;
    }

    .language-selector .dropdown-item.active {
        background-color: #3b82f6;
        color: white;
    }

        .language-selector .dropdown-item.active:hover {
            background-color: #2563eb;
        }

.language-selector .current-language {
    margin-left: 5px;
    font-weight: 500;
}

/* Currency selector styles to match language selector */
.currency-selector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    margin-right: 0; /* placed after language, spacing handled inline */
}

.currency-btn {
    background-color: white;
    border: 1px solid #4A4A4A;
    border-radius: 20px;
    padding: 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s;
    height: 40px;
    width: 60px;
}

.currency-btn:hover, .currency-btn:focus {
    background-color: #f8f9fa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Remove extra right margin from currency text to keep centered */
.currency-btn .me-1 {
    margin-right: 0 !important;
}

.currency-selector .dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
    min-width: 160px;
}

.currency-selector .dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s;
}

.currency-selector .dropdown-item:hover {
    background-color: #f0f7ff;
}

.currency-selector .dropdown-item.active {
    background-color: #3b82f6;
    color: white;
}

.currency-selector .dropdown-item.active:hover {
    background-color: #2563eb;
}

/* Menü Kartları */
.menus-container {
    background-color: white;
    margin: 15px 0px 10px 0px;
    padding: 0px 15px 0px 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 15px;
    color: #333;
}

.menu-cards {
    display: flex;
    overflow-x: auto;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    align-items: center;
    height: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

    .menu-cards::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.menu-card {
    display: flex;
    flex-direction: column;
    width: 150px;
    height: 320px;
    background-color: white;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

    .menu-card:hover {
        transform: translateY(-3px);
    }

.menu-info {
    padding: 5px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    height: 140px;
    overflow: hidden;
}

.menu-title {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 5px;
    color: #4A4A4A;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-description {
    font-size: 10px;
    color: #4A4A4A;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 60px;
}

.menu-hours {
    font-size: 10px;
    color: #4A4A4A;
    font-weight: 500;
    display: flex;
    align-items: center;
}

    .menu-hours::before {
        content: "\f017";
        font-family: "Font Awesome 5 Free";
        margin-right: 5px;
        font-size: 12px;
    }

.menu-card:last-child {
    margin-right: 0;
}

.menu-image {
    height: 150px;
    width: 150px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

    .menu-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.menu-icon {
    font-size: 40px;
    color: #ccc;
}

/* Kategori Sekmeleri */
.category-tabs-container {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #fff;
    padding: 10px 0;
    transition: box-shadow 0.3s ease;
}

    .category-tabs-container.sticky {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

.category-tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
}

    .category-tabs::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.category-tab {
    padding: 10px 18px;
    margin-right: 0;
    background-color: transparent;
    color: #4A4A4A;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
    border-radius: 0;
}

    .category-tab:not(:last-child)::after {
        content: '|';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #ddd;
    }

    .category-tab.active {
        background-color: transparent;
        color: #000;
        box-shadow: none;
        position: relative;
    }

        .category-tab.active::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 4px;
            background-color: #000;
            border-radius: 4px;
        }

    .category-tab:hover:not(.active) {
        background-color: transparent;
        transform: none;
        color: #666;
    }

/* Ürün Listesi */

.product-category {
    background-color: white;
    padding-top: 20px;
    margin-bottom: 20px;
    scroll-margin-top: 130px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-list.no-categories {
    padding-top: 0;
    margin-top: 10px;
}

    .product-list.no-categories .product-category {
        padding-top: 10px;
    }

.product-category-title {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #4A4A4A;
    line-height: 1;
    display: flex;
    align-items: center;
}

.no-products-message, .no-results-message {
    text-align: center;
    padding: 30px;
    color: #777;
    font-style: italic;
}

/* Arama Genişletme */
.search-expanded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

    .search-expanded .search-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 10px;
        font-size: 16px;
        outline: none;
    }

    .search-expanded .close-search {
        padding: 10px;
        color: #555;
        cursor: pointer;
    }

/* Ürün Detay Sayfası */
.product-detail-container {
    background-color: white;
    margin-top: 45px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-detail-image-container {
    width: 100%;
    height: 390px;
    overflow: hidden;
    position: relative;
}

.product-detail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #ccc;
    font-size: 60px;
}

.product-detail-content {
    padding: 20px;
}

.product-detail-title {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 10px;
    color: #333;
}

.product-detail-price {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 15px;
}

.product-detail-description {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.product-detail-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

    .product-detail-section:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.section-title {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 15px;
    color: #333;
}

/* Ürün Seçenekleri */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.2s;
}

    .product-option:hover {
        background-color: #f0f0f0;
    }

.product-option-name {
    font-weight: 500;
    color: #333;
}

.product-option-price {
    font-weight: 600;
    color: #000000;
}

/* Alerjenler */
.product-allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-allergen {
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
}

/* Besin Değerleri */
.product-nutrition {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.nutrition-item {
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.nutrition-label {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.nutrition-value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Responsive Tasarım */
@media (min-width: 768px) {
    .product-detail-container {
        display: flex;
        flex-direction: row;
    }

    .product-detail-image-container {
        width: 40%;
        height: auto;
    }

    .product-detail-content {
        width: 60%;
    }
}

/* Ekstralar Bölümü */
.product-extras {
    margin-top: 10px;
}

.product-extra-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.product-extra-name {
    font-weight: 500;
    font-size: 16px;
}

.product-extra-price {
    font-weight: 600;
}

.category-header {
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

    .category-header::before {
        content: '';
        width: 50px;
        height: 4px;
        background-color: #4A4A4A;
        margin-right: 12px;
        margin-left: -15px;
        flex-shrink: 0;
        border-radius: 0 3px 3px 0;
    }

.product-card-price-mobile {
    font-size: 18px;
    font-weight: 600;
    display: none;
}

.menu-content {
    flex-grow: 1;
    overflow: hidden;
}

/* Menu Container */
.menu-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 110px; /* menu-nav (60px) + category-tabs-container (50px) */
    box-sizing: border-box;
}

/* Menü Ayracı */
.menu-separator {
    height: 240px;
    width: 0;
    border-right: 2px solid #ccc;
    margin: 0 15px;
    align-self: center;
    flex-shrink: 0;
    display: block;
}

/* Karşılama Ekranı Stilleri */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: none;
    overflow: hidden;
}

/* Ürün Detay Sayfası Stilleri */
.product-detail-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
}

.product-detail-image-container {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
}

.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0 0 12px 12px;
    max-width: 100%;
}

.product-detail-placeholder {
    width: 100%;
    height: 390px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 12px 12px;
}

    .product-detail-placeholder i {
        font-size: 48px;
        color: #ccc;
    }

.product-back-button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background-color: #4A4A4A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    color: white;
    text-decoration: none;
}

.back-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.product-detail-content {
    padding: 20px;
}

.product-detail-title {
    font-size: 24px;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 10px;
}

.product-detail-price {
    font-size: 20px;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 15px;
}

.product-detail-description {
    margin-bottom: 20px;
    color: #4A4A4A;
}

.product-detail-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 10px;
}

/* Yeni eklenen slider stilleri */
.welcome-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.welcome-slider-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.welcome-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    padding: 20px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-sizing: border-box;
}

.welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.welcome-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 20;
    color: #333;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-body {
    flex: 1;
    max-width: 100%;
    overflow-x: hidden;
}

/* Başlık olmadığında içerik düzenlemeleri */
.welcome-slide.no-title .welcome-body {
    padding-top: 0px; /* Başlık yoksa üstten ekstra boşluk */
}

.welcome-image {
    margin-bottom: 15px;
    display: none;
    /* 4 kenardan ortalama için flexbox */
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 200px;
}

    .welcome-image img {
        max-width: 100%;
        max-height: 60vh;
        width: auto;
        height: auto;
        border-radius: 8px;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

.welcome-content {
    max-width: 100%;
    overflow-x: hidden;
}

.welcome-footer {
    margin-top: 20px;
    margin-bottom: 50px;
    display: none;
}

.welcome-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color, #ff6b6b);
    color: white;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: bold;
}

    .welcome-button:hover {
        background-color: #e74c3c;
        color: white;
        text-decoration: none;
    }

.welcome-close-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #ddd;
    cursor: pointer;
}

/* Slider kontrolleri */
.welcome-slider-controls {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    z-index: 15;
    width: auto;
    margin: 0 auto;
}

.welcome-slider-nav {
    display: flex;
    width: 100%;
    max-width: 300px;
    justify-content: space-between;
    align-items: center;
}

.welcome-slider-prev,
.welcome-slider-next {
    background: var(--primary-color, #ff6b6b);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

    .welcome-slider-prev:hover,
    .welcome-slider-next:hover {
        opacity: 1;
    }

.welcome-slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex: 1;
}

.welcome-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .welcome-slider-dot.active {
        background-color: var(--primary-color, #ff6b6b);
    }

/* Branch ve Menü Not Alanları */
.branch-notes,
.menu-notes {
    padding: 5px 15px;
    color: #6c757d;
    font-size: 0.9em;
    line-height: 1.5;
    border-top: 1px solid #dee2e6;
    margin-top: auto;
    background-color: white;
}

    .branch-notes i,
    .menu-notes i {
        color: #17a2b8;
        margin-right: 8px;
    }

    .branch-notes p,
    .menu-notes p {
        margin: 0;
        display: inline;
    }

/* Arama Sayfası Stilleri */
.search-title {
    font-weight: 500;
    text-align: center;
}

.search-expanded.active {
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin: 10px 15px;
    height: 50px;
}

    .search-expanded.active form {
        display: flex;
        width: 100%;
    }

.search-expanded form {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.search-submit {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.search-results-container {
    padding: 15px;
}

.search-summary {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
}

.search-filters {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 20px;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
}

    .search-filters::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.filter-button {
    background-color: var(--light-gray);
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

    .filter-button.active {
        background-color: var(--primary-color);
        color: white;
    }

.search-results-heading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 8px;
}

.search-results-section {
    margin-bottom: 30px;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-result-item {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .search-result-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.search-result-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.search-result-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.search-result-description {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 40px;
}

.search-result-metadata {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin: 0 0 5px 0;
}

    .search-result-metadata i {
        margin-right: 5px;
    }

.search-result-price {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-color);
}

.search-result-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
}

    .search-result-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.no-results {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.no-results-icon {
    font-size: 2.5rem;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.no-results-message {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.no-results-suggestions {
    font-size: 0.9rem;
    text-align: left;
    color: var(--dark-gray);
}

    .no-results-suggestions ul {
        margin-top: 5px;
        padding-left: 20px;
    }

/* Promoted Products Slider */
#promotedProductsSection {
    margin-top: 10px;
}

#promotedProductsSection .promoted-track {
    display: flex;
    width: 100%;
    will-change: transform;
}

#promotedProductsSection .promoted-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0;
}

#promotedProductsSection .promoted-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background: #fff;
}

#promotedProductsDots.promoted-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#promotedProductsDots .promoted-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--light-gray, #e5e7eb);
    transition: background-color 0.2s ease, transform 0.2s ease, width 0.2s ease;
    cursor: pointer;
}

#promotedProductsDots .promoted-dot.active {
    width: 20px;
    border-radius: 6px;
    background: var(--primary-color, #AE0000);
}

/* Promoted Products Slider - Container & Track */
.promoted-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.promoted-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
}

.promoted-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.promoted-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.promoted-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.promoted-dot.active {
    background-color: #AE0000;
}

/* Promoted Products Slider - New Design */
.promoted-card-design {
    background: white;
    border-radius: 12px;
    padding: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0px 10px;
}

.promoted-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed #AE0000;
    border-radius: 12px;
    pointer-events: none;
}

.promoted-image-container {
    position: relative;
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.promoted-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.promoted-image-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    border-radius: 8px;
}

.promoted-soldout-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: #6c757d;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.promoted-chef-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #AE0000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    text-transform: lowercase;
    z-index: 2;
}

.promoted-chef-text {
    margin-bottom: 2px;
    text-align: center;
}

.promoted-chef-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promoted-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    min-width: 0;
}

.promoted-title {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 4px 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promoted-description {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promoted-price {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin: 0;
    align-self: flex-end;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .promoted-card-design {
        padding: 10px;
        gap: 10px;
    }
    
    .promoted-image-container {
        width: 64px;
        height: 64px;
    }
    
    .promoted-chef-badge {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    
    .promoted-title {
        font-size: 14px;
    }
    
    .promoted-description {
        font-size: 11px;
    }
    
    .promoted-price {
        font-size: 16px;
    }
}

/* TMenu Tab Styles */

.tmenu-tab {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    padding: 8px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.tmenu-tab:hover {
    color: #000;
}

.tmenu-tab.active {
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.tmenu-separator {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #999;
    user-select: none;
}

/* About Tab Styles */
.about-header {
    padding: 10px 0 0 0;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.about-branch {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 2px 0 0 0;
}

.about-description {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    margin: 8px 0 0 0;
    line-height: 1.4;
    white-space: pre-line;
}

.share-btn-compact {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn-compact:hover {
    background: #e9ecef;
    color: #333;
    transform: scale(1.1);
}

.share-options-compact {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
}

.share-option-compact {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-option-compact.whatsapp { background: #25D366; }
.share-option-compact.telegram { background: #0088cc; }
.share-option-compact.facebook { background: #1877f2; }
.share-option-compact.twitter { background: #1da1f2; }
.share-option-compact.copy { background: #6c757d; }

.share-option-compact:hover {
    transform: scale(1.1);
    opacity: 0.9;
    color: white;
}

.website-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.website-btn:hover {
    background: #e9ecef;
    color: #000;
}

.about-contact-compact {
    margin: 16px 0;
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.contact-icon-inline {
    color: #666;
    font-size: 14px;
    width: 16px;
}

.contact-label-inline {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

.contact-right {
    flex: 1;
    text-align: right;
}

.contact-value-inline {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.3;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-action-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    padding: 4px 8px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-action-inline:hover {
    background: #e9ecef;
    color: #333;
}

.social-links-inline {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}

.social-link-inline {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-link-inline.facebook { background: #1877f2; }
.social-link-inline.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-link-inline.twitter { background: #000000; }
.social-link-inline.x { background: #000000; }
.social-link-inline.youtube { background: #ff0000; }
.social-link-inline.tiktok { background: #000000; }
.social-link-inline.linkedin { background: #0077b5; }
.social-link-inline.website { background: #6c757d; }
.social-link-inline.tripadvisor { background: #00af87; }
.social-link-inline:not([class*=" "]):not([class^="social-link-inline "]) { background: #6c757d; }

.social-link-inline:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.about-map {
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

@media (max-width: 576px) {
    .about-actions {
        gap: 12px;
    }
    
    .about-btn {
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .share-options {
        gap: 8px;
        padding: 12px;
    }
    
    .share-option {
        min-width: 50px;
        padding: 6px 8px;
    }
    
    .contact-item {
        gap: 12px;
        padding: 16px 0;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* ===== Modern Size Options ===== */
.product-size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.size-option-card {
    position: relative;
    display: block;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.size-option-card.active,
.size-option-card:has(input:checked) {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.size-option-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.size-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.size-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== Modern Extra Groups ===== */
.extra-group-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.extra-group-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f5f5f5;
}

.extra-group-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.extra-group-helper {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.extra-required-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.extra-group-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extra-item-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.extra-item-card input[type="checkbox"],
.extra-item-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.extra-item-card:hover {
    border-color: var(--primary-color);
    background: #fafafa;
    transform: translateX(4px);
}

.extra-item-card:has(input:checked) {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.extra-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 12px;
}

.extra-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.extra-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.extra-item-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.extra-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.extra-item-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.extra-item-check i {
    font-size: 14px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extra-item-card:has(input:checked) .extra-item-check {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.extra-item-card:has(input:checked) .extra-item-check i {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .product-size-options {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .size-option-card {
        padding: 14px;
    }
    
    .size-name {
        font-size: 14px;
    }
    
    .size-price {
        font-size: 16px;
    }
    
    .extra-group-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .extra-group-title h4 {
        font-size: 16px;
    }
    
    .extra-item-card {
        padding: 14px;
    }
    
    .extra-item-name {
        font-size: 14px;
    }
    
    .extra-item-price {
        font-size: 15px;
    }
}
