@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/*
--- Egemaksan Takım Tezgahları Özel Stil Dosyası (Revizyon 18 - Mobile Nav Overhaul) ---
Renk Paleti:
- Ana Renk (Vurgu): #111111 (Siyah)
- İkincil Renk: #333333 (Koyu Gri)
- Metin Rengi: #444444
- Orta Gri: #6c757d
- Açık Gri (Arka Plan): #f8f9fa
- Beyaz: #ffffff
- Kenarlık: #dee2e6
*/

:root {
    --primary-color: #5b5b5b;
    --secondary-color: #333333;
    --dark-color: #111111;
    --dark-gray: #333333;
    --medium-gray: #6c757d;
    --light-gray: #f8f9fa;
    --white-color: #ffffff;
    --text-color: #444444;
    --border-color: #dee2e6;
    --whatsapp-color: #25D366;
    --faq-bg-color: #0c0c0c;
    --faq-border-color: #2a2a2a;
    --faq-text-color: #aab2bd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style-type: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded-img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Header ve Navigasyon --- */
.header-top-bar {
    background-color: #e8e8e8;
    color: #000000;
    padding: 8px 0;
    font-size: 0.9rem;
}
.header-top-bar .container {
    text-align: right;
}
.phone-info i {
    color: black;
    margin-right: 8px;
}

.site-header {
    background-color: var(--white-color);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease-in-out;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 150px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 65px;
}

.nav-menu > li > a {
    color: var(--dark-gray);
    font-weight: bold;
    padding: 20px 0;
    position: relative;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}
.nav-menu > li.has-megamenu > a i {
    margin-left: 5px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.nav-menu > li.has-megamenu:hover > a i {
    transform: rotate(180deg);
}


.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu > li:hover > a::after,
.nav-menu > li > a.active::after {
    width: 100%;
}
.nav-menu > li > a.active {
    color: var(--primary-color);
}


/* --- Mega Menu --- */
.nav-menu li.has-megamenu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    border-top: 1px solid var(--border-color);
}

.nav-menu li.has-megamenu:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.mega-menu-list li {
    margin: 0;
}

.mega-menu-list a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.mega-menu-list a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateX(5px);
}

/* Tüm Ürünler linki özel stili */
.mega-menu-list .all-products-link {
    background-color: var(--dark-color);
    color: var(--white-color);
    font-weight: bold;
    border: 2px solid var(--dark-color);
    margin-bottom: 10px;
}

.mega-menu-list .all-products-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}


/* --- Mobil Menü --- */
.menu-toggle { display: none; cursor: pointer; width: 30px; height: 22px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after { content: ''; position: absolute; width: 100%; height: 3px; background-color: var(--dark-color); transition: all 0.3s ease; }
.hamburger::before { top: -10px; }
.hamburger::after { bottom: -10px; }
.menu-toggle.active .hamburger { background-color: transparent; }
.menu-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active .hamburger::after { bottom: 0; transform: rotate(-45deg); }

.mobile-contact { display: none; }


/* --- Butonlar --- */
.btn { 
    display: inline-block; 
    padding: 12px 30px; 
    border-radius: 25px; 
    font-weight: bold; 
    text-align: center; 
    transition: all 0.3s ease; 
    cursor: pointer; 
    border: 2px solid transparent; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-primary { background-color: var(--primary-color); color: var(--white-color); border-color: var(--primary-color); }
.btn-primary:hover { background-color: var(--secondary-color); border-color: var(--secondary-color); color: var(--white-color); }
.btn-secondary { background-color: var(--dark-gray); color: var(--white-color); border-color: var(--dark-gray); }
.btn-secondary:hover { background-color: var(--primary-color); border-color: var(--primary-color); color: var(--white-color); }
.btn-sm-primary { font-size: 0.9rem; padding: 8px 15px; border: 1px solid var(--dark-gray); color: var(--dark-gray); background-color: transparent; }
.btn-sm-primary:hover { background-color: var(--dark-gray); color: var(--white-color); }


/* --- Modern Başlıklar --- */

.section-title.text-center {
    text-align: center;
}
.section-title.text-left {
    text-align: left;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    line-height: 1.2;
}

.section-title.text-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.text-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title h3 {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--medium-gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.section-title p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 750px;
    line-height: 1.8;
}
.section-title.text-center p {
    margin: 0 auto;
}
.section-title.text-left p {
    margin: 0;
}


/* --- Hero Alanı --- */
.hero-section { position: relative; width: 100%; height: 800px; color: var(--white-color); }
.hero-slider, .hero-slider .swiper-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-slider .swiper-slide { background-size: cover; background-position: center; display: flex; align-items: center; justify-content: flex-start; }
.swiper-slide {
    opacity: 0;
    transition: opacity 1s;
}
.swiper-slide-active {
    opacity: 1;
    z-index: 1;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; /* Arka plan gradient kapatıldı
background: linear-gradient(to right, rgba(0,0,0,0.8) 10%, transparent 70%);*/ 
z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 650px; text-align: left; padding: 3rem; }
.hero-content h1, .hero-content h2 { font-size: 3.8rem; font-weight: bold; margin-bottom: 20px; line-height: 1.2; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 550px;}

/* Hero Slider Navigasyon */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 4;
}

/* --- Sayfa Başlığı --- */
.page-header { background-color: var(--dark-gray); color: var(--white-color); padding: 60px 0; text-align: center; }
.page-header h1 { font-size: 3rem; font-weight: bold; }
.page-header p { font-size: 1.1rem; opacity: 0.8; }

/* --- Anasayfa Ürünler CTA Bölümü --- */
.products-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.products-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ddd" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ddd" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23ddd" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23ddd" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23ddd" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.btn-products-cta-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white-color);
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 70px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto;
}

