.shop-front-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    padding: 24px 0 24px 0;
    margin: 0 auto;
    max-width: 800px;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff !important;
}
main {
    flex: 1 0 auto;
}
.footer-delimiter {
    border: none;
    border-top: 2px solid #ffe0b2;
    margin: 0 auto 0 auto;
    width: 100%;
    max-width: 900px;
    background: none;
    height: 0;
    margin-bottom: 32px;
    margin-top: 0;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
main {
    flex: 1 0 auto;
}

.shop-front-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(71,19,0,0.10);
    object-fit: cover;
    margin: 0 16px;
    display: block;
}
.menu-flex-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff6e0;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(71,19,0,0.07);
    gap: 32px;
    border: 2px solid #ffe0b2;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.menu-flex-card:hover {
    box-shadow: 0 4px 24px rgba(212,60,26,0.10);
    border-color: #ffd180;
}
.menu-flex-info {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 420px;
}
.menu-flex-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}
.menu-flex-desc {
    font-size: 1.18rem;
    color: #222;
    margin-bottom: 28px;
    line-height: 1.5;
    max-width: 100%;
}
.menu-flex-price {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: -1px;
}
.menu-flex-img-wrap {
    flex: 1 1 220px;
    min-width: 120px;
    max-width: 220px;
    display: flex;
    justify-content: flex-end;
}
.menu-flex-img-wrap img {
    width: 100%;
    max-width: 220px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(71,19,0,0.07);
}
@media (max-width: 800px) {
    .menu-flex-card {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 10px 2px;
        text-align: center;
    }
    .menu-flex-info {
        flex: 1 1 150px;
        min-width: 180px;
        max-width: 420px;
        align-items: center;
        max-width: 100%;
    }
    .menu-flex-img-wrap {
        justify-content: center;
        width: 100%;
        margin-bottom: 0;
    }
    .menu-flex-img-wrap img {
        max-width: 80px;
        height: auto;
        margin: 0 auto;
    }
    .menu-flex-title {
        font-size: 1.9rem;
    }
    .menu-flex-desc {
        font-size: 1.3rem;
        margin-bottom: 8px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .menu-flex-price {
        font-size: 1.6rem;
        padding-bottom: 20px;
        padding-top: 20px;
    }
}
@media (max-width: 500px) {
    .menu-flex-card {
        padding: 5px 1px;
        gap: 4px;
    }
    .menu-flex-img-wrap img {
        max-width: 54px;
    }
    .menu-flex-title {
        font-size: 1.82rem;
    }
    .menu-flex-desc {
        font-size: 1rem;
        margin-left: 10px;
        margin-right: 10px;
    }
    .menu-flex-price {
        font-size: 1.2rem;
        padding-bottom: 20px;
        padding-top: 20px;
    }
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,247,236,0.98);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s;
    opacity: 0;
    pointer-events: none;
}
.mobile-menu-overlay.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.mobile-menu-list li a {
    color: var(--brown);
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.18s;
    padding: 8px 32px;
    border-radius: 12px;
}
.mobile-menu-list li a:hover {
    background: var(--yellow);
    color: var(--red);
}
.close-mobile-menu {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    font-size: 2.6rem;
    color: var(--brown);
    cursor: pointer;
    z-index: 10001;
    padding: 0 12px;
    line-height: 1;
    transition: color 0.18s;
}
.close-mobile-menu:hover {
    color: var(--red);
}
body.no-scroll {
    overflow: hidden !important;
}
@media (max-width: 900px) {
    .mobile-menu-overlay {
        display: flex;
    }
    .main-menu {
        display: none !important;
    }
    .header-nav {
        justify-content: flex-end;
    }
}
@media (min-width: 901px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}
.has-dropdown {
    position: relative;
}
.has-dropdown > a {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(71,19,0,0.10);
    z-index: 200;
    padding: 8px 0;
    list-style: none;
    transition: opacity 0.18s;
}
.dropdown-menu.open {
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.15s;
}
.dropdown-menu li a:hover {
    background: var(--yellow);
    color: var(--red);
}
@media (max-width: 900px) {
    .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0 0 10px 10px;
        background: #fff;
        padding: 0;
    }
    .dropdown-menu li a {
        padding: 14px 24px;
    }
}
.header-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 0%;
    margin-left: 0;
}
.main-menu {
    position: static;
    display: flex;
    gap: 0 18px;
    align-items: center;
    list-style: none;
    margin: 0 40px 0 0;
    padding: 0;
    background: none;
    box-shadow: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 120;
    padding: 0;
}
.hamburger .bar {
    width: 28px;
    height: 4px;
    background: var(--brown);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-menu li a {
    color: var(--brown);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}
.main-menu li a:hover {
    background: var(--yellow);
    color: var(--red);
}
@media (max-width: 900px) {
    .header-nav {
        margin-left: 0;
        justify-content: flex-end;
    }
    .main-menu {
        flex-direction: column;
        position: absolute;
        right: 0;
        left: auto;
        top: 54px;
        background: #fff;
        box-shadow: 0 6px 24px rgba(71,19,0,0.10);
        border-radius: 12px;
        min-width: 160px;
        padding: 12px 0;
        z-index: 110;
        display: none;
        align-items: flex-start;
        gap: 0;
        transform: none;
    }
    .main-menu.open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}
.header-nav {
    position: relative;
    display: flex;
    align-items: center;
}
.dropdown-toggle {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(71,19,0,0.08);
    transition: background 0.2s;
}
.dropdown-toggle:hover, .dropdown-toggle:focus {
    background: var(--brown);
}
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(71,19,0,0.10);
    min-width: 140px;
    padding: 8px 0;
    z-index: 100;
    list-style: none;
}
.dropdown-menu li {
    width: 100%;
}
.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.15s;
}
.dropdown-menu a:hover {
    background: var(--yellow);
    color: var(--red);
}
.header-nav.open .dropdown-menu {
    display: block;
}
@media (max-width: 700px) {
    .header-nav {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    .dropdown-menu {
        right: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
}
.about-img-square {
    width: 340px;
    height: 340px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(71,19,0,0.10);
    margin: 0 auto;
    display: block;
    object-fit: cover;
}
.about {
    padding: 56px 0 40px 0;
    background: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}
.about-text {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 280px;
    max-width: 540px;
    text-align: right;
    padding-right: 12px;
}
.about-text span {
    color: var(--red);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}
.about-text h4 {
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 14px;
    font-weight: 800;
}
.about-text p {
    color: var(--brown);
    font-size: 1.08rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.about-social {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
}
.about-social .social-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: transform 0.2s;
}
.about-social .social-logo:hover {
    transform: scale(1.12);
}
.about-image {
    flex: none;
    width: 340px;
    height: 340px;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image {
    width: 340px;
    height: 340px;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(71,19,0,0.10);
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .row {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .about-text, .about-image {
        max-width: 100%;
        min-width: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .about-image {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .about-img-square {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block;
    }
    .about-social {
        justify-content: center;
    }
    .about {
        padding: 24px 0 24px 0;
    }
}

        :root {
            --red: #c22222;
            --brown: #471300;
            --yellow: #f7a52d;
            --black: #000000;
            --bg: #fff7ec;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html,
        body {
            height: 100%
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #fff;
            color: var(--brown);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .doner-hero {
            width: 100%;
            min-height: 380px;
            background: url('/images/hero-image.png') center center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .doner-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.18);
        }



        .brand {
            display: flex;
            gap: 12px;
            align-items: baseline;
            justify-content: center;
            flex-wrap: wrap;
        }

        .brand .la-turcu {
            font-family: 'Playpen Sans', 'Arial Black', Gadget, sans-serif;
            font-weight: 700;
            font-size: 3rem;
            color: var(--brown);
            letter-spacing: 0.5px;
        }

        .brand .doner {
            font-family: 'Quicksand', 'Helvetica Neue', Arial, sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--red);
        }

        .construction {
            background: linear-gradient(90deg, rgba(71, 19, 0, 0.04), rgba(194, 34, 34, 0.03));
            border: 4px dashed var(--yellow);
            padding: 28px;
            border-radius: 12px;
            max-width: 820px;
            width: 100%;
            box-shadow: 0 10px 30px rgba(71, 19, 0, 0.06);
        }

        .construction h1 {
            font-size: 2.6rem;
            color: var(--black);
            margin-bottom: 8px;
            font-weight: 800;
        }

        .construction p.lead {
            color: var(--brown);
            font-size: 1.05rem;
            margin-bottom: 14px;
        }

        .construction .meta {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            color: var(--brown);
            font-weight: 700;
        }

        .btn-contact {
            display: inline-block;
            margin-top: 12px;
            padding: 10px 16px;
            border-radius: 8px;
            background: var(--red);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        footer {
            flex-shrink: 0;
            width: 100%;
            text-align: center;
            color: var(--brown);
            font-size: 1.08rem;
            background: var(--bg);
            box-shadow: 0 -2px 12px rgba(71,19,0,0.04);
            padding: 32px 0 24px 0;
        }

        @media (max-width: 700px) {
            header {
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                padding: 10px 0 8px 0 !important;
                gap: 8px !important;
                width: 100% !important;
            }

            .brand {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                margin: 0;
                width: 100%;
            }

            .brand .la-turcu {
                font-size: 2.2rem;
                word-break: break-word;
            }

            .brand .doner {
                font-size: 1.3rem;
                word-break: break-word;
            }

            .construction h1 {
                font-size: 1.6rem;
            }

            header a img {
                margin-left: 0 !important;
                margin-right: 0 !important;
                display: block;
                margin: 0 auto 6px auto !important;
                max-width: 90vw;
                height: auto;
            }

            .doner-hero {
                position: relative;
                width: 100vw;
                min-width: 0;
                max-width: 100vw;
                min-height: 220px;
            }

            .about-img-square,
            .about-image {
                width: 90vw !important;
                height: auto !important;
                max-width: 340px;
                min-width: 0;
            }

            .about-image img {
                width: 100% !important;
                height: auto !important;
                max-width: 340px;
            }

            .container {
                padding: 0 8px;
            }
        }
