:root {
    --neo-bg: #f6f7f9;
    --neo-surface: #ffffff;
    --neo-surface-soft: #fdfaf6;
    --neo-text: #10161e;
    --neo-muted: #5a6472;
    --neo-gold: #c89957;
    --neo-gold-dark: #9d7035;
    --neo-red: #e1000b;
    --neo-red-soft: #e1000b;
    --neo-red-dark: #e1000b;
    --neo-emerald: #1e5f52;
    --neo-ink: #17222d;
    --neo-line: rgba(16, 22, 30, 0.12);
    --neo-shadow: 0 22px 48px rgba(16, 22, 30, 0.14);
    --neo-radius: 22px;
}

html,
body {
    overflow-x: hidden;
}

body {
    background:
        radial-gradient(circle at 8% 0%, rgba(225, 0, 11, 0.16) 0, transparent 35%),
        radial-gradient(circle at 90% 18%, rgba(30, 95, 82, 0.18) 0, transparent 32%),
        linear-gradient(180deg, #fbfcff 0%, #f5f7fa 100%);
    color: var(--neo-text);
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.01em;
}

#container {
    opacity: 1 !important;
}

.neo-bg-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(30px);
}

.neo-bg-orb-a {
    width: 420px;
    height: 420px;
    left: -120px;
    top: -80px;
    background: rgba(200, 153, 87, 0.2);
}

.neo-bg-orb-b {
    width: 360px;
    height: 360px;
    right: -80px;
    top: 140px;
    background: rgba(30, 95, 82, 0.2);
}

.neo-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: 0.25s ease;
}

.neo-header.is-scrolled {
    transform: translateY(-1px);
}

.neo-header-top {
    background: linear-gradient(90deg, #e1000b, #e1000b);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    padding: 7px 0;
}

.neo-header-top p {
    color: #ffffff;
}

.neo-header-top a {
    color: #ffe0b2;
    font-weight: 600;
}

.neo-navbar {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--neo-shadow);
    border-radius: 999px;
    padding: 10px 14px;
}

.neo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--neo-text);
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.06em;
}

.neo-brand img {
    width: auto;
    height: 50px;
}

.neo-nav-list {
    gap: 8px;
    margin-right: 10px;
}

.neo-nav-list li a {
    color: #233140;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.neo-nav-list li a:hover,
.neo-nav-list li a.active {
    color: #fff !important;
    background: linear-gradient(135deg, var(--neo-red-soft), var(--neo-red-dark));
}

.neo-header-cta {
    margin-left: 20px;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(130deg, var(--neo-red-soft), var(--neo-red-dark));
    box-shadow: 0 10px 22px rgba(225, 0, 11, 0.35);
    white-space: nowrap;
}

.neo-header-cta:hover {
    color: #fff;
}

.neo-toggler {
    border: 0;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.neo-toggler span {
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background: #1f2d3a;
}

.neo-hero {
    padding: 38px 0 30px;
}

.neo-hero-panel {
    position: relative;
    min-height: 540px;
    border-radius: calc(var(--neo-radius) + 6px);
    overflow: hidden;
    padding: 60px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 70px rgba(16, 22, 30, 0.24);
}

.neo-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(13, 19, 27, 0.45), rgba(13, 19, 27, 0.12));
}

.neo-hero-panel::after {
    content: "";
    position: absolute;
    width: 46%;
    height: 160%;
    right: -18%;
    top: -20%;

    transform: rotate(14deg);
}

.neo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 730px;
}

.neo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(3px);
}

.neo-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff8a80;
}

.neo-hero h1 {
    margin-top: 14px;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.neo-hero p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 2.1vw, 20px);
    max-width: 620px;
}

.neo-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.neo-btn,
.neo-btn-outline {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
}

.neo-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--neo-red-soft), var(--neo-red-dark));
    box-shadow: 0 12px 24px rgba(225, 0, 11, 0.32);
}

.neo-btn:hover {
    color: #fff;
}

.neo-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.neo-section {
    padding: 78px 0;
}

.neo-section-title {
    margin-bottom: 24px;
}

.neo-section-title h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.neo-section-title p {
    color: var(--neo-muted);
    max-width: 700px;
}

.neo-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.neo-card {
    background: var(--neo-surface);
    border: 1px solid var(--neo-line);
    border-radius: var(--neo-radius);
    padding: 24px;
    box-shadow: 0 14px 28px rgba(16, 22, 30, 0.08);
}

.neo-card h3,
.neo-card h2 {
    font-family: 'Sora', sans-serif;
    color: #0f1823;
}

.neo-card p {
    color: var(--neo-muted);
}

.neo-glass {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.72));
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.neo-media {
    border-radius: var(--neo-radius);
    overflow: hidden;
    min-height: 240px;
}

.neo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.neo-media:hover img {
    transform: scale(1.05);
}

.neo-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.neo-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--neo-muted);
}

.neo-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neo-red-soft);
}

.neo-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.neo-stat {
    border-radius: 16px;
    border: 1px solid var(--neo-line);
    background: #fff;
    padding: 16px;
    text-align: center;
}

.neo-stat strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #13202c;
    font-family: 'Sora', sans-serif;
}

.neo-stat span {
    display: block;
    margin-top: 4px;
    color: var(--neo-muted);
    font-size: 13px;
}

