﻿
/* ================Style.css================================
           GENEL AYARLAR / RESET
        ===================================================== */

:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #666666;
    --line: #e9e3d8;
    --soft: #f7f3ed;
    --brand: #c49345;
    --brand-dark: #9b6f2e;
    --page-x: clamp(42px, 3.7vw, 72px);
    --max: 1840px;
    --shadow: 0 14px 40px rgba(0,0,0,.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.container {
    width: min(var(--max), calc(100% - (var(--page-x) * 2)));
    margin-inline: auto;
}



/* =====================================================
           TOP BAR
        ===================================================== */

.topbar {
    background: #fbfaf7;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    color: #3d3d3d;
}

.topbar-inner {
    min-height: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

    .topbar-item:nth-child(2),
    .topbar-item:nth-child(3) {
        justify-content: center;
    }

    .topbar-item:nth-child(4) {
        justify-content: flex-end;
    }

.topbar-icon {
    font-size: 17px;
    line-height: 1;
    opacity: .86;
}



/* =====================================================
           HEADER / LOGO / AKSİYONLAR
        ===================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(233,227,216,.85);
}

.nav {
    min-height: 96px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    min-width: 0;
    line-height: 1;
}

    .logo img {
        display: block;
        width: 220px;
        height: auto;
        max-height: 72px;
        object-fit: contain;
        object-position: left center;
    }

.actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 28px;
    position: relative;
}

.cart-dot {
    position: absolute;
    top: 3px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.mobile-toggle {
    display: none;
}



/* =====================================================
           ANA MENÜ / DROPDOWN / MEGA MENU
        ===================================================== */

.menu {
    display: flex;
    justify-content: center;
}

.menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu-item {
    position: relative;
}

.menu-link {
    min-height: 96px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 750;
    color: var(--text);
    white-space: nowrap;
}

    .menu-link:hover {
        color: var(--brand-dark);
    }

.chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .18s ease, margin .18s ease;
}

.has-dropdown:hover .chevron {
    transform: rotate(225deg);
    margin-top: 3px;
}

.dropdown {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0,0,0,.12);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-simple {
    width: 245px;
    padding: 10px;
}

    .dropdown-simple a,
    .dropdown-wide a {
        display: block;
        padding: 11px 12px;
        border-radius: 10px;
        color: #222;
        font-size: 14px;
        font-weight: 650;
    }

        .dropdown-simple a:hover,
        .dropdown-wide a:hover {
            background: var(--soft);
            color: var(--brand-dark);
        }

.dropdown-wide {
    width: 430px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

    .dropdown-wide strong {
        display: block;
        margin: 0 0 8px;
        padding: 0 12px;
        font-size: 13px;
        color: var(--brand-dark);
    }

.mega-menu {
    width: 760px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.mega-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .mega-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

    .mega-card img {
        width: 100%;
        aspect-ratio: 1.35 / 1;
        object-fit: cover;
        background: var(--soft);
    }

    .mega-card strong {
        display: block;
        padding: 12px 12px 2px;
        font-size: 14px;
        font-weight: 900;
    }

    .mega-card small {
        display: block;
        padding: 0 12px 12px;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.35;
    }



/* =====================================================
           HERO
        ===================================================== */

.hero {
    min-height: 620px;
    position: relative;
    isolation: isolate;
    background: #151515;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.66) 30%, rgba(0,0,0,.28) 58%, rgba(0,0,0,.03) 100% ), url('images/hero.webp') 52% center / cover no-repeat;
        z-index: -2;
        transform: scale(1.05);
        transform-origin: center center;
        animation: heroZoomOut 3.2s ease-out forwards;
        will-change: transform;
    }

@keyframes heroZoomOut {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1);
    }
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(980px, 62vw);
    height: 128px;
    background: linear-gradient( 90deg, rgba(15,15,15,.78) 0%, rgba(15,15,15,.62) 62%, rgba(15,15,15,0) 100% );
    z-index: -1;
}

.hero-inner {
    min-height: 620px;
    display: grid;
    align-items: center;
    padding-top: 0;
    padding-bottom: 145px;
}

.hero-content {
    width: 590px;
    max-width: 100%;
    color: #fff;
}

.eyebrow {
    margin: 0 0 14px;
    color: #c49345;
    font-weight: 850;
    font-size: 18px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(44px, 3.7vw, 60px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.hero-content > p:not(.eyebrow) {
    margin: 22px 0 0;
    color: rgba(255,255,255,.92);
    font-size: 17px;
    line-height: 1.5;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.btn {
    min-height: 54px;
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .015em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: var(--brand);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--brand-dark);
    }

.btn-ghost {
    border-color: rgba(255,255,255,.68);
    color: #fff;
    background: rgba(255,255,255,.03);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.11);
    }



/* =====================================================
           TRUST STRIP / HERO ALT AVANTAJLAR
        ===================================================== */

.trust-strip {
    margin-top: -128px;
    height: 128px;
    position: relative;
    z-index: 6;
    background: transparent;
    pointer-events: none;
}

    .trust-strip .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

.trust-grid {
    width: 760px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #fff;
    pointer-events: auto;
}

.trust-item {
    min-height: 128px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px 18px 0;
}

.trust-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-size: 32px;
    color: #fff;
    filter: grayscale(1) brightness(3);
    opacity: .95;
}

.trust-item strong {
    display: block;
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 5px;
    font-weight: 900;
}

.trust-item small {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.35;
}



/* =====================================================
           GENEL SECTION BAŞLIĞI
        ===================================================== */

.section {
    padding: 64px 0 70px;
}

.section-head {
    text-align: center;
    margin-bottom: 28px;
}

    .section-head h2 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin: 0;
        font-size: clamp(30px, 2.25vw, 40px);
        letter-spacing: -.04em;
        line-height: 1;
    }

        .section-head h2::before,
        .section-head h2::after {
            content: "";
            width: 58px;
            height: 1px;
            background: #d4aa62;
        }

    .section-head p {
        margin: 14px auto 0;
        color: var(--muted);
        max-width: 620px;
        line-height: 1.55;
        font-size: 16px;
    }



