html {
    scroll-padding-top: calc(var(--header-height) + 20px);
}

:root {
    --font-display: 'Manrope', 'Roboto', system-ui, sans-serif;
    --primary-color: #002B5B;
    --secondary-color: #52b207;
    --accent-color: #52b207;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --section-padding: 100px 0;
    --border-radius: 8px;
    --header-height: 90px;
    --top-bar-height: 40px;
}

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

body {
    /* Hicbir bilesen sayfayi yatayda tasirmasin */
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
.top-bar {
    background-color: var(--primary-color);
    height: var(--top-bar-height);
    font-size: 0.85em;
    width: 100%;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95em;
    padding: 5px 10px;
    border-radius: 4px;
}

.contact-info a:hover {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}

.contact-info a i {
    font-size: 1.1em;
    color: var(---wihte);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
    padding: 0px;
    
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9em;
}

.social-links a:hover {
    background-color: var(--wihte);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    padding-left: 5px;
}

.lang-switcher a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

.lang-switcher a.active {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}

.lang-switcher a:not(.active) {
    opacity: 0.7;
}

.lang-switcher a:hover:not(.active) {
    background: rgba(255,255,255,0.05);
    opacity: 1;
}

.lang-switcher .separator {
    color: rgba(255,255,255,0.3);
}

/* layout.js header'i sonradan basiyor; yer onceden ayrilmazsa
   sayfa acilirken icerik yukari zipliyor (CLS). */
#site-header {
    min-height: calc(var(--header-height) + var(--top-bar-height));
}

.navbar {
    background-color: var(--white);
    height: var(--header-height);
    /* Onceden position:relative idi ve yapiskanlik JS'in ekledigi
       .sticky sinifina birakilmisti - o sinifin CSS karsiligi hic yoktu.
       position: sticky ile JS'e gerek kalmadan, zipllama olmadan calisir. */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* "transition: all" logo yuksekligi/height dahil her seyi animasyona
       sokup header'i bozuyordu; sadece gerekenler gecisli. */
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}



@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position:relative kaldirildi: mega-menu artik .navbar'a gore
       konumlanip tam genislikte aciliyor (.lang-select kendi
       position:relative'ine sahip, etkilenmiyor). */
}

.logo {
    padding: 10px 0;
}

.logo img {
    /* 65px + margin-top:10px + .logo padding, 90px'lik header'i tasiyordu.
       Ayrica main.js acilista inline height:50px basip logoyu ziplatiyordu. */
    height: 56px;
    display: block;
    margin-right: 30px;
    transition: height 0.25s ease;
}

.navbar.scrolled .logo img {
    height: 44px;
}

.nav-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-menu {
    height: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    height: 100%;
    /* position:relative KALDIRILDI: aksi halde .mega-menu (absolute) bu
       li'ye gore konumlanip menu ogesi genisliginde aciliyordu.
       Artik en yakin konumlanmis ata .navbar (position:sticky) oluyor. */
    display: flex;
    align-items: center;
}

.nav-menu > li > a {
    height: 100%;
    color: var(--text-color);
    text-decoration: none;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95em;
    position: relative;
    white-space: nowrap;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}

.nav-menu > li > a i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.mega-dropdown:hover > a i {
    transform: rotate(180deg);
}