.neo-feature-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.neo-feature {
    border-radius: 16px;
    padding: 18px;
    background: linear-gradient(145deg, #0f1e2a, #162f3d);
    color: #fff;
    box-shadow: 0 14px 24px rgba(16, 22, 30, 0.2);
}

.neo-feature h4 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
}

.neo-feature p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.neo-gallery-track {
    display: flex;
    gap: 12px;
    overflow: hidden;
}

.neo-gallery-item {
    min-width: 260px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 20px rgba(16, 22, 30, 0.12);
    animation: neoFloat 9s ease-in-out infinite;
}

.neo-gallery-item:nth-child(2n) {
    animation-delay: 0.9s;
}

.neo-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.neo-chef-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.neo-chef-item {
    border-radius: 16px;
    border: 1px solid var(--neo-line);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 20px rgba(16, 22, 30, 0.08);
}

.neo-chef-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.neo-chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neo-chef-body {
    padding: 12px 14px 14px;
}

.neo-chef-body h3 {
    margin-bottom: 6px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    color: #1a2733;
}

.neo-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

.neo-product {
    border-radius: 16px;
    border: 1px solid var(--neo-line);
    overflow: hidden;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.neo-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16, 22, 30, 0.14);
}

.neo-product-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.neo-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neo-product-body {
    padding: 9px;
}

.neo-product-title {
    margin-bottom: 6px;
    font-family: 'Sora', sans-serif;
    color: #101722;
    font-size: 18px;
}

.neo-price {
    font-weight: 700;
    color: var(--neo-red);
    font-size: 16px;
}

.neo-accordion-item {
    margin-bottom: 12px;
}

.neo-accordion-head {
    width: 100%;
    border: 0;
    border-radius: 18px;
    min-height: 170px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.neo-accordion-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.neo-accordion-sub {
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
}

.neo-accordion-body {
    display: none;
    margin-top: 8px;
    border-radius: 18px;
    border: 1px solid var(--neo-line);
    background: rgba(255, 255, 255, 0.72);
    padding: 16px;
}

.neo-accordion-body.is-open {
    display: block;
}

.neo-timeline {
    display: grid;
    gap: 14px;
}

.neo-time-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: start;
}

.neo-time-year {
    border-radius: 10px;
    background: #0f202d;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
}

.neo-time-body {
    border-radius: 14px;
    border: 1px solid var(--neo-line);
    background: #fff;
    padding: 14px;
}

.neo-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.neo-contact-card {
    border-radius: 16px;
    border: 1px solid var(--neo-line);
    background: #fff;
    padding: 14px;
}

.neo-contact-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
}

.neo-contact-card h3 {
    margin-top: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 19px;
}

.neo-btn-yemeksepeti {
    background: linear-gradient(130deg, #e40046, #bf003a) !important;
    box-shadow: 0 10px 20px rgba(228, 0, 70, 0.32);
}

.neo-modal .modal-content {
    border-radius: 18px;
    border: 1px solid var(--neo-line);
    overflow: hidden;
}

.neo-modal .modal-header {
    background: #f8fafb;
}

.neo-modal-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: #f2f4f8;
}

.neo-modal-image-wrap img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.neo-footer {
    margin-top: 70px;
    padding: 58px 0 24px;
    background: linear-gradient(130deg, #0f1e2a, #172f3d);
    color: rgba(255, 255, 255, 0.9);
}

.neo-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.neo-footer-brand img {
    max-width: 210px;
    width: 100%;
    margin-bottom: 8px;
}

.neo-footer h3 {
    color: #ffb3b3;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.neo-footer p,
.neo-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.neo-footer a:hover {
    color: #fff;
}

.neo-footer-bottom {
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.neo-to-top {
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff;
    font-weight: 700;
    background: rgba(225, 0, 11, 0.26);
}

.neo-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.neo-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes neoFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1199px) {
    .neo-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .neo-navbar {
        border-radius: 22px;
    }

    .neo-nav-list {
        margin-top: 10px;
        border-top: 1px solid var(--neo-line);
        padding-top: 10px;
    }

    .neo-header-cta {
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
    }

    .neo-hero-panel {
        min-height: 420px;
        padding: 34px 24px;
    }

    .neo-stats,
    .neo-feature-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .neo-grid > * {
        grid-column: span 12 !important;
    }

    .neo-chef-track {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .neo-chef-item {
        min-width: 250px;
        flex: 0 0 250px;
        scroll-snap-align: start;
    }
}

@media (max-width: 575px) {
    .neo-header-top {
        display: none;
    }

    .neo-brand span {
        display: none;
    }

    .neo-stats,
    .neo-feature-rail,
    .neo-footer-grid {
        grid-template-columns: 1fr;
    }

    .neo-hero {
        padding-top: 22px;
    }

    .neo-hero-panel {
        border-radius: 20px;
        min-height: 350px;
    }

    .neo-chef-item {
        min-width: 230px;
        flex: 0 0 230px;
    }
}
.neo-product-description
{
    color: var(--neo-muted);
    font-size: 14px;
    margin-bottom: 8px;
}
    /* Grid: 1 column on mobile, 3 columns on desktop */
    .neo-menu-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }

    @media (min-width: 992px) {
        .neo-menu-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }