﻿:root {
    --primary-heading-color: rgb(51, 51, 51);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F2F0EF;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-heading-color);
}

.header {
    text-align: center;
    padding: 0;
    border-bottom: 1px solid #eee;
    color: white;
}

    .header h1 {
        font-size: 42px;
        color: #fff;
        margin-bottom: 10px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    }

.header-text {
    padding: 16px 12px 24px;
    text-align: center;
}

    .header-text h1 {
        font-size: 24px;
        color: #333;
        margin-bottom: 6px;
    }

    .header-text h5 {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 20px;
    }

    .header-text h5 {
        font-size: 13px;
    }
}

.menu-category {
    margin: 50px 0 30px;
    text-align: center;
}

.category-title {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 5px;
    margin-bottom: 25px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}

    .category-title::before {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: var(--primary-heading-color);
    }

.menu-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

    .menu-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        background-color: #fdfdfd; /* çok hafif bir geri plan efekti */
        cursor: pointer;
    }

    .menu-item img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 20px;
        transition: transform 0.2s ease;
    }

.item-details {
    width: 100%;
}

.item-name-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .item-name-line h4,
    .item-name-line .item-price {
       /* padding: 0 6px;*/
        font-size: 15px;
        font-weight: 600;
        margin: 0;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
    }

.item-description {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
    text-align: left;
}

@media (max-width: 768px) {
    .item-name-line {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-item img {
        margin-bottom: 10px;
    }
}

html {
    scroll-behavior: smooth;
}

.category-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 40px 0 20px 0;
    justify-content: center;
}

    .category-icons .btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        font-size: 14px;
        color: #000;
        text-decoration: none;
        border: 1px solid var(--primary-heading-color);
        transition: background-color 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }

        .category-icons .btn:not(:last-child) {
            border-right: none;
        }

        .category-icons .btn:hover {
            background-color: var(--primary-heading-color);
            color: #000;
        }

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    background-color: var(--primary-heading-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    outline: none;
    display: flex; /* Butonun içeriğini ortalamak için */
}

    #scrollTopBtn:hover {
        opacity: 0.8;
    }

.language-selector {
    text-align: right;
    padding: 10px 15px;
    position: relative;
}

    .language-selector select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding: 8px 30px 8px 16px;
        border-radius: 25px; /* Pill şekli */
        border: 1px solid #ddd;
        background-color: #fff;
        font-size: 14px;
        color: #333;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        cursor: pointer;
        transition: all 0.3s ease;
        outline: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        min-width: 100px;
    }

    /* Custom dropdown arrow */
    .language-selector::after {
        content: '▼';
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        color: #666;
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .language-selector select:hover {
        background-color: #F2F0EF;
        border-color: #ccc;
        box-shadow: 0 6px 16px rgba(89, 89, 89, 0.15);
        transform: translateY(-1px);
    }

    .language-selector select:focus {
        border-color: var(--primary-heading-color);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(51, 51, 51, 0.1);
    }

    .language-selector:hover::after {
        transform: translateY(-50%) rotate(180deg);
    }

@media (max-width: 600px) {
    .language-selector {
        text-align: right;
        padding: 8px 10px;
    }

        .language-selector select {
            font-size: 13px;
            padding: 6px 25px 6px 12px;
            min-width: 85px;
        }

        .language-selector::after {
            right: 20px;
            font-size: 9px;
        }
}


/* Yeni footer top: önce işletme adı, sonra sosyal linkler */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

/* İşletme Adı */
.footer-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-top: 4px;
}

/* İsimli sosyal ikonlar */
.social-icons-with-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #222;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .social-link i {
        font-size: 18px;
        color: #222;
        transition: color 0.3s ease;
    }

    .social-link:hover {
        color: #c59d5f;
    }

        .social-link:hover i {
            color: #c59d5f;
        }

/* Ayırıcı çizgi */
.footer-divider {
    border: none;
    height: 1px;
    margin: 16px auto;
    background-color: #747373;
    width: 80%;
}

