:root {
    --primary: #FFB300;
    --dark: #0F172A;
    --bg: #F8FAFC;
    --card: #FFFFFF;
    --muted: #64748B;
}

/* Senin en üstteki kodunu şu şekilde mermi gibi yapalım */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent; 
}

/* Hem html hem body'i kilitlememiz lazım */
html, body { 
    font-family: 'Inter', sans-serif; 
    background: var(--bg); 
    color: var(--dark); 
    line-height: 1.5; 
    
    /* YATAY KAYMAYI ÖLDÜREN KISIM */
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important; 
    position: relative !important;
    
    /* Mobilde parmakla sağa sola gereksiz esnemeyi engeller */
    touch-action: pan-y !important; 
}

#splash-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; display: flex; justify-content: center; align-items: center;
    z-index: 10000; transition: 0.6s ease-in-out;
}
.splash-text { color: var(--primary); font-family: 'Montserrat'; font-weight: 900; font-size: 1.6rem; letter-spacing: 1px; }
.loader { width: 30px; height: 30px; border: 3px solid #333; border-top: 3px solid var(--primary); border-radius: 50%; margin: 20px auto; animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.hero-header { 
    width: 100% !important; 
    height: 340px; 
    margin: 0; 
    padding: 0;
    overflow: hidden; 
}
.hero-image { 
    width: 100% !important; 
    height: 100% !important; 

    background: url('image/heronew.jpg') center/cover no-repeat !important; 
    display: block;
}
.hero-overlay {
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    display: flex; flex-direction: column; justify-content: space-between; padding: 25px;
}