.btn-products-cta-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-products-cta-full:hover::before {
    left: 100%;
}

.btn-products-cta-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: var(--white-color);
    text-decoration: none;
}

.btn-products-cta-full i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-products-cta-full:hover i {
    transform: translateX(8px);
}

/* --- Neden Egemaksan Alanı (Yeniden Tasarlandı) --- */

.why-us-section{
    overflow: hidden;
}

.why-us-section .row {
    align-items: stretch; 
}
.feature-list-modern {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.feature-item-modern {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.feature-item-modern:last-child {
    margin-bottom: 0;
}
.feature-list-modern .feature-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 25px;
    background-color: var(--white-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.feature-list-modern .feature-text h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: bold;
}
.feature-list-modern .feature-text p {
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.6;
}

.why-us-collage {
    flex-grow: 1;
    margin-top: 30px;
    position: relative;
    min-height: 300px;
}
.why-us-collage img {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 4px solid var(--white-color);
    transition: all 0.3s ease;
}
.why-us-collage img:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 10;
}
.collage-img-1 { width: 65%; top: 0; left: 0; z-index: 1; transform: rotate(-5deg); }
.collage-img-2 { width: 55%; bottom: 0; right: 0; z-index: 2; transform: rotate(3deg); }
.collage-img-3 { width: 40%; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(8deg); z-index: 3; }



/* --- Popüler Çözümler Alanı --- */
.solution-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--primary-color);
    z-index: 3;
    transition: width 0.3s ease-in-out;
}
.solution-card:hover::before {
    width: 100%;
}
.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background-color 0.3s ease;
}
.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.solution-card:hover img {
    transform: scale(1.05);
    filter: grayscale(100%);
}
.solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
}
.solution-card h3 {
    color: var(--white-color);
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* --- Global Hizmet Alanı --- */
.global-service-section {
    position: relative;
    overflow: hidden;
    background-color: var(--white-color);
}
.world-map-container {
    margin: 40px auto 0;
    position: relative;
    max-width: 800px;
    width: 100%;
    aspect-ratio: 2 / 1;
    background-image: url('img/map.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.map-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(17, 17, 17, 1);
    animation: pulse 2s infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.7);
    }
    70% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 10px rgba(17, 17, 17, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(17, 17, 17, 0);
    }
}

.global-service-section .container {
    position: relative;
    z-index: 2;
}

