*, *::before, *::after { box-sizing: border-box; }

/* =================================== */
/* TEMEL VE MODERN AYARLAR           */
/* =================================== */

:root {
    --primary-color: #C8102E; /* Ana Renk (Kırmızı) */
    --secondary-color: #C8102E; /* İkincil Renk (Koyu Kırmızı) */
    --accent-color: #4A4A4A; /* Vurgu Rengi (Koyu Gri) */
    --background-color: #ffffff; /* Arka Plan Rengi (Beyaz) */
    --text-color: #333; /* Ana Metin Rengi */
    --light-text-color: #fdfdfd; /* Açık Renk Metin */
    --border-color: #e0e5e9; /* Kenarlık Rengi */
    --card-background: #ffffff; /* Kart Arka Planı */
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Yumuşak Gölge */
    --border-radius: 12px; /* Yuvarlak Köşeler */
}



body {
    font-family: 'Poppins', sans-serif; /* Modern ve okunaklı font */
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased; /* Fontları daha pürüzsüz göster */
    -moz-osx-font-smoothing: grayscale;
}



body {
    font-family: 'Poppins', sans-serif; /* Modern ve okunaklı font */
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased; /* Fontları daha pürüzsüz göster */
    -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after { box-sizing: border-box; }

/* =================================== */
/* TEMEL VE MODERN AYARLAR           */
/* =================================== */

:root {
    --primary-color: #C8102E; /* Ana Renk (Kırmızı) */
    --secondary-color: #C8102E; /* İkincil Renk (Koyu Kırmızı) */
    --accent-color: #4A4A4A; /* Vurgu Rengi (Koyu Gri) */
    --background-color: #ffffff; /* Arka Plan Rengi (Beyaz) */
    --text-color: #333; /* Ana Metin Rengi */
    --light-text-color: #fdfdfd; /* Açık Renk Metin */
    --border-color: #e0e5e9; /* Kenarlık Rengi */
    --card-background: #ffffff; /* Kart Arka Planı */
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Yumuşak Gölge */
    --border-radius: 12px; /* Yuvarlak Köşeler */
}



body {
    font-family: 'Poppins', sans-serif; /* Modern ve okunaklı font */
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased; /* Fontları daha pürüzsüz göster */
    -moz-osx-font-smoothing: grayscale;
}



body {
    font-family: 'Poppins', sans-serif; /* Modern ve okunaklı font */
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased; /* Fontları daha pürüzsüz göster */
    -moz-osx-font-smoothing: grayscale;
}

/* =================================== */
/* HEADER VE NAVİGASYON              */
/* =================================== */

header {
    background-color: var(--card-background);
    color: var(--primary-color);
    padding: 0;
    position: sticky; 
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-speed) ease, background-color var(--transition-speed) ease;
    border-bottom: 1px solid var(--border-color);
}

header.scrolled {
    box-shadow: var(--shadow);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.logo-image {
    height: 65px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text-color);
    flex-shrink: 0; 
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    transition: color var(--transition-speed) ease;
}

.logo-text .tagline {
    font-size: 0.8rem;
    font-weight: 400;
    color: #777;
    line-height: 1.2;
    transition: color var(--transition-speed) ease;
}

body.dark-mode .logo-text .tagline {
    color: #a0aec0; /* Dark mode için tagline rengi */
}

.header-right-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* =================================== */
/* THEME TOGGLE BUTTON               */
/* =================================== */