.status-badge { background: #10B981; color: white; padding: 6px 12px; border-radius: 50px; font-weight: 800; font-size: 0.7rem; align-self: flex-start; }
.hero-title { font-family: 'Montserrat'; font-size: 2.4rem; font-weight: 900; color: white; line-height: 1; margin-bottom: 8px; }
.hero-subtitle { color: var(--primary); font-weight: 700; font-size: 1rem; margin-bottom: 15px; }
.hero-stats { display: flex; gap: 18px; color: white; font-weight: 700; font-size: 0.85rem; }
.hero-stats i { color: var(--primary); }

.sticky-nav { position: sticky; top: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); z-index: 99; padding: 15px 0; border-bottom: 1px solid #F1F5F9; }
.nav-scroll { display: flex; overflow-x: auto; gap: 12px; padding: 0 20px; scrollbar-width: none; }
.nav-scroll::-webkit-scrollbar { display: none; }
.cat-item { background: #F1F5F9; padding: 10px 22px; border-radius: 16px; white-space: nowrap; font-weight: 800; color: var(--muted); font-size: 0.9rem; transition: 0.3s; }
.cat-item.active { background: var(--dark); color: var(--primary); transform: scale(1.05); }

.menu-container { padding: 25px 20px 60px; min-height: 100vh; }
.cat-title { font-family: 'Montserrat'; font-weight: 900; font-size: 1.6rem; margin-bottom: 25px; }
.grid-layout { display: grid; gap: 16px; }

.product-card { 
    background: white; padding: 18px; border-radius: 22px;
    display: flex; gap: 15px; align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #F1F5F9;
}
.p-icon { width: 50px; height: 50px; background: #FFF9EB; color: var(--primary); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.p-content { flex: 1; }
.p-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.p-title { font-weight: 800; font-size: 1.05rem; color: #1E293B; flex: 1; padding-right: 10px; }
.p-price { font-family: 'Montserrat'; font-weight: 900; font-size: 1.1rem; color: var(--dark); white-space: nowrap; }
.p-desc { font-size: 0.85rem; color: var(--muted); font-weight: 500; line-height: 1.4; }


.modern-footer {
    background: #0f172a;
    color: #fff;
    padding-top: 0;
    position: relative;
    margin-top: 50px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-wave .shape-fill {
    fill: #F8FAFC; 
}

.footer-container {
    padding: 60px 25px 30px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #ffb300;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-slogan {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 35px;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    margin-bottom: 40px;
}

.footer-action-card {
    background: #1e293b;
    padding: 12px 5px; 
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
    border: 1px solid rgba(255,179,0,0.1);
}

.footer-action-card i {
    font-size: 1.1rem; 
    color: #ffb300;
}

.footer-action-card span {
    font-size: 0.65rem; 
    font-weight: 700;
    white-space: nowrap; 
}
.footer-action-card:active {
    transform: scale(0.95);
    background: #334155;
}

.footer-bottom {
    border-top: 1px solid rgba(148,163,184,0.1);
    padding-top: 30px;
}

.copyright {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 15px;
}

.cetinweb-signature {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cetinweb-signature p {
    font-size: 0.7rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.cetinweb-signature a {
    text-decoration: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -1px;
}

.cetinweb-signature a span {
    color: #ffb300;
}
.dev-tag { margin-top: 25px; font-size: 0.85rem; opacity: 0.5; }
.dev-tag span { color: var(--primary); font-weight: 800; }


.menu-wrap { 
    position: fixed; 
    top: 20px; 
    right: 20px; 
    z-index: 10001; 
    transition: opacity 0.4s, visibility 0.4s; 
}


.close-menu {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important; /* Panel kenarından içeri çektik */
    color: #ffb300 !important; /* CetinWeb sarısı */
    font-size: 1.6rem !important;
    cursor: pointer !important;
    z-index: 10002 !important;
    transition: 0.3s;
}

.close-menu:hover {
    transform: scale(1.1);
    color: white !important;
}


.menu-side { 
    position: fixed; 
    top: 0; 
    right: -100%; 
    left: auto; 
    width: 300px; 
    height: 100%; 
    background: #0F172A; 
    transition: all 0.4s ease; 
    z-index: 10000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3); 
    padding-top: 80px;
}
.menu-wrap .toggler:checked ~ .menu-side { right: 0; } 


.menu-wrap .toggler { position: absolute; top: 0; right: 0; z-index: 2; cursor: pointer; width: 45px; height: 45px; opacity: 0; }
.menu-wrap .hamburger { 
    position: relative; z-index: 1; width: 45px; height: 45px; 
    background: rgba(15, 23, 42, 0.85); 
    backdrop-filter: blur(8px); 
    border-radius: 14px; 
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,179,0,0.15); 
}


.menu-wrap .hamburger > div { position: relative; flex: none; width: 22px; height: 2px; background: #ffb300; transition: all 0.4s ease; }
.menu-wrap .hamburger > div::before, .menu-wrap .hamburger > div::after { content: ''; position: absolute; z-index: 1; top: -7px; width: 100%; height: 2px; background: inherit; }
.menu-wrap .hamburger > div::after { top: 7px; }


.menu-wrap .toggler:checked + .hamburger > div { transform: rotate(135deg); background: #ffb300; }
.menu-wrap .toggler:checked + .hamburger > div::before, .menu-wrap .toggler:checked + .hamburger > div::after { top: 0; transform: rotate(90deg); }


.menu-inner { padding: 30px; color: white; position: relative; }
.menu-header { margin-bottom: 30px; border-bottom: 1px solid #1e293b; padding-bottom: 20px; position: relative; }
.menu-header h3 { font-family: 'Montserrat'; font-weight: 900; color: #ffb300; }
.menu-header span { font-size: 0.8rem; color: #64748b; font-weight: 700; }
.menu-inner li { margin-bottom: 20px; display: flex; align-items: center; gap: 15px; font-weight: 600; font-size: 0.95rem; color: #cbd5e1; }
.menu-inner li i { color: #ffb300; width: 20px; text-align: center; }
.menu-inner li a { color: white; text-decoration: none; transition: 0.3s; }
.menu-inner li a:hover { color: #ffb300; }
.menu-inner hr { border: 0; border-top: 1px solid #1e293b; margin: 10px 0; }
.menu-footer { position: absolute; bottom: 30px; left: 30px; font-size: 0.75rem; color: #475569; }
.menu-footer b { color: #ffb300; }


#cart-header-wrapper {
    position: fixed !important; 
    top: 20px; 
    right: 80px; 
    z-index: 10002 !important; 
    cursor: pointer;
    
   
    display: none !important; 
    align-items: center;
    justify-content: center;
    

    width: 48px;
    height: 48px;
    
    transition: opacity 0.4s ease, visibility 0.4s ease;
    visibility: visible;
    opacity: 0; 
}
#cart-main-icon {
    background: var(--dark);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,179,0,0.3);
    transition: transform 0.2s ease;
}

#cart-main-icon:active {
    transform: scale(0.9);
}


#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark);
}


.cart-info-text {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 600;
    margin-top: 8px;
    background: #ef4444; 
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
    pointer-events: none; 
    
}


.cart-info-text::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 15px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #ef4444;
}

/* Sepet Paneli (Sidebar) */
#cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: white;
    z-index: 10005; 
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

#cart-sidebar.active { 
    right: 0; 
}

/* Animasyonlar */
@keyframes cartShake {
    0% { transform: scale(1); }
    25% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1); }
}

.shake {
    animation: cartShake 0.4s ease-in-out;
}

@keyframes slideHint {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.animate-slide {
    animation: slideHint 2s infinite ease-in-out;
}

#cart-sidebar {
    position: fixed;
    top: 0;
    right: -110%; 
    width: 350px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    z-index: 100001; 
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

#cart-sidebar.active {
    right: 0; 
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.close-cart-btn {
    background: #f1f5f9;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    cursor: pointer;
}


.add-to-cart-btn {
    background: #0f172a; 
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn:hover {
    background: #ffb300; 
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 179, 0, 0.3);
}

.add-to-cart-btn i {
    font-size: 0.8rem;
}


.p-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}


#cart-header-wrapper, 
#hamburger-main {
    display: none !important;
    opacity: 0;
    z-index: 100; 
    transition: opacity 0.8s ease;
}




#cart-header-wrapper {
    width: 48px;  
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20px;
    right: 80px; 
    z-index: 1000;
}


#cart-main-icon {
    background: rgba(30, 41, 59, 0.9); 
    width: 100%; 
    height: 100%;
    border-radius: 12px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem; 
    color: #ffb300; 
    border: 1px solid rgba(255, 179, 0, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


#cart-count {
    top: -5px;
    right: -5px;
}


.menu-wrap .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    
   
    width: 48px;  
    height: 48px;
    
    background: rgba(30, 41, 59, 0.9); 
    border-radius: 12px; 
    border: 1px solid rgba(255, 179, 0, 0.4); 
    
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 0; 
}


.menu-wrap .hamburger > div {
    width: 20px; 
    height: 2px;
}

.menu-wrap .hamburger > div:before,
.menu-wrap .hamburger > div:after {
    width: 20px; 
    height: 2px;
    background: #ffb300; 
}


#cart-header-wrapper {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important; 
}


.cart-info-text {
    margin-top: 5px !important; 
    white-space: nowrap !important; 
}


#cart-main-icon {
    width: 48px !important;   
    height: 48px !important;  
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;    
    background: rgba(30, 41, 59, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 179, 0, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


#cart-main-icon i {
    font-size: 1.3rem !important; 
    margin: 0 !important;
}


.cart-info-text {
    position: absolute !important;
    top: 55px !important; 
    right: 0 !important;
    width: auto !important;
    white-space: nowrap !important;
}


body.compact-menu #cart-header-wrapper, 
body.compact-menu .menu-wrap .hamburger {
    transform: scale(0.8); 
    top: 10px !important; 
    opacity: 1 !important; 
    transition: all 0.3s ease;
}


body.compact-menu .cart-info-text {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}


body.compact-menu #cart-count {
    transform: scale(1.2); 
}

/* Ana Kapsayıcı */
.payment-methods {
    width: 100% !important;
    margin: 40px 0 20px 0 !important;
    text-align: center !important;
    clear: both !important;
}

.payment-title {
    font-size: 12px !important;
    color: #cbd5e1 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    opacity: 0.9 !important;
}

/* Izgara Düzeni */
.payment-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important; 
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* BÜYÜTÜLMÜŞ ÇERÇEVE TASARIMI */
.payment-card {
    background: #ffffff !important;
    width: 105px !important; 
    height: 60px !important; 
    border-radius: 14px !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px !important; 
    box-shadow: 0 6px 18px rgba(0,0,0,0.3) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Logo İçerik Ayarları */
.payment-card img {
    width: 95% !important; 
    height: 95% !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}



.payment-card img[src*="metropol"], 
.payment-card img[src*="edenred"],
.payment-card img[src*="pluxee"],
.payment-card img[src*="tokenflex"],
.payment-card img[src*="iwallet"] {
    transform: scale(1.5) !important; 
}


.payment-card:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(255, 179, 0, 0.4) !important;
}


@media (max-width: 480px) {
    .payment-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; 
        padding: 0 10px !important;
        gap: 12px !important;
    }
    .payment-card {
        width: 100% !important;
        height: 55px !important; 
    }
}

.footer-bottom {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;    
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important; 
}

.cetinweb-signature {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 10px !important;
}

.copyright {
    margin: 0 !important;
    font-size: 14px !important;
    color: #94a3b8 !important;
}


.section-header {
    display: flex !important;
    justify-content: center !important; 
    align-items: center !important;
    width: 100% !important;
    min-height: 130px !important; 
    position: relative !important; 
    margin-bottom: 30px !important;
}


.section-header h2 {
    margin: 0 !important;
    text-align: center !important;
    font-size: 26px !important;
    flex-grow: 1 !important;
    z-index: 1;
}


.side-logo {
    position: absolute !important;
    right: 5px !important; 
    z-index: 2;
    
  
    height: 120px !important; 
    width: auto !important;
    object-fit: contain !important;
    
   
    margin-top: -10px !important; 
    margin-right: -50px;
    margin-bottom: -25px;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
    

    opacity: 0;
    transform: translateY(15px);
    

    animation: fadeInLogo 1.5s ease-in forwards;
    animation-delay: 2.5s; 
    transition: all 0.5s ease !important;
}


.side-logo:hover {
    transform: scale(1.1) !important;
}

/* 4. Yavaşça Belirme Animasyonu */
@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 5. Mobil Ayarları */
@media (max-width: 480px) {
    .side-logo {
        height: 100px !important; 
        right: 0px !important;
        margin-top: -20px !important;
    }
    .section-header {
        min-height: 110px !important;
    }
}


.menu-side {
    background: #1e293b; 
}


.accordion-item {
    display: block !important;
    width: 100% !important;
    margin-bottom: 5px;
}

.accordion-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 0;
    color: white;
    font-weight: 600;
}