/* =====================================================
           KATEGORİLER
        ===================================================== */

#kategoriler {
    margin-top: 18px;
}

.category-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e5ded3;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0,0,0,.035);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .category-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
        border-color: #ddcdaf;
    }

.category-img {
    aspect-ratio: 1.42 / 1;
    background: #f3f0eb;
    display: grid;
    place-items: center;
    overflow: hidden;
}

    .category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.category-body {
    min-height: 72px;
    padding: 14px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
}

    .category-body h3 {
        margin: 0 0 5px;
        font-size: 15px;
        line-height: 1.15;
        font-weight: 950;
    }

    .category-body p {
        margin: 0;
        color: #464646;
        font-size: 13px;
    }

.arrow {
    width: 27px;
    height: 27px;
    border-radius: 999px;
    background: #f4f0e8;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-size: 18px;
}






/* =====================================================
           ÖNE ÇIKAN ÜRÜNLER / PRODUCT SHOWCASE
        ===================================================== */

.products-area {
    background: #fff;
    padding-top: 18px;
    padding-bottom: 82px;
}

.products-head {
    margin-bottom: 24px;
}

.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
}

.product-filter-btn {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

    .product-filter-btn:hover {
        transform: translateY(-1px);
        border-color: #d7bc8c;
        background: #fbf6ee;
        color: var(--brand-dark);
    }

    .product-filter-btn.is-active {
        background: var(--brand);
        border-color: var(--brand);
        color: #fff;
        box-shadow: 0 10px 24px rgba(196,147,69,.22);
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: #ddcdaf;
    }

.product-media {
    position: relative;
    aspect-ratio: 1.22 / 1;
    background: linear-gradient(180deg, #f7f3ed, #fff);
    overflow: hidden;
}

    .product-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .28s ease;
    }

.product-card:hover .product-media img {
    transform: scale(1.045);
}

.product-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(17,17,17,.82);
    color: #fff;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .04em;
}

.product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.product-category {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: -.03em;
    font-weight: 950;
}

.product-desc {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.product-price {
    color: #111;
    font-size: 19px;
    font-weight: 950;
    white-space: nowrap;
}

.product-code {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    margin-top: 16px;
}

.product-preview-btn,
.product-cart-btn {
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 950;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

    .product-preview-btn:hover,
    .product-cart-btn:hover {
        transform: translateY(-1px);
    }

.product-preview-btn {
    background: #fff;
    border-color: var(--line);
    color: #222;
}

    .product-preview-btn:hover {
        background: #fbf6ee;
        border-color: #d7bc8c;
        color: var(--brand-dark);
    }

.product-cart-btn {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 22px rgba(196,147,69,.20);
}

    .product-cart-btn:hover {
        background: var(--brand-dark);
    }

.products-more {
    margin-top: 36px;
    text-align: center;
}

    .products-more a {
        min-height: 54px;
        padding: 0 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--brand);
        color: #fff;
        font-weight: 950;
        box-shadow: 0 12px 28px rgba(196,147,69,.22);
    }

        .products-more a:hover {
            background: var(--brand-dark);
        }

.product-card.is-hidden {
    display: none;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .product-modal.is-open {
        display: flex;
    }

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.58);
    backdrop-filter: blur(4px);
}

.product-modal-box {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    max-height: calc(100dvh - 48px);
    overflow: auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 26px 80px rgba(0,0,0,.28);
}

.product-modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.product-modal-image {
    min-height: 470px;
    background: var(--soft);
}

    .product-modal-image img {
        width: 100%;
        height: 100%;
        min-height: 470px;
        object-fit: cover;
    }

.product-modal-content {
    padding: 48px 44px;
}

