/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red: #d32f2f;
    --red-dark: #b71c1c;
    --red-light: #ef5350;
    --red-soft: #ffebee;
    
    --bg-main: #6b6b6b;
    --bg-light: #7d7d7d;
    --bg-dark: #5a5a5a;
    
    --gray-50: #f7f7f7;
    --gray-100: #efefef;
    --gray-200: #e2e2e2;
    --gray-300: #d0d0d0;
    --gray-400: #a8a8a8;
    --gray-500: #8a8a8a;
    --gray-600: #6b6b6b;
    --gray-700: #555555;
    --gray-800: #3d3d3d;
    --gray-900: #1f1f1f;
    
    --white: #fcfcfc;
    
    --green: #2e7d32;
    --green-dark: #1b5e20;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.18);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.22);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.28);
    --shadow-red: 0 4px 16px rgba(211,47,47,0.4);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 999px;
    
    --tr: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg-main);
    color: var(--gray-900);
    direction: rtl;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0;
    background: var(--bg-main);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1.5rem; animation: pulse 1.5s infinite; background: var(--white); padding: 4px; }
.loader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.3); border-radius: var(--radius-full); overflow: hidden; margin: 0 auto; }
.loader-bar-fill { width: 40%; height: 100%; background: var(--red); border-radius: var(--radius-full); animation: loadBar 1.2s infinite; }
@keyframes loadBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(300%); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--tr);
    box-shadow: var(--shadow-sm);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0.8rem 1rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.7rem; cursor: pointer; }
.logo-img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); padding: 2px; background: var(--white); }
.logo-text h1 { font-size: 1.05rem; font-weight: 900; color: var(--gray-900); line-height: 1.1; }
.logo-text span { font-size: 0.72rem; color: var(--red); font-weight: 700; }
.nav { display: flex; gap: 0.3rem; }
.nav-link { padding: 0.5rem 1rem; border-radius: var(--radius-full); font-weight: 600; font-size: 0.92rem; color: var(--gray-600); transition: var(--tr); }
.nav-link:hover { background: var(--gray-100); color: var(--gray-900); }
.nav-link.active { background: var(--red-soft); color: var(--red); }
.sepet-btn {
    position: relative;
    width: 46px; height: 46px;
    background: var(--red); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: var(--tr);
    box-shadow: var(--shadow-red);
}
.sepet-btn:hover { background: var(--red-dark); transform: scale(1.05); }
.sepet-sayisi {
    position: absolute; top: -4px; left: -4px;
    min-width: 22px; height: 22px; padding: 0 6px;
    background: var(--gray-900); color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.7rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--white);
    transition: var(--tr);
}
.sepet-sayisi.hidden { transform: scale(0); }

/* ===== HERO ===== */
.hero {
    padding: 7rem 1rem 3rem;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.hero-badge {
    display: inline-block;
    background: var(--red); color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700; font-size: 0.82rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-red);
}
.hero h1 {
    font-size: 2.8rem; font-weight: 900;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero h1 span { color: var(--red-light); }
.hero > .hero-inner > p {
    font-size: 1.05rem; color: rgba(255,255,255,0.9);
    margin-bottom: 1.8rem;
}
.btn-primary {
    background: var(--red); color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700; font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: var(--tr);
    box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.hero-info {
    display: flex; justify-content: center; gap: 1rem;
    margin-top: 1.5rem; flex-wrap: wrap;
}
.hero-info-item {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--white); padding: 0.6rem 1.1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    font-size: 0.88rem; font-weight: 600; color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}
.hero-info-item i { color: var(--red); }

/* ===== MENU ===== */
.menu-section { 
    padding: 3rem 1rem; 
    background: var(--bg-main);
}

.search-filter-bar {
    display: flex; gap: 0.7rem; margin-bottom: 1.2rem;
}
.search-wrap {
    flex: 1; position: relative;
}
.search-wrap i {
    position: absolute; right: 1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}
.search-wrap input {
    width: 100%;
    padding: 0.85rem 2.8rem 0.85rem 1rem;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--tr);
    box-shadow: var(--shadow-sm);
}
.search-wrap input:focus {
    outline: none; border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(211,47,47,0.2);
}

