/* --- TEMEL AYARLAR VE DEĞİŞKENLER --- */
:root {
    --turuncu: #f0ad4e;
    --turuncu-koyu: #ec971f;
    --siyah: #1e2329;
    --footer-siyah: #111315;
    --header-gri: #495057;
    --gri: #f4f4f4;
    --acik-gri: #fafafa;
    --beyaz: #ffffff;
    --whatsapp-yesil: #25D366;
    --yesil: #198754;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: var(--beyaz);
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 73px;
    transition: padding-top 0.4s ease;
}

body.header-scrolled {
    padding-top: 63px;
}

main {
    flex: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- HEADER BÖLÜMÜ --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.top-bar {
    display: none;
}

.main-nav-wrapper {
    background-color: var(--siyah);
    border-bottom: 3px solid var(--siyah);
    z-index: 999;
    transition: padding 0.4s ease, background-color 0.4s ease;
}

header.scrolled .main-nav-content {
    min-height: 60px;
}

header.scrolled .logo-main-nav {
    height: 50px;
}

header.scrolled .main-nav-content nav ul li a {
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    position: relative;
    transition: min-height 0.4s ease;
}

.logo-main-nav {
    height: 60px;
    width: auto;
    margin-right: 20px;
    transition: height 0.4s ease;
}

.main-nav-content nav {
    display: flex;
}

.main-nav-content nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.main-nav-content nav ul li {
    position: relative;
}

.main-nav-content nav ul li a {
    color: var(--beyaz);
    padding: 25px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
}

.main-nav-content nav ul li a:hover,
.dropdown:hover > a {
    background-color: var(--turuncu);
    color: var(--siyah);
}

.main-nav-content nav ul li.active > a {
    background-color: var(--turuncu);
    color: var(--siyah);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--siyah);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    list-style: none;
    padding: 5px 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu li a {
    color: var(--beyaz) !important;
    padding: 12px 20px !important;
    text-transform: none;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background-color: var(--turuncu) !important;
    color: var(--siyah) !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown > a::after {
    content: ' \f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    margin-left: 5px;
    color: var(--beyaz);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-btn, .instagram-btn {
    background-color: var(--whatsapp-yesil);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--beyaz);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.instagram-btn {
    background-color: #E1306C;
}

.whatsapp-btn:hover, .instagram-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}
.instagram-btn:hover {
    background-color: #C13584;
}

.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-yesil);
    color: var(--beyaz);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: transform 0.3s ease;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--turuncu-koyu);
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    z-index: 1002;
}

.mobile-nav-toggle:hover {
    color: var(--siyah);
}

.mobile-logo-link { display: none; }
.error-message { color: #dc3545; font-size: 12px; margin-top: 5px; display: block; }

.slider-container { 
    width: 100%; 
    height: 80vh; 
    min-height: 600px; 
    position: relative; 
    overflow: hidden; 
    background-color: var(--siyah); 
}
.slide { 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
}
.slide.active { opacity: 1; }
.slide img,
.slider-container .slide video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

/* --- DEĞİŞTİRİLEN SLIDER İÇERİK STİLLERİ --- */
.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: var(--beyaz);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.slider-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 1), 0px 0px 8px rgba(0, 0, 0, 1);
    line-height: 1.2;
}

.slider-subtitle {
    font-size: 20px;
    margin: 0 0 30px 0;
    font-weight: 400;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 1), 0px 0px 5px rgba(0, 0, 0, 1);
    opacity: 0.9;
}

.slider-btn {
    display: inline-block;
    background-color: var(--turuncu);
    color: var(--siyah);
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--turuncu);
    transition: all 0.3s ease;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.slider-btn:hover {
    background-color: transparent;
    color: var(--turuncu);
    transform: scale(1.05);
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.6);
}