.product-modal-category {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f4eee4;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-modal-content h3 {
    margin: 0;
    font-size: clamp(30px, 2.6vw, 44px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.product-modal-desc {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.product-modal-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 26px;
}

    .product-modal-info div {
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 14px 16px;
        background: #fbfaf7;
    }

    .product-modal-info small {
        display: block;
        color: var(--muted);
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .product-modal-info strong {
        font-size: 16px;
        font-weight: 950;
    }

.product-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.product-modal-cart,
.product-modal-detail {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 950;
    cursor: pointer;
}

.product-modal-cart {
    border: 0;
    background: var(--brand);
    color: #fff;
}

    .product-modal-cart:hover {
        background: var(--brand-dark);
    }

.product-modal-detail {
    border: 1px solid var(--line);
    background: #fff;
    color: #222;
}

    .product-modal-detail:hover {
        background: #fbf6ee;
        color: var(--brand-dark);
    }

.product-toast {
    position: fixed;
    right: 22px;
    bottom: 88px;
    z-index: 2100;
    width: min(360px, calc(100% - 44px));
    display: none;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 18px;
    background: #111;
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

    .product-toast.is-show {
        display: flex;
        animation: productToastIn .22s ease-out both;
    }

.product-toast-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--brand);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-weight: 950;
}

.product-toast strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.product-toast span {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.35;
}

@keyframes productToastIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1300px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1020px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-modal-box {
        grid-template-columns: 1fr;
    }

    .product-modal-image,
    .product-modal-image img {
        min-height: 330px;
    }
}

@media (max-width: 760px) {
    .products-area {
        padding-top: 10px;
        padding-bottom: 58px;
    }

    .product-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .product-filter-btn {
        flex: 0 0 auto;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .product-body {
        padding: 14px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-desc {
        display: none;
    }

    .product-meta {
        display: block;
        padding-top: 12px;
    }

    .product-code {
        display: block;
        margin-top: 4px;
    }

    .product-actions { grid-template-columns: 1fr; gap: 8px; margin-top: 12px; }

    .product-preview-btn,
    .product-cart-btn {
        min-height: 42px;
        font-size: 12px;
    }

    .product-modal {
        padding: 14px;
    }

    .product-modal-content {
        padding: 30px 22px;
    }

    .product-modal-info {
        grid-template-columns: 1fr;
    }

    .product-modal-actions {
        display: grid;
    }

    .product-modal-cart,
    .product-modal-detail {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
           PROJE TANITIM / FEATURE
        ===================================================== */

.feature-area {
    background: var(--soft);
    padding-top: 70px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
}

.feature-copy h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.feature-copy p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 17px;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

    .feature-list span {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 14px 16px;
        font-weight: 700;
    }

.feature-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #ddd;
}

    .feature-media img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }



/* =====================================================
           BLOG / MOBİLYA REHBERİ KARTLARI
        ===================================================== */

.guide-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.guide-card-small {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .guide-card-small:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

    .guide-card-small a {
        height: 100%;
        display: grid;
        grid-template-columns: 150px 1fr;
        gap: 20px;
        padding: 18px;
    }

    .guide-card-small img {
        width: 150px;
        height: 210px;
        object-fit: cover;
        border-radius: 12px;
        background: var(--soft);
    }

    .guide-card-small span {
        display: block;
        margin-bottom: 14px;
        color: var(--brand-dark);
        font-size: 13px;
        font-weight: 900;
    }

    .guide-card-small h3 {
        margin: 0;
        font-size: 23px;
        line-height: 1.15;
        letter-spacing: -.03em;
    }

    .guide-card-small p {
        margin: 14px 0 0;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.6;
    }

    .guide-card-small strong {
        display: inline-flex;
        margin-top: 22px;
        color: var(--text);
        font-size: 14px;
        font-weight: 900;
    }

.guide-area {
    background: #fff;
}

.guide-head {
    margin-bottom: 34px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.guide-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .guide-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: #ddcdaf;
    }

.guide-img {
    aspect-ratio: 1.85 / 1;
    background: var(--soft);
    overflow: hidden;
}

    .guide-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.guide-body {
    padding: 20px;
}

    .guide-body span {
        display: inline-flex;
        margin-bottom: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        background: #f4eee4;
        color: var(--brand-dark);
        font-size: 12px;
        font-weight: 800;
    }

    .guide-body h3 {
        margin: 0;
        font-size: 22px;
        line-height: 1.18;
        letter-spacing: -.025em;
    }

    .guide-body p {
        margin: 12px 0 0;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.6;
    }

    .guide-body strong {
        display: inline-flex;
        margin-top: 16px;
        color: var(--text);
        font-size: 14px;
        font-weight: 900;
    }

.guide-more {
    margin-top: 34px;
    text-align: center;
}

.btn-guide {
    background: var(--brand);
    color: #fff;
}

    .btn-guide:hover {
        background: var(--brand-dark);
    }



/* =====================================================
           ALT GÜVEN BANTI
        ===================================================== */

.bottom-trust {
    background: #fff;
    padding: 0 0 36px;
}

.bottom-trust-grid {
    min-height: 118px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 34px rgba(0,0,0,.04);
    overflow: hidden;
}

.bottom-trust-item {
    min-height: 118px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-right: 1px solid var(--line);
}

    .bottom-trust-item:last-child {
        border-right: 0;
    }

.bottom-trust-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: #111;
}

.bottom-trust-item strong {
    display: block;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.bottom-trust-item p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}



/* =====================================================
           MOBİLYA REHBERİ BLOĞU / SHOWCASE
        ===================================================== */

.guide-showcase {
    background: #fff;
    padding: 0 0 34px;
}

.guide-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
    align-items: stretch;
}

.guide-hero {
    min-height: 520px;
    border-radius: 22px;
    padding: 66px 70px;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.42)), url('images/proje.webp') center / cover no-repeat;
    box-shadow: var(--shadow);
}

    .guide-hero > span {
        display: inline-flex;
        margin-bottom: 20px;
        color: #e5b760;
        font-size: 15px;
        font-weight: 950;
        letter-spacing: .04em;
    }

    .guide-hero h2 {
        margin: 0;
        max-width: 650px;
        font-size: clamp(38px, 3.5vw, 58px);
        line-height: 1.08;
        letter-spacing: -.05em;
    }

    .guide-hero p {
        margin: 22px 0 0;
        max-width: 680px;
        color: rgba(255,255,255,.9);
        font-size: 18px;
        line-height: 1.65;
    }

.guide-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
}

    .guide-features div {
        padding: 18px 16px;
        border-radius: 16px;
        background: rgba(0,0,0,.20);
        backdrop-filter: blur(4px);
    }

    .guide-features b {
        display: block;
        margin-bottom: 10px;
        color: #d6a64e;
        font-size: 25px;
    }

    .guide-features strong {
        display: block;
        font-size: 15px;
        line-height: 1.25;
    }

    .guide-features small {
        display: block;
        margin-top: 5px;
        color: rgba(255,255,255,.78);
        font-size: 13px;
        line-height: 1.35;
    }

