@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gridExit {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes gridEnter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes staggerFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.grid-exit {
    animation: gridExit 0.25s ease-out forwards;
}

.grid-enter {
    animation: gridEnter 0.4s ease-out forwards;
}

/* SECTION SPACING (Masaüstü ve Mobil Arası Uyumlu Boşluk) */
.section-spacing {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .section-spacing {
        margin-bottom: 30px !important;
    }
}

/* Sayfanın son bölümüyse altındaki devasa boşluğu engelle (Footer kendi boşluğuna sahip) */
section.section-spacing:last-of-type {
    margin-bottom: 0 !important;
}

.product-card.stagger-in {
    opacity: 0;
    animation: staggerFade 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    backface-visibility: hidden;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* =========================
   ROOT & RESET
========================= */

:root {
    --font: "Google Sans", sans-serif;
    --text: #111;
    --muted: #777;
    --border: #e5e5e5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* =========================
   CUSTOM SCROLLBAR (GLOBAL)
   ========================= */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color, #c59d5f) #f5f5f5;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color, #c59d5f);
    border-radius: 5px;
    border: 2px solid #f5f5f5;
    /* Etrafında yumuşak boşluk */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #b08d55;
    cursor: grab;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    color: var(--text);
    background-color: var(--body-bg, #ffffff);
    overflow-x: hidden;
}

/* =========================
   PRODUCT LIST GRID
========================= */

.product-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;

    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start !important;
    align-content: flex-start !important;
    /* ÇOK SATIRLI HİZALAMA İÇİN KRİTİK */
    min-height: 200px;
    /* Minimum yükseklik verip çökmesini önle */
}

/* Ana sayfa masaüstünde GRID kalmalı (alt alta ürünler de olabilir) */
.home-products .product-list {
    display: flex;
    flex-wrap: wrap;
    /* Masaüstü için iptal edildi, grid gibi davransın */
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 100%;
}

/* Ana sayfadaki kartlar sabit genişlikte */
.home-products .product-card {
    min-width: 250px;
    max-width: 280px;
    flex-shrink: 0;
}

/* Ana sayfa ürün resimleri */
.home-products .product-image {
    aspect-ratio: 3 / 4;
    max-height: 350px;
}

/* TABLET */
@media (max-width: 1024px) {
    .home-products .product-card {
        min-width: 220px;
        max-width: 260px;
    }

    .home-products .product-image {
        max-height: 300px;
    }
}

/* MOBILE - YATAY SCROLL SADECE BURADA */
@media (max-width: 600px) {
    .home-products .product-list {
        display: flex;
        flex-wrap: nowrap !important;
        /* Sadece mobilde yatay kaysın */
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* Ortada tam durması için ekranın %50'si eksi kartın yarısı (120px) + gap yarısı kadar padding */
        padding: 10px calc(50vw - 120px) 10px calc(50vw - 120px) !important;
        gap: 20px;
    }

    /* Scrollbar gizle ama scroll çalışsın */
    .home-products .product-list::-webkit-scrollbar {
        display: none;
    }

    .home-products .product-list {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .home-products .product-card {
        min-width: 240px;
        max-width: 240px;
        scroll-snap-align: center;
    }

    .home-products .product-image {
        max-height: 250px;
        /* Alttaki gereksiz boşluğu engeller */
    }
}

/* =========================
   PRODUCT CARD
========================= */

/* =========================
   PRODUCT CARD
========================= */

.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    /* 4 Columns DEFAULT */
    flex: 0 0 calc(25% - 22.5px);
    max-width: calc(25% - 22.5px);
}

/* Tablet: 2 Columns */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

/* Mobile: 1 Column */
@media (max-width: 600px) {
    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* =========================
   IMAGE SLIDER
========================= */

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    /* 1080x1350 uyumlu */
    overflow: hidden;
    background: #f5f5f5;
}

/* IMAGE */
.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    opacity: 0;
    transform: scale(1.02);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

/* ACTIVE IMAGE */
.product-image img.active {
    opacity: 1;
    position: relative;
    transform: scale(1);
}

/* DRAG STATE */
.product-image.dragging img {
    transition: none;
}

/* =========================
   DOTS
========================= */

.image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.4);
}

/* =========================
   CLICKABLE OVERLAY
========================= */

.product-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* =========================
   PRODUCT INFO
========================= */

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-info small {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-color, #c59d5f);
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.08), rgba(197, 157, 95, 0.12));
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(197, 157, 95, 0.15);
    transition: all 0.3s ease;
}

.product-card:hover .product-info small {
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.12), rgba(197, 157, 95, 0.18));
    border-color: rgba(197, 157, 95, 0.25);
    transform: translateX(2px);
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50px;
}