.mega-menu {
    /* position:fixed + sabit top, header yapisirken menuyu havada
       birakiyordu. absolute + top:100% ile her zaman navbar'a yapisik. */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(10px);
    background-color: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.mega-menu .container {
    max-width: 950px;
    margin: 0 auto;
    padding: 40px;
    width: 100%;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0px;
    width: 100%;
}

.mega-menu-column {
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.mega-menu-column h4 {
    color: var(--primary-color);
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.mega-menu-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0;
    padding: 0;
}

.mega-menu-column ul li {
    margin: 0;
    width: 100%;
}

.mega-menu-column ul li a {
    display: flex;
    align-items: center;
    gap: 0px;
    width: 100%;
    padding: 13px 20px;
    border-radius: var(--border-radius);
    transition: all 0.25s ease;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    background: transparent;
    margin-left: -20px;
}

.mega-menu-column ul li a i {
    font-size: 1.2em;
    color: var(--primary-color);
    transition: all 0.25s ease;
    margin-right: 10px;
}

.mega-menu-column ul li a:hover {
    background-color: rgba(0, 43, 91, 0.08);
    color: var(--primary-color);
    font-weight: 500;
    transform: translateX(8px);
}

.mega-menu-column ul li a:hover i {
    transform: scale(1.2);
}

.featured-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-product {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.featured-product:hover {
    background: rgba(0, 43, 91, 0.08);
    transform: translateY(-5px);
}

.featured-product i {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.featured-product h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.featured-product p {
    font-size: 0.9em;
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--text-color);
}

.featured-product .read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9em;
}

@media (max-width: 992px) {
    .featured-products {
        flex-direction: row;
        gap: 15px;
    }
    
    .featured-product {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .featured-products {
        flex-direction: column;
    }
}

.featured-content {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content img {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 20px;
}

.featured-content h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.featured-content p {
    font-size: 0.9em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.nav-buttons {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.nav-buttons .search-toggle {
    color: var(--text-color);
    font-size: 1.2em;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-buttons .search-toggle:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    margin-left: 20px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1200px) {
    .nav-menu > li > a {
        padding: 0 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 992px) {
    .navbar {
        height: 70px;
        /* position:fixed idi; top-bar'i ortup gizliyordu.
           sticky ile top-bar gorunur kaliyor, navbar yine yapisiyor. */
        position: sticky;
        top: 0;
    }

    .menu-toggle {
        display: flex;
        margin-left: 12px;
    }

    #site-header {
        /* 992px altinda navbar 70px + top-bar 40px */
        min-height: 110px;
    }

    /* Mobil menu paneli artik navbar'a gore konumlaniyor. */
    .nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 110px);
        margin-left: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px 24px;
        overflow-y: auto;
        box-shadow: 0 14px 30px rgba(0,0,0,0.12);
        border-top: 1px solid rgba(0,0,0,0.06);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-wrapper.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .nav-menu > li {
        height: auto;
        /* Masaustundeki display:flex mobilde mega menuyu linkin YANINA
           koyuyordu; blok akisa cevirip alt alta diziyoruz. */
        display: block;
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 15px;
        height: auto;
        justify-content: space-between;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .mega-menu {
        position: static;
        top: auto;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        /* Mobilde acilma/kapanma display ile yonetiliyor; base kuraldaki
           opacity/visibility degerleri menuyu gorunmez birakiyordu. */
        display: none;
        opacity: 1;
        visibility: visible;
        background-color: var(--light-gray);
    }

    .mega-dropdown.active .mega-menu {
        display: block;
    }

    /* Mobilde hover ile acilma olmamali */
    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .mega-menu .container {
        padding: 20px;
        max-width: 100%;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobilde menuyu gereksiz uzatan tanitim bloklari gizlenir */
    .mega-menu-column .featured-content,
    .mega-menu-column .featured-product {
        display: none;
    }

    .mega-menu-column:empty,
    .mega-menu-column:has(> .featured-content),
    .mega-menu-column:has(> .featured-product) {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    #site-header {
        /* 768px altinda top-bar gizli; yalnizca navbar yuksekligi */
        min-height: 70px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    /* Sabit 200px padding yerine viewport'a oturan sahne */
    min-height: clamp(560px, calc(100vh - var(--header-height) - var(--top-bar-height)), 900px);
    min-height: clamp(560px, calc(100svh - var(--header-height) - var(--top-bar-height)), 900px);
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
}

.video-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Duz %85 kaplama videoyu tamamen olduruyordu.
   Yonlu perde: metnin oturdugu sol taraf koyu ve okunakli,
   sag taraf acik kalarak video gorunur. */
.video-background .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg,
            rgba(0, 18, 40, 0.94) 0%,
            rgba(0, 28, 60, 0.82) 34%,
            rgba(0, 43, 91, 0.46) 66%,
            rgba(0, 43, 91, 0.30) 100%),
        linear-gradient(to top,
            rgba(0, 16, 36, 0.58) 0%,
            rgba(0, 16, 36, 0.00) 42%);
}

.hero .container {
    position: relative;
    z-index: 1;
    /* .hero flex oldugu icin container shrink-to-fit oluyordu; width:100%
       olmadan max-width:1200px + margin:auto devreye girmiyor ve icerik
       navbar/footer gutter'i ile hizalanmiyordu */
    width: 100%;
    min-width: 0;
}

.hero-content {
    max-width: 820px;
}

/* Ustyazi: rozet/buton gorunumu yerine ince cizgili kicker */
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    font-family: var(--font-display);
    font-size: clamp(0.72rem, 0.66rem + 0.22vw, 0.84rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.hero-subtitle::before {
    content: '';
    flex: none;
    width: 48px;
    height: 2px;
    background: var(--accent-color);
}

.hero h1 {
    font-family: var(--font-display);
    /* em yerine akiskan clamp: 1200px'te de 1920px'te de dogru oranda */
    font-size: clamp(2.1rem, 1.3rem + 3.3vw, 4.1rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.032em;
    margin-bottom: 26px;
    text-shadow: none; /* sert 2px 2px golge kaldirildi */
    text-wrap: balance;
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child {
    color: rgba(255, 255, 255, 0.62);
}

.hero p {
    max-width: 54ch;
    margin: 0 0 40px;
    font-size: clamp(1rem, 0.94rem + 0.32vw, 1.19rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    text-wrap: pretty;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero .btn {
    min-width: 0;
    padding: 17px 36px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    box-shadow: 0 12px 30px rgba(82, 178, 7, 0.26);
}

.hero .btn::before {
    background: linear-gradient(120deg, #67d10c, var(--accent-color));
}

.hero .btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(82, 178, 7, 0.36);
}

.hero .btn-outline {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    box-shadow: none;
    backdrop-filter: blur(6px);
}

.hero .btn-outline::before {
    background: var(--white);
}

.hero .btn-outline:hover {
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.hero .btn:focus-visible,
.hero-scroll:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

/* Kaydirma isareti */
.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 2;
    width: 26px;
    height: 42px;
    margin-left: -13px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    transition: border-color 0.3s ease;
}

.hero-scroll:hover {
    border-color: rgba(255, 255, 255, 0.9);
}

.hero-scroll span {
    position: absolute;
    left: 50%;
    top: 9px;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 2px;
    background: var(--white);
    animation: heroScroll 1.9s ease-in-out infinite;
}

@keyframes heroScroll {
    0%        { opacity: 0; transform: translateY(0); }
    30%       { opacity: 1; }
    75%, 100% { opacity: 0; transform: translateY(13px); }
}

/* Kademeli giris */
@keyframes heroRise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}

.hero-subtitle,
.hero h1 span,
.hero p,
.hero-buttons,
.hero-scroll {
    animation: heroRise 0.9s cubic-bezier(0.16, 0.84, 0.30, 1) both;
}

.hero-subtitle              { animation-delay: 0.05s; }
.hero h1 span:nth-child(1)  { animation-delay: 0.15s; }
.hero h1 span:nth-child(2)  { animation-delay: 0.25s; }
.hero p                     { animation-delay: 0.38s; }
.hero-buttons               { animation-delay: 0.48s; }
.hero-scroll                { animation-delay: 0.70s; }

@media (max-width: 992px) {
    .hero {
        min-height: clamp(520px, calc(100vh - var(--header-height)), 800px);
        min-height: clamp(520px, calc(100svh - var(--header-height)), 800px);
    }

    .hero-content {
        max-width: 640px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 0;
        padding: 88px 0 96px;
    }

    /* Dar ekranda metin tum genisligi kapladigi icin duz perde */
    .video-background .overlay {
        background:
            linear-gradient(rgba(0, 20, 44, 0.86), rgba(0, 20, 44, 0.86)),
            linear-gradient(to top, rgba(0, 16, 36, 0.5), rgba(0, 16, 36, 0));
    }

    .hero-content {
        max-width: none;
    }

    .hero-subtitle {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-subtitle::before {
        width: 30px;
    }

    .hero p {
        max-width: none;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero .btn {
        width: 100%;
        padding: 16px 28px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-subtitle,
    .hero h1 span,
    .hero p,
    .hero-buttons,
    .hero-scroll,
    .hero-scroll span {
        animation: none;
    }
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: var(--light-gray);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--light-gray);
    transform: skewY(-2deg);
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 25px;
    background: var(--light-gray);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* News Section */
.news {
    padding: var(--section-padding);
    background-color: var(--white);
}

.news h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-size: 2.5em;
    position: relative;
    padding-bottom: 20px;
}

.news h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.news-item {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4em;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 15px;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info {
    max-width: 400px;
}

.footer-info p {
    margin: 20px 0;
    font-size: 1em;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2em;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95em;
    display: inline-block;
}

.footer-links ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2em;
    color: var(--accent-color);
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    font-size: 0.95em;
    opacity: 0.9;
    line-height: 1.6;
}

footer .contact-item p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .contact-item p a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9em;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Language Selector */
.lang-select {
    position: relative;
    margin-left: 20px;
}

.selected-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.95em;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.selected-lang:hover {
    background-color: var(--light-gray);
}

.globe-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.separator {
    color: rgba(0,0,0,0.3);
    font-weight: 300;
}

.selected-lang i {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.lang-select:hover .selected-lang i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

.lang-option {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.lang-option .country {
    flex-grow: 1;
}

.lang-option .lang-code {
    color: rgba(0,0,0,0.5);
    font-size: 0.9em;
}

.lang-option:hover {
    background-color: var(--light-gray);
}

.lang-option.active {
    background-color: var(--light-gray);
    font-weight: 500;
}

@media (max-width: 992px) {
    .lang-select {
        margin-left: auto;
        margin-right: 0;
    }

    /* Dar ekranda ulke adi gizlenir, sadece kod kalir */
    .selected-lang > span:not(.separator):first-of-type,
    .selected-lang .separator {
        display: none;
    }

    .selected-lang {
        padding: 8px 10px;
    }

    /* position:static + visible idi; menu her zaman acik gorunuyor ve
       navbar'i tasirip yatay kaydirmaya sebep oluyordu. */
    .lang-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        width: auto;
        min-width: 170px;
        margin-top: 0;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }

    /* Mobilde hover ile acilmasin, sadece tiklamayla (.active) acilsin */
    .lang-select:hover .lang-dropdown {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }

    .lang-select.active .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header p {
    font-size: 1.2em;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
}

.feature-list li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
    color: var(--text-color);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* News Items */
.news-item {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    display: block;
    font-size: 0.9em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: var(--white);
}

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

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0,43,91,0.9), rgba(0,43,91,0.9)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
}

/* Ürün Grupları */
.product-groups {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.product-category {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.category-icon i {
    font-size: 2.5em;
    color: var(--primary-color);
}

.category-content h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-content p {
    color: var(--text-color);
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-color);
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.product-category .read-more {
    margin-top: 25px;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.product-category .read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.product-category .read-more:hover::after {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-category {
        padding: 30px;
    }
}

/* Genel Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 16px 32px;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline::before {
    background: var(--primary-color);
}

.btn-outline:hover {
    color: var(--white);
}

/* CTA Butonları */
.cta .btn {
    min-width: 220px;
    padding: 20px 40px;
    font-size: 1.05em;
    border-radius: 12px;
}

.cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-outline:hover {
    border-color: transparent;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .btn {
        min-width: 160px;
        padding: 14px 28px;
        font-size: 0.9em;
    }
    
    .hero .btn {
        min-width: 180px;
        padding: 16px 30px;
    }
    
    .cta .btn {
        min-width: 200px;
        padding: 18px 35px;
        font-size: 1em;
    }
}

/* Brands Section */
.brands {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 40px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,43,91,0.03), rgba(82,178,7,0.03));
    z-index: 0;
    transition: all 0.4s ease;
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(0,43,91,0.15);
}

.brand-item:hover::before {
    opacity: 1;
    background: linear-gradient(45deg, rgba(0,43,91,0.05), rgba(82,178,7,0.05));
}

.brand-logo {
    width: 220px;
    height: 110px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.brand-item:hover .brand-logo img {
    transform: scale(1.05);
}

.brand-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.brand-content p {
    color: var(--text-color);
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.85;
}

.brand-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.brand-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    color: var(--text-color);
    font-size: 1.05em;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.brand-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}

.brand-list li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
    opacity: 1;
}

.brand-content .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 1.05em;
    padding: 12px 25px;
    border-radius: 6px;
    background: rgba(0,43,91,0.08);
    transition: all 0.3s ease;
}

.brand-content .read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.brand-content .read-more:hover {
    background: var(--primary-color);
    color: var(--white);
}

.brand-content .read-more:hover::after {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .brands-grid {
        gap: 30px;
    }
    
    .brand-item {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-item {
        padding: 35px;
    }
    
    .brand-logo {
        width: 180px;
        height: 90px;
        margin-bottom: 25px;
    }
    
    .brand-content p {
        font-size: 1em;
        margin-bottom: 25px;
    }
    
    .brand-list {
        margin: 0 0 25px;
    }
    
    .brand-list li {
        font-size: 1em;
        padding: 10px 0 10px 25px;
    }
    
    .brand-content .read-more {
        width: 100%;
        justify-content: center;
    }
}

/* Sayfa Başlığı */
.page-header {
    /* Arkaplan gorseli projede yok; duz kurumsal degrade kullaniliyor. */
    background: linear-gradient(135deg, #002B5B 0%, #013b7a 100%);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    /* margin-top KALDIRILDI: navbar artik position:sticky ile akis icinde
       oldugundan bu bosluk header ile sayfa basligi arasinda beyaz
       bir bosluk birakiyordu. */
}

.page-header h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95em;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb .separator {
    opacity: 0.5;
}

.breadcrumb .current {
    opacity: 0.7;
}

/* Hakkımızda Bölümü */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text .lead {
    font-size: 1.3em;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.85;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-features .feature {
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.about-features .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-features .feature i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-features .feature h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-features .feature p {
    font-size: 0.95em;
    margin-bottom: 0;
    opacity: 0.9;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Vizyon & Misyon */
.vision-mission {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-item {
    padding: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vm-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.vm-icon i {
    font-size: 2.5em;
    color: var(--primary-color);
}

.vm-item h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.vm-item p {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.85;
}

/* Değerlerimiz */
.values {
    padding: var(--section-padding);
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.value-item h4 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
}

/* Kalite Politikamız */
.quality-policy {
    padding: var(--section-padding);
    /* Onceki kural olmayan images/quality-bg.webp'i cagiriyordu (404) ve
       ustundeki %97 kaplama zaten her seyi duz laciverte ceviriyordu. */
    background:
        radial-gradient(900px 520px at 12% -15%, rgba(82, 178, 7, 0.16), transparent 62%),
        radial-gradient(760px 460px at 102% 112%, rgba(0, 122, 204, 0.20), transparent 58%),
        linear-gradient(158deg, #002B5B 0%, #001B3B 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.policy-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.policy-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.policy-kicker::before {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--accent-color);
}

.policy-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 1.3rem + 2.1vw, 2.9rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    font-weight: 800;
}

.policy-text .lead {
    font-size: clamp(1.02rem, 0.97rem + 0.24vw, 1.18rem);
    line-height: 1.6;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 46ch;
}

.policy-list {
    list-style: none;
    margin: 0 0 38px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Duz '✓' karakteri isletim sistemine gore farkli ciziliyordu;
   yerine sabit boyutlu rozet + Font Awesome ikonu */
.policy-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    flex: none;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.62rem;
    background: rgba(82, 178, 7, 0.18);
    border: 1px solid rgba(82, 178, 7, 0.45);
    color: #8ede43;
}

.quality-policy .btn {
    padding: 15px 32px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.01em;
    min-width: 0;
}

.policy-certificates {
    /* 0.8fr'lik dar sutunda yan yana iki kart eziliyordu; alt alta */
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.certificate {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px;
    text-decoration: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1),
                background-color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.certificate:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(82, 178, 7, 0.55);
    box-shadow: 0 16px 34px rgba(0, 10, 26, 0.35);
}

/* Iki SVG farkli en-boy oraninda (595x544 ve 842x595); esit kutu +
   object-fit ile ayni boyda gorunurler */
.certificate-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 92px;
    padding: 10px;
    background: var(--white);
    border-radius: 10px;
}

.certificate-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

/* Eski markup (.certificate > img, certificate-media sarmalayicisi yok):
   ISO SVG'si 595x544px intrinsic boyutta geldigi icin kutuyu taşiriyordu */
.certificate > img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    padding: 10px;
    background: var(--white);
    border-radius: 10px;
}

.certificate-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.certificate-name {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.certificate-desc {
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 992px) {
    .policy-content {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

@media (max-width: 600px) {
    .policy-certificates {
        grid-template-columns: 1fr;
    }
}

/* Yönetim Kadrosu */
.management {
    padding: var(--section-padding);
    background: var(--white);
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.management-item {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.management-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.manager-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.manager-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.management-item:hover .manager-image img {
    transform: scale(1.1);
}

.manager-info {
    padding: 30px;
    text-align: center;
}

.manager-info h4 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 600;
}

.manager-info .position {
    display: block;
    color: var(--accent-color);
    font-size: 1em;
    margin-bottom: 15px;
    font-weight: 500;
}

.manager-info p {
    font-size: 0.95em;
    color: var(--text-color);
    opacity: 0.85;
}

/* İletişim CTA */
.contact-cta {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.contact-cta h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .about-content,
    .policy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

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

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

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
        /* margin-top:70px KALDIRILDI: sabit navbar zamanindan kalma bosluk */
    }

    .page-header h1 {
        font-size: 2.2em;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .policy-certificates {
        grid-template-columns: 1fr;
    }

    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
} 
/* ============================================================
   ORTAK SAYFA BILESENLERI  (tum alt sayfalar)
   ============================================================ */

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Yukari cik butonu --- */
.to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .3s ease;
    z-index: 1200;
    box-shadow: 0 6px 18px rgba(0,43,91,.3);
}
.to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.to-top:hover {
    background-color: var(--secondary-color);
}

/* --- Cerez bildirimi (minimal, sol alt) --- */
.cookie-banner {
    position: fixed;
    left: 20px;
    bottom: 20px;
    right: auto;
    width: 330px;
    max-width: calc(100vw - 40px);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background-color: var(--white);
    border: 1px solid rgba(0, 43, 91, .10);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 20, 44, .14);
    z-index: 1300;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
}
.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}
.cookie-banner p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.55;
    color: #5a6270;
}
.cookie-banner a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
/* Genel .btn stillerinden (uppercase, min-width:180px, golge) bagimsiz,
   kompakt kendi butonu */
.cookie-accept {
    align-self: stretch;
    padding: 9px 16px;
    border: 0;
    border-radius: 6px;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .2s ease;
}
.cookie-accept:hover {
    background: var(--accent-color);
}
.cookie-accept:focus-visible {
    outline: 3px solid rgba(0, 43, 91, .35);
    outline-offset: 2px;
}

/* --- Sayfa basligi (breadcrumb alani) --- */
.page-header {
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(82,178,7,.12);
}
.page-header .lead {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
}

/* --- Bolum yardimcilari --- */
.section {
    padding: var(--section-padding);
}
.section-alt {
    background-color: var(--light-gray);
}
.section-dark {
    background-color: var(--primary-color);
    color: var(--white);
}
.section-dark .section-header h2,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}
.section-dark .section-header p {
    color: rgba(255,255,255,.8);
}
.section-narrow .container {
    max-width: 900px;
}

/* --- Metin blogu --- */
.text-block h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-block h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 32px 0 14px;
}
.text-block p {
    color: #555;
    margin-bottom: 16px;
}
.text-block .lead {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 22px;
}
.text-block ul {
    list-style: none;
    margin: 0 0 22px;
}
.text-block ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #555;
}
.text-block ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--secondary-color);
    font-size: .85rem;
}

/* --- Iki kolonlu icerik --- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split.reverse .split-media {
    order: -1;
}

/* --- Gorsel yerine kullanilan panel --- */
.visual-card {
    position: relative;
    min-height: 340px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-color) 0%, #004a8f 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 40px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,43,91,.22);
}
.visual-card::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(82,178,7,.18);
    top: -70px;
    right: -70px;
}
.visual-card::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.14);
    bottom: -60px;
    left: -50px;
}
.visual-card i {
    font-size: 3.4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.visual-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.visual-card p {
    color: rgba(255,255,255,.8);
    font-size: .95rem;
    position: relative;
    z-index: 1;
    max-width: 320px;
}

/* --- Bilgi kartlari --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.card-grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card-grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.info-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 36px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
    border-bottom: 3px solid transparent;
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
    border-bottom-color: var(--secondary-color);
}
.info-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 18px;
    display: block;
}
.info-card h3,
.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}
.info-card p {
    color: #666;
    font-size: .95rem;
}
.info-card ul {
    list-style: none;
    margin-top: 16px;
}
.info-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 9px;
    color: #666;
    font-size: .92rem;
}
.info-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}
.section-alt .info-card {
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

/* --- Numarali adimlar --- */
.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    counter-reset: step;
}
.step-item {
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 28px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
}
.step-item::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: -18px;
    left: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
}
.step-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.step-item p {
    color: #666;
    font-size: .93rem;
}

/* --- Zaman cizelgesi --- */
.timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary-color), rgba(82,178,7,.15));
}
.timeline-item {
    position: relative;
    padding: 0 0 34px 30px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--secondary-color);
}
.timeline-item .year {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.timeline-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.timeline-item p {
    color: #666;
    font-size: .95rem;
}

/* --- Sertifika kartlari --- */
.certificate-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
}
.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}
.certificate-card .cert-badge {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(82,178,7,.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.certificate-card .cert-badge i {
    font-size: 2rem;
    color: var(--secondary-color);
}
.certificate-card h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.certificate-card .cert-code {
    display: block;
    color: var(--secondary-color);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 12px;
}
.certificate-card p {
    color: #666;
    font-size: .9rem;
}

/* --- Yonetim: bas harf avatari --- */
.manager-avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #004a8f);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 4px solid rgba(82,178,7,.25);
}
.management-item.centered {
    text-align: center;
    padding: 36px 26px;
}

/* --- Urun kartlari --- */
.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}
.product-card .product-top {
    background: linear-gradient(135deg, var(--primary-color), #004a8f);
    padding: 30px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 16px;
}
.product-card .product-top i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}
.product-card .product-top h4 {
    font-size: 1.1rem;
    margin: 0;
}
.product-card .product-body {
    padding: 26px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-card .product-body p {
    color: #666;
    font-size: .94rem;
    margin-bottom: 16px;
}
.product-card .product-meta {
    list-style: none;
    margin-bottom: 20px;
}
.product-card .product-meta li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px dashed #eee;
    font-size: .88rem;
    color: #777;
}
.product-card .product-meta li span:last-child {
    color: var(--primary-color);
    font-weight: 500;
}
.product-card .read-more {
    margin-top: auto;
}

/* --- Tedavi alani kartlari --- */
.area-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 34px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    border-left: 4px solid var(--secondary-color);
    scroll-margin-top: 140px;
}
.area-card .area-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}
.area-card .area-head i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: rgba(82,178,7,.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.area-card .area-head h3 {
    color: var(--primary-color);
    font-size: 1.35rem;
}
.area-card p {
    color: #666;
    margin-bottom: 18px;
}
.area-card .tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.area-card .tag-list li {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: .85rem;
}

/* --- Kariyer ilan listesi --- */
.job-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 28px 32px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.job-item:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(0,0,0,.09);
}
.job-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #777;
    font-size: .88rem;
}
.job-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}
.job-meta i {
    color: var(--secondary-color);
}
.job-item .btn {
    flex-shrink: 0;
    padding: 11px 26px;
    font-size: .85rem;
}