.guide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 38px;
}

.guide-btn-primary,
.guide-btn-ghost {
    min-height: 58px;
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 950;
    font-size: 15px;
}

.guide-btn-primary {
    background: var(--brand);
    color: #fff;
}

.guide-btn-ghost {
    border: 1px solid rgba(255,255,255,.42);
    color: #fff;
    background: rgba(255,255,255,.06);
}



/* =====================================================
           HIZLI LİNK ŞERİDİ
        ===================================================== */

.quick-links {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.035);
}

    .quick-links a {
        min-height: 76px;
        padding: 0 22px;
        display: flex;
        align-items: center;
        gap: 14px;
        border-right: 1px solid var(--line);
        font-weight: 850;
    }

        .quick-links a:last-child {
            border-right: 0;
        }

    .quick-links span {
        font-size: 28px;
        color: var(--brand-dark);
    }

    .quick-links b {
        margin-left: auto;
        font-size: 18px;
    }


/* =====================================================
   WHATSAPP & TELEFON FLOATING BUTONLAR
===================================================== */

/* =====================================================
   WHATSAPP WIDGET - SAĞ ALT
===================================================== */

.whatsapp-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 2200;
}

/* WHATSAPP ANA BUTON */

.floating-contact {
    position: relative;
    min-height: 56px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    background: linear-gradient(135deg, #25d366, #18b957);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(37, 211, 102, .30), inset 0 1px 0 rgba(255, 255, 255, .22);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

    .floating-contact:hover {
        color: #fff;
        background: linear-gradient(135deg, #20c65f, #109f49);
        transform: translateY(-3px);
        box-shadow: 0 19px 40px rgba(37, 211, 102, .38), inset 0 1px 0 rgba(255, 255, 255, .24);
    }

    .floating-contact:focus-visible {
        outline: 3px solid rgba(37, 211, 102, .30);
        outline-offset: 4px;
    }

.floating-contact-icon {
    position: relative;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
}

    .floating-contact-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.floating-contact-text {
    font-size: 15px;
    line-height: 1;
}

/* =====================================================
   WHATSAPP AÇILIR PANEL
===================================================== */

.whatsapp-contact-panel {
    position: absolute;
    right: 0;
    left: auto;
    bottom: calc(100% + 14px);
    width: 360px;
    max-width: calc(100vw - 36px);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22), 0 8px 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(.98);
    transform-origin: right bottom;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.whatsapp-widget.is-open .whatsapp-contact-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* =====================================================
   WHATSAPP PANEL ÜST KISMI
===================================================== */

.whatsapp-panel-header {
    position: relative;
    min-height: 86px;
    padding: 18px 52px 18px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: #fff;
}

.whatsapp-panel-logo {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
}

    .whatsapp-panel-logo svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.whatsapp-panel-header strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.whatsapp-panel-header small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.35;
}

.whatsapp-panel-close {
    position: absolute;
    right: 13px;
    top: 13px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}

    .whatsapp-panel-close:hover {
        background: rgba(255, 255, 255, .22);
        transform: rotate(5deg);
    }

/* =====================================================
   WHATSAPP PANEL FORM KISMI
===================================================== */

.whatsapp-panel-body {
    padding: 22px;
    background: #fff;
}

    .whatsapp-panel-body > p {
        margin: 0 0 18px;
        color: #5f5f5f;
        font-size: 14px;
        line-height: 1.55;
    }

.whatsapp-field {
    display: block;
}

    .whatsapp-field > span {
        display: block;
        margin-bottom: 8px;
        color: #222;
        font-size: 13px;
        font-weight: 850;
    }

    .whatsapp-field b {
        color: #d93025;
    }

    .whatsapp-field input {
        width: 100%;
        height: 50px;
        padding: 0 15px;
        border: 1px solid #dcdcdc;
        border-radius: 12px;
        outline: 0;
        background: #fff;
        color: #222;
        font-size: 15px;
        transition: border-color .18s ease, box-shadow .18s ease;
    }

        .whatsapp-field input::placeholder {
            color: #999;
        }

        .whatsapp-field input:focus {
            border-color: #25d366;
            box-shadow: 0 0 0 4px rgba(37, 211, 102, .12);
        }

        .whatsapp-field input.has-error {
            border-color: #d93025;
            box-shadow: 0 0 0 4px rgba(217, 48, 37, .09);
        }

.whatsapp-form-error {
    min-height: 18px;
    margin-top: 7px;
    color: #d93025;
    font-size: 12px;
    font-weight: 700;
}

.whatsapp-start-button {
    width: 100%;
    min-height: 52px;
    margin-top: 7px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #18b957);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .22);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

    .whatsapp-start-button:hover {
        background: linear-gradient(135deg, #20c65f, #109f49);
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(37, 211, 102, .28);
    }

    .whatsapp-start-button:focus-visible {
        outline: 3px solid rgba(37, 211, 102, .22);
        outline-offset: 3px;
    }

    .whatsapp-start-button svg {
        width: 21px;
        height: 21px;
        display: block;
        flex: 0 0 auto;
    }

/* =====================================================
   TELEFON BUTONU - SOL ALT
===================================================== */

.floating-phone {
    position: fixed;
    left: 18px;
    right: auto;
    bottom: 18px;
    z-index: 2100;
    min-height: 58px;
    padding: 7px 21px 7px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient( 135deg, var(--brand), var(--brand-dark) );
    box-shadow: 0 14px 30px rgba(155, 111, 46, .30), inset 0 1px 0 rgba(255, 255, 255, .20);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

    .floating-phone:hover {
        color: #fff;
        transform: translateY(-3px);
        filter: brightness(1.06);
        box-shadow: 0 19px 40px rgba(155, 111, 46, .38), inset 0 1px 0 rgba(255, 255, 255, .24);
    }

    .floating-phone:focus-visible {
        outline: 3px solid rgba(196, 147, 69, .30);
        outline-offset: 4px;
    }

.floating-phone-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

    .floating-phone-icon::before {
        content: "";
        position: absolute;
        inset: -4px;
        border: 1px solid rgba(255, 255, 255, .30);
        border-radius: inherit;
        animation: phonePulse 2.2s ease-out infinite;
    }

    .floating-phone-icon svg {
        width: 23px;
        height: 23px;
        display: block;
        animation: phoneRing 4s ease-in-out infinite;
    }

.floating-phone-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

    .floating-phone-content small {
        margin-bottom: 5px;
        color: rgba(255, 255, 255, .78);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .02em;
    }

    .floating-phone-content strong {
        color: #fff;
        font-size: 14px;
        font-weight: 950;
        letter-spacing: .035em;
    }

/* TELEFON DALGA ANİMASYONU */

@keyframes phonePulse {
    0% {
        opacity: .70;
        transform: scale(.90);
    }

    75%, 100% {
        opacity: 0;
        transform: scale(1.30);
    }
}

/* TELEFON HAFİF SALLANMA ANİMASYONU */

@keyframes phoneRing {
    0%, 82%, 100% {
        transform: rotate(0);
    }

    84% {
        transform: rotate(-10deg);
    }

    87% {
        transform: rotate(10deg);
    }

    90% {
        transform: rotate(-8deg);
    }

    93% {
        transform: rotate(8deg);
    }

    96% {
        transform: rotate(0);
    }
}

/* HAREKET AZALTMA TERCİHİ */

@media (prefers-reduced-motion: reduce) {
    .floating-phone-icon::before,
    .floating-phone-icon svg {
        animation: none;
    }

    .floating-contact,
    .floating-phone,
    .whatsapp-contact-panel,
    .whatsapp-start-button {
        transition: none;
    }
}

/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 760px) {

    /* WHATSAPP SAĞ ALT */

    .whatsapp-widget {
        right: 14px;
        left: auto;
        bottom: 14px;
    }

    .floating-contact {
        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;
        border-radius: 999px;
    }

    .floating-contact-icon {
        width: 29px;
        height: 29px;
    }

    .floating-contact-text {
        display: none;
    }

    /* WHATSAPP FORMU */

    .whatsapp-contact-panel {
        right: 0;
        left: auto;
        width: min(360px, calc(100vw - 28px));
        max-width: calc(100vw - 28px);
        bottom: calc(100% + 12px);
        transform-origin: right bottom;
    }

    .whatsapp-panel-body {
        padding: 19px;
    }

    /* TELEFON SOL ALT */

    .floating-phone {
        left: 14px;
        right: auto;
        bottom: 14px;
        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;
        border-radius: 999px;
    }

    .floating-phone-icon {
        width: 44px;
        height: 44px;
    }

        .floating-phone-icon svg {
            width: 23px;
            height: 23px;
        }

    .floating-phone-content {
        display: none;
    }
}

/* =====================================================
   KÜÇÜK MOBİL
===================================================== */

@media (max-width: 390px) {
    .whatsapp-contact-panel {
        right: 0;
        left: auto;
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .whatsapp-panel-header {
        padding-left: 15px;
    }

    .whatsapp-panel-body {
        padding: 17px;
    }
}

/* =====================================================
           SEO STREAM AREA
        ===================================================== */

.seo-stream-area {
    background: linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
    padding-top: 72px;
}

.seo-stream-head {
    max-width: 760px;
    margin-bottom: 34px;
}

    .seo-stream-head span {
        display: inline-flex;
        margin-bottom: 12px;
        padding: 7px 12px;
        border-radius: 999px;
        background: #f4eee4;
        color: var(--brand-dark);
        font-size: 13px;
        font-weight: 900;
    }

    .seo-stream-head h2 {
        margin: 0;
        font-size: clamp(32px, 3vw, 48px);
        line-height: 1.08;
        letter-spacing: -.045em;
    }

    .seo-stream-head p {
        margin: 16px 0 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.7;
    }

.seo-stream-list {
    display: grid;
    gap: 18px;
}

.seo-stream-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 10px 30px rgba(0,0,0,.035);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .seo-stream-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
        border-color: #ddcdaf;
    }

.seo-stream-no {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #111;
    color: #fff;
    font-size: 22px;
    font-weight: 950;
}

.seo-stream-tag {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.seo-stream-content h3 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.14;
    letter-spacing: -.035em;
}

.seo-stream-content p {
    margin: 14px 0 0;
    max-width: 950px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.seo-stream-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

    .seo-stream-links a {
        padding: 8px 12px;
        border-radius: 999px;
        background: #f4f0e8;
        color: #222;
        font-size: 13px;
        font-weight: 750;
    }

        .seo-stream-links a:hover {
            background: var(--brand);
            color: #fff;
        }

.seo-read-more {
    display: inline-flex;
    margin-top: 18px;
    color: var(--text);
    font-size: 15px;
    font-weight: 950;
}

    .seo-read-more:hover {
        color: var(--brand-dark);
    }

.seo-stream-bottom {
    margin-top: 32px;
    text-align: center;
}

    .seo-stream-bottom a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 0 28px;
        border-radius: 999px;
        background: var(--brand);
        color: #fff;
        font-weight: 900;
    }

        .seo-stream-bottom a:hover {
            background: var(--brand-dark);
        }



/* =====================================================
           FOOTER
        ===================================================== */

.site-footer {
    background: radial-gradient(circle at top left, rgba(196,147,69,.12), transparent 35%), #10100f;
    color: #fff;
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .75fr .75fr 1.05fr 1.05fr;
    gap: 46px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

    .footer-logo span {
        font-size: 44px;
    }

    .footer-logo strong {
        font-size: 28px;
        line-height: .92;
        letter-spacing: .01em;
    }

.footer-brand p,
.footer-newsletter p,
.footer-contact p {
    margin: 20px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.65;
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

    .footer-social a {
        color: #fff;
        font-weight: 900;
    }

.footer-col h3,
.footer-newsletter h3 {
    margin: 0 0 18px;
    font-size: 15px;
    letter-spacing: .04em;
}

.footer-col a {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
}

    .footer-col a:hover {
        color: #fff;
    }

.footer-newsletter form {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 58px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    overflow: hidden;
}

.footer-newsletter input {
    min-height: 54px;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: #fff;
    background: rgba(255,255,255,.04);
}

.footer-newsletter button {
    border: 0;
    background: var(--brand);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 50px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

    .footer-bottom div {
        display: flex;
        gap: 24px;
    }



/* =====================================================
           RESPONSIVE
        ===================================================== */

/* TABLET / GENİŞ EKRAN DÜZENLEMELERİ */

@media (max-width: 1300px) {
    .bottom-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom-trust-item:nth-child(3n) {
        border-right: 0;
    }

    .guide-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-links {
        grid-template-columns: repeat(3, 1fr);
    }

    :root {
        --page-x: 32px;
    }

    .menu-list {
        gap: 18px;
    }

    .menu-link {
        font-size: 14px;
    }

    .mega-menu {
        width: 660px;
    }

    .logo img {
        width: 185px;
        max-height: 64px;
    }

    .category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}



/* MOBİL MENÜ / TABLET MENÜ */

@media (max-width: 1020px) {
    .topbar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .topbar-item:nth-child(n) {
        justify-content: flex-start;
    }

    .topbar-item:nth-child(even) {
        justify-content: flex-end;
    }

    .nav {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .actions .icon-btn:not(.mobile-toggle) {
        display: none;
    }

    .mobile-toggle {
        display: grid;
    }

    .menu {
        display: none;
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 10px);
        z-index: 80;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: 0 14px 40px rgba(0,0,0,.10);
        padding: 8px;
    }

        .menu.is-open {
            display: block;
        }

    .menu-list {
        display: block;
    }

    .menu-item {
        border-bottom: 1px solid var(--line);
    }

        .menu-item:last-child {
            border-bottom: 0;
        }

    .menu-link {
        min-height: 52px;
        width: 100%;
        justify-content: space-between;
        padding: 0 12px;
        font-size: 15px;
    }

    .has-dropdown:hover .dropdown {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        width: 100%;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0 10px 14px;
    }

    .menu-item.is-open .dropdown {
        display: grid;
    }

    .menu-item.is-open .chevron {
        transform: rotate(225deg);
        margin-top: 4px;
    }

    .dropdown-simple {
        display: none;
        width: 100%;
    }

    .dropdown-wide {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .mega-menu {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mega-card strong {
        font-size: 13px;
    }

    .mega-card small {
        display: none;
    }

    .trust-grid {
        width: 100%;
        grid-template-columns: 1fr;
        background: rgba(17,17,17,.86);
        border-radius: 14px;
        padding: 4px 18px;
    }

    .trust-item {
        min-height: auto;
        padding: 14px 0;
    }

        .trust-item + .trust-item {
            border-top: 1px solid rgba(255,255,255,.14);
        }

    .header {
        z-index: 999;
    }

    .menu {
        display: block;
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        z-index: 1000;
        max-height: calc(100dvh - 120px);
        overflow-y: auto;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: 0 18px 48px rgba(0,0,0,.16);
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

        .menu.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

    .menu-list {
        display: block;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .menu-item {
        border-bottom: 1px solid var(--line);
    }

        .menu-item:last-child {
            border-bottom: 0;
        }

    .menu-link {
        width: 100%;
        min-height: 56px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 850;
        color: var(--text);
    }

    .chevron {
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        margin-top: -5px;
        transition: transform .18s ease, margin .18s ease;
    }

    .menu-item.is-open > .menu-link .chevron {
        transform: rotate(225deg);
        margin-top: 5px;
    }

    .dropdown {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        background: #fbfaf7;
        border: 0;
        border-top: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        padding: 12px;
    }

    .has-dropdown:hover .dropdown {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu-item.is-open > .dropdown {
        display: block;
    }

    .menu-item.is-open > .dropdown-wide,
    .menu-item.is-open > .mega-menu {
        display: grid;
    }

    .dropdown-simple {
        width: 100%;
    }

        .dropdown-simple a,
        .dropdown-wide a {
            display: block;
            padding: 12px 14px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            color: #222;
        }

            .dropdown-simple a:hover,
            .dropdown-wide a:hover {
                background: #fff;
                color: var(--brand-dark);
            }

    .dropdown-wide {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
    }

        .dropdown-wide strong {
            display: block;
            padding: 8px 14px 4px;
            color: var(--brand-dark);
            font-size: 13px;
        }

    .mega-menu {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .mega-card {
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--line);
    }

        .mega-card img {
            width: 100%;
            aspect-ratio: 1.35 / 1;
            object-fit: cover;
        }

        .mega-card strong {
            display: block;
            padding: 10px 10px 4px;
            font-size: 13px;
            font-weight: 900;
        }

        .mega-card small {
            display: none;
        }

    .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}



/* MOBİL */

@media (max-width: 760px) {
    .bottom-trust-grid {
        grid-template-columns: 1fr;
    }

    .bottom-trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .guide-hero {
        min-height: auto;
        padding: 34px 26px;
    }

    .guide-features {
        grid-template-columns: 1fr 1fr;
    }

    .guide-buttons {
        display: grid;
    }

    .guide-cards {
        grid-template-columns: 1fr;
    }

    .guide-card-small a {
        grid-template-columns: 110px 1fr;
        gap: 14px;
    }

    .guide-card-small img {
        width: 110px;
        height: 150px;
    }

    .guide-card-small h3 {
        font-size: 18px;
    }

    .guide-card-small p {
        display: none;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }

        .quick-links a {
            border-right: 0;
            border-bottom: 1px solid var(--line);
        }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
    }

    :root {
        --page-x: 18px;
    }

    .container {
        width: calc(100% - 32px);
    }

    .topbar {
        display: none;
    }

    .nav {
        min-height: 78px;
    }

    .logo img {
        width: 165px;
        max-height: 58px;
    }

    .mobile-toggle {
        font-size: 38px;
    }

    .hero {
        min-height: auto;
    }

        .hero::before {
            background: linear-gradient( 180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.76) 48%, rgba(0,0,0,.90) 100% ), url('images/hero-mobile.webp') center center / cover no-repeat;
            transform: none;
            animation: none;
        }

        .hero::after {
            display: none;
        }

    .hero-inner {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 56px;
        align-items: start;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

        .eyebrow,
        .hero-content > .eyebrow {
            color: #c49345;
            font-size: 22px;
            line-height: 1.25;
            margin-bottom: 26px;
        }

    .hero h1 {
        font-size: 48px;
        line-height: 1.08;
        letter-spacing: -.045em;
    }

    .hero-content > p:not(.eyebrow) {
        margin-top: 28px;
        font-size: 24px;
        line-height: 1.45;
        max-width: 100%;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 42px;
    }

    .btn {
        width: 100%;
        min-height: 82px;
        padding: 0 22px;
        font-size: 19px;
        border-radius: 10px;
        text-align: center;
    }

    .trust-strip {
        margin-top: 0;
        height: auto;
        background: #111;
        padding: 24px 0 32px;
        pointer-events: auto;
    }

        .trust-strip .container {
            height: auto;
            display: block;
        }

    .trust-grid {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        background: rgba(24,24,24,.96);
        border-radius: 18px;
        overflow: hidden;
        padding: 0 26px;
    }

    .trust-item {
        min-height: auto;
        padding: 28px 0;
        display: flex;
        align-items: center;
        gap: 24px;
    }

        .trust-item + .trust-item {
            border-top: 1px solid rgba(255,255,255,.16);
        }

    .trust-icon {
        width: 58px;
        height: 58px;
        font-size: 38px;
    }

    .trust-item strong {
        font-size: 23px;
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .trust-item small {
        font-size: 17px;
        line-height: 1.45;
    }

    .section {
        padding: 54px 0 56px;
    }

    #kategoriler {
        margin-top: 0;
    }

    .section-head h2 {
        font-size: 34px;
        gap: 18px;
    }

        .section-head h2::before,
        .section-head h2::after {
            width: 34px;
        }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .category-body h3 {
        font-size: 13px;
    }

    .category-body p {
        font-size: 12px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .floating-contact,
    .floating-offer {
        font-size: 0;
        padding: 14px;
        width: 54px;
        height: 54px;
        justify-content: center;
    }

        .floating-contact span,
        .floating-offer span {
            font-size: 22px;
        }

    .guide-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .guide-body h3 {
        font-size: 20px;
    }

    .guide-img {
        aspect-ratio: 1.55 / 1;
    }

    .seo-stream-area {
        padding-top: 54px;
    }

    .seo-stream-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
        border-radius: 18px;
    }

    .seo-stream-no {
        width: 52px;
        height: 52px;
        border-radius: 15px;
        font-size: 18px;
    }

    .seo-stream-content h3 {
        font-size: 25px;
    }

    .seo-stream-content p {
        font-size: 15px;
    }
}



/* KÜÇÜK MOBİL */

@media (max-width: 430px) {
    .logo img {
        width: 145px;
        max-height: 52px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 38px;
    }

    .mega-menu {
        grid-template-columns: 1fr;
    }
}


/**********************************************************/
/* =====================================================
   MASAÜSTÜ MENÜYÜ İKİ SATIRA SIĞDIR
   Logo, topbar ve sağ ikonlara dokunmaz
===================================================== */

@media (min-width: 1021px) {

    .nav {
        position: relative;
        min-height: 104px;
        grid-template-columns: 195px minmax(0, 1fr) 145px;
        gap: 18px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .logo img {
        width: 185px;
        max-height: 68px;
    }

    .menu {
        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-list {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(9, max-content);
        grid-auto-rows: 32px;
        justify-content: center;
        align-content: center;
        column-gap: 17px;
        row-gap: 2px;
    }

    .menu-item {
        min-width: 0;
    }

    .menu-link {
        min-height: 32px;
        padding: 0;
        font-size: 13px;
        font-weight: 750;
        line-height: 1;
        white-space: nowrap;
    }

        /* Masaüstünde okları gizleyerek yer kazandırır */
        .menu-link .chevron {
            display: none;
        }

    /*
       Dropdown her satırın altından değil,
       header'ın tamamen altından açılsın.
    */
    .menu-item.has-dropdown {
        position: static;
    }

    .dropdown {
        top: 100%;
    }

    .actions {
        gap: 8px;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
    }
}


/* =====================================================
   1021–1450 PX ARASI DAHA SIKI MENÜ
===================================================== */

@media (min-width: 1021px) and (max-width: 1450px) {

    .nav {
        grid-template-columns: 165px minmax(0, 1fr) 130px;
        gap: 12px;
    }

    .logo img {
        width: 158px;
        max-height: 60px;
    }

    .menu-list {
        grid-template-columns: repeat(8, max-content);
        column-gap: 11px;
        row-gap: 2px;
    }

    .menu-link {
        font-size: 11.5px;
    }

    .actions {
        gap: 3px;
    }

    .icon-btn {
        width: 38px;
        height: 38px;
    }
}