/* Alt powered & copyright alanı */
.footer-bottom {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

    .footer-bottom .powered {
        font-weight: 500;
    }

    .footer-bottom .copyright {
        font-size: 11px;
    }

/* FooterEnd */


/* FooterEnd*/

.loader-overlay-transparent {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(1px);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

.qr-wrapper {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.loader-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.loader-bar {
    width: 180px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-inner {
    width: 30%;
    height: 100%;
    background-color: black;
    animation: loading-bar-move 1.6s infinite ease-in-out;
    position: relative;
    left: 0;
}

@keyframes loading-bar {
    0% {
        width: 0%;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

@keyframes loading-bar-move {
    0% {
        left: 0%;
    }

    50% {
        left: 70%;
    }

    100% {
        left: 0%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === ALERJEN BLOĞU – 6 × 2 sabit grid ================================ */
.allergen-section {
    margin: 40px auto 28px;
    max-width: 900px;
    text-align: center;
}

.section-title {
    font-weight: 600;
    color: #607d8b;
    margin-bottom: 18px;
}

/* sabit 6 sütun – satır sayısını otomatik bırak */
.allergen-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr); /* 6 sütun her ekranda */
    gap: 14px 10px; /* satır 14 px, sütun 10 px aralık */
    justify-items: center;
}

/* hücre */
.allergen-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .78rem;
    line-height: 1.15;
    color: #455a64;
}

    /* emoji */
    .allergen-item .emoji {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }

/* Küçük ekranlarda ölçek küçült: */
@media (max-width:480px) {
    .allergen-item {
        font-size: .7rem
    }

        .allergen-item .emoji {
            font-size: 1.35rem
        }
}

.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.product-modal {
    background: white;
    padding: 24px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: relative;
    text-align: center;
    max-height: 90vh; /* Bu satırı ekleyin */
    display: flex; /* Bu satırı ekleyin */
    flex-direction: column; /* Bu satırı ekleyin */
    overflow: hidden; /* Bu satırı ekleyin */
}

@media (max-width: 480px) {
    .modal-image {
        max-height: 250px;
    }
}

.modal-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
    object-fit: contain;
    max-height: 300px;
    cursor: pointer;
    background: #f8f9fa;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-close:hover {
        background: rgba(0, 0, 0, 0.95);
        transform: scale(1.1);
    }

.modal-allergens {
    margin-top: 12px;
}

    .modal-allergens .emoji {
        font-size: 1.5rem;
        margin: 0 4px;
    }

.price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-heading-color);
    margin: 8px 0;
}

.meta {
    color: #555;
    font-size: 0.9rem;
}


.modal-content-scroll {
    overflow-y: auto;
    flex: 1;
    padding: 20px;
}

    /* Scroll bar styling (opsiyonel) */
    .modal-content-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .modal-content-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .modal-content-scroll::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }


/* Kategori Scroll Wrapper - Öne Çıkarılanlar Mantığıyla */
.category-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #F2F0EF;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}


    /* WebKit scrollbar */
    .category-scroll-wrapper::-webkit-scrollbar {
        height: 4px;
        display: block; /* HEP GÖRÜNÜR */
    }

    .category-scroll-wrapper::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 3px;
    }

    .category-scroll-wrapper::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.4);
        border-radius: 2px;
    }

        .category-scroll-wrapper::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.4);
        }

.category-scroll {
    display: flex;
    gap: 12px;
    padding: 0 16px 8px 16px;
    min-width: max-content;
}

.chip {
    flex: 0 0 auto; /* Öne çıkarılanlar gibi sabit boyut */
    white-space: nowrap;
    background-color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    color: black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 80px;
    text-align: center;
}

    .chip:hover {
        background-color: #F2F0EF;
        box-shadow: 0 6px 16px rgba(89, 89, 89, 0.25);
        color: black;
    }

    .chip.active {
        border: 2px solid #F2F0EF;
        background-color: #F2F0EF;
        color: black;
        font-weight: 600;
    }

/* Mobilde scroll bar gizle */
@media (max-width: 768px) {
    .category-scroll-wrapper {
        padding: 10px 0;
    }

    .category-scroll {
        padding: 0 12px 6px 12px;
        gap: 8px;
        min-width: max-content; /* TEKRAR YAZMALIYIZ */
        width: max-content; /* TEKRAR YAZMALIYIZ */
    }
}

/* Mobilde özel ayar */
@media (max-width: 480px) {
    .category-scroll {
        padding: 0 8px 6px 8px;
        gap: 6px;
        min-width: max-content; /* TEKRAR YAZMALIYIZ */
        width: max-content; /* TEKRAR YAZMALIYIZ */
    }
}


.site-footer {
    background-color: #f7f6f4;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 14px;
}

.footer-brand {
    margin-bottom: 10px;
    color: #666;
}

    .footer-brand a {
        color: #c59d5f;
        text-decoration: none;
        font-weight: 500;
    }

    .footer-brand .divider {
        margin: 0 6px;
        color: #999;
    }

