/* Font Değişkenleri ve Sıfırlama */
:root {
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: #111111;
    overflow-x: hidden;
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;

    font-weight: 400;
}

/* Header Yapısı (Şeffaf / Üstte) */
.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(249, 248, 248, 0.45);
}

.header-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000000;
}

.brand-logo img {
    width: auto;
    height: 60px;
}

.logo-img {
    width: auto;
    height: 35px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-body);
    text-decoration: none;
    color: #1e1e1e;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
    font-weight: 600;
}

/* Sağ Alan */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    font-family: var(--font-body);
    border: none;
    background-color: #e5e5e5;
    color: #333333;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background-color: #111111;
    color: #ffffff;
}

/* Mobil İkon ve Kapat Butonları */
.header-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #111111;
    cursor: pointer;
    padding: 4px;
}

.nav-close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #111111;
    cursor: pointer;
    line-height: 1;
}

/* Arka Plan Karartma Katmanı */
.header-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 50;
}

.header-nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobil ve Tablet (max-width: 992px) Responsive */
@media (max-width: 992px) {
    .header-container {
        padding: 16px 20px;
    }

    .header-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-close-btn {
        display: block;
    }

    /* Sağdan Sola Açılan Mobil Menü Çekmecesi */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        z-index: 1100;
        padding: 80px 24px 40px 24px;
        box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .nav-link {
        font-size: 16px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
}

/* Hero Slider Alanı */
.hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Swiper Kütüphanesinin Yatay Hizalaması */
.hero-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    flex-shrink: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: relative;
    display: flex;
    align-items: center;
}

/* Arka Plan Görseli */
.slide-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 1;
}

/* İçerik Alanı (Header Çakışmasını Önleyen Padding) */
.slide-container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 110px 40px 60px 40px;
    position: relative;
    z-index: 2;
}

.slide-content {
  position: relative;
  max-width: 600px;
}

.slide-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666666;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 50px;
    line-height: 1.3;
    color: #111111;
    margin-bottom: 20px;
}

.slide-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 32px;
    max-width: 440px;
}