/* ===== KATEGORİ AÇILIR KUTU ===== */
.categories-dropdown {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 1.2rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.categories-dropdown-header {
    padding: 0.9rem 1.2rem;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    font-weight: 700; font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--tr);
    user-select: none;
}
.categories-dropdown-header:hover { background: var(--gray-50); }
.categories-dropdown-header i { color: var(--red); transition: transform 0.3s; }
.categories-dropdown.open .categories-dropdown-header i { transform: rotate(180deg); }
.categories-dropdown-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 0 solid var(--gray-200);
}
.categories-dropdown.open .categories-dropdown-body {
    max-height: 600px;
    overflow-y: auto;
    border-top: 1px solid var(--gray-200);
}
.categories-list {
    padding: 0.6rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.4rem;
}
.cat-btn {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-md);
    font-weight: 700; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: var(--tr);
    text-align: right;
    width: 100%;
}
.cat-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-soft); }
.cat-btn.active {
    background: var(--red); border-color: var(--red); color: var(--white);
}
.cat-count {
    background: rgba(0,0,0,0.06);
    padding: 1px 6px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    margin-right: auto;
}
.cat-btn.active .cat-count { background: rgba(255,255,255,0.25); }

.menu-info-bar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.2rem; flex-wrap: wrap; gap: 0.8rem;
    background: var(--white);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.menu-info-bar h3 { font-size: 1.2rem; font-weight: 900; color: var(--gray-900); }
.urun-sayisi { font-size: 0.82rem; color: var(--gray-500); font-weight: 600; }
.sort-select {
    padding: 0.55rem 0.9rem;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-weight: 600; font-size: 0.85rem;
    color: var(--gray-700);
    cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--red); }

/* ===== MENU GRID ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.urun-karti {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--tr);
    display: flex; flex-direction: column;
    animation: fadeInUp 0.4s ease-out backwards;
    box-shadow: var(--shadow-sm);
}
.urun-karti:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.urun-resim-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}
.urun-resim {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0;
}
.urun-resim.loaded { opacity: 1; }
.urun-karti:hover .urun-resim { transform: scale(1.06); }

.urun-bilgi {
    padding: 0.8rem 0.85rem 0.9rem;
    display: flex; flex-direction: column;
    flex: 1;
}
.urun-bilgi h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.6rem;
    line-height: 1.35;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.urun-alt {
    display: flex; flex-direction: column;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px solid var(--gray-100);
}
.fiyat-satirlari {
    display: flex; flex-direction: column; gap: 0.15rem;
    width: 100%;
}
.fiyat-satir {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem;
}
.fiyat-satir .etiket {
    color: var(--gray-500);
    font-weight: 700;
    font-size: 0.72rem;
}
.fiyat-satir .deger {
    font-weight: 900;
    font-size: 0.88rem;
    color: var(--red);
    white-space: nowrap;
}
.fiyat-satir .deger small {
    font-size: 0.62rem;
    color: var(--gray-500);
    font-weight: 700;
}
.btn-ekle {
    background: var(--red);
    color: var(--white);
    width: 100%;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--tr);
}
.btn-ekle:hover {
    background: var(--red-dark);
}
.btn-ekle:active { transform: scale(0.97); }
.btn-ekle.added { background: var(--green); }

/* Loading */
.loading-wrap { text-align: center; padding: 2rem 1rem; }
.spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.load-more-wrap { text-align: center; margin-top: 2rem; }
.btn-load-more {
    background: var(--white);
    border: 1.5px solid var(--gray-900);
    color: var(--gray-900);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700; font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: var(--tr);
    box-shadow: var(--shadow-sm);
}
.btn-load-more:hover {
    background: var(--gray-900); color: var(--white);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center; padding: 3rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
}
.empty-state i { font-size: 3rem; color: var(--gray-300); margin-bottom: 0.8rem; display: block; }
.empty-state h3 { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 0.3rem; }
.empty-state p { color: var(--gray-500); font-size: 0.88rem; }