.footer-note {
    font-size: 13px;
    color: #666;
    margin: 10px 0 6px;
    font-style: italic;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
}

    .social-icons a {
        font-size: 20px;
        color: #444;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: #c59d5f;
        }

.modal-variations {
    margin-top: 12px;
    text-align: left;
    font-size: 14px;
}

    .modal-variations strong {
        display: block;
        margin-bottom: 4px;
        font-weight: 600;
        color: #333;
    }

.modal-variations {
    margin-top: 12px;
    text-align: left;
    font-size: 14px;
}

    .modal-variations strong {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: var(--primary-heading-color);
    }

.variation-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.variation-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed #eee;
}

.variation-name {
    flex: 1;
    color: #444;
}

.variation-price {
    white-space: nowrap;
    color: var(--primary-heading-color);
    font-weight: 500;
}

.calorie-info {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    text-align: left;
}

.modal-allergens {
    margin-top: 18px;
    font-size: 14px;
    text-align: left;
}

    .modal-allergens strong {
        display: inline-block;
        margin-bottom: 4px;
        font-weight: 600;
        color: #444;
    }

.emoji {
    font-size: 22px;
    margin: 0 4px;
}


/* Hamburger Icon */
.hamburger-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    font-size: 24px;
    z-index: 99; /* 1001'den 99'a düşürdük */
    color: #333;
}

/* Overlay for dark background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

/* Sidebar menu */
/* === Hamburger Side Menu === */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    padding: 20px;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    scrollbar-width: thin;
}

    .side-menu.open {
        left: 0;
    }

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
}

.menu-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    padding: 16px;
    margin-bottom: 18px;
}

    .menu-section h6 {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-heading-color);
        margin-bottom: 12px;
        border-bottom: 1px solid #eee;
        padding-bottom: 4px;
    }

/* === Özellik Listesi === */
.feature-list {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #333;
}

.working-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .working-hours li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        border-radius: 6px;
        padding: 6px 8px;
        background-color: #f5f5f5;
    }

        .working-hours li.today {
            border: 1px solid #aaa;
            background-color: #fff;
        }

.day-label {
    flex: 1;
    text-align: left;
    font-weight: 500;
    color: #333;
}

.time-range {
    flex: 1;
    text-align: center;
    color: #444;
    font-family: monospace;
}

.night-icon {
    flex: 0.3;
    text-align: right;
}

/* === Harita === */
.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .location-header a {
        font-size: 13px;
        color: #007bff;
        text-decoration: none;
    }

        .location-header a:hover {
            text-decoration: underline;
        }

.map-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    border: none;
}