/* --- Surdurulebilirlik --- */
.sustain-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 34px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.sustain-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}
.sustain-item .sdg {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: .75rem;
    font-weight: 700;
    color: rgba(82,178,7,.35);
    letter-spacing: 1px;
}
.sustain-item i {
    font-size: 2.1rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: block;
}
.sustain-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.sustain-item p {
    color: #666;
    font-size: .94rem;
}
.progress-line {
    height: 6px;
    border-radius: 4px;
    background-color: var(--light-gray);
    margin-top: 18px;
    overflow: hidden;
}
.progress-line span {
    display: block;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #7ed321);
}
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    color: #888;
    margin-top: 8px;
}

/* --- Akordeon / SSS --- */
.accordion {
    max-width: 860px;
    margin: 0 auto;
}
.accordion-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 14px;
    box-shadow: 0 3px 14px rgba(0,0,0,.05);
    overflow: hidden;
}
.accordion-header {
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.02rem;
    transition: color .3s ease;
}
.accordion-header:hover {
    color: var(--secondary-color);
}
.accordion-header::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: .8rem;
    color: var(--secondary-color);
    transition: transform .3s ease;
    flex-shrink: 0;
}
.accordion-item.open .accordion-header::after {
    transform: rotate(180deg);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 26px;
}
.accordion-item.open .accordion-body {
    max-height: 600px;
    padding: 0 26px 24px;
}
.accordion-body p {
    color: #666;
    font-size: .95rem;
}