.theme-toggle-button {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.theme-toggle-button:hover {
    background-color: var(--background-color);
    transform: rotate(15deg);
}

.theme-toggle-button .sun-icon {
    display: none;
}
.theme-toggle-button .moon-icon {
    display: block;
}

body.dark-mode .theme-toggle-button .sun-icon {
    display: block;
}
body.dark-mode .theme-toggle-button .moon-icon {
    display: none;
}

nav {
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background-color var(--transition-speed) ease;
}

nav a {
    color: var(--light-text-color);
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    font-weight: 500;
    position: relative;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

nav a:hover, .dropdown:hover > a {
    background-color: var(--secondary-color);
}

nav a:hover::after, .dropdown:hover > a::after {
    width: 70%;
}

/* =================================== */
/* ARAMA ÇUBUĞU                      */
/* =================================== */

.search-container {
    width: 35%;
    max-width: 450px;
}

.search-form {
    display: flex;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    background-color: var(--background-color);
    transition: box-shadow var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.search-form:focus-within {
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.search-input {
    flex-grow: 1;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--text-color);
    transition: color var(--transition-speed) ease;
}

.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    border: none;
    background-color: transparent;
    color: #888;
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.search-button:hover {
    color: var(--accent-color);
}

/* =================================== */
/* AÇILIR MENÜLER (DROPDOWN)         */
/* =================================== */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--card-background);
    min-width: 220px;
    box-shadow: var(--shadow);
    z-index: 1;
    border-radius: var(--border-radius);
    padding: 0.5rem;
    margin-top: -1px; /* Boşluğu kapatmak için negatif yapıldı */
    border: 1px solid var(--border-color);
    animation: fadeInDown 0.3s ease-in-out;
    transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.dropdown-content.grid-menu {
    min-width: 600px;
    padding: 1rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropdown-content.grid-menu {
    display: grid;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 0.7rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left;
    border-radius: 8px;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dropdown-content a:hover {
    background-color: var(--accent-color);
    color: var(--light-text-color);
    transform: translateX(5px);
}

.sub-dropdown {
    position: relative;
}

.sub-dropdown-content {
    display: none;
    position: absolute;
    left: 100%;
    top: -1px; /* Üst hizadan biraz yukarıda, boşluğu kapatmak için */
    background-color: var(--card-background);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    animation: fadeInLeft 0.3s ease-in-out;
    transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.sub-dropdown:hover .sub-dropdown-content {
    display: block;
}

/* =================================== */
/* ANA İÇERİK VE BÖLÜMLER            */
/* =================================== */

main {
    padding: 2rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-section {
    display: none;
    background-color: transparent; 
    padding: 0; 
    border-radius: 0;
    box-shadow: none;
    animation: fadeInUp 0.6s ease-in-out;
}

.content-section.aktif {
    display: block;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
    display: inline-block;
    transition: color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

/* =================================== */
/* YENİ HERO BÖLÜMÜ (ANASAYFA)       */
/* =================================== */

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 0;
}

.hero-text {
    flex-basis: 55%;
}

.hero-text h2 {
    font-size: 3rem; 
    font-weight: 700;
    line-height: 1.2;
    border-bottom: none; 
    margin-bottom: 1.5rem;
    transition: color var(--transition-speed) ease;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    max-width: 500px;
    transition: color var(--transition-speed) ease;
}

.hero-animation {
    flex-basis: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* =================================== */
/* ÜRÜN KARTLARI                     */
/* =================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 3.5rem;
}

.product-card-link {
    text-decoration: none; 
    color: inherit; 
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    background-color: var(--card-background);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%; 
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1), 0px 4px 10px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-color); /* Vurgu rengi kenarlık eklendi */
}

.product-card img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color var(--transition-speed) ease;
}

.product-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0.2rem 0;
    transition: color var(--transition-speed) ease;
}

/* =================================== */
/* YENİ ÜRÜN DETAY SAYFASI           */
/* =================================== */

.product-detail-container {
    background-color: var(--card-background);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.product-detail-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    transition: border-color var(--transition-speed) ease;
}

.product-detail-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    transition: color var(--transition-speed) ease;
}

.product-detail-header .product-brand {
    font-size: 1.1rem;
    font-weight: 500;
    color: #777;
    transition: color var(--transition-speed) ease;
}

.product-detail-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start; /* Öğeleri yukarı hizala */
}

.product-image-container {
    flex-basis: 40%; /* Sol tarafın genişliği */
    max-width: 450px; /* Resim alanının maksimum genişliği */
    flex-shrink: 0; /* Küçülmesini engelle */
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.product-image-placeholder {
    flex-basis: 45%;
    background-color: var(--background-color);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: #aaa;
    transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.placeholder-icon svg {
    color: #ccc;
    transition: color var(--transition-speed) ease;
}

.product-info {
    flex-basis: 55%;
}

.product-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    transition: color var(--transition-speed) ease;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease;
}

.info-item strong {
    font-weight: 600;
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
}

.info-item.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
}

.info-item.price span {
    font-weight: 700;
}

.info-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 2rem 0;
    transition: background-color var(--transition-speed) ease;
}

.product-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    transition: color var(--transition-speed) ease;
}