/* Artı Butonu */
.slide-btn-plus {
  position: absolute;
    bottom: -60px;
    right: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: #3b82f6;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 88px;
    font-weight: 100;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.slide-btn-plus span {
      margin-bottom: 10px;
}

.slide-btn-plus:hover {
    background-color: #2563eb;
    transform: scale(1.05);
}

/* Sayfalandırma Çubuğu (01 ------- 03) */
.slider-pagination-wrapper {
    position: absolute;
    bottom: 40px;
    left: 450px;
    width: 100%;
    z-index: 10;
}

.slider-pagination {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.current-slide,
.total-slides {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.current-slide {
    color: #ffffff;
}

.pagination-line {
    width: 140px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.progress-bar {
    width: 33.33%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.3s ease;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }

    .slide-container {
        padding: 100px 20px 40px 20px;
    }

    .slide-title {
        font-size: 28px;
        text-align: right;
    }
    
    .slide-subtitle {
        font-size: 14px;
        text-align: right;
    }

    .slide-desc {
        font-size: 12px;
        line-height: 1;
        text-align: right;
        max-width: 90%;
        float: right;
    }

    .slide-btn-plus {
      display: none;
    }

    .slider-pagination {
        padding: 0 20px;
    }
}

/* Ana Bölüm Düzeni */
.product-showcase-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
}

.showcase-container {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 20px;
    align-items: stretch;
    height: 470px;
    margin-top: -120px;
    z-index: 100;
    position: relative;
}

/* Sol Statik Mavi Blok */
.static-blue-box {
    flex: 0 0 380px;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-title {
    font-family: 'Barlow', sans-serif;
    font-size: 32px;
    font-weight: 100;
    line-height: 1.25;
    margin-bottom: 30px;
    color: #ffffff;
}

.box-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.9;
}

.box-content p:last-child {
    margin-bottom: 0;
}

/* Sağ Dinamik Carousel Alanı */
.dynamic-product-carousel {
    flex: 1;
    min-width: 0; /* Flex altındaki Swiper taşmasını önler */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Sağ Üst Gezinme Okları */
.carousel-nav-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 100px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    background-color: #ffffff;
    color: #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    border-color: #111111;
    color: #111111;
    background-color: #f5f5f5;
}

/* Swiper Zorunlu Yatay Düzen (Alt Alta Gelmeyi Önler) */
.product-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    box-sizing: content-box;
}

.product-swiper .swiper-slide {
    flex-shrink: 0 !important;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-image-box {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.product-image-box a {
    width: 100%;
    height: 280px;
    display: block;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-title {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111111;
    text-transform: uppercase;
}

/* Mobil / Tablet Uyumluluk */
@media (max-width: 992px) {
    .showcase-container {
        flex-direction: column;
    }

    .static-blue-box {
        flex: 100%;
        width: 100%;
    }
}

/* Tanıtım Bölümü Stilleri */
.brand-intro-section {
    width: 100%;
    background-color: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.brand-intro-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.intro-title {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.1;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 400;
}

.intro-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 32px;
    max-width: 780px;
}

.intro-btn {
    font-family: var(--font-body);
    display: inline-block;
    background-color: #3b72db;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.intro-btn:hover {
    background-color: #255ec4;
    transform: translateY(-1px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .brand-intro-section {
        padding: 60px 20px;
    }

    .intro-title {
        font-size: 36px;
    }

    .intro-desc {
        font-size: 15px;
    }
}

/* Video Parallax Alanı */
.video-parallax-section {
    position: relative;
    width: 100%;
    height: 480px;
    background-image: url('/assets/main/main-video-bg.jpg');
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Koyu Karartma Katmanı */
.video-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* İçerik Hizalama */
.video-parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.video-title {
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 28px;
}

/* Beyaz Oynat (Play) Butonu */
.video-play-btn {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b72db; /* Üçgen mavi ikon */
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.play-icon {
    margin-left: 3px; /* Üçgenin görsel merkezlenmesi */
}

/* Video Lightbox Modal Stilleri */
.video-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-lightbox-modal.active {
    display: flex;
}

/* Siyah Buzlu Arka Plan */
.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

/* Video Konteyneri (16:9 Oranında) */
.lightbox-container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close-btn {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    z-index: 20;
    line-height: 1;
    transition: color 0.2s ease;
}

.lightbox-close-btn:hover {
    color: #3b82f6;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 En/Boy Oranı */
    height: 0;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobil cihazlarda performans ve görünüm uyumu */
@media (max-width: 768px) {
    .video-parallax-section {
        background-attachment: scroll;
        height: 360px;
    }

    .video-title {
        font-size: 32px;
    }
}

/* Yeni Ürünler Bölümü Stilleri */
.new-products-section {
    width: 100%;
    background-color: #ffffff;
    padding: 90px 20px;
}

.products-container {
    max-width: 1360px;
    margin: 0 auto;
}

/* Başlık Hizalama */
.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #777777;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 52px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 400;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #555555;
}

/* 4 Kolonlu Ürün Izgarası */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Ürün Kartı */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    padding: 20px 15px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

/* Ürün Görsel Kutusunun Boyutu */
.product-img-wrapper {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Ürün Bilgileri */
.product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.product-category {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #111111;
    margin-bottom: 20px;
    min-height: 42px;
}

/* Siyah Buton */
.product-btn {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.product-btn:hover {
    background-color: #333333;
}

/* Mobil ve Tablet Uyumluluk */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 38px;
    }
}

/* Genel Bölüm Düzeni */
.features-grid-section {
    width: 100%;
    background-color: #ffffff;
    padding: 90px 20px;
}

.features-container {
    max-width: 1360px;
    margin: 0 auto;
}

/* Üst Başlık Hizalaması */
.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    letter-spacing: 2px;
    color: #777777;
    display: block;
    margin-top: 20px;
}

.features-title {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.1;
    color: #111111;

    font-weight: 400;
}

/* Grid Düzeni (Sol Büyük + Sağ İkili) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.features-right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Genel Kart Yapısı */
.feature-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.card-large {
    height: 825px;
}

.card-small {
    height: 425px;
}

.card-smaller {
    height: 376px;
}

/* Arka Plan Görseli */
.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Karartma Katmanı */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.card-overlay.dark {
    background: rgba(0, 0, 0, 0.35);
}

/* Kart İçeriği */
.card-content {
    position: absolute;
    z-index: 2;
    padding: 30px;
    max-width: 420px;
}

.card-content.centered {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.card-small .card-content {
    left: 30px;
    bottom: 30px;
}

.card-smaller .card-content {
    left: 30px;
    top: 30px;
}

.card-badge {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333333;

    display: block;
    margin-bottom: 12px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.1;
    color: #111111;

    margin-bottom: 12px;
    font-weight: 400;
}

.card-title-main {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1.1;
    color: #111111;

    margin-bottom: 12px;
    font-weight: 400;
}

.card-title.white {
    color: #ffffff;
}

.card-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}

.card-desc.white {
    color: rgba(255, 255, 255, 0.9);
}

/* Dikey Toz Wax Yan Yazısı */
.vertical-side-label {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(50%) rotate(90deg);
    transform-origin: center right;
    font-family: var(--font-heading);
    font-size: 76px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
    pointer-events: none;
}

/* Responsive Düzen */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .card-large {
        height: 480px;
    }

    .features-title {
        font-size: 38px;
    }
}

/* Hotspot Bölüm Alanı */
.hotspot-showcase-section {
    width: 100%;
    background-color: #fcfcfc;
    padding: 90px 20px;
}

.hotspot-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Başlık */
.hotspot-header {
    text-align: center;
    margin-bottom: 60px;
}

.hotspot-main-title {
    font-family: var(--font-heading);
    font-size: 46px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
}

.hotspot-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: #666666;
}

/* İçerik Düzeni */
.hotspot-content-wrapper {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Orta Görsel */
.hotspot-center-image {
    max-width: 580px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.main-products-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Özellik Noktası Elemanı */
.hotspot-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    max-width: 280px;
}

/* Konumlandırmalar */
.item-top-left {
    top: 5%;
    left: 2%;
    text-align: right;
}

.item-top-right {
    top: 15%;
    right: 2%;
    text-align: left;
}

.item-bottom-left {
    bottom: 5%;
    left: 2%;
    text-align: right;
}

.item-bottom-right {
    bottom: 5%;
    right: 2%;
    text-align: left;
}

/* Metin Alanı */
.hotspot-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
    line-height: 1.25;
}

.hotspot-desc {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
}

/* Mavi Artı İkonu */
.hotspot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease;
}

.hotspot-btn:hover {
    transform: scale(1.1);
}

/* İşaretçi Çizgileri */
.pointer-line {
    height: 1px;
    background-color: #3b82f6;
    opacity: 0.5;
}

.line-top-left {
    width: 80px;
}

.line-top-right {
    width: 60px;
}

.line-bottom-left {
    width: 70px;
}

.line-bottom-right {
    width: 70px;
}

/* Responsive (Tablet & Mobil) */
@media (max-width: 992px) {
    .hotspot-content-wrapper {
        flex-direction: column;
        min-height: auto;
        gap: 30px;
    }

    .hotspot-item {
        position: static;
        max-width: 100%;
        text-align: left !important;
        background: #ffffff;
        padding: 16px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .pointer-line {
        display: none;
    }
}

/* Footer Temel Yapısı */
.site-footer {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
    padding-top: 60px;
    font-family: var(--font-body);
}

.footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px 60px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Marka Kolonu */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #111111;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 12px;
    height: 12px;
    background-color: #111111;
    border-radius: 50%;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: 2px;
}

.brand-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    max-width: 320px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    color: #111111;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #3b82f6;
    transform: translateY(-2px);
}

/* Menü Kolonları */
.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    text-decoration: none;
    color: #666666;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 140px;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #111111;
}

.footer-menu .arrow {
    font-size: 11px;
    color: #aaaaaa;
    transition: transform 0.2s ease;
}

.footer-menu a:hover .arrow {
    transform: translateX(3px);
    color: #111111;
}

/* İletişim Kolonu */
.contact-info {
    font-style: normal;
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info .phone {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin-top: 4px;
}

.contact-info .email {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info .email:hover {
    color: #111111;
}

/* Copyright Alt Çubuğu */
.footer-bottom {
    background-color: #f8f8f8;
    padding: 16px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.footer-bottom p {
    font-size: 12px;
    color: #888888;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px 40px 20px;
    }
}

/* Breadcrumb Üst Çubuk */
.breadcrumb-banner {
    width: 100%;
    margin-top: 20px;
    background-color: #e9e9e9;
    padding: 14px 20px;
    text-align: center;
}

.breadcrumb-container {
    max-width: 1360px;
    margin: 0 auto;
    font-size: 13px;
    color: #666666;
}

.breadcrumb-link {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #111111;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #aaaaaa;
}

.breadcrumb-current {
    color: #111111;
    font-weight: 600;
}

/* Hakkımızda İçerik Bölümü */
.about-intro-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px 60px 20px;
    text-align: center;
}

.about-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.1;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: 400;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: #555555;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-intro-section {
        padding: 50px 20px 40px 20px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-text-content p {
        font-size: 15px;
    }
}

/* İletişim Sayfası İçerik */
.contact-page-main {
    padding: 60px 0px 0px 0px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Sayfa Başlığı */
.contact-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.header-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
}

.header-desc {
    font-size: 15px;
    color: #555555;
}

/* Harita */
.contact-map-wrapper {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.grayscale-map {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    display: block;
}

/* 2 Kolonlu Düzen */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
}

.section-heading {
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.section-subdesc {
    font-size: 13px;
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Form Stilleri */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease;
    background-color: #fdfdfd;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #2b6cb0;
    background-color: #ffffff;
}

.form-textarea {
    resize: vertical;
}

.form-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.submit-btn {
    font-family: var(--font-body);
    background-color: #2b6cb0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 36px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: #1e4e82;
}

/* Sağ İletişim Bilgileri */
.info-block-title {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin-top: 24px;
    margin-bottom: 16px;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #444444;
}

.info-icon {
    flex-shrink: 0;
    color: #111111;
    margin-top: 2px;
}

.info-link {
    color: #444444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-link:hover {
    color: #2b6cb0;
}

/* Mobil Uyumluluk */
@media (max-width: 868px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }

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

    .form-submit-row {
        justify-content: stretch;
    }

    .submit-btn {
        width: 100%;
    }

    .header-title {
        font-size: 36px;
    }
}

/* Spot Banner Alanı */
.spot-banner-section {
    width: 100%;
    position: relative;
    background-color: #e9e9e9;
    min-height: 550px;
    overflow: hidden;
    margin: 60px 0 0 0;
}

/* Arka Plan Görseli */
.spot-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    z-index: 1;
}