/* === Mobil Uyumluluk === */
@media (max-width: 768px) {
    .side-menu {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .working-hours li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .day-label, .time-range, .night-icon {
        text-align: left;
        flex: none;
    }
}

.campaign-menu-btn {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .campaign-menu-btn:hover {
        background-color: #e64a19;
    }


@media (max-width: 768px) {
    .modal-content {
        max-width: 90%;
        max-height: 85vh;
    }
}


/* --------------------------------------------------
   1) Geri Bildirim Toggle Butonu
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 1–5 Arası Puan Butonları: Kenarlık Renkleri         */
/* -------------------------------------------------- */
.rating-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-button {
    width: 40px;
    height: 40px;
    border: 2px solid #ccc; /* Varsayılan gri kenar */
    border-radius: 50%; /* Tamamen yuvarlak */
    background-color: white; /* İç beyaz (boş) */
    color: #555; /* Metin rengi (seçilmemiş) */
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    /* Hover efekti */
    .rating-button:hover {
        transform: scale(1.1);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    }

    /* -------------------------------------------------- */
    /* Kenarlık ve Metin Renklerini Belirleme (1–5)       */
    /* -------------------------------------------------- */
    .rating-button:nth-child(1) {
        border-color: #e63946;
        color: #e63946;
    }

    .rating-button:nth-child(2) {
        border-color: #f3722c;
        color: #f3722c;
    }

    .rating-button:nth-child(3) {
        border-color: #f9c74f;
        color: #f9c74f;
    }

    .rating-button:nth-child(4) {
        border-color: #90be6d;
        color: #90be6d;
    }

    .rating-button:nth-child(5) {
        border-color: #43aa8b;
        color: #43aa8b;
    }

    .rating-button.selected:nth-child(1) {
        background-color: #e63946;
        border-color: #e63946;
        color: #fff;
    }

    .rating-button.selected:nth-child(2) {
        background-color: #f3722c;
        border-color: #f3722c;
        color: #fff;
    }

    .rating-button.selected:nth-child(3) {
        background-color: #f9c74f;
        border-color: #f9c74f;
        color: #333; /* Sarı zeminde okunurluk */
    }

    .rating-button.selected:nth-child(4) {
        background-color: #90be6d;
        border-color: #90be6d;
        color: #fff;
    }

    .rating-button.selected:nth-child(5) {
        background-color: #43aa8b;
        border-color: #43aa8b;
        color: #fff;
    }


/* -------------------------------------------------- */
/* Diğer Modal ve Genel Stiller (Önceki CSS’e Ekleyin) */
/* -------------------------------------------------- */



.feedback-card-entry {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

    .feedback-card-entry:hover {
        background-color: #f9fafb;
    }

    .feedback-card-entry i {
        font-size: 16px;
        color: #1d4ed8;
    }

/* Modal backdrop */
.feedback-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* Modal kutusu */
.feedback-modal {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Kapatma butonu */
.feedback-close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Başlık */
.feedback-modal h3 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 16px;
    font-size: 18px;
}

/* Yorum alanı */
.feedback-modal textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
}

/* Gönder butonu */
.submit-feedback-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 14px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .submit-feedback-btn:hover {
        background-color: #218838;
    }

/* HAZIRLANMA SÜRESİ STİLLERİ */

/* Ürün kartlarındaki hazırlama süresi */
.preparation-time {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

    .preparation-time i {
        font-size: 0.9rem;
        color: #28a745;
    }

    .preparation-time span {
        color: #495057;
    }

/* Modal'daki bilgi satırı - kalori ve hazırlama süresi yan yana */
.info-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.preparation-info {
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    margin: 0;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .preparation-time {
        font-size: 0.8rem;
        margin-top: 6px;
    }

        .preparation-time i {
            font-size: 0.85rem;
        }

    .info-row {
        flex-direction: column;
        gap: 8px;
    }

    .preparation-info {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .preparation-time {
        font-size: 0.75rem;
        gap: 3px;
    }

    .info-row {
        gap: 6px;
    }

    .preparation-info {
        font-size: 0.85rem;
    }
}

/* Hover efekti */
.menu-item:hover .preparation-time {
    color: #495057;
}

    .menu-item:hover .preparation-time i {
        color: #20c997;
    }




/* Modal Backdrop */
.campaign-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

/* Modal Container */
.campaign-modal-container {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Card */
.campaign-modal-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

/* Close Button */
.campaign-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .campaign-close-btn:hover {
        background: rgba(0, 0, 0, 0.9);
        transform: scale(1.1);
    }

/* Image Container */
.campaign-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f8f9fa;
}

.campaign-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Campaign Info */
.campaign-info {
    padding: 24px;
    text-align: center;
}

.campaign-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.campaign-description {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
    max-height: 120px;
    overflow-y: auto;
}

/* Navigation */
.campaign-navigation {
    display: flex;
    align-items: center;
    justify-content: center; /* space-between yerine center */
    padding: 20px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
}


/* Indicators */
.campaign-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .indicator.active {
        background: #4299e1;
        transform: scale(1.2);
    }

    .indicator:hover {
        background: #4299e1;
    }

/* Animation */
@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .campaign-modal-container {
        max-width: 95%;
        max-height: 85vh;
    }

    .campaign-modal-card {
        border-radius: 16px;
    }

    .campaign-image-container {
        aspect-ratio: 4/3;
    }

    .campaign-info {
        padding: 20px;
    }

    .campaign-title {
        font-size: 1.25rem;
    }

    .campaign-description {
        font-size: 0.9rem;
        max-height: 100px;
    }

    .campaign-navigation {
        padding: 16px 20px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .campaign-modal-container {
        max-width: 98%;
    }

    .campaign-image-container {
        aspect-ratio: 1/1;
    }

    .campaign-info {
        padding: 16px;
    }

    .campaign-title {
        font-size: 1.1rem;
    }

    .campaign-navigation {
        padding: 12px 16px;
    }
}


/* ======================================
   ÖNE ÇIKANLAR BÖLÜMİ - TEMİZ VERSİYON
====================================== */
.highlights-section {
    margin: 20px 0;
    padding: 0 15px;
}

.highlights-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 3px 12px 3px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* BU SATIRLARI EKLE */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

    /* BU KODLARI EKLE - WebKit scrollbar */
    .highlights-container::-webkit-scrollbar {
        height: 4px;
        display: block;
    }

    .highlights-container::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 2px;
    }

    .highlights-container::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.4);
        border-radius: 2px;
        transition: background 0.3s ease;
    }

        .highlights-container::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.6);
        }