/* --- Parallax CTA Alanı --- */
.parallax-cta {
    position: relative;
    padding: 120px 0;
    background: url('https://plus.unsplash.com/premium_photo-1680553491336-644d5955ea50?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.parallax-cta .container {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}
.parallax-cta h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}
.parallax-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SSS Alanı --- */
.faq-section { background-color: var(--faq-bg-color); color: var(--faq-text-color); }
.faq-section .section-title h2 { color: var(--white-color); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--faq-border-color); }
.faq-question { background: none; border: none; width: 100%; text-align: left; padding: 25px 0; font-size: 1.2rem; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--white-color); }
.faq-question i { transition: transform 0.3s ease; color: var(--medium-gray); border: 1px solid var(--faq-border-color); border-radius: 50%; width: 30px; height: 30px; display: inline-flex; justify-content: center; align-items: center; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; }
.faq-answer p { padding: 0 0 25px; color: var(--faq-text-color); line-height: 1.8; }
.faq-item.active .faq-question { color: var(--white-color); }
.faq-item.active .faq-question i { transform: rotate(180deg); background-color: var(--primary-color); color: var(--white-color); border-color: var(--primary-color);}
.faq-item.active .faq-answer { max-height: 200px; }

/* --- Hakkımızda Sayfası Ek Stilleri --- */
.mission-vision-alternating .mission-vision-item {
    margin-bottom: 100px;
}
.mission-vision-alternating .mission-vision-item:last-child {
    margin-bottom: 0;
}
.mission-vision-content h3 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}
.mission-vision-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}
.mission-vision-content.text-lg-end h3::after {
    left: auto;
    right: 0;
}
.mission-vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-vision-content.text-lg-end {
    text-align: right;
}
.mission-vision-image img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}


/* --- Hakkımızda Sayfası Ek Stilleri --- */
.mission-vision-box {
    background-color: var(--white-color);
}

.value-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}
.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.value-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stats-counter-section {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1567942712529-57a952a45050?q=80&w=1920') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    color: var(--white-color);
}
.counter-item h3 {
    font-size: 3.5rem;
    font-weight: bold;
}
.counter-item p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* --- Ürün Kartları (Genel) --- */
.product-card-spec { 
    border: 1px solid var(--border-color); 
    border-radius: 8px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    background-color: var(--white-color);
}
.product-card-spec:hover { 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); 
    border-color: var(--primary-color); 
    transform: translateY(-5px);
}
.product-info-spec { padding: 15px; text-align: center; }
.product-info-spec h4 { 
    font-size: 1rem; 
    font-weight: bold; 
    color: var(--dark-color); 
    margin-bottom: 10px; 
}
.product-info-spec a { color: var(--dark-color); }

.spec-table { 
    width: 100%; 
    font-size: 0.8rem; 
    margin-top: 10px;
}
.spec-table td { 
    padding: 3px 5px; 
    border-bottom: 1px solid #f0f0f0; 
}
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table td:first-child { text-align: left; font-weight: bold; }
.spec-table td:last-child {
     text-align: right; color: var(--medium-gray); 
    
    .spec-table td:first-child
    }

/* --- Sidebar --- */
.sidebar { 
    position: -webkit-sticky;
    position: sticky;
    align-self: flex-start;
}
.category-group { 
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}
.category-group-title {
    color: var(--dark-color);
    padding: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.category-list { margin-top: 10px; }
.category-list li { margin-bottom: 2px; }
.category-list a { 
    color: var(--text-color); 
    display: block; 
    padding: 10px 15px; 
    border-radius: 5px; 
    transition: all 0.3s ease; 
    font-size: 0.9rem; 
    position: relative;
}
.category-list a:hover { 
    background-color: var(--white-color); 
    color: var(--dark-color);
    padding-left: 5px;
}
.category-list a.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: bold;
}
.category-list a:hover::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category-list a:hover::before {
    opacity: 1;
}
.category-list a.active:hover::before {
    display: none;
}