.product-card:hover .product-info h3 {
    color: var(--primary-color, #c59d5f);
}

/* =========================
   DETAIL BUTTON
========================= */

.detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.detail-btn::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
    color: #fff;
}

.detail-btn:hover {
    background: linear-gradient(135deg, var(--primary-color, #c59d5f), var(--secondary-color, #d4af6a));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #fff !important;
}

.detail-btn:hover::after {
    transform: translateX(4px);
}

.detail-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =========================
   PRODUCT DETAIL PAGE
========================= */



/* =========================
   LIGHTBOX
========================= */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}

/* LIGHTBOX NAV */
.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 46px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 34px;

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

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 30px;
        right: 15px;
        bottom: 15px;
    }
}

/* =========================
   PRODUCT DETAIL FIX (urun.php)
========================= */

.product-page {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-detail {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* MOBİL */
@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px auto;
    }
}

/* =========================
   PRODUCT GALLERY
========================= */

.product-gallery {
    display: flex;
    flex-direction: column;
}

.product-gallery .main-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    cursor: zoom-in;
}

/* THUMBNAILS */
.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.thumbs img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.thumbs img:hover {
    border-color: #000;
    transform: scale(1.05);
}

/* MOBİL THUMBS */
@media (max-width: 600px) {
    .thumbs img {
        width: 60px;
        height: 60px;
    }
}

/* =========================
   PRODUCT INFO
========================= */

.product-info h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.product-info .category {
    color: #777;
    margin-bottom: 20px;
}

.product-info p {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

/* RENKLER */
.product-info ul {
    display: flex;
    gap: 10px;
    padding: 0;
    margin-bottom: 25px;
}

.product-info ul li {
    list-style: none;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* =========================
   CONTACT BOX
========================= */

.contact-box {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.contact-box a {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

/* =========================
   SIMILAR PRODUCTS
========================= */

.similar-products {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.similar-products h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* SLIDER */
.similar-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.similar-slider::-webkit-scrollbar {
    height: 6px;
}

.similar-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* CARD */
.similar-card {
    min-width: 220px;
    max-width: 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    scroll-snap-align: start;
}

.similar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.similar-card a {
    text-decoration: none;
    color: inherit;
}

/* IMAGE */
.similar-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

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

.similar-card:hover img {
    transform: scale(1.06);
}

/* INFO */
.similar-info {
    padding: 12px;
    text-align: center;
}

.similar-info small {
    color: #888;
    font-size: 12px;
}

.similar-info h3 {
    font-size: 15px;
    margin: 8px 0 0;
    line-height: 1.3;
}

/* MOBILE */
@media (max-width: 768px) {
    .similar-card {
        min-width: 180px;
        max-width: 180px;
    }

    .similar-products h2 {
        font-size: 20px;
    }
}

/* =========================
   HOME HERO
========================= */

/* =========================
   HOME HERO (NEW)
========================= */



.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    max-width: 600px;
}

.hero-content p {
    font-size: 18px;
    margin: 20px 0 30px;
    max-width: 500px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--content-btn-bg, #fff);
    color: var(--content-btn-text, #000);
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.hero-btn:hover {
    background: var(--content-btn-hover-bg, #000);
    color: var(--content-btn-hover-text, #fff);

}

/* =========================
   HOME PRODUCTS
========================= */

.home-products {
    margin: 60px auto;
}

.section-head {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-head h2 {
    font-size: 28px;
}

.section-head a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

.product-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.color-tag {
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

/* =========================
   ABOUT PAGE
========================= */

.about-page {
    padding: 60px 0;
}

.about-hero {
    text-align: center;
    padding: 40px 20px;
}

.about-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-content {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.about-section {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.about-box {
    background: rgba(0, 0, 0, 0.03);
    padding: 30px;
    border-radius: 12px;
}

.about-box h2 {
    margin-bottom: 12px;
    font-size: 22px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 28px;
    }

    .about-box {
        padding: 22px;
    }
}

.blog-page {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

/* =========================
   PRODUCTS PAGE SEARCH HEADER
========================= */

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left h1 {
    font-size: 28px;
    margin: 0 0 5px 0;
}

.product-count {
    color: #777;
    margin: 0;
    font-size: 14px;
}

/* SEARCH FORM */
.search-form {
    flex-grow: 1;
    max-width: 400px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fbfbfb;
    border-radius: 30px;
    padding: 2px 5px 2px 15px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.search-wrapper:focus-within {
    background: #fff;
    border-color: var(--primary-color, #c59d5f);
    box-shadow: 0 4px 15px rgba(197, 157, 95, 0.15);
}

.search-wrapper input {
    border: none;
    background: transparent;
    padding: 12px 10px;
    flex-grow: 1;
    outline: none;
    font-size: 15px;
    color: var(--text);
    font-family: inherit;
}

.search-wrapper button {
    border: none;
    background: var(--primary-color, #c59d5f);
    color: #fff;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 3px;
    font-size: 16px;
    transition: all 0.3s;
}

.search-wrapper button:hover {
    background: #a68450;
    transform: scale(1.05);
}

.clear-search {
    color: #bbb;
    margin-right: 5px;
    padding: 5px;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.clear-search:hover {
    color: #ff4d4f;
}

@media (max-width: 768px) {
    .products-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .search-form {
        max-width: 100%;
        width: 100%;
    }

    .header-left {
        text-align: center;
    }

    .header-left h1 {
        font-size: 24px;
    }
}



.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    padding: 8px 14px;
    border-radius: 6px;
    background: #eee;
    text-decoration: none;
    color: #333;
}

.page-btn.active {
    background: var(--primary-color);
    color: #fff;
}



/* =========================
   BLOG GENEL
========================= */

.blog-page {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.page-title {
    font-size: 32px;
    margin-bottom: 30px;
}

/* =========================
   BLOG GRID
========================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* =========================
   BLOG CARD
========================= */

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* 🔴 EN ÖNEMLİ KISIM */
/* Kart link ama link gibi görünmesin */
.blog-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* =========================
   BLOG IMAGE
========================= */

.blog-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

/* =========================
   BLOG CONTENT
========================= */

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-date {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-color, #c59d5f);
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.08), rgba(197, 157, 95, 0.12));
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(197, 157, 95, 0.15);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-date {
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.12), rgba(197, 157, 95, 0.18));
    border-color: rgba(197, 157, 95, 0.25);
    transform: translateX(2px);
}

.blog-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 56px;
}

.blog-card:hover .blog-content h2 {
    color: var(--primary-color, #c59d5f);
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* =========================
   READ MORE BUTTON
========================= */

.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: auto;
}

.read-more::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more {
    background: linear-gradient(135deg, var(--primary-color, #c59d5f), var(--secondary-color, #d4af6a));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.blog-card:hover .read-more::after {
    transform: translateX(4px);
}

/* =========================
   BLOG DETAIL PAGE
========================= */

.blog-detail-page {
    background: #fafafa;
    padding-bottom: 60px;
}

/* =========================
   HERO
========================= */

.blog-hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.7));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.blog-hero-overlay h1 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.blog-hero-overlay span {
    font-size: 14px;
    opacity: 0.9;
}

/* =========================
   ARTICLE CONTAINER
========================= */

.blog-detail {
    max-width: 760px;
    /* 🔴 OKUNURLUĞUN ANAHTARI */
    margin: 60px auto 0;
    background: #fff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* =========================
   SUMMARY
========================= */

.blog-summary {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
}

/* =========================
   CONTENT (ASIL KISIM)
========================= */

.blog-content {
    font-size: 17px;
    line-height: 1.9;
    /* 🔥 AKICILIK */
    color: #2b2b2b;
    text-align: justify;
    /* 🔥 TAM DOLU SATIR */
    text-justify: inter-word;
    word-break: break-word;
}

/* Paragraflar */
.blog-content p {
    margin-bottom: 26px;
}

/* Satır sonları daha doğal */
.blog-content br {
    content: "";
    display: block;
    margin-bottom: 14px;
}

/* =========================
   PAYLAŞ
========================= */

.blog-share {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-share span {
    font-weight: 600;
    margin-right: 10px;
}

.blog-share a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #f2f2f2;
    transition: all 0.2s ease;
}

.blog-share a:hover {
    background: #ddd;
}

/* =========================
   RELATED BLOGS
========================= */

.related-blogs {
    margin-top: 70px;
}

.related-blogs h2 {
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.related-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.related-info {
    padding: 15px;
}

.related-info h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.related-info span {
    font-size: 13px;
    color: #777;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .blog-hero {
        height: 300px;
    }

    .blog-hero-overlay h1 {
        font-size: 26px;
    }

    .blog-detail {
        padding: 30px 22px;
        margin-top: 40px;
    }

    .blog-content {
        font-size: 16px;
        text-align: left;
        /* mobilde justify göz yorabilir */
    }
}

/* =========================
   CONTACT PAGE GENEL
========================= */

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-page .page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #222;
}

/* =========================
   GRID YAPI
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* =========================
   SOL KOLON
========================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    background: #f8f8f8;
    padding: 22px 24px;
    border-radius: 10px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* =========================
   SOSYAL MEDYA
========================= */

.contact-social {
    background: #f8f8f8;
    padding: 22px 24px;
    border-radius: 10px;
}

.contact-social h3 {
    font-size: 18px;
    margin-bottom: 14px;
}

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

.social-links a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: #222;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

/* =========================
   HARİTA
========================= */

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

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

    .contact-page {
        padding: 40px 16px;
    }

    .contact-page .page-title {
        font-size: 26px;
        margin-bottom: 35px;
    }
}

/* =========================
   HOME HERO (NEW)
========================= */

.home-hero {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    min-height: 500px;
    height: 500px;
    background: #000;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: block;
    z-index: 1;
}

/* =========================
   HOME INFO BLOCKS MOBILE
   ========================= */
@media (max-width: 991px) {
    .home-info-blocks .container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }

    .info-col.left {
        order: 1 !important;
        width: 100% !important;
        min-width: 100% !important;
    }

    .info-col.center {
        order: 2 !important;
        width: 100% !important;
        min-width: 100% !important;
        margin: 20px 0 !important;
    }

    .info-col.right {
        order: 3 !important;
        width: 100% !important;
        min-width: 100% !important;
        align-items: flex-start !important;
        /* Force left align items */
    }

    /* Reset alignment for items to look consistent vertically */
    .info-block-item {
        width: 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
        flex-direction: row !important;
        /* Disable row-reverse */
        padding: 20px !important;
    }

    .info-block-item img {
        width: 60px !important;
        height: 60px !important;
        margin: 0 !important;
    }

    /* Fix Center Video/Gallery Height */
    .video-wrapper,
    .center-gallery-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        padding-bottom: 0 !important;
    }

    .info-col.center h2 {
        font-size: 2rem !important;
    }
}



/* New Separated Section Styles */
.home-info-blocks {
    background: #111;
    color: #fff;
    padding: 60px 20px;
    width: 100%;
}

.home-info-blocks .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.info-col {
    /* Varsayılan flex değerleri HTML inline olarak geliyordu, burada class ile sabitleyebiliriz */
    flex: 1;
}

.info-block-item {
    /* Hover animasyonu kaldırıldı */
}

@media (max-width: 900px) {
    .home-info-blocks .container {
        flex-direction: column;
        align-items: center;
    }

    .info-col {
        width: 100% !important;
        min-width: 0 !important;
        text-align: center !important;
        align-items: center !important;
        margin-bottom: 30px;
    }

    .info-col.left,
    .info-col.right {
        order: 2;
        /* Mobilde alta al */
    }

    .info-col.center {
        order: 1;
        /* Mobilde video/başlık üstte */
    }

    .info-block-item {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
}


.hero-video-container {
    margin: 30px auto 0;
    max-width: 100%;
    width: 600px;
    aspect-ratio: 16/9;
    /* Modern tarayıcılar için */
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #000;
}

.hero-video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* TABLET & MOBILE */
@media (max-width: 1024px) {
    .home-hero {
        height: auto !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .home-hero {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        height: auto !important;
    }
}

.hero-content {
    /* ... eski kod ... */
}

#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 90px;
    /* WhatsApp ile çakışmasın */
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #222;
    color: #fff;
    font-size: 18px;
    cursor: pointer;

    /* gizli başlasın */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background: #000;
}

/* =========================
   HERO SLIDER (FIX)
========================= */



.hero-slider {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ekrana tam oturur ve kırpma yapar */
    object-position: center;
}


/* Slider Controls */
.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: #fff;
    color: #000;
}

.prev-slide {
    left: 30px;
}

.next-slide {
    right: 30px;
}

/* ORTA ALAN İÇERİĞİ */
.hero-center-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-center-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-center-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Opsiyonel: Slider varken overlay */
.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%); */
    /* Kullanıcı isteği doğrultusunda overlay kaldırıldı veya hafifletildi */
    z-index: 1;
    pointer-events: none;
}

/* SLIDE CAPTION (SOL ALT YAZI) */
.slide-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 15;
    background: rgba(0, 0, 0, 0.7);
    /* Okunabilirlik için biraz daha koyu */
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    max-width: 50%;
    /* Çok genişlemesin */
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease backwards;
    border-left: 4px solid #c28b3c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Mobil için */
@media (max-width: 768px) {
    .slide-caption {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        font-size: 0.95rem;
        padding: 10px 15px;
    }

    .prev-slide,
    .next-slide {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Mobil Tipografi */
@media (max-width: 768px) {
    .hero-center-content h1 {
        font-size: 2.2rem;
    }

    .hero-center-content p {
        font-size: 1rem;
    }

    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-slide {
        left: 10px;
    }

    .next-slide {
        right: 10px;
    }
}

/* Feature Blocks Icons */
.feature-block img.block-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 10px;
    display: block;
}

.feature-block {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-columns {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    /* İçerik olmayan yerlere tıklanabilsin */
}

.hero-column {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: auto;
}

.hero-column.left {
    left: 40px;
    align-items: flex-start;
}

.hero-column.right {
    right: 40px;
    align-items: flex-end;
}

/* Mobilde gizleyin veya alta alın */
@media (max-width: 1024px) {
    .hero-columns {
        display: none;
    }
}