/* --- Formlar --- */
.form-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 44px 42px;
    box-shadow: 0 8px 30px rgba(0,0,0,.07);
}
.form-card h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.4rem;
}
.form-card > p {
    color: #777;
    margin-bottom: 28px;
    font-size: .95rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: .9rem;
    font-weight: 500;
}
.form-group label .req {
    color: #d0021b;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: .95rem;
    color: var(--text-color);
    background-color: var(--white);
    transition: border-color .3s ease, box-shadow .3s ease;
}
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(82,178,7,.12);
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #d0021b;
    box-shadow: 0 0 0 3px rgba(208,2,27,.08);
}
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
}
.form-check input {
    width: auto;
    margin-top: 5px;
    accent-color: var(--secondary-color);
}
.form-check label {
    margin: 0;
    font-weight: 400;
    color: #666;
    font-size: .88rem;
    line-height: 1.6;
}
.form-check a {
    color: var(--secondary-color);
}
.form-check.has-error label {
    color: #d0021b;
}
.form-status {
    margin-top: 18px;
    padding: 13px 18px;
    border-radius: 6px;
    font-size: .92rem;
    display: none;
}
.form-status.success {
    display: block;
    background-color: rgba(82,178,7,.1);
    color: #3d8505;
    border-left: 3px solid var(--secondary-color);
}
.form-status.error {
    display: block;
    background-color: rgba(208,2,27,.07);
    color: #b0021b;
    border-left: 3px solid #d0021b;
}
.form-card button[type="submit"] {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* --- Iletisim sayfasi --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}
.contact-box {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 36px;
}
.contact-box h3 {
    margin-bottom: 26px;
    font-size: 1.35rem;
}
.contact-box .contact-item {
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-box .contact-item i {
    color: var(--secondary-color);
    margin-top: 5px;
}
.contact-box .contact-item p,
.contact-box .contact-item a {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
}
.contact-box .contact-item strong {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 3px;
}
.contact-box .contact-item a:hover {
    color: var(--secondary-color);
}
.contact-box .footer-social {
    margin-top: 30px;
}
.map-wrapper {
    margin-top: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    line-height: 0;
}
.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* --- Yasal metin sayfalari --- */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
}
.legal-content .updated {
    color: #999;
    font-size: .88rem;
    margin-bottom: 34px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin: 38px 0 14px;
}
.legal-content h2:first-of-type {
    margin-top: 0;
}
.legal-content h3 {
    color: var(--primary-color);
    font-size: 1.08rem;
    margin: 24px 0 10px;
}
.legal-content p {
    color: #555;
    margin-bottom: 15px;
    font-size: .97rem;
}
.legal-content ul,
.legal-content ol {
    margin: 0 0 18px 20px;
    color: #555;
}
.legal-content ul li,
.legal-content ol li {
    margin-bottom: 9px;
    font-size: .97rem;
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    font-size: .92rem;
}
.legal-content table th,
.legal-content table td {
    border: 1px solid #e5e5e5;
    padding: 12px 15px;
    text-align: left;
    color: #555;
}
.legal-content table th {
    background-color: var(--light-gray);
    color: var(--primary-color);
    font-weight: 500;
}
.legal-note {
    background-color: rgba(82,178,7,.07);
    border-left: 3px solid var(--secondary-color);
    padding: 20px 24px;
    border-radius: 0 6px 6px 0;
    margin: 24px 0;
}
.legal-note p:last-child {
    margin-bottom: 0;
}