/* --- Ürün Detay Sayfası --- */
.breadcrumb { margin-bottom: 30px; color: var(--medium-gray); }
.breadcrumb a { color: var(--text-color); font-weight: bold; }
.product-details-content h1 { font-size: 2.2rem; font-weight: bold; color: var(--dark-color); line-height: 1.3; }
.product-short-desc { font-size: 1.1rem; margin-bottom: 25px; }
.stock-status { font-weight: bold; font-size: 1.1rem; margin-bottom: 25px; display: inline-flex; align-items: center; padding: 8px 15px; border-radius: 5px; }
.stock-status i { margin-right: 10px; font-size: 1.3rem; }
.stock-available { background-color: #d1e7dd; color: #0f5132; }
.stock-unavailable { background-color: #f8d7da; color: #842029; }
.action-buttons { display: flex; flex-wrap: wrap; gap: 15px; }
.action-buttons .btn { flex-grow: 1; text-align: center; }
.btn-whatsapp { background-color: var(--whatsapp-color); color: var(--white-color); border-color: var(--whatsapp-color); }
.btn-whatsapp:hover { background-color: #128C7E; border-color: #128C7E; color: var(--white-color); }
.btn-pdf { background-color: #555; color: var(--white-color); border-color: #555; }
.btn-pdf:hover { background-color: var(--dark-color); border-color: var(--dark-color); color: var(--white-color); }
.action-buttons .btn i { margin-right: 8px; }


.technical-specs h2 { font-size: 1.8rem; border-bottom: 2px solid var(--border-color); padding-bottom: 15px; margin-bottom: 25px; }
.technical-table { width: 100%; border-collapse: collapse; }
.technical-table th { background-color: var(--light-gray); padding: 12px; text-align: left; font-size: 1.2rem; }
.technical-table td { padding: 12px; border: 1px solid var(--border-color); }
.technical-table tr:nth-child(even) { background-color: var(--light-gray); }
.technical-table td:first-child { font-weight: bold; }

/* İletişim Sayfası (Modern) */
.contact-section-modern {
    background-color: var(--light-gray);
}
.contact-form-wrapper { 
    background-color: var(--white-color); 
    padding: 40px; 
    border-radius: 8px; 
    height: 100%; 
    border: 1px solid black;
}
.contact-form-wrapper h3 { font-size: 1.8rem; color: var(--dark-color); margin-bottom: 30px; }

.contact-info-blocks {
    margin-top: 30px;
}
.contact-info-block { 
    margin-bottom: 25px; 
    display: flex; 
    align-items: flex-start; 
}
.contact-info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    background-color: var(--white-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.contact-info-text h4 { color: var(--dark-color); font-size: 1.2rem; margin-bottom: 5px; }
.contact-info-text p, .contact-info-text a { color: var(--medium-gray); margin: 0; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--dark-gray); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 5px; font-family: 'Questrial', sans-serif; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1); }
.map-section iframe { width: 100%; height: 450px; border: 0; }


/* --- Bakım Onarım Servis Formu --- */
.service-form-section {
    background-color: var(--light-gray);
}
.service-form-wrapper {
    background-color: var(--white-color);
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.service-form-wrapper h5 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-top: 20px;
    margin-bottom: 20px;
}
.form-divider {
    margin: 30px 0;
    border-color: var(--border-color);
    opacity: 0.5;
}
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Questrial', sans-serif;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}


/* --- Footer --- */
.site-footer { background-color: #e8e8e8; color: #aab2bd; padding: 60px 0 0 0; }
.footer-widget { margin-bottom: 30px; color: #212121;}
.footer-logo img { margin-bottom: 20px; }
.widget-title { font-size: 1.2rem; color: var(--dark-color); font-weight: bold; margin-bottom: 20px; }
.footer-links li, .footer-contact li { margin-bottom: 10px; color: #212121; }
.footer-links a, .footer-contact a { color: #212121; }

/* Footer Tüm Kategoriler linki özel stili */
.footer-links .footer-all-categories {
    color: var(--primary-color);
    font-weight: bold;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 8px;
    margin-top: 8px;
    display: block;
}

.footer-links .footer-all-categories:hover {
    color: var(--dark-color);
    text-decoration: none;
}

/* Footer kategori linkleri tek satır */
.footer-links li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-links a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-links a:hover, .footer-contact a:hover { color: #594e4e; padding-left: 5px; }

/* Yedek Parça & Aksesuar Kartı Özel Stili */
.spare-parts-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.spare-parts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 1;
}

.spare-parts-card .spare-parts-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.spare-parts-card:hover .spare-parts-icon {
    color: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.spare-parts-card .sub-category-card-overlay {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 20px;
}

.spare-parts-card .sub-category-card-overlay h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.spare-parts-card .sub-category-card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.spare-parts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.spare-parts-card:hover .sub-category-card-overlay {
    background: rgba(0, 0, 0, 0.8);
}
.footer-bottom { border-top: 1px solid #444; padding: 20px 0; text-align: center; margin-top: 30px; color: #212121;}
.footer-bottom p { margin: 0; font-size: 0.9rem; }


/* --- Benzer Ürünler Slider --- */
.related-products-slider {
    position: relative;
}
.related-products-slider .swiper-button-next,
.related-products-slider .swiper-button-prev {
    color: var(--primary-color);
    background-color: var(--white-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.related-products-slider .swiper-button-next:hover,
.related-products-slider .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.related-products-slider .swiper-button-next::after,
.related-products-slider .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}


/* --- Responsive Ayarlar --- */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 2.8rem; }
    .nav-menu li { margin-left: 15px; }
    .nav-menu > li > a { font-size: 0.9rem;}
    .cta-content { margin-bottom: 40px; text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    
    .sidebar { position: static; margin-bottom: 40px; }
    .contact-info-blocks { margin-top: 0; margin-bottom: 40px; }

    /* Mobil Menu Stilleri Başlangıcı */
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--white-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        padding: 100px 0 0 0;
        overflow-y: auto;
        display: flex;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-menu li:first-child {
        border-top: 1px solid var(--border-color);
    }
    .nav-menu > li > a {
        font-size: 1.1rem;
        padding: 20px 30px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .nav-menu > li > a::after {
        display: none;
    }
    .nav-menu .mega-menu {
        display: block !important;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        border-top: none;
        background-color: var(--light-gray);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    .nav-menu li.has-megamenu.open > a i {
        transform: rotate(180deg);
    }
    .nav-menu li.has-megamenu.open > .mega-menu {
        max-height: 500px;
        border-bottom: 1px solid var(--border-color);
    }
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 10px 0;
    }
    .mega-menu-item {
        background: none;
        border-radius: 0;
        box-shadow: none;
        transition: none;
    }
    .mega-menu-item:hover {
        transform: none;
        box-shadow: none;
    }
    .mega-menu-item img {
        display: none;
    }
    .mega-menu-item-content {
        padding: 10px 30px 10px 45px;
    }
    .mega-menu-item-content h4 {
        font-size: 1rem;
        font-weight: normal;
    }
    .mega-menu-item-content .learn-more {
       display: none;
    }
    .mobile-contact {
        display: block;
        margin-top: auto;
        border-top: 1px solid var(--border-color);
        background-color: var(--light-gray);
    }
    .mobile-contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        font-size: 1.1rem;
        color: var(--dark-color);
        font-weight: bold;
    }
    .mobile-contact a i {
        margin-right: 10px;
    }
    /* Mobil Menu Stilleri Bitişi */

    .hero-content{
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .hero-content h1, .hero-content h2 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
    .section-title h2 { font-size: 2.2rem; }
    .product-details-content h1 { font-size: 1.8rem; }
    .action-buttons { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .service-form-wrapper { padding: 30px 20px; }
    
    /* Ürünler CTA Mobil */
    .products-cta-section { padding: 30px 0; }
    .btn-products-cta-full { 
        padding: 18px 40px; 
        font-size: 1.1rem; 
        max-width: 100%;
        min-height: 60px;
        margin: 0 auto;
    }
}

/* Tablet için responsive */
@media (max-width: 992px) {
    .btn-products-cta-full {
        max-width: 500px;
        padding: 18px 50px;
        font-size: 1.2rem;
    }
}

/* Küçük tablet için responsive */
@media (max-width: 576px) {
    .btn-products-cta-full {
        max-width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
        min-height: 55px;
        letter-spacing: 0.5px;
    }
}


.why-us-inspired-collage {
    flex-grow: 1;
    margin-top: 30px;
    position: relative;
    min-height: 400px;
    width: 100%;
}
.collage-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 85.1% 0%, 100% 22%, 100% 100%, 68% 100%, 32% 100%, 0% 100%, 0% 43%, 0% 0%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.collage-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collage-secondary-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 55%;
    border-radius: 8px;
    overflow: hidden;
    border: 5px solid var(--white-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 5;
}
.collage-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collage-experience-box {
    position: absolute;
    bottom: -5%;
    left: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    z-index: 6;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.collage-experience-box .experience-icon {
    font-size: 2.5rem;
    margin-right: 15px;
}
.collage-experience-box .experience-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.collage-experience-box .experience-text strong {
    font-size: 1.5rem;
    font-weight: bold;
}
.collage-decoration-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 100px;
    color: var(--dark-color);
    opacity: 0.08;
    z-index: -1;
    animation: spin 20s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.collage-decoration-line {
    position: absolute;
    bottom: 50px;
    left: -50px;
    z-index: -1;
    opacity: 0.5;
}

.swiper-pagination-bullet-active{
    background: black !important;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    box-shadow: 0 0 3px 2px #ffffff;
    background: white;
    opacity: 1;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

section{
    overflow: hidden;
}

.sub-category-section {
    background-color: var(--light-gray);
}
.sub-category-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1; /* Kare oranını korur */
    background-color: #333;
}
.sub-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.sub-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.8;
}
.sub-category-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}
.sub-category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    padding: 20px;
    text-align: center;
}
.sub-category-card-overlay h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.3s ease;
}
.sub-category-card:hover .sub-category-card-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

/* --- Ürün Kartları Stilleri --- */
.product-card {
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
}

/* --- Breadcrumb Stilleri --- */
.breadcrumb-section {
    background-image: url('uploads/site_images/breadcrumb.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    margin-bottom: 30px;
    background: none;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--medium-gray);
    font-weight: bold;
}

.breadcrumb-item a {
    color: var(--medium-gray);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* --- Ana Kategori Kartları --- */
.main-category-section .sub-category-card {
    height: 250px;
}

.main-category-section .sub-category-card img {
    height: 100%;
    object-fit: cover;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInDown 0.3s ease-out;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert i {
    font-size: 18px;
    flex-shrink: 0;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Form gönderildikten sonra hata durumu */
.form-submitted .form-group input:invalid,
.form-submitted .form-group textarea:invalid,
.form-submitted .form-group select:invalid {
    border-color: #dc3545;
}

.form-submitted .form-group input:valid,
.form-submitted .form-group textarea:valid,
.form-submitted .form-group select:valid {
    border-color: #28a745;
}

/* --- Responsive Düzenlemeler --- */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .breadcrumb-section {
        padding: 10px 0;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
}

.technical-info,
.technical-specs {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.technical-info h2,
.technical-specs h2 {
    display: none;
}

.technical-table .table,
.technical-specs .technical-table {
    margin-bottom: 0;
}

.technical-table .table td,
.technical-specs .technical-table td {
    padding: 0.75rem;
    border-color: #e9ecef;
}

.technical-table .table td:first-child,
.technical-specs .technical-table td:first-child {
    width: 40%;
}

.technical-specs .technical-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.technical-specs .technical-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.product-tabs {
    margin-top: 30px;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 0;
}

.tab-btn {
    border: none;
    border-bottom: 3px solid transparent;
    color: #333;
    font-weight: 500;
    padding: 15px 25px;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.tab-btn:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    background: none;
}

.tab-btn.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    background: none;
    font-weight: 600;
}

.tab-content {
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.standard-accessories {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.standard-accessories h2 {
    display: none;
}

.accessories-content h3,
.accessories-content h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.accessories-content h3:first-child,
.accessories-content h4:first-child {
    margin-top: 0;
}

.accessories-content ul {
    padding-left: 1.5rem;
}

.accessories-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    list-style: circle;
}

/* Ürün Kartları - Yeni Tasarım */
.sku-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: #6c757d;
    margin: 4px 0 8px 0;
    font-style: italic;
}

.spec-table {
    width: 100%;
    margin-top: 8px;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.spec-table td {
    padding: 4px 0;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table td:first-child {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    width: 75%;
    padding-bottom: 5px;
}

.spec-table td:last-child {
    font-weight: 400;
    color: #111;
    font-size: 14px;
    text-align: right;
    width: 25%;
}

.product-card-spec {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-spec:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.product-card-spec img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info-spec {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info-spec h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-info-spec h4 a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-info-spec h4 a:hover {
    color: #007bff;
}

/* 404 Error Page Styles */
.error-404-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-icon {
    position: relative;
    margin-bottom: 2rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1;
    margin-bottom: 1rem;
    text-align:center;
}

.error-gear {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--medium-gray);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align:center;
}

.error-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align:center;
}

.error-actions{
    text-align:center;
}

.error-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align:center;
}

.error-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.suggestion-card {
    display: block;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
}

.suggestion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.suggestion-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.suggestion-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .error-gear {
        font-size: 2rem;
        right: 10%;
    }
}

/* Mobil Filtre Sidebar */
.mobile-filter-toggle {
    display: none;
    margin-bottom: 20px;
}

.filter-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filter-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.filter-btn i {
    font-size: 16px;
}

.sidebar {
    transition: all 0.3s ease;
}

/* Mobil Responsive */











@media (max-width: 991px) {
    .mobile-filter-toggle {
        display: block;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 999;
        padding: 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
        transition: left 0.3s ease;
    }
    
    .sidebar.mobile-open {
        left: 0;
    }
    
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .col-lg-3 {
        width: 100%;
        padding: 0;
    }
    
    .col-lg-9 {
        width: 100%;
    }
}

.product-full-content {

}

.product-full-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.content-body h1, .content-body h2, .content-body h3, 
.content-body h4, .content-body h5, .content-body h6 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.content-body h1 { font-size: 1.8rem; }
.content-body h2 { font-size: 1.6rem; }
.content-body h3 { font-size: 1.4rem; }
.content-body h4 { font-size: 1.2rem; }
.content-body h5 { font-size: 1.1rem; }
.content-body h6 { font-size: 1rem; }

.content-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.content-body ul, .content-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-body li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #555;
}

.content-body ul li {
    list-style-type: disc;
}

.content-body ol li {
    list-style-type: decimal;
}

/* EditorJS Özel Blok Stilleri */
.editorjs-image {
    margin: 1.5rem 0;
    text-align: center;
}

.editorjs-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 0.5rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.editorjs-quote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.editorjs-quote p {
    margin: 0;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.editorjs-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.editorjs-table {
    margin: 1.5rem 0;
    border-collapse: collapse;
    width: 100%;
}

.editorjs-table th,
.editorjs-table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    text-align: left;
}

.editorjs-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.editorjs-code {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow-x: auto;
}

.editorjs-code code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #333;
    background: none;
    padding: 0;
}

.editorjs-gallery {
    margin: 1.5rem 0;
}

.editorjs-gallery img {
    transition: transform 0.3s ease;
}

.editorjs-gallery img:hover {
    transform: scale(1.05);
}

.editorjs-image a:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.product-gallery a:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Responsive EditorJS Blokları */
@media (max-width: 768px) {
    .editorjs-gallery .col-md-4 {
        width: 50%;
    }
    
    .editorjs-quote {
        padding: 0.75rem 1rem;
    }
    
    .editorjs-table {
        font-size: 0.9rem;
    }
    
    .editorjs-table th,
    .editorjs-table td {
        padding: 0.5rem;
    }
}






/* En küçük mobil ekranlar (480px ve altı) */
@media (max-width: 480px) {
    .hero-section {
               height: 40vh;
    }
}

/* Mobil ve tablet arası ekranlar (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-section {
               height: 500px;;
    }
}

/* Tablet ve küçük masaüstü arası ekranlar (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
              height: 600px;
    }
}

/* Geniş masaüstü ekranlar (1025px - 1919px) */
@media (min-width: 1025px) and (max-width: 1919px) {
    .hero-section {
        height: 500px; /* Bu aralık için varsayılan bir değer */
    }
}

/* Çok geniş masaüstü ekranlar (1920px ve üstü) */
@media (min-width: 1920px) {
    .hero-section {
        height: 500px;
    }
}

.product-sku{
    font-weight: 300;
    font-size: 19px;
    margin-bottom: 20px;
}