.product-section { padding: 60px 0; }
.product-carousel-header, .product-list-header { display: flex; justify-content: center; align-items: center; margin-bottom: 30px; position: relative; }
.section-title { font-size: 32px; font-weight: 700; margin: 0; color: var(--siyah); }
.product-carousel { position: relative; }
.mobile-prev-product-btn, .mobile-next-product-btn { position: absolute; top: 36%; transform: translateY(-50%); z-index: 10; background: var(--siyah); border: 1px solid var(--siyah); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; font-size: 18px; transition: all 0.2s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.2); display: flex; justify-content: center; align-items: center; color: var(--beyaz); }
.mobile-prev-product-btn:hover, .mobile-next-product-btn:hover { background: var(--turuncu); color: var(--siyah); border-color: var(--turuncu); }
.mobile-prev-product-btn { left: -50px; }
.mobile-next-product-btn { right: -50px; }
.product-carousel-container { overflow: hidden; }
.product-grid { display: flex; gap: 30px; transition: transform 0.5s ease-in-out; }
.product-list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; color: #333; transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; flex-shrink: 0; background-color: var(--beyaz); }
.product-grid .product-card { width: calc(25% - 22.5px); }
.product-list-grid .product-card { width: auto; }
.product-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-5px); }
.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: var(--beyaz);
}
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-card .img-default { opacity: 1; transition: opacity 0.3s ease; }
.product-card .img-hover { opacity: 0; transition: opacity 0.3s ease; }
.product-card:hover .img-default { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-content { padding: 20px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.product-title { font-size: 18px; font-weight: 600; margin: 0 0 15px 0; min-height: 54px; display: flex; align-items: center; justify-content: center; }
.product-btn { background-color: var(--turuncu); color: var(--siyah); padding: 10px 15px; border-radius: 5px; font-weight: 600; transition: background-color 0.3s ease; display: inline-block; }
.product-btn:hover { background-color: var(--turuncu-koyu); }

.info-text-section {
    background-color: var(--acik-gri);
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}
.info-text-section .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.info-text-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--siyah);
}
.scrollable-text-box {
    height: 250px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    padding: 25px;
    text-align: left;
    background-color: var(--beyaz);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.scrollable-text-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}
.scrollable-text-box p:last-child {
    margin-bottom: 0;
}