/* İçerik Hizalama Konteyneri */
.spot-banner-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Metinleri sağa hizalama */
    position: relative;
    min-height: 550px;
    z-index: 2;
}

/* Metin İçeriği (Görsel Üzerinde) */
.spot-banner-content {
    max-width: 500px;
    width: 100%;
    padding: 40px 0;
}

.spot-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666666;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.spot-title {
    font-family: var(--font-heading);
    font-size: 44px;
    line-height: 1.05;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 400;
}

.spot-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    max-width: 420px;
}

/* Taşam Mavi Artı Butonu */
.spot-btn-plus {
    position: absolute;
    bottom: 135px;
    right: 120px;
    width: 52px;
    height: 52px;
    background-color: #2b6cb0;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: 10;
}

.spot-btn-plus:hover {
    background-color: #1e4e82;
    transform: scale(1.08);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .spot-banner-container {
        justify-content: center;
        padding: 40px 20px;
    }

    .spot-banner-content {
        text-align: center;
        color: #ffffff;
    }

    .spot-title {
        font-size: 34px;
        color: #ffffff;
    }
    
    .spot-subtitle {
        color: #ffffff;
    }
    
    .spot-desc {
        color: #ffffff;
    }

    .spot-btn-plus {
        right: 50%;
        transform: translateX(50%);
        bottom: -24px;
    }

    .spot-btn-plus:hover {
        transform: translateX(50%) scale(1.08);
    }
}
/* Üst Kategori Hero Banner */
.category-hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #e5e5e5;
    background-image: url(/assets/products/category-banner-bg.jpg);
    background-size: cover;
    background-position: center left;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 40px;
    margin-top: -110px;
}