/* --- 404 --- */
.error-page {
    text-align: center;
    padding: 140px 0;
}
.error-page .code {
    font-size: 7rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}
.error-page h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 14px;
}
.error-page p {
    color: #777;
    max-width: 520px;
    margin: 0 auto 32px;
}
.error-page .cta-buttons {
    justify-content: center;
}

/* --- Duyarli (responsive) --- */
@media (max-width: 992px) {
    .split,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .split.reverse .split-media {
        order: 0;
    }
    .form-card {
        padding: 34px 26px;
    }
    .job-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .visual-card {
        min-height: 260px;
        padding: 30px;
    }
    .timeline {
        padding-left: 20px;
    }
    .error-page .code {
        font-size: 4.5rem;
    }
    .map-wrapper iframe {
        height: 300px;
    }
    .to-top {
        right: 16px;
        bottom: 16px;
    }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
    }
}

/* ============================================================
   Urun vitrini (/urunler) ve urun tanitim sayfasi (/urun/<slug>)
   Magazadaki dellaVita urunleri icin. .product-card zaten baska
   bir bilesende kullanildigindan burada .shop-* / .pd-* on eki var.
   ============================================================ */

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 26px;
    padding: 18px;
    background-color: var(--white);
    border: 1px solid #e8ecf1;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.shop-search {
    position: relative;
    flex: 1 1 260px;
    min-width: 0;
}