.accordion-link .arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}


.accordion-content {
    display: block !important;
    max-height: 0;
    width: 100% !important;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.accordion-content p {
    padding: 15px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    text-align: left; 
}


.accordion-inner-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
}

.accordion-inner-links a {
    color: #ffcc00 !important; 
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-mini-logo {
    height: 60px !important;
    margin-bottom: 10px;
}




.close-menu {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important; 
    color: #ffb300 !important;
    font-size: 1.6rem !important;
    cursor: pointer !important;
    z-index: 10002 !important;
    transition: 0.3s;
}


.menu-inner li { 
    margin-bottom: 12px !important; 
}

.accordion-item {
    display: block !important;
    width: 100% !important;
    margin-bottom: 0px !important; 
}

.accordion-link {
    padding: 8px 0 !important; 
}


.accordion-content {
    display: block !important;
    max-height: 0;
    width: 100% !important;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.accordion-content p {
    padding: 12px 15px !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #cbd5e1 !important;
    text-align: left !important; 
}


.menu-inner hr { 
    margin: 5px 0 15px 0 !important; 
    border-top: 1px solid #1e293b !important;
}


.accordion-inner-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
}

.accordion-inner-links a {
    color: #ffcc00 !important;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-header { 
    width: 100% !important; 
    height: 340px; 
    overflow: hidden; /* Dışarı taşan her şeyi gizler */
}

.hero-image { 
    width: 100% !important; 
    height: 100%; 
   
    background: url('https://images.unsplash.com/photo-1550507992-eb63ffee0847?w=800') center/cover no-repeat; 
    display: block;
}




.info-footer {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #2d3748 !important; 
    padding: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important; 
    z-index: 10 !important;
}


.menu-inner {
    padding-bottom: 150px !important; 
    overflow-y: auto !important;
    max-height: calc(100vh - 200px) !important;
}


.info-footer li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
    list-style: none !important;
    color: white !important;
    font-size: 14px !important;
}