.category-hero-container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.category-hero-content {
    max-width: 500px;
}

.category-hero-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666666;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.category-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.05;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 400;
}

.category-hero-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    color: #555555;
}

/* Ana İçerik Alanı */
.products-page-section {
    width: 100%;
    background-color: #ffffff;
    padding: 50px 20px 0px 20px;
}

.products-page-container {
    max-width: 1360px;
    margin: 0 auto;
    margin-top: -375px;
    z-index: 1200;
    position: relative;
    background-color: #f3f3f3;
    padding: 50px;
}

/* Dynamic Breadcrumbs */
.category-breadcrumb-bar {
    font-size: 13px;
    color: #666666;
    margin-bottom: 30px;
}

.category-breadcrumb-bar a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-breadcrumb-bar a:hover {
    color: #111111;
}

.crumb-sep {
    margin: 0 8px;
    color: #bbbbbb;
}

.crumb-active {
    color: #111111;
    font-weight: 600;
}

/* 2 Kolonlu Sayfa Düzeni */
.products-layout-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

/* Sol Kategori Sidebar */
.category-sidebar {
    background-color: transparent;
    border-right: 1px solid #e3dede;
    padding-right: 75px;
    min-height: 100%;
}

.sidebar-main-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}

.sidebar-sub-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: #777777;
    display: block;
    margin-bottom: 20px;
}