.shop-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #9aa5b1;
    font-size: .95rem;
    pointer-events: none;
}

.shop-search input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    font-family: inherit;
    font-size: .95rem;
    color: var(--text-color);
    background-color: var(--light-gray);
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    transition: border-color .3s ease, background-color .3s ease;
}

.shop-search input:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--accent-color);
}

.shop-select {
    flex: 0 1 200px;
    min-width: 0;
}

.shop-select select {
    width: 100%;
    padding: 13px 16px;
    font-family: inherit;
    font-size: .95rem;
    color: var(--text-color);
    background-color: var(--light-gray);
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: border-color .3s ease, background-color .3s ease;
}

.shop-select select:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--accent-color);
}

.shop-toolbar .btn {
    flex: 0 0 auto;
    padding: 13px 30px;
}

.shop-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: .92rem;
    color: #6b7684;
}

.shop-summary strong {
    color: var(--primary-color);
}

.shop-reset {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.shop-reset:hover {
    text-decoration: underline;
}

.shop-notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 28px 30px;
    background-color: var(--light-gray);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
}

.shop-notice i {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-top: 2px;
}

.shop-notice p {
    margin: 0;
    color: #555;
}

.shop-grid {
    display: grid;
    /* Sabit 3 sutun: sayfa basina 9 urun ile 3x3 dizilim
       (onceki auto-fill genis ekranda 4 sutuna cikiyordu) */
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.shop-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid #e8ecf1;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.shop-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

.shop-card-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background-color: var(--white);
    overflow: hidden;
}