/* ===== SECTIONS ===== */
.about-section, .contact-section {
    padding: 3rem 1rem;
    background: var(--bg-dark);
}
.about-section { background: var(--bg-dark); }
.contact-section { background: var(--bg-main); }
.section-head { text-align: center; margin-bottom: 1.5rem; }
.section-tag {
    display: inline-block;
    background: var(--red); color: var(--white);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-weight: 700; font-size: 0.78rem;
    margin-bottom: 0.6rem;
}
.section-title { font-size: 1.8rem; font-weight: 900; color: var(--white); }
.about-text {
    text-align: center; color: rgba(255,255,255,0.9);
    font-size: 1rem; line-height: 1.8;
    max-width: 700px; margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem; max-width: 900px; margin: 0 auto;
}
.contact-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--tr);
    box-shadow: var(--shadow-sm);
}
.contact-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.contact-card i {
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 0.6rem;
    display: block;
}
.contact-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--gray-900); }
.contact-card p { font-size: 0.85rem; color: var(--gray-600); }

.contact-card .contact-phone {
    color: var(--gray-700);
    font-weight: 700;
    transition: var(--tr);
    display: block;
    margin: 0.2rem 0;
}
.contact-card .contact-phone:hover { color: var(--red); }

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
}
.footer img {
    width: 60px; height: 60px;
    border-radius: 50%;
    margin: 0 auto 0.8rem;
    border: 2px solid var(--red);
    padding: 2px;
    background: var(--white);
}
.footer p { font-size: 0.9rem; margin-bottom: 0.3rem; }
.footer span { font-size: 0.78rem; color: var(--gray-400); }

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed; inset: 0;
    z-index: 2000;
}
.modal.active { display: block; }
.modal-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.6);
    animation: fadeIn 0.25s;
}
.modal-box {
    position: relative;
    background: var(--white);
    margin: 5vh auto;
    width: 92%; max-width: 480px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-head {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex; justify-content: space-between; align-items: center;
    flex-shrink: 0;
}
.modal-head h2 {
    font-size: 1.05rem; font-weight: 900;
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--gray-900);
}
.modal-head h2 i { color: var(--red); }
.modal-close {
    width: 34px; height: 34px;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-700);
    display: flex; align-items: center; justify-content: center;
    transition: var(--tr);
}
.modal-close:hover { background: var(--red); color: var(--white); }
.modal-body {
    padding: 1.1rem 1.2rem;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.modal-foot {
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
    background: var(--white);
}

/* Sepet */
.sepet-bos { text-align: center; padding: 2.5rem 1rem; }
.sepet-bos i { font-size: 3rem; color: var(--gray-300); margin-bottom: 0.8rem; display: block; }
.sepet-bos h3 { font-size: 1rem; color: var(--gray-700); margin-bottom: 0.3rem; }
.sepet-bos p { color: var(--gray-500); font-size: 0.85rem; }

/* ===== SİPARİŞ TİPİ SEÇİCİ ===== */
.siparis-tip-secici {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 0.9rem;
    margin-bottom: 1rem;
}
.siparis-tip-secici h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.siparis-tip-secici h4 i { color: var(--red); }

.tip-secici-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.tip-secici-btn {
    padding: 0.7rem 0.5rem;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--gray-700);
    transition: var(--tr);
    cursor: pointer;
}
.tip-secici-btn i {
    font-size: 1.1rem;
    color: var(--gray-400);
    transition: var(--tr);
}
.tip-secici-btn:hover {
    border-color: var(--red);
    color: var(--red);
}
.tip-secici-btn:hover i { color: var(--red); }
.tip-secici-btn.active {
    border-color: var(--red);
    background: var(--red-soft);
    color: var(--red);
}
.tip-secici-btn.active i { color: var(--red); }