.parallax-section {
    position: relative;
    min-height: 400px;
    background-image: url('image/parallax_1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.features-section { padding: 80px 0; background-color: var(--beyaz); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.feature-box { background-color: var(--acik-gri); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; border: 1px solid #e0e0e0; }
.feature-box:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); background-color: var(--beyaz); }
.feature-box .icon { font-size: 48px; color: var(--siyah); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 50%; background-color: #f0f0f0; transition: all 0.3s ease; }
.feature-box:hover .icon { background-color: var(--turuncu); color: var(--beyaz); }
.feature-box h4 { font-size: 20px; font-weight: 700; color: var(--siyah); margin-bottom: 10px; margin-top: 0; }
.feature-box p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 0; }
.site-footer { background-color: var(--footer-siyah); color: var(--beyaz); padding-top: 60px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-column .footer-logo { max-width: 180px; margin-bottom: 20px; }
.footer-column .footer-title { color: var(--turuncu); margin-bottom: 20px; font-size: 18px; font-weight: 600; margin-top: 0; }
.footer-column p { color: #ccc; line-height: 1.8; margin-bottom: 10px; font-size: 15px; }
.footer-column .footer-links { list-style: none; padding: 0; margin: 0; }
.footer-column .footer-links li { margin-bottom: 10px; }
.footer-column .footer-links a { color: #ccc; transition: color 0.3s ease, padding-left 0.3s ease; display: inline-block; }
.footer-column .footer-links a:hover { color: var(--turuncu); padding-left: 5px; }

.footer-contact-details {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}
.footer-contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}
.footer-contact-details li:last-child {
    margin-bottom: 0;
}
.footer-contact-details li i {
    font-size: 16px;
    color: var(--turuncu);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}
.footer-contact-details li span,
.footer-contact-details li a {
    color: #ccc;
    line-height: 1.6;
    transition: color 0.3s ease;
}
.footer-contact-details li a:hover {
    color: var(--turuncu);
}

.footer-bottom-bar { border-top: 1px solid #333; padding: 20px 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.copyright-text { margin: 0; color: #999; font-size: 14px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { color: #999; font-size: 18px; transition: color 0.3s ease, transform 0.3s ease; }
.social-icons a:hover { color: var(--beyaz); transform: translateY(-3px); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--siyah); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 16px; transition: border-color 0.3s ease; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--turuncu); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn { background-color: var(--turuncu); color: var(--siyah); padding: 12px 30px; border: none; border-radius: 5px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; display: inline-block; }
.btn:hover { background-color: var(--turuncu-koyu); }
.page-header { background-color: var(--gri); padding: 20px 0; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; text-align: center; }
.page-header h1 { font-size: 36px; margin: 0; color: var(--siyah); }
.content-section { padding: 60px 0; }
.content-section h2 { font-size: 28px; margin-bottom: 20px; color: var(--siyah); }
.content-section h3 { font-size: 24px; margin-bottom: 15px; color: var(--siyah); }
.content-section p { line-height: 1.8; color: #666; margin-bottom: 20px; }
.breadcrumb { font-size: 14px; color: #666; margin-top: 10px; }
.breadcrumb a { color: var(--turuncu); }
.breadcrumb a:hover { text-decoration: underline; }

/* --- ÜRÜN DETAY SAYFASI --- */
.product-detail-grid { 
    display: grid; 
    grid-template-columns: 45% 1fr;
    gap: 50px; 
    align-items: start; 
}

.product-gallery-new { 
    display: flex; 
    flex-direction: row; 
    gap: 20px; 
    align-items: flex-start; 
    position: static; /* 'sticky' değerini 'static' olarak değiştirdim */
}

.product-thumbnails-new { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    flex-shrink: 0; 
}

.product-thumbnails-new .thumb-item {
    width: 80px;
    height: 80px;
    position: relative;
    background-color: var(--beyaz);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    transition: all 0.2s ease;
}

.product-thumbnails-new .thumb-item.active,
.product-thumbnails-new .thumb-item:hover {
    border-color: var(--turuncu);
    transform: scale(1.07);
}

.product-thumbnails-new .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.product-gallery-new .main-image-container { 
    flex-grow: 1; 
    margin-bottom: 0; 
    border-radius: 8px; 
    border: 1px solid #e0e0e0;
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: var(--gri);
    overflow: hidden;
}
.product-gallery-new .main-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-new h1 { font-size: 36px; font-weight: 700; margin-top: 0; margin-bottom: 15px; color: var(--siyah); line-height: 1.2; }
.product-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
.product-tags .tag { background-color: var(--acik-gri); border: 1px solid #e0e0e0; padding: 6px 12px; border-radius: 20px; font-size: 14px; font-weight: 500; color: #555; display: flex; align-items: center; gap: 8px; }
.product-tags .tag i { color: var(--turuncu); }
.product-info-new .product-description { font-size: 16px; line-height: 1.8; color: #666; margin-bottom: 30px; }
.product-info-new .product-features { margin-bottom: 30px; }
.product-info-new .product-features h3 { font-size: 20px; margin-bottom: 15px; color: var(--siyah); border-bottom: 1px solid #eee; padding-bottom: 10px; }
.product-info-new .product-features ul { list-style: none; padding: 0; columns: 2; gap: 20px; }
.product-info-new .product-features ul li { padding: 5px 0; color: #666; break-inside: avoid; }
.product-info-new .product-features ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--yesil); margin-right: 10px; }
.product-info-new .btn { width: 100%; text-align: center; padding-top: 15px; padding-bottom: 15px; font-size: 18px; }

.contact-page-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}
.contact-form-wrapper, .contact-details-wrapper {
    width: 100%;
}
.contact-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--siyah);
    text-align: left;
    margin-bottom: 15px;
}
.contact-section-subtitle {
    font-size: 16px;
    color: #666;
    text-align: left;
    margin-bottom: 40px;
    max-width: 100%;
}
#contact-form {
    max-width: 100%;
    margin: 0;
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}
.form-row .form-group {
    flex: 1;
}
#contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--acik-gri);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 24px;
    color: var(--turuncu);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beyaz);
    border-radius: 50%;
}
.info-card-content h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: var(--siyah);
}
.info-card-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}
.info-card-content p a {
    color: #666;
    transition: color 0.3s;
}
.info-card-content p a:hover {
    color: var(--turuncu);
}
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- HAKKIMIZDA SAYFASI YENİ STİLLERİ --- */
.about-text-content h2 { margin-top: 0; font-size: 32px; font-weight: 700; color: var(--siyah); margin-bottom: 20px; }
.about-text-content h3 { font-size: 24px; font-weight: 600; color: var(--siyah); margin-top: 30px; margin-bottom: 15px; }
.about-text-content p { font-size: 16px; line-height: 1.8; color: #666; margin-bottom: 15px; }

.about-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-split-section.reverse .about-split-image {
    order: 2;
}

.about-split-section.reverse .about-split-content {
    order: 1;
}

.about-split-image img {
    width: 100%;
    height: 100%;
    max-height: 550px; /* Resimlerin çok uzamasını engeller */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.vision-section.no-bg,
.mission-section.no-bg {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

.vision-mission-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card-link { display: block; color: inherit; text-decoration: none; }
.blog-card-item { background: var(--beyaz); border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.blog-card-image { width: 100%; height: 220px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card-item:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 13px; color: #999; margin-bottom: 10px; display: block; }
.blog-card-title { font-size: 20px; font-weight: 600; color: var(--siyah); margin: 0 0 15px 0; line-height: 1.4; }
.blog-card-excerpt { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.read-more-btn { color: var(--turuncu); font-weight: 600; display: inline-block; transition: color 0.3s ease; }
.read-more-btn i { margin-left: 5px; transition: transform 0.3s ease; }
.blog-card-item:hover .read-more-btn i { transform: translateX(5px); }

.vision-section, .mission-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--acik-gri);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.vision-icon, .mission-icon {
    font-size: 3rem;
    color: var(--turuncu-koyu);
    padding-top: 0.5rem;
}

.vision-content h2, .mission-content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--siyah);
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.mission-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mission-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.mission-list li i {
    color: var(--turuncu-koyu);
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* --- MOBİL RESPONSIVE TASARIM --- */
@media (max-width: 992px) {
    body, body.header-scrolled {
        padding-top: 63px;
    }
    header.scrolled .main-nav-content, .main-nav-content { min-height: 60px; }
    header.scrolled .logo-main-nav, .logo-main-nav { height: 40px; }
    .mobile-nav-toggle { display: block; }
    .main-nav-content nav { position: fixed; top: 63px; left: -100%; width: 100%; height: calc(100vh - 63px); background-color: var(--siyah); flex-direction: column; justify-content: flex-start; transition: left 0.3s ease; z-index: 998; overflow-y: auto; }
    .main-nav-content nav.mobile-menu-open { left: 0; }
    .main-nav-content nav ul { flex-direction: column; width: 100%; padding: 20px 0; }
    .main-nav-content nav ul li { width: 100%; border-bottom: 1px solid #333; }
    .main-nav-content nav ul li a { padding: 20px; text-align: left; font-size: 16px; width: 100%; }
    .dropdown-menu { position: static; display: none !important; background-color: rgba(0,0,0,0.3); box-shadow: none; opacity: 1; visibility: visible; transform: none; width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .dropdown-menu li a { padding: 15px 30px !important; font-size: 14px; }
    .dropdown.mobile-dropdown-open .dropdown-menu { display: block !important; max-height: 500px; }
    .nav-right { display: none; }
    .product-list-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .product-grid .product-card { width: calc(50% - 15px); }
    .product-detail-container { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { position: static; }
    .section-title { font-size: 24px; }
    .mobile-prev-product-btn, .mobile-next-product-btn { display: flex; width: 40px; height: 40px; font-size: 16px; top: 36%; }
    .mobile-prev-product-btn { left: 10px; }
    .mobile-next-product-btn { right: 10px; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-gallery-new { position: static; flex-direction: column; margin-bottom: 30px; }
    .product-thumbnails-new { flex-direction: row; flex-wrap: wrap; width: 100%; order: -1; margin-bottom: 15px; }
    .product-thumbnails-new .thumb-item { width: 65px; height: 65px; }
    
    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .about-split-section,
    .about-split-section.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-split-section.reverse .about-split-image,
    .about-split-section.reverse .about-split-content {
        order: initial;
    }
    .blog-page-grid { grid-template-columns: repeat(2, 1fr); }
    .slider-title { font-size: 36px; }
    .slider-subtitle { font-size: 18px; }
}

@media (max-width: 768px) {
    .container { width: 95%; }
    .main-nav-content { min-height: 60px; }
    .product-list-grid { grid-template-columns: 1fr; }
    .product-grid .product-card { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-column .footer-logo { margin-left: auto; margin-right: auto; }
    
    .footer-contact-details li {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .footer-contact-details li i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-bottom-content { flex-direction: column; justify-content: center; text-align: center; }
    .section-title { font-size: 20px; }
    .page-header h1 { font-size: 28px; }
    .product-info h1, .product-info-new h1 { font-size: 28px; }
    .info-text-section h3 { font-size: 20px; }
    .content-section h2 { font-size: 22px; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .features-section { padding: 40px 0; }
    .feature-box { padding: 25px; }
    .feature-box .icon { font-size: 40px; width: 70px; height: 70px; }
    .feature-box h4 { font-size: 18px; }
    .feature-box p { font-size: 14px; }
    .product-info-new .product-features ul { columns: 1; }
    .form-row { flex-direction: column; gap: 0; }
    #contact-form { padding: 20px; }
    .blog-page-grid { grid-template-columns: 1fr; }

    .vision-section, .mission-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .mission-list li {
        flex-direction: column;
        text-align: center;
    }
    .mission-list li i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .slider-container { height: 60vh; min-height: 450px; }
    .slider-content { padding: 30px; width: 95%; }
    .slider-title { font-size: 28px; }
    .slider-subtitle { font-size: 16px; margin-bottom: 25px; }
    .slider-btn { padding: 12px 25px; font-size: 16px; }
}

@media (max-width: 576px) {
    .slider-container { height: 50vh; min-height: 400px; }
    .product-section, .content-section, .info-text-section { padding: 40px 0; }
    .whatsapp-floating-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
    .product-carousel-header { flex-direction: column; align-items: center; gap: 15px; }
    .mobile-nav-toggle { font-size: 24px; padding: 8px; }
    .slider-title { font-size: 24px; }
    .slider-subtitle { display: none; /* Çok küçük ekranlarda alt başlığı gizle */ }
}


/* --- DİĞER STİLLER --- */
@media print {
    body { padding-top: 0 !important; }
    header, .whatsapp-floating-btn, .mobile-nav-toggle { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--turuncu);
    outline-offset: 2px;
}

/* --- YENİ EKLENEN FOOTER STİLLERİ --- */

.footer-social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .footer-social-icons {
        justify-content: center;
    }
}
.footer-social-icons .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.footer-social-icons .social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.social-icon.facebook { background-color: #1877F2; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-icon.twitter { background-color: #1DA1F2; }
.social-icon.whatsapp { background-color: #25D366; }


.yaman-link {
    font-weight: 600;
    color: var(--turuncu);
    padding: 4px 8px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    background-color: transparent;
    border-bottom: 2px solid transparent;
}

.yaman-link:hover {
    background-color: var(--turuncu);
    color: var(--siyah) !important;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(240, 173, 78, 0.6);
    transform: translateY(-2px);
}

.copyright-text {
    align-items: center;
    justify-content: center;
    text-align: center;
}
.kvkk-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--siyah);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.kvkk-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}
.kvkk-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.kvkk-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #666;
}

/* --- MARKALARIMIZ SAYFASI STİLLERİ --- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background-color: var(--beyaz);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    min-height: 250px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brand-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 200px;
}

/* --- LIGHTBOX (MODAL) STİLLERİ --- */
.main-image-container {
    cursor: zoom-in; /* Tıklanabilir olduğunu belirtmek için */
}

.lightbox {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    z-index: 2000; /* Diğer her şeyin üzerinde */
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column; /* İçeriği dikeyde ortalamak için */
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 85vh;
    animation-name: zoom;
    animation-duration: 0.4s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px; /* Dikeyde ortalamak için */
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