.shop-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: opacity .4s ease, transform .4s ease;
}

.shop-card:hover .shop-card-media img {
    transform: scale(1.04);
}

.shop-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    color: #c3ccd6;
    font-size: 2.6rem;
}

.shop-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--accent-color);
    border-radius: 20px;
}

.shop-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 22px 24px 26px;
    border-top: 1px solid #eef1f5;
}

.shop-card-category {
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.shop-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.shop-card-body h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.shop-card-body h3 a:hover {
    color: var(--accent-color);
}

.shop-card-body p {
    font-size: .89rem;
    color: #6b7684;
    margin-bottom: 16px;
}

.shop-card-body .read-more {
    margin-top: auto;
}

.shop-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.shop-page {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: .92rem;
    color: var(--primary-color);
    text-decoration: none;
    background-color: var(--white);
    border: 1px solid #e0e6ec;
    border-radius: var(--border-radius);
    transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.shop-page:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.shop-page.is-active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.shop-page-gap {
    padding: 0 4px;
    color: #9aa5b1;
}

/* --- Urun tanitim sayfasi --- */
.page-header-compact {
    padding-bottom: 30px;
}

.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}

.pd-stage {
    position: relative;
    aspect-ratio: 1 / 1;
    background-color: var(--white);
    border: 1px solid #e8ecf1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pd-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
}

.pd-stage-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    color: #c3ccd6;
    font-size: 3.4rem;
}

.pd-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.pd-thumb {
    width: 78px;
    height: 78px;
    padding: 6px;
    background-color: var(--white);
    border: 1px solid #e0e6ec;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: border-color .3s ease;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-thumb:hover,
.pd-thumb.is-active {
    border-color: var(--accent-color);
}

.pd-category {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.pd-summary h1 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    line-height: 1.25;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pd-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

.pd-brand img {
    width: 96px;
    height: 40px;
    object-fit: contain;
}

.pd-brand span {
    font-size: .88rem;
    color: #6b7684;
}

.pd-lead {
    color: #555;
    margin-bottom: 26px;
}

.pd-facts {
    list-style: none;
    margin-bottom: 30px;
}

.pd-facts li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px dashed #e4e9ee;
    font-size: .92rem;
}

.pd-facts li span {
    color: #6b7684;
}

.pd-facts li strong {
    color: var(--primary-color);
    font-weight: 500;
    text-align: right;
}

.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.pd-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .84rem;
    line-height: 1.6;
    color: #7a838f;
}

.pd-note i {
    color: var(--accent-color);
    margin-top: 3px;
}

.pd-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pd-panel {
    padding: 34px 36px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.pd-panel h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

/* Kutusuz panel: kart zemini/golgesi/ic bosluk yok */
.pd-panel-plain {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

/* Grid'de tum sutunlari kaplasin */
.pd-panel-full {
    grid-column: 1 / -1;
}

.pd-rich {
    color: #555;
    font-size: .95rem;
}

.pd-rich p {
    margin-bottom: 14px;
}

.pd-rich ul,
.pd-rich ol {
    margin: 0 0 14px 20px;
}

.pd-rich li {
    margin-bottom: 8px;
}

.pd-rich img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.pd-rich table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 14px;
}

.pd-rich th,
.pd-rich td {
    padding: 10px 12px;
    border: 1px solid #e4e9ee;
    text-align: left;
}

.pd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
}

.pd-table th,
.pd-table td {
    padding: 12px 0;
    border-bottom: 1px dashed #e4e9ee;
    text-align: left;
}

.pd-table th {
    color: #6b7684;
    font-weight: 400;
    width: 45%;
}