/* Sepet içindeki küçük bilgi */
.sepet-tip-bilgi-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--green);
    color: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.sepet-urun {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.7rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 0.6rem;
}
.sepet-urun img {
    width: 54px; height: 54px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.sepet-urun-info { flex: 1; min-width: 0; }
.sepet-urun-info h4 {
    font-size: 0.85rem; font-weight: 800;
    color: var(--gray-900); margin-bottom: 0.2rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sepet-urun-info p {
    font-size: 0.82rem; font-weight: 900;
    color: var(--red);
}
.sepet-urun-adet {
    display: flex; align-items: center; gap: 0.2rem;
    background: var(--white);
    padding: 0.2rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    flex-shrink: 0;
}
.btn-adet {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-800);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 900;
    transition: var(--tr);
}
.btn-adet:hover { background: var(--red); color: var(--white); }
.sepet-urun-adet span {
    min-width: 20px; text-align: center;
    font-weight: 900; font-size: 0.82rem;
}
.btn-sil {
    background: transparent !important;
    color: var(--gray-400) !important;
}
.btn-sil:hover { color: var(--red) !important; background: var(--red-soft) !important; }

/* Summary */
.summary {
    background: var(--gray-50);
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.9rem;
}
.summary-row {
    display: flex; justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 0.88rem;
    color: var(--gray-600);
    font-weight: 600;
}
.summary-row.total {
    border-top: 1px solid var(--gray-200);
    padding-top: 0.6rem;
    margin-top: 0.3rem;
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 900;
}
.summary-row.total span:last-child { color: var(--red); }

/* Sipariş tipi bilgi kutusu (sipariş modalında) */
.siparis-tip-bilgi {
    background: var(--red-soft);
    border: 1.5px solid var(--red);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--red-dark);
}
.siparis-tip-bilgi.tip-ic {
    background: #e8f5e9;
    border-color: var(--green);
    color: var(--green-dark);
}
.siparis-tip-bilgi i {
    font-size: 1.2rem;
    color: var(--red);
}
.siparis-tip-bilgi.tip-ic i {
    color: var(--green);
}
.siparis-tip-bilgi strong { font-weight: 900; }

/* Form */
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.85rem; font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--gray-900);
    transition: var(--tr);
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-soft);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--gray-900); color: var(--white);
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 700; font-size: 0.88rem;
    display: flex; align-items: center; gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero { padding: 6rem 1rem 2rem; }
    .hero-info { flex-direction: column; align-items: stretch; }
    .hero-info-item { justify-content: center; }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
    .urun-bilgi { padding: 0.65rem 0.7rem 0.75rem; }
    .urun-bilgi h3 { font-size: 0.85rem; min-height: 2.4em; margin-bottom: 0.5rem; }
    .fiyat-satir .deger { font-size: 0.8rem; }
    .fiyat-satir .etiket { font-size: 0.65rem; }
    .btn-ekle { font-size: 0.75rem; padding: 0.4rem; }
    
    .section-title { font-size: 1.5rem; }
    .menu-info-bar h3 { font-size: 1.05rem; }
    .sort-select { font-size: 0.8rem; padding: 0.5rem 0.7rem; }
    
    /* MODAL - MOBİL */
    .modal-box {
        margin: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
    }
    
    .modal-head { padding: 0.9rem 1rem; }
    .modal-head h2 { font-size: 1rem; }
    .modal-body {
        padding: 1rem;
        flex: 1 1 auto;
        overflow-y: auto;
        min-height: 0;
    }
    .modal-foot {
        padding: 0.9rem 1rem;
        padding-bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
    }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .categories-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .search-filter-bar { gap: 0.4rem; }
    .search-wrap input {
        padding: 0.75rem 2.5rem 0.75rem 0.8rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 380px) {
    .menu-grid { gap: 0.5rem; }
    .urun-bilgi h3 { font-size: 0.78rem; }
    .fiyat-satir .deger { font-size: 0.75rem; }
}