.info-footer li i {
    color: #FFB300 !important; 
}


.panel-mini-logo {
    display: block !important;
    margin: 0 auto 15px auto !important; 
    width: 200px !important; 
    height: auto !important;
    border-radius: 50%; 
}

.hero-contact {
    margin-left: -10px;
    margin-top: 10px; 
    display: flex;
    align-items: center;
}

.hero-contact a {
    color: #ffb300; 
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px; 
    background: rgba(0, 0, 0, 0.4); 
    padding: 5px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.hero-contact a i {
    font-size: 0.9rem;
}

.hero-contact a:hover {
    background: #ffb300;
    color: #000;
}

.footer-address-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-align: center;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 300px;
}

.address-item i {
    color: #ffb300; 
    font-size: 1.2rem;
    margin-top: 3px;
}

.address-details {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 1.4;
}

.main-street {
    font-weight: 600;
    font-size: 1rem;
}

.city {
    font-size: 0.9rem;
    opacity: 0.9;
}

.landmark {
    font-size: 0.8rem;
    color: #ffb300; 
    font-style: italic;
    margin-top: 4px;
}

.delivery-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.delivery-title {
    color: #ffb300; 
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.p-btn {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}


.ys { background: #fa0050; } /* Yemeksepeti */
.ty { background: #f27a1a; } /* Trendyol */
.mg { background: #ff6000; } /* Migros */

.p-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


@media (max-width: 480px) {
    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }
    .p-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500&display=swap');

.vip-signature-seal {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto;
}

.vip-fullname {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 10px 0; 
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}


.divider-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3); 
    margin: 10px auto;
}

.seal-logo {
    margin-top: 5px; 
    
}


.seal-logo img {
    width: 80px; 
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.1)); 
}



.extra-payment-box {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px !important;
}

.payment-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.p-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px; 
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    line-height: 1.2;
}

.p-line {
    width: 40%;
    height: 1px;
    background-color: #eee;
    margin: 6px 0;
}


@media (max-width: 480px) {
    .p-text {
        font-size: 9px;
    }
}


/* 1. Sağdaki inatçı logoyu her yerden siler */
.modern-footer .panel-mini-logo, 
.modern-footer img[src*="Aksoy"], 
.modern-footer .seal-logo {
    display: none !important;
}

/* 2. Yan yana, ufak ve elit imza */
.simple-footer-signature {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background: transparent;
}

.simple-footer-signature p {
    font-family: 'Inter', sans-serif;
    font-size: 12px; /* Küçük ve kibar */
    color: rgba(255, 255, 255, 0.5); /* Hafif silik, kurumsal */
    margin: 0;
    letter-spacing: 1px;
    display: inline-block; /* Yan yana durmalarını garanti eder */
}

.simple-footer-signature p span {
    color: #ffffff; /* İsim bir tık daha beyaz ve belirgin */
    font-weight: 600;
    margin-left: 4px;
}