:root {
    --green: #202c18;
    --green-2: #344328;
    --yellow: #f4b900;
    --yellow-dark: #da9f00;
    --yellow-deep: #ad7700;
    --yellow-light: #fff3c4;
    --cream: #f7f0dc;
    --paper: #fffdf7;
    --gold: #e5ad16;
    --ink: #25291f;
    --muted: #707268;
    --line: #dfd9c9;
    --white: #ffffff;
    --serif: 'Playfair Display', serif;
    --sans: 'Manrope', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

/* ÜST BAR */

.topbar {
    position: relative;
    z-index: 100;
    color: rgba(255, 255, 255, 0.85);
    background: #1e241a;
    border-bottom: 0;
}

.topbar-inner {
    min-height: 44px;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(350px, 1fr) minmax(220px, 1fr);
    align-items: center;
    gap: 24px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.topbar-contact a:hover {
    color: var(--yellow);
}

.topbar-contact svg {
    width: 14px;
    height: 14px;
    fill: var(--yellow);
}

.topbar-announcement {
    height: 44px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.announcement-mark {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: var(--yellow);
    transform: rotate(45deg);
}

.announcement-viewport {
    min-width: 0;
    overflow: hidden;
}

.announcement-text {
    display: block;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.announcement-text.is-leaving {
    opacity: 0;
    transform: translateY(-8px);
}

.announcement-text.is-entering {
    opacity: 0;
    transform: translateY(8px);
}

.topbar-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.social-label {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 600;
}

.topbar-social a {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 0.2s ease;
}

.topbar-social a:hover {
    color: var(--yellow);
}

.topbar-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* HEADER */

.site-header {
    height: 96px;
    position: sticky;
    top: 0;
    z-index: 90;
    overflow: visible;
    background: #fffdf7;
    border-bottom: 2px solid var(--yellow);
    transition: height 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    height: 86px;
    background: #fffdf7;
}

.header-inner {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
}

.main-nav {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
    align-items: stretch;
    overflow: visible;
}

.nav-side {
    height: 100%;
    display: flex;
    align-items: stretch;
    overflow: visible;
}

.nav-side-left {
    justify-content: flex-end;
    padding-right: 26px;
}

.nav-side-right {
    justify-content: flex-start;
    padding-left: 26px;
}

.nav-side > a,
.dropdown-toggle {
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    color: #2b3027;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-side > a:not(.header-cta)::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 20px;
    left: 14px;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.25s ease;
}

.nav-side > a:hover,
.dropdown-toggle:hover {
    color: var(--yellow-deep);
}

.nav-side > a:hover::after,
.dropdown-toggle:hover::after,
.nav-dropdown:hover .dropdown-toggle::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.brand-centered {
    width: 190px;
    height: 190px;
    position: relative;
    z-index: 25;
    align-self: start;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 10px;
    overflow: visible;
}

.brand-circle {
    width: 176px;
    height: 176px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    background: #fffdf7;
    border: 2px solid var(--yellow);
    border-radius: 50%;
}

.brand-circle img {
    width: 132px;
    height: 132px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.site-header.scrolled .brand-centered {
    height: 170px;
    margin-top: 8px;
}

.site-header.scrolled .brand-circle {
    width: 160px;
    height: 160px;
    padding: 19px;
}

.site-header.scrolled .brand-circle img {
    width: 120px;
    height: 120px;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: visible;
}

.dropdown-toggle span {
    color: var(--yellow-deep);
    font-size: 15px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-toggle span {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 130;
    min-width: 230px;
    padding: 9px;
    background: #ffffff;
    border: 1px solid #ded8c7;
    border-top: 3px solid var(--yellow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px;
    color: #34372e;
    border-bottom: 1px solid #ece7dc;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu a:last-child {
    border-bottom: 0;
}

.dropdown-menu a:hover {
    padding-left: 17px;
    color: #835c00;
    background: #fff8dc;
}

.wide-menu {
    width: 345px;
}

.wide-menu a strong,
.wide-menu a small {
    display: block;
}

.wide-menu a strong {
    font-size: 14px;
}

.wide-menu a small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.header-cta {
    min-height: 42px;
    height: 42px;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: 10px;
    padding: 0 17px;
    color: #25291f;
    background: var(--yellow);
    border: 1px solid var(--yellow);
    font-size: 13px;
    font-weight: 800;
}

.header-cta:hover {
    color: #ffffff;
    background: #25291f;
    border-color: #25291f;
}

.header-cta::after {
    display: none;
}

.header-cta svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-toggle {
    display: none;
}

/* HERO */

.hero {
    height: calc(100vh - 132px);
    min-height: 650px;
    max-height: 900px;
    position: relative;
    overflow: hidden;
    background: var(--green);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 7s linear, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    90deg,
                    rgba(22, 34, 16, 0.92) 0%,
                    rgba(26, 39, 18, 0.73) 42%,
                    rgba(22, 34, 16, 0.25) 75%
            ),
            linear-gradient(
                    0deg,
                    rgba(19, 29, 13, 0.42),
                    transparent 48%
            );
}

.hero-content {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #ffffff;
    padding-top: 55px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.hero h2 {
    max-width: 900px;
    margin: 0;
    font: 700 clamp(52px, 6vw, 88px) / 1.02 var(--serif);
    letter-spacing: -0.035em;
}

.hero h1 em,
.hero h2 em {
    color: var(--yellow);
    font-weight: 600;
}

.hero-copy {
    max-width: 620px;
    margin: 28px 0 0;
    color: #eceee9;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 34px;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-primary {
    color: #25291f;
    background: var(--yellow);
}

.btn-primary:hover {
    color: #ffffff;
    background: var(--yellow-deep);
    transform: translateY(-2px);
}

.btn-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-light:hover {
    color: #25291f;
    background: #ffffff;
}

.btn-gold {
    color: #25291f;
    background: var(--yellow);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.slider-arrow {
    width: 44px;
    height: 44px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.slider-arrow:hover {
    color: #25291f;
    background: var(--yellow);
    border-color: var(--yellow);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 30px;
    height: 2px;
    padding: 0;
    background: rgba(255, 255, 255, 0.38);
    border: 0;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.slider-dots button.active {
    width: 52px;
    background: var(--yellow);
}

.scroll-note {
    position: absolute;
    right: 30px;
    bottom: 36px;
    z-index: 3;
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-note span {
    width: 1px;
    height: 44px;
    display: inline-block;
    margin-bottom: 10px;
    background: var(--yellow);
    animation: scrollPulse 1.6s infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
}

.active .reveal {
    animation: reveal 0.8s forwards;
}

.active .reveal:nth-child(2) {
    animation-delay: 0.12s;
}

.active .reveal:nth-child(3) {
    animation-delay: 0.22s;
}

.active .reveal:nth-child(4) {
    animation-delay: 0.32s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.55);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* TRUST */

.trust-strip {
    background: var(--yellow-light);
    border-bottom: 1px solid #e4d398;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-right: 1px solid #e4d398;
}

.trust-grid div:first-child {
    padding-left: 0;
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid b {
    color: var(--yellow-deep);
    font: 600 21px var(--serif);
}

.trust-grid span {
    font-size: 13px;
    font-weight: 700;
}

/* GENEL BÖLÜMLER */

.section {
    padding: 110px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 92px;
}

.about-visual {
    position: relative;
    padding: 0 55px 55px 0;
}

.main-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-visual::before {
    content: "";
    width: 76%;
    height: 78%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--yellow-light);
}

.floating-card {
    width: 260px;
    position: absolute;
    right: 0;
    bottom: 30px;
    padding: 26px;
    color: #25291f;
    background: var(--yellow);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    font: 600 20px var(--serif);
}

.floating-card span {
    margin-top: 8px;
    color: #51420f;
    font-size: 12px;
}

.section-content h2,
.section-head h2,
.process-intro h2,
.quality-copy h2,
.wholesale-box h2,
.contact-copy h2 {
    margin: 0 0 28px;
    font: 700 clamp(38px, 4vw, 58px) / 1.08 var(--serif);
    letter-spacing: -0.025em;
}

.section-content > p:not(.section-kicker),
.quality-copy > p,
.contact-copy > p {
    color: var(--muted);
    font-size: 15px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding-bottom: 4px;
    color: var(--yellow-deep);
    border-bottom: 1px solid var(--yellow-deep);
    font-weight: 700;
}

/* PRODUCTS */

.products {
    background: #f6f1e4;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.section-head h2 {
    margin: 0;
}

.section-head > p {
    width: 400px;
    color: var(--muted);
    font-size: 14px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.filter-tabs button {
    padding: 10px 18px;
    color: #373a31;
    background: transparent;
    border: 1px solid #d6cba8;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.filter-tabs button.active,
.filter-tabs button:hover {
    color: #25291f;
    background: var(--yellow);
    border-color: var(--yellow);
}

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

.product-card {
    background: #ffffff;
    border: 1px solid #e0dacb;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    border-color: var(--yellow);
    transform: translateY(-6px);
}

.product-card.hidden {
    display: none;
}

.product-image {
    height: 330px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image span {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    color: #25291f;
    background: var(--yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-info {
    padding: 22px;
}

.product-info h3 {
    margin: 0 0 10px;
    font: 600 22px var(--serif);
}

.product-info p {
    min-height: 62px;
    color: var(--muted);
    font-size: 13px;
}

.product-info a {
    color: var(--yellow-deep);
    font-size: 12px;
    font-weight: 700;
}

/* PROCESS */

.process {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #292f1f;
}

.process::before {
    content: "S";
    position: absolute;
    top: -160px;
    right: -20px;
    color: rgba(244, 185, 0, 0.05);
    font: 700 620px / 1 var(--serif);
}

.light {
    color: var(--yellow);
}

.process .container {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.process-intro h2 {
    position: sticky;
    top: 130px;
}

.process-list {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-item > span {
    color: var(--yellow);
    font: 600 20px var(--serif);
}

.process-item h3 {
    margin: 0 0 8px;
    font: 600 25px var(--serif);
}

.process-item p {
    max-width: 540px;
    margin: 0;
    color: #cfd3c9;
    font-size: 13px;
}

/* QUALITY */

.quality {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
}

.quality-photo {
    min-height: 680px;
    background:
            url('https://images.pexels.com/photos/37259563/pexels-photo-37259563.jpeg?auto=compress&cs=tinysrgb&w=1500')
            center / cover;
}

.quality-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
            100px
            max(45px, calc((100vw - 1180px) / 2))
            100px
            80px;
    background: var(--yellow-light);
}

.quality-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 25px;
    border-top: 1px solid #ddca8c;
}

.quality-points span {
    padding: 18px 10px 18px 0;
    border-bottom: 1px solid #ddca8c;
    font-size: 12px;
    font-weight: 700;
}

/* WHOLESALE */

.wholesale {
    background: #faf7ee;
}

.wholesale-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    overflow: hidden;
    padding: 70px 75px;
    color: #ffffff;
    background: #292f1f;
    border-top: 4px solid var(--yellow);
}

.wholesale-box::after {
    content: "";
    width: 420px;
    height: 420px;
    position: absolute;
    right: -120px;
    bottom: -220px;
    border: 1px solid rgba(244, 185, 0, 0.35);
    border-radius: 50%;
}

.wholesale-box h2 {
    max-width: 760px;
}

.wholesale-box p:not(.section-kicker) {
    max-width: 700px;
    color: #d7dbd2;
}

.wholesale-box .btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
    color: var(--yellow-deep);
    font-weight: 700;
}

.contact-details span {
    color: #45483e;
    font-size: 14px;
    line-height: 1.7;
}

.contact-form {
    padding: 36px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--yellow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #bfc0ba;
    outline: none;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--yellow-deep);
}

.form-message {
    margin: 12px 0 0;
    color: var(--yellow-deep);
    font-size: 12px;
}

/* FOOTER */

.footer {
    padding: 75px 0 25px;
    color: #d7dad1;
    background: #20251b;
    border-top: 5px solid var(--yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 60px;
}

.footer-brand img {
    width: 165px;
    height: 100px;
    margin-bottom: 18px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 330px;
    color: #aeb4a8;
    font-size: 12px;
}

.footer h4 {
    margin: 0 0 18px;
    color: var(--yellow);
    font: 600 17px var(--serif);
}

.footer a,
.footer span {
    display: block;
    margin: 8px 0;
    color: #bdc2b8;
    font-size: 12px;
}

.footer a:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom a,
.footer-bottom span {
    color: #92988d;
    font-size: 11px;
}

/* ANIMATION */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: none;
}

/* TABLET */

@media (max-width: 1150px) {
    .topbar-inner {
        grid-template-columns: 1fr 1fr;
    }

    .topbar-social {
        display: none;
    }

    .main-nav {
        grid-template-columns: 1fr 160px 1fr;
    }

    .brand-centered {
        width: 160px;
    }

    .brand-circle {
        width: 150px;
        height: 150px;
    }

    .brand-circle img {
        width: 126px;
        height: 126px;
    }

    .nav-side-left {
        padding-right: 25px;
    }

    .nav-side-right {
        padding-left: 25px;
    }

    .nav-side > a,
    .dropdown-toggle {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 12px;
    }

    .header-cta {
        display: none !important;
    }
}

@media (max-width: 920px) {
    .nav-side > a,
    .dropdown-toggle {
        font-size: 11px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout {
        gap: 50px;
    }

    .process .container {
        gap: 45px;
    }

    .contact-grid {
        gap: 50px;
    }
}

/* MOBILE */

@media (max-width: 820px) {
    .topbar-inner {
        min-height: 40px;
        display: flex;
        justify-content: center;
    }

    .topbar-contact {
        display: none;
    }

    .topbar-announcement {
        width: 100%;
        height: 40px;
        padding: 0;
        border: 0;
    }

    .announcement-text {
        max-width: calc(100vw - 55px);
        overflow: hidden;
        font-size: 11px;
        text-overflow: ellipsis;
    }

    .site-header,
    .site-header.scrolled {
        height: 76px;
    }

    .header-inner {
        justify-content: flex-end;
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
        display: block;
        padding: 10px;
        background: var(--yellow);
        border: 1px solid var(--yellow);
        cursor: pointer;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        display: block;
        margin: 5px 0;
        background: #25291f;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        width: auto;
        height: auto;
        position: fixed;
        inset: 116px 0 0;
        display: block;
        padding: 95px 24px 30px;
        overflow-y: auto;
        background: var(--paper);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .brand-centered {
        width: 132px;
        height: 132px;
        position: fixed;
        top: 55px;
        left: 20px;
        margin: 0;
    }

    .brand-circle,
    .site-header.scrolled .brand-circle {
        width: 118px;
        height: 118px;
    }

    .brand-circle img,
    .site-header.scrolled .brand-circle img {
        width: 98px;
        height: 98px;
    }

    .nav-side {
        display: block;
        height: auto;
        padding: 0;
    }

    .nav-side > a,
    .dropdown-toggle {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
        text-align: left;
    }

    .nav-side > a::after,
    .dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown {
        display: block;
    }

    .dropdown-menu,
    .wide-menu {
        width: 100%;
        min-width: 0;
        position: static;
        display: none;
        margin-top: 8px;
        padding: 8px;
        background: #fff8dc;
        border: 0;
        border-left: 3px solid var(--yellow);
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-dropdown.open:hover .dropdown-menu {
        display: block;
    }

    .nav-dropdown.open .dropdown-toggle span {
        transform: rotate(180deg);
    }

    .header-cta {
        width: 100%;
        display: flex !important;
        margin: 20px 0 0;
    }

    .hero {
        height: calc(100vh - 116px);
        min-height: 650px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(44px, 11vw, 66px);
    }

    .hero-copy {
        max-width: 92%;
        font-size: 15px;
    }

    .scroll-note {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .split-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }

    .main-photo {
        height: 520px;
    }

    .section-head {
        display: block;
    }

    .section-head > p {
        width: auto;
    }

    .process .container {
        grid-template-columns: 1fr;
    }

    .process-intro h2 {
        position: static;
    }

    .quality {
        grid-template-columns: 1fr;
    }

    .quality-photo {
        min-height: 520px;
    }

    .quality-copy {
        padding: 70px 30px;
    }

    .wholesale-box {
        display: block;
        padding: 55px 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand-centered {
        left: 6px;
    }

    .hero {
        min-height: 610px;
    }

    .hero h1,
    .hero h2 {
        font-size: 43px;
    }

    .hero-actions {
        width: 100%;
        max-width: 270px;
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid div {
        padding-left: 0;
        border-right: 0;
        border-bottom: 1px solid #e4d398;
    }

    .about-visual {
        padding: 0 24px 35px 0;
    }

    .main-photo {
        height: 420px;
    }

    .floating-card {
        width: 215px;
        padding: 20px;
    }

    .section-content h2,
    .section-head h2,
    .process-intro h2,
    .quality-copy h2,
    .wholesale-box h2,
    .contact-copy h2 {
        font-size: 37px;
    }

    .filter-tabs {
        overflow-x: auto;
    }

    .filter-tabs button {
        white-space: nowrap;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 390px;
    }

    .process-item {
        grid-template-columns: 48px 1fr;
    }

    .quality-photo {
        min-height: 420px;
    }

    .quality-points {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        display: block;
    }
}

/* =========================================================
   HEADER RESPONSIVE DÜZELTMELERİ
   ========================================================= */

@media (min-width: 821px) and (max-width: 1250px) {
    .header-inner { width: min(100% - 24px, 1180px); }
    .main-nav { grid-template-columns: minmax(0, 1fr) 166px minmax(0, 1fr); }
    .nav-side-left { padding-right: 12px; }
    .nav-side-right { padding-left: 12px; }
    .nav-side > a,
    .dropdown-toggle { padding-right: 8px; padding-left: 8px; font-size: 12px; }
    .nav-side > a:not(.header-cta)::after,
    .dropdown-toggle::after { right: 8px; left: 8px; }
    .brand-centered { width: 166px; height: 174px; margin-top: 12px; }
    .brand-circle { width: 158px; height: 158px; padding: 18px; }
    .brand-circle img { width: 118px; height: 118px; }
    .site-header.scrolled .brand-circle { width: 148px; height: 148px; padding: 17px; }
    .site-header.scrolled .brand-circle img { width: 110px; height: 110px; }
    .header-cta { display: none; }
}

@media (max-width: 820px) {
    .topbar { border-bottom: 0; }
    .site-header,
    .site-header.scrolled {
        height: 76px;
        min-height: 76px;
        overflow: visible;
        background: #fffdf7;
        border-bottom: 2px solid var(--yellow);
    }
    .header-inner {
        height: 76px;
        min-height: 76px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        overflow: visible;
    }
    .menu-toggle { position: relative; z-index: 220; display: block; }
    .main-nav {
        width: auto;
        height: auto;
        min-height: 0;
        position: fixed;
        inset: 116px 0 0;
        z-index: 200;
        display: block;
        padding: 88px 24px 30px;
        overflow-y: auto;
        background: #fffdf7;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    .main-nav.open { transform: translateX(0); }
    .brand-centered,
    .site-header.scrolled .brand-centered {
        width: 118px;
        height: 118px;
        position: fixed;
        top: 48px;
        left: 12px;
        z-index: 230;
        margin: 0;
    }
    .brand-circle,
    .site-header.scrolled .brand-circle {
        width: 110px;
        height: 110px;
        padding: 13px;
    }
    .brand-circle img,
    .site-header.scrolled .brand-circle img { width: 80px; height: 80px; }
    .nav-side { width: 100%; height: auto; display: block; padding: 0; }
    .nav-dropdown { width: 100%; height: auto; display: block; }
    .nav-side > a,
    .dropdown-toggle {
        width: 100%;
        height: auto;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        color: #282d24;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
        text-align: left;
    }
    .nav-side > a::after,
    .dropdown-toggle::after { display: none; }
    .dropdown-menu,
    .wide-menu { width: 100%; min-width: 0; position: static; }
    .header-cta { width: 100%; height: 48px; display: flex; margin: 20px 0 0; }
    .hero-content { padding-top: 60px; }
}


/* =========================================================
   SACEM GIDA — HEADER FINAL DÜZELTME
   Mobil logo, scroll sonrası standart düzen,
   profesyonel oklar ve aktif menü görünümü
   ========================================================= */

/* Genel aktif menü ve ok görünümü */
.dropdown-toggle > span {
    width: 8px !important;
    height: 8px !important;
    display: inline-block !important;
    flex: 0 0 auto !important;
    margin: -4px 0 0 2px !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    border-right: 1.5px solid #9a6a00 !important;
    border-bottom: 1.5px solid #9a6a00 !important;
    transform: rotate(45deg) !important;
    transition: transform .22s ease, border-color .22s ease !important;
}

.nav-dropdown:hover > .dropdown-toggle > span,
.nav-dropdown.open > .dropdown-toggle > span {
    border-color: #c68d00 !important;
    transform: translateY(3px) rotate(225deg) !important;
}

/* Eski aktif nokta/işaretleri tamamen kapat */
.nav-side > a.active::after,
.dropdown-toggle.active::after,
.nav-dropdown.active > .dropdown-toggle::after {
    display: none !important;
}

/* Aktif menü: sade ve profesyonel */
.nav-side > a.active:not(.header-cta),
.dropdown-toggle.active,
.nav-dropdown.active > .dropdown-toggle {
    color: #8d6200 !important;
    font-weight: 800 !important;
}

.nav-side > a.active:not(.header-cta)::before,
.dropdown-toggle.active::before,
.nav-dropdown.active > .dropdown-toggle::before {
    content: "" !important;
    position: absolute !important;
    right: 14px !important;
    bottom: 0 !important;
    left: 14px !important;
    width: auto !important;
    height: 3px !important;
    display: block !important;
    background: #f4b900 !important;
    opacity: 1 !important;
    transform: scaleX(1) !important;
}

/* =========================================================
   MASAÜSTÜ
   ========================================================= */
@media (min-width: 821px) {
    .topbar {
        border-bottom: 0 !important;
    }

    .site-header {
        height: 104px !important;
        min-height: 104px !important;
        background: #fffdf7 !important;
        border: 0 !important;
        border-bottom: 2px solid #f4b900 !important;
        overflow: visible !important;
    }

    .site-header .header-inner {
        width: min(1440px, calc(100% - 48px)) !important;
        height: 100% !important;
        min-height: 100% !important;
        margin: 0 auto !important;
        position: relative !important;
        overflow: visible !important;
    }

    .site-header .main-nav {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
        overflow: visible !important;
    }

    .site-header .nav-side {
        width: calc(50% - 104px) !important;
        height: 104px !important;
        min-height: 104px !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
    }

    .site-header .nav-side-left {
        justify-content: flex-end !important;
        padding: 0 26px 0 0 !important;
    }

    .site-header .nav-side-right {
        justify-content: flex-start !important;
        padding: 0 0 0 26px !important;
    }

    .site-header .nav-side > a,
    .site-header .dropdown-toggle {
        height: 104px !important;
        min-height: 104px !important;
        padding: 0 14px !important;
        color: #292e25 !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .site-header .nav-dropdown {
        height: 104px !important;
        min-height: 104px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* En üstte ortalı yuvarlak logo */
    .site-header:not(.scrolled) .brand-centered {
        width: 190px !important;
        height: 190px !important;
        min-width: 190px !important;
        min-height: 190px !important;
        position: absolute !important;
        top: 10px !important;
        left: 50% !important;
        z-index: 160 !important;
        margin: 0 !important;
        transform: translateX(-50%) !important;
    }

    .site-header:not(.scrolled) .brand-circle {
        width: 180px !important;
        height: 180px !important;
        min-width: 180px !important;
        min-height: 180px !important;
        padding: 25px !important;
        background: #fffdf7 !important;
        border: 2px solid #f4b900 !important;
        border-radius: 50% !important;
        overflow: hidden !important;
    }

    .site-header:not(.scrolled) .brand-circle img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }

    /* Scroll sonrası standart header */
    .site-header.scrolled {
        height: 78px !important;
        min-height: 78px !important;
        background: rgba(255, 253, 247, .985) !important;
        border-bottom: 1px solid #ddd6c4 !important;
    }

    .site-header.scrolled .header-inner {
        width: min(1180px, calc(100% - 40px)) !important;
        height: 78px !important;
        min-height: 78px !important;
    }

    .site-header.scrolled .main-nav {
        height: 78px !important;
        min-height: 78px !important;
        justify-content: flex-end !important;
        padding-left: 170px !important;
        gap: 0 !important;
    }

    .site-header.scrolled .brand-centered {
        width: 150px !important;
        height: 66px !important;
        min-width: 150px !important;
        min-height: 66px !important;
        position: absolute !important;
        top: 6px !important;
        left: 0 !important;
        z-index: 160 !important;
        margin: 0 !important;
        transform: none !important;
    }

    .site-header.scrolled .brand-circle {
        width: 150px !important;
        height: 66px !important;
        min-width: 150px !important;
        min-height: 66px !important;
        justify-content: flex-start !important;
        padding: 4px 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        overflow: visible !important;
    }

    .site-header.scrolled .brand-circle img {
        width: 142px !important;
        height: 58px !important;
        max-width: 142px !important;
        max-height: 58px !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    .site-header.scrolled .nav-side {
        width: auto !important;
        height: 78px !important;
        min-height: 78px !important;
        padding: 0 !important;
        justify-content: flex-start !important;
    }

    .site-header.scrolled .nav-side > a,
    .site-header.scrolled .dropdown-toggle {
        height: 78px !important;
        min-height: 78px !important;
        padding: 0 11px !important;
        font-size: 13px !important;
    }

    .site-header.scrolled .nav-dropdown {
        height: 78px !important;
        min-height: 78px !important;
    }

    .site-header.scrolled .header-cta {
        height: 40px !important;
        min-height: 40px !important;
        margin-left: 10px !important;
        padding: 0 16px !important;
    }

    .dropdown-menu {
        top: calc(100% - 1px) !important;
        z-index: 500 !important;
        border: 1px solid #e2dccd !important;
        border-top: 3px solid #f4b900 !important;
    }
}

/* Dar masaüstünde sıkışmayı önle */
@media (min-width: 821px) and (max-width: 1240px) {
    .site-header .header-inner {
        width: calc(100% - 24px) !important;
    }

    .site-header .nav-side {
        width: calc(50% - 92px) !important;
    }

    .site-header .nav-side-left {
        padding-right: 12px !important;
    }

    .site-header .nav-side-right {
        padding-left: 12px !important;
    }

    .site-header .nav-side > a,
    .site-header .dropdown-toggle {
        padding-right: 8px !important;
        padding-left: 8px !important;
        font-size: 12px !important;
    }

    .site-header:not(.scrolled) .brand-centered {
        width: 170px !important;
        height: 170px !important;
        min-width: 170px !important;
        min-height: 170px !important;
    }

    .site-header:not(.scrolled) .brand-circle {
        width: 162px !important;
        height: 162px !important;
        min-width: 162px !important;
        min-height: 162px !important;
        padding: 22px !important;
    }

    .site-header.scrolled .header-inner {
        width: calc(100% - 28px) !important;
    }

    .site-header.scrolled .main-nav {
        padding-left: 145px !important;
    }

    .site-header.scrolled .brand-centered,
    .site-header.scrolled .brand-circle {
        width: 132px !important;
        min-width: 132px !important;
    }

    .site-header.scrolled .brand-circle img {
        width: 126px !important;
        max-width: 126px !important;
    }

    .site-header.scrolled .nav-side > a,
    .site-header.scrolled .dropdown-toggle {
        padding-right: 7px !important;
        padding-left: 7px !important;
        font-size: 11px !important;
    }

    .site-header.scrolled .header-cta {
        display: none !important;
    }
}

/* =========================================================
   MOBİL — LOGO SOLDA, HAMBURGER SAĞDA
   ========================================================= */
@media (max-width: 820px) {
    .topbar {
        border-bottom: 0 !important;
    }

    .site-header,
    .site-header.scrolled {
        height: 76px !important;
        min-height: 76px !important;
        background: #fffdf7 !important;
        border: 0 !important;
        border-bottom: 2px solid #f4b900 !important;
        overflow: visible !important;
    }

    .site-header .header-inner,
    .site-header.scrolled .header-inner {
        width: min(100% - 28px, 1180px) !important;
        height: 76px !important;
        min-height: 76px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        position: relative !important;
        overflow: visible !important;
    }

    /*
     * main-nav kapalıyken de DOM içinde kalır.
     * Böylece içinde bulunan logo görünmeye devam eder.
     */
    .main-nav,
    .site-header.scrolled .main-nav {
        width: 100% !important;
        height: calc(100vh - 116px) !important;
        min-height: 0 !important;
        position: fixed !important;
        inset: 116px 0 auto 0 !important;
        z-index: 520 !important;
        display: block !important;
        padding: 26px 22px 34px !important;
        overflow-y: auto !important;
        background: transparent !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: none !important;
        transition: opacity .25s ease, visibility .25s ease, background .25s ease !important;
    }

    .main-nav.open,
    .site-header.scrolled .main-nav.open {
        background: #fffdf7 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Logo, main-nav kapalıyken de görünür */
    .brand-centered,
    .site-header.scrolled .brand-centered {
        width: 138px !important;
        height: 64px !important;
        min-width: 138px !important;
        min-height: 64px !important;
        position: fixed !important;
        top: 46px !important;
        left: max(14px, calc((100vw - 1180px) / 2)) !important;
        z-index: 650 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .brand-circle,
    .site-header.scrolled .brand-circle {
        width: 138px !important;
        height: 64px !important;
        min-width: 138px !important;
        min-height: 64px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 3px 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        overflow: visible !important;
    }

    .brand-circle img,
    .site-header.scrolled .brand-circle img {
        width: 132px !important;
        height: 56px !important;
        max-width: 132px !important;
        max-height: 56px !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    .menu-toggle {
        width: 45px !important;
        height: 45px !important;
        position: relative !important;
        z-index: 700 !important;
        display: block !important;
        margin-left: auto !important;
        border: 0 !important;
        background: #f4b900 !important;
    }

    .nav-side,
    .site-header.scrolled .nav-side {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        padding: 0 !important;
    }

    .nav-dropdown,
    .site-header.scrolled .nav-dropdown {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
    }

    .nav-side > a,
    .dropdown-toggle,
    .site-header.scrolled .nav-side > a,
    .site-header.scrolled .dropdown-toggle {
        width: 100% !important;
        min-height: 56px !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px 4px !important;
        color: #292e25 !important;
        border: 0 !important;
        border-bottom: 1px solid #e3ddce !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        text-align: left !important;
    }

    .nav-side > a.active:not(.header-cta),
    .dropdown-toggle.active,
    .nav-dropdown.active > .dropdown-toggle {
        color: #8d6200 !important;
        background: #fff8dc !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
        border-left: 3px solid #f4b900 !important;
    }

    .nav-side > a::before,
    .nav-side > a::after,
    .dropdown-toggle::before,
    .dropdown-toggle::after {
        display: none !important;
    }

    .dropdown-toggle > span {
        width: 9px !important;
        height: 9px !important;
        display: inline-block !important;
        border-right: 1.5px solid #8d6200 !important;
        border-bottom: 1.5px solid #8d6200 !important;
        transform: rotate(45deg) !important;
    }

    .nav-dropdown.open > .dropdown-toggle > span {
        transform: translateY(3px) rotate(225deg) !important;
    }

    .dropdown-menu,
    .wide-menu {
        width: 100% !important;
        min-width: 0 !important;
        position: static !important;
        margin: 0 !important;
        padding: 6px 0 8px 14px !important;
        background: #fffaf0 !important;
        border: 0 !important;
        border-left: 2px solid #f4b900 !important;
    }

    .header-cta,
    .site-header.scrolled .header-cta {
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        margin: 20px 0 0 !important;
        padding: 0 18px !important;
    }

    .hero-content {
        padding-top: 30px !important;
    }
}
/* =========================================================
   SACEM GIDA — SABİT OLMAYAN HEADER VE ARAMA BUTONU
   ========================================================= */

/*
 * Header sayfayla birlikte hareket eder.
 * Aşağı kaydırıldığında ekranda sabit kalmaz.
 */
.site-header,
.site-header.scrolled {
    position: relative !important;
    top: auto !important;
}

/*
 * Scroll sonrasında farklı header görünümüne geçilmesini kapatır.
 * Masaüstünde her zaman ilk açılıştaki ortalanmış yapı korunur.
 */
@media (min-width: 821px) {
    .site-header,
    .site-header.scrolled {
        height: 104px !important;
        min-height: 104px !important;
        background: #fffdf7 !important;
        border: 0 !important;
        border-bottom: 2px solid #f4b900 !important;
    }

    .site-header.scrolled .header-inner {
        width: min(1440px, calc(100% - 48px)) !important;
        height: 104px !important;
        min-height: 104px !important;
    }

    .site-header.scrolled .main-nav {
        width: 100% !important;
        height: 104px !important;
        min-height: 104px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-left: 0 !important;
    }

    .site-header.scrolled .nav-side {
        width: calc(50% - 104px) !important;
        height: 104px !important;
        min-height: 104px !important;
        display: flex !important;
        align-items: center !important;
    }

    .site-header.scrolled .nav-side-left {
        justify-content: flex-end !important;
        padding: 0 26px 0 0 !important;
    }

    .site-header.scrolled .nav-side-right {
        justify-content: flex-start !important;
        padding: 0 0 0 26px !important;
    }

    .site-header.scrolled .nav-side > a,
    .site-header.scrolled .dropdown-toggle {
        height: 104px !important;
        min-height: 104px !important;
        padding-right: 14px !important;
        padding-left: 14px !important;
        font-size: 14px !important;
    }

    .site-header.scrolled .nav-dropdown {
        height: 104px !important;
        min-height: 104px !important;
    }

    /*
     * Scroll sırasında logo sol tarafa geçmez.
     * Ortadaki yuvarlak yapı korunur.
     */
    .site-header.scrolled .brand-centered {
        width: 190px !important;
        height: 190px !important;
        min-width: 190px !important;
        min-height: 190px !important;
        position: absolute !important;
        top: 10px !important;
        left: 50% !important;
        z-index: 160 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        transform: translateX(-50%) !important;
    }

    .site-header.scrolled .brand-circle {
        width: 180px !important;
        height: 180px !important;
        min-width: 180px !important;
        min-height: 180px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 25px !important;
        overflow: hidden !important;
        background: #fffdf7 !important;
        border: 2px solid #f4b900 !important;
        border-radius: 50% !important;
    }

    .site-header.scrolled .brand-circle img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }
}

/* =========================================================
   TELEFON / BİZİ ARAYIN BUTONU
   ========================================================= */

.header-call {
    width: auto !important;
    height: 50px !important;
    min-height: 50px !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin-left: 12px !important;
    padding: 0 15px !important;
    color: #25291f !important;
    background: #f4b900 !important;
    border: 1px solid #f4b900 !important;
    line-height: 1.15 !important;
    transition:
            background 0.22s ease,
            border-color 0.22s ease,
            color 0.22s ease,
            transform 0.22s ease !important;
}

.header-call:hover {
    color: #25291f !important;
    background: #ffd13e !important;
    border-color: #dca500 !important;
    transform: translateY(-1px) !important;
}

.header-call::before,
.header-call::after {
    display: none !important;
}

.header-call-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(37, 41, 31, 0.16);
    border-radius: 50%;
}

.header-call-icon svg {
    width: 15px !important;
    height: 15px !important;
    fill: #25291f !important;
    stroke: none !important;
}

.header-call-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
}

.header-call-content small {
    display: block;
    margin: 0 0 2px;
    color: rgba(37, 41, 31, 0.7);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-call-content strong {
    display: block;
    color: #25291f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
}

/* Orta genişlikte telefon butonunu biraz küçült */
@media (min-width: 821px) and (max-width: 1320px) {
    .header-call {
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 11px !important;
    }

    .header-call-icon {
        width: 27px;
        height: 27px;
    }

    .header-call-content small {
        font-size: 8px;
    }

    .header-call-content strong {
        font-size: 10px;
    }
}

/* Daha dar masaüstünde yalnız telefon görünür */
@media (min-width: 821px) and (max-width: 1160px) {
    .header-call-content small {
        display: none;
    }

    .header-call-content strong {
        font-size: 11px;
    }
}

/* Mobil menüde tam genişlikte arama butonu */
@media (max-width: 820px) {
    .site-header,
    .site-header.scrolled {
        position: relative !important;
        top: auto !important;
    }

    .header-call,
    .site-header.scrolled .header-call {
        width: 100% !important;
        height: 58px !important;
        min-height: 58px !important;
        display: flex !important;
        justify-content: center !important;
        margin: 20px 0 0 !important;
        padding: 0 18px !important;
    }

    .header-call-icon {
        width: 34px;
        height: 34px;
    }

    .header-call-content small {
        display: block;
        font-size: 9px;
    }

    .header-call-content strong {
        font-size: 14px;
    }
}
/* =========================================================
   SACEM GIDA — HEADER TELEFON VE MOBİL LOGO DÜZELTMESİ
   ========================================================= */

/* Masaüstü telefon alanı */
.header-call {
    width: auto !important;
    height: 58px !important;
    min-height: 58px !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 11px !important;
    margin-left: 14px !important;
    padding: 0 5px 0 15px !important;

    color: #9b6900 !important;
    background: transparent !important;
    border: 0 !important;
    border-left: 1px solid #e3dccb !important;

    line-height: 1.1 !important;
    transition:
            color 0.2s ease,
            border-color 0.2s ease !important;
}

.header-call:hover {
    color: #c58b00 !important;
    background: transparent !important;
    border-color: #d7b84d !important;
    transform: none !important;
}

.header-call::before,
.header-call::after {
    display: none !important;
}

.header-call-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    color: #af7600;
    background: transparent;
    border: 1px solid #d6b34b;
    border-radius: 50%;
}

.header-call-icon svg {
    width: 17px !important;
    height: 17px !important;
    fill: currentColor !important;
    stroke: none !important;
}

.header-call-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
}

.header-call-content small {
    display: block;
    margin: 0 0 4px;
    color: #797165;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.header-call-content strong {
    display: block;
    color: #a56f00;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.header-call:hover .header-call-content strong {
    color: #c58b00;
}

/* Mobil telefon masaüstünde görünmez */
.mobile-header-phone {
    display: none;
}

/* =========================================================
   MASAÜSTÜ LOGO VE MENÜ
   ========================================================= */

@media (min-width: 821px) {

    .header-inner {
        position: relative !important;
    }

    .main-nav {
        display: grid !important;
        grid-template-columns:
            minmax(0, 1fr)
            200px
            minmax(0, 1fr) !important;
    }

    .nav-center-space {
        width: 200px;
        height: 100%;
    }

    /* Logo artık nav dışında */
    .brand-centered {
        width: 190px !important;
        height: 190px !important;
        min-width: 190px !important;
        min-height: 190px !important;

        position: absolute !important;
        top: 10px !important;
        left: 50% !important;
        z-index: 200 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;
        transform: translateX(-50%) !important;
    }

    .brand-circle {
        width: 180px !important;
        height: 180px !important;
        min-width: 180px !important;
        min-height: 180px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 26px !important;
        overflow: hidden !important;

        background: #fffdf7 !important;
        border: 2px solid #f4b900 !important;
        border-radius: 50% !important;
    }

    .brand-circle img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    /* Header artık sayfayla birlikte yukarı gider */
    .site-header,
    .site-header.scrolled {
        position: relative !important;
        top: auto !important;
    }
}

/* =========================================================
   MOBİL HEADER
   ========================================================= */

@media (max-width: 820px) {

    .site-header,
    .site-header.scrolled {
        height: 76px !important;
        min-height: 76px !important;
        position: relative !important;
        top: auto !important;

        background: #fffdf7 !important;
        border: 0 !important;
        border-bottom: 2px solid #f4b900 !important;
        overflow: visible !important;
    }

    .header-inner,
    .site-header.scrolled .header-inner {
        width: calc(100% - 28px) !important;
        height: 76px !important;
        min-height: 76px !important;

        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        margin: 0 auto !important;
        gap: 8px !important;
        overflow: visible !important;
    }

    /* Mobil logo kesin görünür */
    .brand-centered,
    .site-header.scrolled .brand-centered {
        width: 128px !important;
        height: 64px !important;
        min-width: 128px !important;
        min-height: 64px !important;

        position: absolute !important;
        top: 6px !important;
        left: 0 !important;
        z-index: 700 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        margin: 0 !important;
        padding: 0 !important;

        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .brand-circle,
    .site-header.scrolled .brand-circle {
        width: 128px !important;
        height: 64px !important;
        min-width: 128px !important;
        min-height: 64px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        padding: 3px 0 !important;
        overflow: visible !important;

        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
    }

    .brand-circle img,
    .site-header.scrolled .brand-circle img {
        width: 122px !important;
        height: 58px !important;
        max-width: 122px !important;
        max-height: 58px !important;

        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;

        object-fit: contain !important;
        object-position: left center !important;
    }

    /* Mobil telefon hamburgerın yanında */
    .mobile-header-phone {
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        margin-left: auto;
        padding: 0 9px;

        color: #9d6a00;
        background: transparent;
        border: 1px solid #dcc36e;
    }

    .mobile-header-phone svg {
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
        fill: currentColor;
    }

    .mobile-header-phone > span {
        display: flex;
        flex-direction: column;
        line-height: 1;
        white-space: nowrap;
    }

    .mobile-header-phone small {
        margin-bottom: 3px;
        color: #777066;
        font-size: 7px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .mobile-header-phone strong {
        color: #a87000;
        font-size: 10px;
        font-weight: 800;
    }

    .menu-toggle {
        width: 44px !important;
        height: 44px !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

    /* Mobil açılır menü */
    .main-nav,
    .site-header.scrolled .main-nav {
        width: 100% !important;
        height: calc(100vh - 116px) !important;

        position: fixed !important;
        inset: 116px 0 auto !important;
        z-index: 600 !important;

        display: block !important;
        padding: 26px 22px 34px !important;
        overflow-y: auto !important;

        background: #fffdf7 !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;

        transition:
                transform 0.3s ease,
                opacity 0.25s ease,
                visibility 0.25s ease !important;
    }

    .main-nav.open,
    .site-header.scrolled .main-nav.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .nav-center-space {
        display: none !important;
    }

    /* Menü içindeki masaüstü telefon alanını mobilde kaldır */
    .header-call {
        display: none !important;
    }
}

/* Çok dar telefonlar */
@media (max-width: 390px) {

    .brand-centered,
    .site-header.scrolled .brand-centered {
        width: 108px !important;
        min-width: 108px !important;
    }

    .brand-circle,
    .site-header.scrolled .brand-circle {
        width: 108px !important;
        min-width: 108px !important;
    }

    .brand-circle img,
    .site-header.scrolled .brand-circle img {
        width: 103px !important;
        max-width: 103px !important;
    }

    .mobile-header-phone {
        padding: 0 7px;
    }

    .mobile-header-phone small {
        display: none;
    }

    .mobile-header-phone strong {
        font-size: 9px;
    }
}

/* =========================================================
   SACEM GIDA — GERÇEK HARİTALI DÜNYA FİNAL
   ========================================================= */

.global-network {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    background: #faf7ee;
    border-top: 1px solid #e5decd;
    border-bottom: 1px solid #e5decd;
}

.global-network-layout {
    display: grid;
    grid-template-columns:
        minmax(225px, .82fr)
        minmax(520px, 1.36fr)
        minmax(225px, .82fr);
    align-items: center;
    gap: 24px;
}

.global-network-left,
.global-network-right {
    position: relative;
    z-index: 10;
}

.global-network-left h2 {
    margin: 0 0 25px;
    color: var(--ink);
    font: 700 clamp(38px, 3.4vw, 55px)/1.08 var(--serif);
    letter-spacing: -.03em;
}

.global-network-left > p:not(.section-kicker) {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.global-network-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 27px;
    padding-bottom: 5px;
    color: #9b6900;
    border-bottom: 1px solid #b98500;
    font-size: 13px;
    font-weight: 800;
}

.global-network-link span {
    font-size: 18px;
    transition: transform .2s ease;
}

.global-network-link:hover span {
    transform: translateX(5px);
}

.global-network-right {
    border-top: 1px solid #ddd5c1;
}

.global-feature {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd5c1;
}

.global-feature > span {
    color: #a87000;
    font: 700 18px var(--serif);
}

.global-feature strong {
    display: block;
    margin-bottom: 5px;
    color: #30342a;
    font-size: 14px;
    font-weight: 800;
}

.global-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.global-country-count {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 26px;
}

.global-country-count strong {
    color: #a87000;
    font: 700 38px var(--serif);
}

.global-country-count span {
    max-width: 145px;
    color: #6d6c64;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.global-animation {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-scene {
    --globe-size: 330px;
    --flag-orbit-size: 440px;
    --plane-orbit-size: 558px;

    width: 590px;
    height: 590px;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-scene::before {
    content: "";
    width: 340px;
    height: 48px;
    position: absolute;
    bottom: 33px;
    left: 50%;
    background: rgba(0, 0, 0, .13);
    border-radius: 50%;
    filter: blur(18px);
    transform: translateX(-50%);
}

/* DÜNYA */

.globe {
    width: var(--globe-size);
    height: var(--globe-size);
    position: relative;
    z-index: 20;
    overflow: hidden;
    background: #050505;
    border: 7px solid #111111;
    border-radius: 50%;
    box-shadow:
        0 18px 28px rgba(0, 0, 0, .19),
        inset 20px 0 36px rgba(255,255,255,.06);
}

.globe-map-window {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
}

.globe-map-track {
    width: max-content;
    height: 100%;
    display: flex;

    /*
     * Harita sağa doğru akar.
     * Önceki sağdan-sola hareketin tersidir.
     */
    animation: sacemEarthRotation 56s linear infinite;
    will-change: transform;
}

.globe-map-track img {
    width: auto;
    height: 100%;
    max-width: none;
    flex: 0 0 auto;
    display: block;

    /*
     * Gerçek kıta çizimini beyaza çevirir.
     */
    filter: grayscale(1) brightness(0) invert(1);
}

@keyframes sacemEarthRotation {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.globe-shade {
    position: absolute;
    inset: 0;
    z-index: 8;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 30% 22%,
            rgba(255,255,255,.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 66% 62%,
            transparent 45%,
            rgba(0,0,0,.34) 77%,
            rgba(0,0,0,.72) 100%
        );
    box-shadow: inset 0 0 18px rgba(255,255,255,.12);
}

.turkey-center {
    width: 124px;
    height: 124px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 253, 247, .96);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    transform: translate(-50%, -50%);
}

.turkey-center::before {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
}

.turkey-flag {
    width: 76px;
    height: 50px;
    overflow: hidden;
    border: 3px solid #ffffff;
    border-radius: 4px;
}

.turkey-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.turkey-center strong {
    margin-top: 6px;
    color: #8e6200;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.turkey-center small {
    margin-top: 2px;
    color: #777168;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* BAYRAKLAR */

.flag-orbit {
    width: var(--flag-orbit-size);
    height: var(--flag-orbit-size);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 24;
    border: 2px dashed rgba(50, 50, 50, .34);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.flag-orbit-item {
    --angle: 0deg;

    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    animation: sacemFlagOrbit 37s linear infinite;
    will-change: transform;
}

.flag-chip {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    overflow: hidden;
    background: #fffdf7;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .14);
}

.flag-chip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.flag-item-1  { --angle: 0deg; }
.flag-item-2  { --angle: 22.5deg; }
.flag-item-3  { --angle: 45deg; }
.flag-item-4  { --angle: 67.5deg; }
.flag-item-5  { --angle: 90deg; }
.flag-item-6  { --angle: 112.5deg; }
.flag-item-7  { --angle: 135deg; }
.flag-item-8  { --angle: 157.5deg; }
.flag-item-9  { --angle: 180deg; }
.flag-item-10 { --angle: 202.5deg; }
.flag-item-11 { --angle: 225deg; }
.flag-item-12 { --angle: 247.5deg; }
.flag-item-13 { --angle: 270deg; }
.flag-item-14 { --angle: 292.5deg; }
.flag-item-15 { --angle: 315deg; }
.flag-item-16 { --angle: 337.5deg; }

@keyframes sacemFlagOrbit {
    from {
        transform:
            rotate(var(--angle))
            translateX(calc(var(--flag-orbit-size) / 2))
            rotate(calc(var(--angle) * -1));
    }

    to {
        transform:
            rotate(calc(var(--angle) + 360deg))
            translateX(calc(var(--flag-orbit-size) / 2))
            rotate(calc((var(--angle) + 360deg) * -1));
    }
}

/* ZARİF UÇAK */

.outer-orbit {
    width: var(--plane-orbit-size);
    height: var(--plane-orbit-size);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    border: 1px dashed rgba(0, 0, 0, .25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.plane-orbit {
    width: var(--plane-orbit-size);
    height: var(--plane-orbit-size);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 35;
    border-radius: 50%;
    animation: sacemPlaneOrbit 31s linear infinite;
    will-change: transform;
}

.plane {
    width: 60px;
    height: 44px;
    position: absolute;
    top: 50%;
    right: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b57d00;
    background: transparent;
    filter:
        drop-shadow(0 1px 0 rgba(255,255,255,.95))
        drop-shadow(0 4px 4px rgba(30,46,51,.22));

    /*
     * SVG burnu sağa bakar.
     * Sağ noktada saat yönündeki teğet aşağı olduğu için 90 derece.
     */
    transform: translateY(-50%) rotate(90deg);
}

.plane svg {
    width: 52px;
    height: 38px;
    display: block;
    fill: currentColor;
    stroke: #805900;
    stroke-width: .8;
    stroke-linejoin: round;
}

@keyframes sacemPlaneOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hover sırasında hiçbir hız veya konum değişmez */
.global-scene:hover .globe-map-track,
.global-scene:hover .flag-orbit-item,
.global-scene:hover .plane-orbit {
    animation-play-state: running;
}

/* TABLET */

@media (max-width: 1100px) {
    .global-network-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .global-network-left,
    .global-network-right {
        width: min(100%, 700px);
        margin: 0 auto;
    }

    .global-network-left {
        text-align: center;
    }

    .global-network-left > p:not(.section-kicker) {
        max-width: 650px;
        margin-right: auto;
        margin-left: auto;
    }

    .global-scene {
        margin: 0 auto;
    }
}

/* MOBİL */

@media (max-width: 650px) {
    .global-network {
        padding: 74px 0;
    }

    .global-network-left h2 {
        font-size: 38px;
    }

    .global-scene {
        --globe-size: 215px;
        --flag-orbit-size: 295px;
        --plane-orbit-size: 372px;

        width: 390px;
        height: 400px;
    }

    .turkey-center {
        width: 92px;
        height: 92px;
    }

    .turkey-flag {
        width: 58px;
        height: 39px;
        border-width: 2px;
    }

    .turkey-center strong {
        margin-top: 4px;
        font-size: 8px;
    }

    .turkey-center small {
        display: none;
    }

    .flag-orbit-item,
    .flag-chip {
        width: 30px;
        height: 30px;
    }

    .flag-orbit-item {
        top: calc(50% - 15px);
        left: calc(50% - 15px);
    }

    .flag-chip {
        padding: 3px;
        border-width: 1px;
    }

    .plane {
        width: 46px;
        height: 34px;
        right: -23px;
    }

    .plane svg {
        width: 40px;
        height: 29px;
    }
}

@media (max-width: 410px) {
    .global-scene {
        --globe-size: 184px;
        --flag-orbit-size: 258px;
        --plane-orbit-size: 324px;

        width: 335px;
        height: 345px;
    }

    .turkey-center {
        width: 82px;
        height: 82px;
    }

    .turkey-flag {
        width: 52px;
        height: 35px;
    }

    .flag-orbit-item,
    .flag-chip {
        width: 27px;
        height: 27px;
    }

    .flag-orbit-item {
        top: calc(50% - 13.5px);
        left: calc(50% - 13.5px);
    }

    .plane {
        width: 40px;
        height: 30px;
        right: -20px;
    }

    .plane svg {
        width: 35px;
        height: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .globe-map-track,
    .flag-orbit-item,
    .plane-orbit {
        animation-play-state: paused;
    }
}
/* =========================================================
   SACEM GIDA — ZARİF VEKTÖR UÇAK
   ========================================================= */

.plane {
    width: 72px !important;
    height: 46px !important;
    position: absolute !important;
    top: 50% !important;
    right: -36px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #b17a00 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;

    filter:
            drop-shadow(0 1px 0 rgba(255, 255, 255, 0.95))
            drop-shadow(0 4px 5px rgba(33, 42, 38, 0.22)) !important;

    /*
     * SVG uçağın burnu sağa bakar.
     * Yörüngenin sağ tarafında saat yönündeki hareket aşağıdır.
     */
    transform: translateY(-50%) rotate(90deg) !important;
}

.plane-vector {
    width: 68px !important;
    height: 40px !important;
    display: block !important;
    overflow: visible !important;
}

.plane-body {
    fill: currentColor !important;
    stroke: #795500 !important;
    stroke-width: 1.2 !important;
    stroke-linejoin: round !important;
}

.plane-window {
    fill: #fff6d5 !important;
    opacity: 0.9 !important;
}

.plane-line {
    fill: none !important;
    stroke: rgba(255, 255, 255, 0.42) !important;
    stroke-width: 1.2 !important;
    stroke-linecap: round !important;
}

/* Mobil */

@media (max-width: 650px) {
    .plane {
        width: 54px !important;
        height: 38px !important;
        right: -27px !important;
    }

    .plane-vector {
        width: 50px !important;
        height: 32px !important;
    }
}

@media (max-width: 410px) {
    .plane {
        width: 46px !important;
        height: 32px !important;
        right: -23px !important;
    }

    .plane-vector {
        width: 43px !important;
        height: 27px !important;
    }
}