.highlight-item {
    flex: 0 0 auto;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .highlight-item:hover {
        transform: scale(1.05);
    }

.highlight-image-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ff6b35;
    padding: 2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    box-shadow: 0 3px 8px rgba(255, 107, 53, 0.25);
    margin-bottom: 6px;
    position: relative;
}

.highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
}

.highlight-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #6c757d;
}

.highlight-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 480px) {
    .highlights-section {
        margin: 15px 0;
        padding: 0 10px;
    }

    .highlights-container {
        padding-bottom: 10px;
    }

    .highlight-item {
        width: 70px;
    }

    .highlight-image-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 5px;
    }

    .highlight-name {
        font-size: 0.7rem;
        max-width: 65px;
    }

    .highlight-placeholder {
        font-size: 1.2rem;
    }
}


/* ======================================
   HIGHLIGHT MODAL COMPONENT CSS
====================================== */

/* Modal Backdrop */
.highlight-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(6px);
}

/* Modal Container */
.highlight-modal-container {
    width: 100%;
    max-width: 400px;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Card */
.highlight-modal-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    width: 100%;
    animation: highlightSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

/* Close Button */
.highlight-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .highlight-close-btn:hover {
        background: rgba(0, 0, 0, 0.95);
        transform: scale(1.1);
    }

/* Instagram-style Navigation Areas */
.highlight-navigation-areas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    display: flex;
}

.nav-area {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.nav-left {
    background: transparent;
}

.nav-right {
    background: transparent;
}

/* Hover effect for navigation areas */
.nav-area:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Progress Bars */
.highlight-progress-container {
    position: absolute;
    top: 12px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 3px;
    z-index: 10;
    /* Arka plana hafif karanlık bir gölge ekledik */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    padding: 4px 0 8px 0;
    border-radius: 8px;
}

.progress-bar {
    flex: 1;
    height: 3px; /* Biraz daha kalın yaptık */
    background: rgba(0, 0, 0, 0.3); /* Koyu gri arka plan */
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* Her progress bar'a ince beyaz kenar */
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

    .progress-bar.completed {
        background: rgba(255, 255, 255, 0.95);
        border: 0.5px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .progress-bar.active {
        background: rgba(255, 255, 255, 0.95);
        border: 0.5px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 255, 255, 0.6);
    }

/* Image Container */
.highlight-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f8f9fa;
}

.highlight-modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.highlight-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6c757d;
}

/* Product Info */
.highlight-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.highlight-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.highlight-description {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin: 0 0 12px 0;
    max-height: 60px;
    overflow-y: auto;
}

.highlight-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Animation */
@keyframes highlightSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .highlight-modal-container {
        max-width: 90%;
        max-height: 80vh;
    }

    .highlight-modal-card {
        border-radius: 20px;
    }

    .highlight-image-container {
        aspect-ratio: 1/1;
    }

    .highlight-info {
        padding: 16px;
    }

    .highlight-title {
        font-size: 1.2rem;
    }

    .highlight-description {
        font-size: 0.85rem;
        max-height: 50px;
    }

    .highlight-price {
        font-size: 1.1rem;
    }

    .highlight-close-btn {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .highlight-progress-container {
        top: 10px;
        left: 12px;
        right: 12px;
        gap: 2px;
    }

    .progress-bar {
        height: 2px;
    }
}

@media (max-width: 480px) {
    .highlight-modal-container {
        max-width: 95%;
    }

    .highlight-image-container {
        aspect-ratio: 1/1;
    }

    .highlight-info {
        padding: 14px;
    }

    .highlight-title {
        font-size: 1.1rem;
    }

    .highlight-description {
        font-size: 0.8rem;
        max-height: 45px;
    }

    .highlight-price {
        font-size: 1rem;
    }

    .highlight-progress-container {
        gap: 2px;
    }
}

.highlights-header {
    text-align: center;
    margin-bottom: 16px;
}

.highlights-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: none;
}

/* Responsive */
@media (max-width: 480px) {
    .highlights-header {
        margin-bottom: 12px;
    }

    .highlights-title {
        font-size: 1.1rem;
    }
}