.pd-table td {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .pd-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pd-summary h1 {
        font-size: 1.7rem;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 600px) {
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-select,
    .shop-toolbar .btn {
        flex: 1 1 auto;
        width: 100%;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .shop-card-body {
        padding: 18px 18px 22px;
    }

    .pd-panel {
        padding: 26px 22px;
    }
}

/* ============================================================
   RTL DESTEGI (Arapca)  —  <html dir="rtl"> oldugunda devreye girer.
   Yon bilgisi js/i18n.js tarafindan <html> uzerine yazilir.
   Burada yalnizca yon bagimli (sag/sol) kurallar tersleniyor;
   renk, olcu ve tipografi ortak kaliyor.
   ============================================================ */

[dir="rtl"] body,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] .btn,
[dir="rtl"] input, [dir="rtl"] select, [dir="rtl"] textarea, [dir="rtl"] button {
    font-family: 'Cairo', 'Noto Naskh Arabic', 'Segoe UI', Tahoma, sans-serif;
}

/* --- Sabitlenmis hizalamalar --- */
[dir="rtl"] .feature-list,
[dir="rtl"] .brand-item,
[dir="rtl"] .legal-content table th,
[dir="rtl"] .legal-content table td,
[dir="rtl"] .pd-rich th,
[dir="rtl"] .pd-rich td,
[dir="rtl"] .pd-table th,
[dir="rtl"] .pd-table td {
    text-align: right;
}

[dir="rtl"] .pd-facts li strong {
    text-align: left;
}

/* --- Ust bar / navigasyon --- */
[dir="rtl"] .lang-switcher      { padding-left: 0; padding-right: 5px; }
[dir="rtl"] .logo img           { margin-right: 0; margin-left: 30px; }
[dir="rtl"] .nav-wrapper        { margin-left: 0; margin-right: auto; }
[dir="rtl"] .nav-buttons        { margin-left: 0; margin-right: 30px; }
[dir="rtl"] .menu-toggle        { margin-left: 0; margin-right: 20px; }
[dir="rtl"] .nav-menu > li > a::after { left: auto; right: 0; }

/* --- Dil secici --- */
[dir="rtl"] .lang-select        { margin-left: 0; margin-right: 20px; }
[dir="rtl"] .lang-dropdown      { right: auto; left: 0; }
[dir="rtl"] .selected-lang i    { margin-left: 0; margin-right: 5px; }

/* --- Mega menu --- */
[dir="rtl"] .mega-menu-column h4::after       { left: auto; right: 0; }
[dir="rtl"] .mega-menu-column ul li a         { margin-left: 0; margin-right: -20px; }
[dir="rtl"] .mega-menu-column ul li a i       { margin-right: 0; margin-left: 10px; }
[dir="rtl"] .mega-menu-column ul li a:hover   { transform: translateX(-8px); }

/* --- "Devamini oku" oklari --- */
[dir="rtl"] .read-more::after,
[dir="rtl"] .product-category .read-more::after {
    content: '←';
    margin-left: 0;
    margin-right: 5px;
}
[dir="rtl"] .brand-content .read-more::after {
    content: '←';
    margin-left: 0;
    margin-right: 8px;
}
[dir="rtl"] .read-more:hover::after,
[dir="rtl"] .product-category .read-more:hover::after {
    transform: translateX(-5px);
}

/* --- Isaretli listeler --- */
[dir="rtl"] .feature-list li        { padding-left: 0; padding-right: 25px; }
[dir="rtl"] .feature-list li::before{ left: auto; right: 0; }

[dir="rtl"] .text-block ul li        { padding-left: 0; padding-right: 28px; }
[dir="rtl"] .text-block ul li::before{ left: auto; right: 0; }

[dir="rtl"] .info-card ul li        { padding-left: 0; padding-right: 22px; }
[dir="rtl"] .info-card ul li::before{ left: auto; right: 0; }

[dir="rtl"] .brand-list li          { padding: 12px 28px 12px 0; }
[dir="rtl"] .brand-list li::before  { left: auto; right: 0; }
[dir="rtl"] .brand-list li:hover    { transform: translateX(-5px); }

[dir="rtl"] .category-list li:hover { padding-left: 0; padding-right: 10px; }

/* --- Zaman cizelgesi --- */
[dir="rtl"] .timeline               { padding-left: 0; padding-right: 30px; }
[dir="rtl"] .timeline::before       { left: auto; right: 6px; }
[dir="rtl"] .timeline-item          { padding: 0 30px 34px 0; }
[dir="rtl"] .timeline-item::before  { left: auto; right: -30px; }

/* --- Numarali adimlar --- */
[dir="rtl"] .step-item::before      { left: auto; right: 28px; }

/* --- Kenar cizgili kutular --- */
[dir="rtl"] .area-card {
    border-left: none;
    border-right: 4px solid var(--secondary-color);
}
[dir="rtl"] .legal-note {
    border-left: none;
    border-right: 3px solid var(--secondary-color);
    border-radius: 6px 0 0 6px;
}
[dir="rtl"] .form-status.success {
    border-left: none;
    border-right: 3px solid var(--secondary-color);
}
[dir="rtl"] .form-status.error {
    border-left: none;
    border-right: 3px solid #d0021b;
}
[dir="rtl"] .shop-notice {
    border-left: none;
    border-right: 4px solid var(--accent-color);
}

/* --- Dekoratif daireler / rozetler --- */
[dir="rtl"] .page-header::after     { right: auto; left: -80px; }
[dir="rtl"] .visual-card::before    { right: auto; left: -70px; }
[dir="rtl"] .visual-card::after     { left: auto; right: -50px; }
[dir="rtl"] .sustain-item .sdg      { right: auto; left: 24px; }

/* --- Urun vitrini / urun detayi --- */
[dir="rtl"] .shop-search i          { left: auto; right: 16px; }
[dir="rtl"] .shop-search input      { padding: 13px 44px 13px 16px; }
[dir="rtl"] .shop-badge             { left: auto; right: 14px; }

/* --- Sabit ogeler --- */
[dir="rtl"] .to-top                 { right: auto; left: 25px; }
[dir="rtl"] .cookie-banner          { left: auto; right: 20px; }

@media (max-width: 768px) {
    [dir="rtl"] .to-top             { right: auto; left: 16px; }
    [dir="rtl"] .cookie-banner      { left: 12px; right: 12px; }
    [dir="rtl"] .timeline           { padding-left: 0; padding-right: 20px; }
}