/* Kategori Listesi */
.category-tree-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cat-item {
    width: 100%;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cat-link:hover {
    background-color: #eaeaea;
    color: #111111;
}

.cat-link.active {
    background-color: #2b6cb0;
    color: #ffffff;
}

.cat-arrow {
    font-size: 12px;
    opacity: 0.7;
}

/* Sağ Ürün Kataloğu Grid */
.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Ürün Kartı */
.catalog-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    transition: transform 0.2s ease;
}

.catalog-product-card:hover {
    transform: translateY(-4px);
}

.card-img-box {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.catalog-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.card-badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 6px;
}

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

.card-btn {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.card-btn:hover {
    background-color: #333333;
}

.no-products-msg {
    grid-column: 1 / -1;
    padding: 40px;
    color: #666666;
    font-size: 15px;
}

/* Mobil Hamburger Butonu (Masaüstünde Gizli) */
.mobile-cat-toggle-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(43, 108, 176, 0.25);
}

/* Sidebar Kapat Butonu */
.sidebar-close-btn {
    display: none;
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #111111;
    cursor: pointer;
    line-height: 1;
}

/* Arka Plan Karartma */
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1300;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobil & Tablet Responsive (max-width: 992px) */
@media (max-width: 992px) {
    .mobile-cat-toggle-btn {
        display: inline-flex;
    }

    .sidebar-close-btn {
        display: block;
    }

    .products-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-page-container {
        margin-top: -300px;
        padding: 24px;
    }

    /* Sol Off-Canvas Çekmece Menü */
    .category-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        z-index: 1400;
        padding: 50px 24px 30px 24px;
        border-right: none;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .category-sidebar.open {
        transform: translateX(0);
    }

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

@media (max-width: 576px) {
    .hero-slider {
      height: 77vh;
    }
    .products-catalog-grid {
        grid-template-columns: 1fr;
    }

    .category-hero-title {
        font-size: 22px;
        color: #ffffff;
    }

    .category-hero-desc {
        font-size: 14px;
        color: #ffffff;
    }

    .showcase-container {
        height: auto;
    }

    .carousel-nav-buttons {
        margin-top: 0;
    }

    .spot-banner-section {
        min-height: 400px;
    }

    .spot-bg-img {
        height: 400px;
        object-position: center
    }

    .spot-banner-container {
        min-height: 300px;
    }

}

/* Ürün Detay Bölümü */
.product-detail-section {
    width: 100%;
    padding: 60px 20px 80px 20px;
    background-color: #ffffff;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Galeri Kolonu */
.product-gallery-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image-frame {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.main-image-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Küçük Resimler (Thumbnails) */
.gallery-thumbs-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumb-item {
    width: 64px;
    height: 64px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: #2b6cb0;
}

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

/* Ürün Bilgi Kolonu */
.product-info-column {
    display: flex;
    flex-direction: column;
}

.brand-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.detail-product-title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.05;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 400;
}

.detail-product-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #555555;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.detail-divider {
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    margin: 20px 0;
}

/* Online Satış Noktaları */
.marketplaces-heading {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 12px;
}

.marketplaces-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.marketplace-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.marketplace-card:hover {
    border-color: #111111;
}

.marketplace-card img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.no-marketplace {
    font-size: 13px;
    color: #777777;
}

/* Kısa Açıklama Metni */
.short-content-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

/* Akordeon Stilleri */
.product-accordions-wrapper {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid #eeeeee;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    cursor: pointer;
    text-align: left;
}

.accordion-icon {
    font-size: 30px;
    color: #111111;
    font-weight: 400;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 600px;
}

.accordion-inner {
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 1.65;
    color: #555555;
}

/* Diğer Ürünler Bölümü */
.related-products-section {
    width: 100%;
    background-color: #f6f6f6;
    padding: 80px 20px;
}

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

.related-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-title {
    font-family: var(--font-heading);
    font-size: 40px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 400;
}

.related-desc {
    font-size: 15px;
    color: #666666;
}

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

.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.related-img-box {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.related-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.related-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.related-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.related-btn:hover {
    background-color: #333333;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 576px) {
    .related-grid {
        grid-template-columns: 1fr;
    }

    .detail-product-title {
        font-size: 36px;
    }

    .category-hero-banner {
          background-position: 20%;
    }

    .category-hero-subtitle {
        color: #ffffff;
    }

    .footer-container {
      text-align: center;
    }

    .social-links {
      justify-content: center;
    }

    .footer-menu {
      align-items: center;
    }

    .new-products-section {
      padding: 90px 20px 0 20px;
    }

    .card-title-main {
      color: #ffffff;
    }
}