.contact-for-info {
    margin-top: 2rem;
}

.btn-contact {
    display: inline-block;
    background: var(--primary-color);
    background-image: linear-gradient(180deg, #D72C4D 0%, #C8102E 100%);
    color: var(--light-text-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-bottom: 3px solid #A00D25;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(200, 16, 46, 0.4);
    border-bottom-width: 5px;
}


/* =================================== */
/* İLETİŞİM                          */
/* =================================== */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    background: var(--card-background);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-top: 0;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.contact-info p {
    margin-bottom: 1rem;
    transition: color var(--transition-speed) ease;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

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

.map-container {
    flex: 1.5;
    min-width: 320px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* =================================== */
/* ANİMASYONLAR                      */
/* =================================== */

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

/* =================================== */
/* YENİ EKLENEN SLIDER VE AÇIKLAMA BÖLÜMLERİ   */
/* =================================== */

.feature-section {
    background-color: var(--card-background, #fff);
    border-radius: var(--border-radius, 12px);
    margin: 4rem auto; /* Bölümler arasına daha fazla dikey boşluk */
    padding: 2rem;
    box-shadow: var(--shadow, 0 10px 25px rgba(0, 0, 0, 0.08));
    display: flex;
    gap: 2.5rem; /* İçerik ve slider arasını biraz açalım */
    align-items: center;
    overflow: hidden;
    max-width: 1400px; /* Ana konteyneri biraz daha kompakt yapalım */
    border: 1px solid var(--border-color, #e0e5e9);
    transition: all 0.3s ease-in-out; /* Animasyon için eklendi */
}

.feature-section:hover {
    transform: translateY(-5px); /* Üzerine gelince hafifçe yukarı kalkma efekti */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-section.image-section {
    flex-direction: row-reverse;
}

.swiper-container {
    width: 55%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.feature-description {
    flex-grow: 1;
}
.video-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.image-slide {
    background-size: cover;
    background-position: center;
}
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: rem;
    box-sizing: border-box;
    text-align: left;
    color: #ffffff;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}
.slide-content h2 { font-size: 2rem; }
.slide-content p { color: #f1f1f1; }
.swiper-button-next, .swiper-button-prev {
    color: #ffffff;
}
.swiper-pagination-bullet-active {
    background: #ffffff;
}
/* Slider Kontrollerini Güzelleştirme */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: #fff !important; /* Rengin ezilmesini engelle */
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important; /* Ok ikonlarının boyutunu ayarla */
    font-weight: 900;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7) !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color, #3498db) !important;
}
/* =============================================== */
/* YAN YANA SLIDER DÜZENLEMESİ */
/* =============================================== */

/* 1. Kapsayıcıyı (slider-wrapper) Flex Container Yapma */
.slider-wrapper {
    display: flex; /* İçindeki elemanları yan yana dizer */
    gap: 2rem;     /* İki slider arasına 2rem (yaklaşık 32px) boşluk koyar */
    align-items: stretch; /* Slider'lar farklı yükseklikteyse hepsini eşit yüksekliğe uzatır */
}

/* 2. Slider'ların Esnek Genişlik Almasını Sağlama */
/* Not: #image-slider ve #video-slider Swiper.js kullandığı için bu ek ayar önemlidir. */
#image-slider,
#video-slider {
    flex: 1; /* Mevcut alanı eşit olarak paylaşmalarını sağlar (her biri ~%50 genişlik alır) */
    min-width: 0; /* Swiper.js'in flexbox içinde doğru boyutlanması için kritik bir ayardır! */
}

/* 3. Mobil Cihazlar İçin Alt Alta Getirme (ÖNEMLİ!) */
/* Ekran genişliği 800px veya daha az olduğunda... */
@media (max-width: 800px) {
    .slider-wrapper {
        flex-direction: column; /* Yan yana dizilimi iptal et ve alt alta diz */
    }
}
/* =============================================== */
/* WHATSAPP DESTEK BUTONU (ANİMASYONLU) */
/* =============================================== */

@keyframes pulse-whatsapp {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(37, 211, 102, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); }
}

.whatsapp-button {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%; /* Her zaman yuvarlak */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center; /* İkonu ortala */
    align-items: center;
    z-index: 99999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: pulse-whatsapp 2s infinite ease-in-out;
}

.whatsapp-button svg {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.whatsapp-text {
    position: absolute; /* Butondan bağımsız konumlandır */
    right: 85px; /* Butonun solunda yer alacak */
    top: 50%;
    transform: translateY(-50%) translateX(10px); /* Başlangıç pozisyonu */
    background-color: #2c3e50; /* Koyu arkaplan */
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none; /* Yazının fare olaylarını engellemesi */
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Hover efektleri sadece fare ile üzerine gelinebilen cihazlarda çalışsın */
@media (hover: hover) and (pointer: fine) {
    .whatsapp-button:hover {
        animation-play-state: paused; /* Animasyonu durdur */
        transform: scale(1.1); /* Hafifçe büyüt */
    }

    .whatsapp-button:hover .whatsapp-text {
        opacity: 1;
        transform: translateY(-50%) translateX(0); /* Görünür pozisyon */
    }
}

/* =============================================== */
/* WHATSAPP SEÇİM MODALI (PENCERESİ)      */
/* =============================================== */

.whatsapp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; /* Başlangıçta gizli */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.whatsapp-modal {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.whatsapp-modal-overlay.aktif {
    display: flex;
}

.whatsapp-modal-overlay.aktif .whatsapp-modal {
    transform: scale(1);
    opacity: 1;
}

.whatsapp-modal h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.whatsapp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s ease;
}

.whatsapp-modal-close:hover {
    color: var(--text-color);
}

.whatsapp-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.whatsapp-modal-btn.app-btn {
    background-color: #25D366;
    color: #fff;
}

.whatsapp-modal-btn.app-btn:hover {
    background-color: #1EAE54;
    transform: translateY(-3px);
}

.whatsapp-modal-btn.web-btn {
    background-color: transparent;
    color: #075E54;
    border-color: #075E54;
}

.whatsapp-modal-btn.web-btn:hover {
    background-color: #075E54;
    color: #fff;
    transform: translateY(-3px);
}

.whatsapp-modal-btn svg {
    width: 24px;
    height: 24px;
}


/* =================================== */
/* ÖNE ÇIKAN ÜRÜNLER VİTRİNİ (HERO)  */
/* =================================== */

.hero-featured-products {
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow: hidden; /* Keep this to ensure rounded corners are respected by children */
    padding: 1rem; /* Add padding to the main container for overall spacing */
}

.featured-products-title {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem; /* Alanı küçült */
    font-size: 1.0rem;  /* Yazıyı küçült */
    color: var(--primary-color);
    border-bottom: 1px solid var(--accent-color); /* Daha ince çizgi */
    padding-bottom: 0.4rem; /* Alanı küçült */
    flex-shrink: 0;
}

.featured-products-scroll-container {
    flex-grow: 1;
    overflow-y: auto;
    /* Add negative margin to counteract the parent's padding */
    margin: 0 -1rem -1rem;
    padding: 0 1rem 1rem;
}

.featured-products-grid {
    display: grid;
    /* This is the key change for aesthetics */
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
    width: 100%;
}

.featured-product-card {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* border-color eklendi */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color); /* Vurgu rengi kenarlık eklendi */
}

.featured-product-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.featured-product-info {
    padding: 0.75rem;
    text-align: center;
}

.featured-product-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-product-info span {
    font-size: 0.8rem;
    color: #777;
}
/* =================================== */
/* YUKARI ÇIK BUTONU (GÜNCELLENDİ)     */
/* =================================== */

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 170px;
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.back-to-top-btn.visible {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    opacity: 1;
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.back-to-top-btn svg {
    width: 28px;
    height: 28px;
}

/* =================================== */
/* MOBİL UYUMLULUK EKLEMELERİ (FİNAL)  */
/* =================================== */

/* Mobil Menü Butonu (Masaüstünde Gizli) */
.mobil-menu-tetikleyici {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-color);
    z-index: 1001;
}

/* === IFRAME GENEL AYARLARI === */
.iframe-container iframe,
.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}
#PCB+COF .iframe-container iframe {
    height: 600px;
}

/* === SLIDER GÖRSEL AYARLARI === */
.swiper-slide img,
.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menü açıkken arkadaki içeriği karartmak için overlay */
.menu-arkaplan-karartma {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1199; /* Menünün bir katman altında */
    cursor: pointer;
}

.menu-arkaplan-karartma.aktif {
    display: block;
}


/* Media Query - Tablet ve altı (992px ve altı) */
@media (max-width: 992px) {

    /* === GENEL DÜZENLEMELER === */
    main {
        padding: 1.5rem;
    }
    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* === HEADER === */
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0.75rem 1.5rem;
    }
    .logo-container { order: 1; }
    .logo-text .brand-name { font-size: 1.25rem; }
    .mobil-menu-tetikleyici { display: block; order: 2; }
    .search-container {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        max-width: none;
    }

    /* === YANDAN AÇILIR NAVİGASYON (YENİ PANEL SİSTEMİ) === */
    .ana-navigasyon {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background-color: #2c3e50;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        z-index: 1200;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        /* Panellerin kaybolması için overflow hidden önemli */
        overflow: hidden;
    }

    .ana-navigasyon.nav-mobil-aktif {
        transform: translateX(0);
    }

    .nav-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #2c3e50;
        
        display: flex;
        flex-direction: column;
        
        /* Her panel kendi içinde kaydırılabilir */
        overflow-y: auto;
        
        transition: transform 0.35s ease-in-out;
    }

    /* Panellerin pozisyonları */
    .nav-panel-main {
        transform: translateX(0);
    }
    .nav-panel-submenu {
        transform: translateX(100%); /* Alt menüler sağda bekler */
    }
    .nav-panel.nav-panel-aktif {
        transform: translateX(0); /* Aktif panel ortaya gelir */
    }
    .nav-panel.nav-panel-sol-cikti {
        transform: translateX(-100%); /* Ana menü sola çıkar */
    }

    /* Menü Linkleri Genel Stil */
    .ana-navigasyon a {
        text-align: left;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #34495e;
        color: var(--light-text-color);
        text-decoration: none;
        display: block;
    }
    .ana-navigasyon a:hover { 
        background-color: var(--secondary-color); 
    }

    /* İleri/Geri Okları */
    .nav-arrow {
        float: right;
        font-size: 1.2em;
        color: #7f8c8d;
    }
    a:hover .nav-arrow {
        color: var(--light-text-color);
    }

    /* Geri Butonu Özel Stili */
    .nav-back-btn {
        font-weight: 700;
        color: var(--accent-color) !important; /* Rengin ezilmemesi için */
        background-color: #34495e;
    }
    .nav-back-btn .nav-arrow {
        color: var(--accent-color) !important;
        margin-right: 0.5rem;
    }
    
    /* === SLIDER'LAR === */
    .slider-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    .swiper-container {
        width: 100% !important;
        height: 350px;
    }

    /* === YATAY KAYDIRILABİLİR ÜRÜN VİTRİNİ (ANA LİSTE) === */
    .product-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .product-grid::-webkit-scrollbar { display: none; }
    .product-grid { -ms-overflow-style: none; scrollbar-width: none; }
    .product-card-link {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 60%;
    }
    .product-card { height: 100%; }
    
    /* === ANASAYFA HERO BÖLÜMÜ === */
    .hero-section {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
        text-align: center;
    }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-featured-products {
        max-height: none;
        width: 100%;
    }

    /* === ÖNE ÇIKAN ÜRÜNLER (YATAY KAYDIRMA) === */
    .featured-products-grid {
        display: flex;
        overflow-x: auto;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .featured-products-grid::-webkit-scrollbar { display: none; }
    .featured-products-grid { -ms-overflow-style: none; scrollbar-width: none; }
    .featured-products-grid .featured-product-card {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 150px;
    }
    
    /* === ÜRÜN DETAY SAYFASI === */
    .product-detail-content { flex-direction: column; }
    .product-detail-container { padding: 1.5rem; }
    .product-detail-header h1 { font-size: 2rem; }

    /* === BUTON POZİSYONLARI === */
    .back-to-top-btn { left: 30px; }
}

/* Media Query - Sadece küçük telefonlar için ek ayarlar (480px ve altı) */
@media (max-width: 480px) {
    .ana-navigasyon { width: 80%; } /* Daha küçük ekranlarda menü biraz daha geniş olsun */
    .product-card-link { width: 75%; }
    .logo-text .tagline { display: none; }
    .back-to-top-btn {
        width: 45px;
        height: 45px;
        left: 20px;
        bottom: 20px;
    }
    .whatsapp-button {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }
    .whatsapp-button.animate {
        width: 280px;
    }
    /* Genişleme efektini sadece fare olan cihazlara uygula */
    @media (hover: hover) and (pointer: fine) {
        .whatsapp-button:hover {
            width: 280px;
        }
    }
}

/* =================================== */
/* MASAÜSTÜ NAVİGASYON DÜZENLEMESİ   */
/* =================================== */

.desktop-nav {
    display: none; /* Mobil öncelikli yaklaşımla başlangıçta gizli */
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.desktop-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: nowrap; /* Elemanların alt satıra kaymasını engelle */
}

.desktop-nav ul li {
    position: relative; /* Dropdown menüler için */
}

.desktop-nav ul li a {
    color: var(--light-text-color);
    text-decoration: none;
    padding: 1rem 1.2rem; /* Yatay padding azaltıldı */
    display: block;
    font-weight: 500;
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap; /* Metnin alt satıra kaymasını engelle */
}

.desktop-nav ul li a .arrow-down {
    border: solid var(--light-text-color);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.desktop-nav ul li:hover > a .arrow-down {
    transform: rotate(225deg);
    margin-bottom: 2px;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.desktop-nav ul li:hover > a {
    background-color: var(--secondary-color);
}

.desktop-nav ul li:hover > a::after {
    width: 70%;
}

/* Dropdown İçerik */
.desktop-nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--card-background);
    width: 720px; /* Genişlik 3 sütun için ayarlandı */
    box-shadow: var(--shadow);
    z-index: 1050;
    border-radius: var(--border-radius);
    padding: 1rem; /* İç boşluk artırıldı */
    margin-top: 0;
    border: 1px solid var(--border-color);
    animation: fadeInDown 0.3s ease-in-out;
    list-style: none; /* UL reset */
    grid-template-columns: repeat(3, 1fr); /* 3 eşit sütun */
    gap: 0.5rem; /* Sütunlar arası boşluk */
}

.desktop-nav .dropdown:hover .dropdown-content {
    display: grid;
}

.desktop-nav .dropdown-content li a {
    color: var(--text-color);
    padding: 0.7rem 1rem;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav .dropdown-content li a::after {
    display: none; /* Alt menü linklerinde alt çizgi olmasın */
}

.desktop-nav .dropdown-content li a:hover {
    background-color: var(--accent-color);
    color: var(--light-text-color);
    transform: translateX(5px);
}


/* =================================== */
/* NAVİGASYON GİZLEME/GÖSTERME       */
/* =================================== */

/* Masaüstü (993px ve üstü) */
@media (min-width: 993px) {
    .ana-navigasyon { /* Mobil menüyü gizle */
        display: none !important;
    }
    .desktop-nav { /* Masaüstü menüsünü göster */
        display: block !important;
    }
}

/* Zaten var olan mobil media query'sini GÜNCELLE */
@media (max-width: 992px) {
    .desktop-nav { /* Masaüstü menüsünü gizle */
        display: none !important;
    }
    .ana-navigasyon { /* Mobil menüyü göster */
        display: block !important; /* Zaten block ama emin olmak için */
    }

    /* === GENEL DÜZENLEMELER === */
    main {
        padding: 1.5rem;
    }
    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* === HEADER === */
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0.75rem 1.5rem;
    }
    .logo-container { order: 1; }
    .logo-text .brand-name { font-size: 1.25rem; }
    .mobil-menu-tetikleyici { display: block; order: 2; }
    .search-container {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        max-width: none;
    }

    /* === YANDAN AÇILIR NAVİGASYON (YENİ PANEL SİSTEMİ) === */
    .ana-navigasyon {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background-color: #2c3e50;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        z-index: 1200;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        overflow: hidden;
    }
}
/* =================================== */
/* FOOTER                            */
/* =================================== */


.site-footer {
    background-color: #4A4A4A;  /* Koyu mavi-gri bir arka plan */
    color: #bdc3c7; /* Açık gri metin rengi */
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem; /* Main içerikten sonra boşluk bırak */
    border-top: 4px solid var(--primary-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer h4 {
    color: var(--light-text-color);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}

.footer-contact a {
    color: #bdc3c7 !important; /* Kuralın ezilmesini engelle */
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.footer-contact a:hover {
    color: #ffffff !important; /* Vurgu için beyaz renk */
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-social a {
    color: #bdc3c7;
    margin-left: 1rem;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--light-text-color);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .site-footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =================================== */
/* BREADCRUMB                        */
/* =================================== */
.breadcrumb-nav {
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
}

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

.breadcrumb-nav li a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav li a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav li::after {
    content: '/';
    margin: 0 0.75rem;
    color: #999;
}

.breadcrumb-nav li:last-child::after {
    content: '';
}

.breadcrumb-nav li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

/* =================================== */
/* İLGİLİ ÜRÜNLER                    */
/* =================================== */
.related-products {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.related-products h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* =================================== */
/* BOŞ DURUM (EMPTY STATE)           */
/* =================================== */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    border: 2px dashed var(--border-color);
    width: 100%;
    grid-column: 1 / -1; /* Grid içindeyse tüm sütunları kapla */
}

.empty-state-icon {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.empty-state-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
}

.empty-state-text {
    color: #777;
    max-width: 400px;
}
/* =================================== */
/* BÖLÜM AYIRICI (SECTION DIVIDER)   */
/* =================================== */
.section-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px; /* Yüksekliği buradan ayarlayabilirsiniz */
}

.section-divider .shape-fill {
    fill: #F8F9FA; /* Bir sonraki bölümün arkaplan rengi */
}

/* Ürünler bölümüne hafif bir arkaplan rengi verelim */
#urunler.content-section {
    background-color: #F8F9FA;
    padding-top: 4rem; /* Ayırıcıdan sonra boşluk */
}

/* Hizmetler Bölümü Stilleri (Tek Sıra & Yatay Kaydırma) */
.hizmetler {
    display: flex;
    flex-wrap: nowrap; /* Kutuların alt satıra inmesini engelle */
    overflow-x: auto;  /* Yatayda taşan kutular için kaydırma çubuğu */
    justify-content: flex-start; /* Kutuları soldan başlat */
    padding: 40px 25px;
    background-color: #F8F9FA;
    gap: 15px; /* Kutular arası boşluğu azalt */
    -webkit-overflow-scrolling: touch; /* Mobilde akıcı kaydırma */
}

/* Kaydırma çubuğunu gizlemek için (isteğe bağlı ama daha şık) */
.hizmetler::-webkit-scrollbar {
    display: none;
}
.hizmetler {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.hizmet-kutusu {
    flex: 0 0 290px; /* Genişliği sabitler (büyümez, küçülmez) */
    background-color: #FFFFFF;
    border: 1px solid #e0e5e9;
    border-radius: 12px;
    padding: 25px; /* İç boşluğu azalt */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hizmet-kutusu:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hizmet-ikon svg {
    width: 45px; /* İkonu biraz küçült */
    height: 45px;
    color: #C8102E;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.hizmet-kutusu:hover .hizmet-ikon svg {
    transform: scale(1.1);
}

.hizmet-kutusu h2 {
    color: #333;
    font-size: 1.25em; /* Başlık fontunu biraz küçült */
    margin-bottom: 15px;
}

.hizmet-kutusu p {
    color: #555;
    font-size: 0.95em; /* Açıklama fontunu biraz küçült */
    line-height: 1.6;
}

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

.footer-social a {
    color: #bdc3c7;
    margin-left: 1.5rem;
    font-size: 1.5rem; /* Ikon boyutunu biraz büyütelim */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff; /* Beyaz renk yapalım */
    transform: scale(1.1); /* Hafif büyütme efekti */
}

.social-icons-contact {
    margin-top: 1rem;
}

.social-icons-contact a {
    color: var(--accent-color);
    margin-right: 1.5rem;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons-contact a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Büyüteç z-index ve boyut düzeltmesi */
.drift-zoom-pane {
    z-index: 1001 !important;
    width: 500px !important;
    height: 500px !important;
}

/* Blog Sayfası Stilleri */
.blog-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.post-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.post-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-title {
    font-size: 1.25rem;
    margin: 0 0 0.75rem 0;
}

.post-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.post-card-date {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #999;
}

/* Yazı Detay Sayfası Stilleri */
.post-detail-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.post-featured-image {
    margin-bottom: 2rem;
}

.post-featured-image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.post-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-body h2, .post-body h3 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}