/* ================= GENEL AYARLAR ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

/* ================= HEADER & NAV ================= */
.main-header {
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= LOGO AYARLARI (GÜNCEL) ================= */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 70px; /* Logo yüksekliği, header'a sığacak şekilde */
    width: auto;      /* Genişlik orantılı kalsın */
    object-fit: contain;
}

/* Mobilde logo çok büyükse biraz küçültelim */
@media (max-width: 768px) {
    .logo img {
        max-height: 50px;
    }
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
}

.nav-links li a:hover, .nav-links li a.active {
    color: #c9a24d;
}

.admin-btn {
    background-color: #c9a24d;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 4px;
}

/* ================= HERO & BANNER ================= */
.hero-home, .page-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/urun1.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2, .page-banner h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c9a24d;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

/* ================= ÜRÜNLER (GRID - TAMAMEN YAZISIZ) ================= */
.products-section, .featured-products {
    padding: 60px 0;
}

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

.underline {
    width: 60px;
    height: 3px;
    background: #c9a24d;
    margin: 10px auto;
}

.products-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

/* Ana sayfadaki (Featured) ürünlerin yüksekliğini biraz daha dengeli yapabiliriz */
.featured-products .product-img-wrapper {
    height: 350px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

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

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(201, 162, 77, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.product-card:hover .overlay { opacity: 1; }

.view-btn {
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
}

/* TÜM ÜRÜN BİLGİLERİNİ (YAZILARI) HER YERDE KALDIRDIK */
.product-info, .product-desc { 
    display: none !important; 
}

/* ================= HAKKIMIZDA & VİZYON ================= */
.about-section, .mission-vision-content {
    padding: 60px 0;
}

.about-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.gray-bg { background-color: #f0f0f0; padding: 60px 0; }

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.icon-box { font-size: 40px; margin-bottom: 15px; }

/* ================= İSTATİSTİKLER & DEĞERLER ================= */
.about-stats {
    background: #1a1a1a;
    color: white;
    padding: 50px 0;
    text-align: center;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #c9a24d;
}

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

.value-item.box-style {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.value-item.box-style:hover { transform: translateY(-5px); }

/* ================= İLETİŞİM FORMU ================= */
.info-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid #c9a24d;
}

.form-wrapper { background: white; padding: 40px; border-radius: 10px; }

.input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.submit-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 35px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.submit-btn:hover { background: #c9a24d; }

/* ================= FOOTER ================= */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

/* SOSYAL MEDYA İKON DÜZENLEMESİ (GÜNCEL) */
.social img {
    width: 50px;  /* Boyutu 50px yaptık (daha büyük) */
    height: auto;
    /* filter: brightness(0) invert(1); BU SATIRI SİLDİK, ARTIK BEYAZ KUTU OLMAYACAK */
    transition: transform 0.3s;
    display: inline-block;
}

.social img:hover { 
    transform: scale(1.1); /* Hafif büyüme efekti */
}

.copyright { text-align: center; font-size: 13px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .main-header .container { flex-direction: column; gap: 15px; }
    .nav-links { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-content h2 { font-size: 30px; }
    .input-group { grid-template-columns: 1fr; }
    .product-img-wrapper { height: 300px !important; }
}

/* ================= ANA SAYFA ÖZET ALANI (YENİ TASARIM) ================= */
.home-summary {
    padding: 80px 0;
    background-color: #f4f4f4; /* Biraz daha açık gri */
}

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

.summary-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px; /* Köşeleri yumuşattık */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Yumuşak gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent; /* Alt çizgi için hazırlık */
}

/* Üzerine gelince kutu yukarı kalksın ve gölge artsın */
.summary-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 3px solid #c9a24d; /* Altına gold çizgi gelsin */
}

/* İkon Tasarımı */
.icon-wrapper {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    background: #fff8e1; /* Çok açık sarı arka plan */
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%; /* Yuvarlak yaptık */
    color: #c9a24d;
    transition: 0.3s;
}

.summary-box:hover .icon-wrapper {
    background: #c9a24d;
    color: white; /* Hover olunca ikonun rengi değişsin */
    transform: rotateY(180deg); /* Havalı bir dönüş efekti */
}

.summary-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.summary-box p {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Buton Görünümlü Link */
.read-more {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #eee;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
    display: inline-block;
}

.read-more:hover {
    background: #1a1a1a;
    color: #c9a24d;
    border-color: #1a1a1a;
}

/* ================= VİZYON & MİSYON (YENİ TASARIM) ================= */

.split-section {
    padding: 80px 0;
}

.split-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px; /* Bölümler arası boşluk */
}

/* Mobilde alt alta geçmesi için */
@media (max-width: 900px) {
    .split-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    .split-row.reverse {
        flex-direction: column-reverse; /* Resim mobilde üstte kalsın istersen 'column' yap */
    }
}

/* Reverse class'ı olan satırı ters çevir (Misyon kısmı) */
.split-row.reverse {
    flex-direction: row-reverse;
}

/* Metin Alanı */
.split-text {
    flex: 1;
}

.sub-title {
    color: #c9a24d;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.split-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-text p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.vision-list {
    list-style: none;
    margin-top: 20px;
}

.vision-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.vision-list li::before {
    content: '✔';
    color: #c9a24d;
    position: absolute;
    left: 0;
    top: 0;
}

/* Resim Alanı */
.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

/* Resim arkasındaki dekoratif kutu */
.image-deco {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #c9a24d;
    border-radius: 10px;
    top: 20px;
    right: -20px;
    z-index: 1;
}

.image-deco.deco-left {
    right: auto;
    left: -20px;
}

/* ================= DEĞERLER (KART YAPISI) ================= */
.core-values-section {
    padding: 80px 0;
}

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

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

.core-value-card {
    background: white;
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 4px solid transparent;
}

.core-value-card:hover {
    transform: translateY(-10px);
    border-top: 4px solid #c9a24d;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 45px;
    margin-bottom: 20px;
    display: inline-block;
}

.core-value-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.core-value-card p {
    font-size: 14px;
    color: #666;
}

/* ================= LIGHTBOX (RESİM BÜYÜTME) MODAL ================= */
.modal {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    z-index: 2000; /* Header'ın (1000) üzerinde olsun */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Arka plan karartma */
    backdrop-filter: blur(5px); /* Hafif bulanıklık efekti */
}

/* Modal İçindeki Resim */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px; /* Çok geniş ekranlarda devasa olmasın */
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s; /* Açılış animasyonu */
}

/* Kapatma Butonu (X) */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close:hover,
.close:focus {
    color: #c9a24d; /* Bizim gold rengimiz */
    text-decoration: none;
    cursor: pointer;
}

/* Açılış Animasyonu */
@keyframes zoomIn {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* Ürün resimlerinin üzerine gelince büyüteç imleci çıksın */
.product-img-wrapper {
    cursor: zoom-in;
}

/* Mobilde modal ayarı */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 95%;
    }
}

/* ================= HAKKIMIZDA (YENİ MODERN TASARIM) ================= */
.about-creative {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden; /* Taşmaları gizle */
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Görsel Alanı */
.about-img-container {
    position: relative;
    z-index: 1;
}

.about-img-container img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2); /* Derin gölge */
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.about-img-container:hover img {
    transform: scale(1.02);
}

/* Arkadaki Gold Çerçeve Dekoru */
.img-border-deco {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid #c9a24d;
    border-radius: 10px;
    z-index: 1;
    transition: 0.5s;
}

.about-img-container:hover .img-border-deco {
    top: 10px;
    left: 10px;
}

/* Metin Alanı */
.about-content {
    padding-left: 20px;
}

.top-tag {
    color: #c9a24d;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 38px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.gold-line {
    width: 80px;
    height: 4px;
    background: #c9a24d;
    margin-bottom: 25px;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-content strong {
    color: #1a1a1a;
}

/* İmza Alanı */
.signature-area {
    margin-top: 30px;
    border-left: 3px solid #ddd;
    padding-left: 15px;
}

.founder {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-size: 18px;
    color: #333;
}

.brand-name {
    font-weight: bold;
    color: #c9a24d;
    font-size: 14px;
    text-transform: uppercase;
}

/* ================= İSTATİSTİKLER (DARK MODERN) ================= */
.stats-modern {
    background: #1a1a1a; /* Koyu antrasit */
    padding: 80px 0;
    color: white;
    margin-top: 50px;
    position: relative;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    padding: 20px;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px); /* Hafif yukarı kalkma */
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    /* filter satırını tamamen sildik, artık parlamayacak */
}

.stat-number {
    display: block;
    font-size: 48px; /* Rakamları devleştirdik */
    font-weight: 800;
    color: #c9a24d; /* Gold renk */
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 16px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 40px;
    }
    .about-img-container {
        margin-bottom: 20px;
    }
    .img-border-deco {
        display: none; /* Mobilde dekoru kaldırabiliriz, sadelik için */
    }
}

/* ================= İLETİŞİM SAYFASI DÜZELTMESİ ================= */
.contact-info {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid #c9a24d; /* Gold renk */
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #1a1a1a;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* ================= LOGO AYARLARI (GÜÇLENDİRİLDİ) ================= */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 85px; /* Logo boyutunu 70px'ten 85px'e çıkardık */
    width: auto;
    object-fit: contain;
    /* Logoyu arka plandan ayırmak için hafif bir efekt */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05); /* Üzerine gelince hafif büyüsün */
}

/* ================= SOSYAL MEDYA (INSTAGRAM YUMUŞATMA) ================= */
.social img {
    width: 50px;
    height: 50px; /* Tam kare olması için genişlikle aynı yaptık */
    object-fit: cover;
    border-radius: 15px; /* KÖŞELERİ YUMUŞATTIK (Yuvarlak istersen %50 yap) */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Hafif derinlik kattık */
    transition: transform 0.3s, box-shadow 0.3s;
}

.social img:hover { 
    transform: translateY(-3px); /* Hoverda yukarı zıplasın */
    box-shadow: 0 6px 15px rgba(201, 162, 77, 0.4); /* Gold gölge */
}

/* ================= FOOTER LOGO AYARI (YENİ) ================= */
.footer-logo-img {
    max-height: 60px;
    margin-bottom: 15px;
    opacity: 0.9;
}
/* ================= FOOTER ORTALAMA DÜZELTMESİ ================= */
.footer-info {
    display: flex;
    flex-direction: column; /* Alt alta diz */
    align-items: center;    /* Yatayda tam ortala */
    text-align: center;     /* Metinleri ortala */
}

.footer-logo-img {
    margin-bottom: 15px;    /* Altındaki yazılarla mesafe bırak */
    display: block;         /* Blok eleman gibi davran */
    max-height: 70px;       /* Yüksekliği idealleştir */
    width: auto;            /* Genişlik orantılı kalsın */
}

/* ================= SKELETON LOADING (YÜKLEME EFEKTİ) ================= */
.skeleton-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    height: 400px; /* Ürün kartı yüksekliğiyle aynı */
}

.skeleton-image {
    width: 100%;
    height: 100%;
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

/* ================= GENEL AYARLAR ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

/* ================= HEADER & NAV ================= */
.main-header {
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo img {
    max-height: 85px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
}

.nav-links li a:hover, .nav-links li a.active {
    color: #c9a24d;
}

.admin-btn {
    background-color: #c9a24d;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 4px;
}

/* ================= HERO & BANNER ================= */
.hero-home, .page-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/urun1.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2, .page-banner h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c9a24d;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

/* ================= ÜRÜNLER (GRID) ================= */
.products-section, .featured-products {
    padding: 60px 0;
}

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

.underline {
    width: 60px;
    height: 3px;
    background: #c9a24d;
    margin: 10px auto;
}

.products-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: zoom-in;
}

.featured-products .product-img-wrapper {
    height: 350px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

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

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(201, 162, 77, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.product-card:hover .overlay { opacity: 1; }

.view-btn {
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
}

.product-info, .product-desc { 
    display: none !important; 
}

/* ================= FOOTER ================= */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    max-height: 60px;
    margin-bottom: 15px;
    opacity: 0.9;
    display: block;
    width: auto;
}

.social img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social img:hover { 
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(201, 162, 77, 0.4);
}

.copyright { text-align: center; font-size: 13px; }

/* ================= LIGHTBOX (MODAL) ================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s;
}

/* ======================================================= */
/* 1. GENEL AYARLAR & RESET */
/* ======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
    padding-bottom: 70px; /* Mobilde alt menü için yer açtık */
}

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

img {
    max-width: 100%;
    display: block;
}

/* ======================================================= */
/* 2. HEADER & NAV (MENÜ) */
/* ======================================================= */
.main-header {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo img {
    max-height: 85px; /* Boyut büyütüldü */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navigasyon Linkleri */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
}

.nav-links li a:hover, .nav-links li a.active {
    color: #c9a24d;
}

.admin-btn {
    background-color: #c9a24d;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 4px;
}

/* Hamburger Menü İkonu (Desktopta gizli) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* ======================================================= */
/* 3. HERO & BANNER & CTA */
/* ======================================================= */
/* Varsayılan Banner */
.hero-home, .page-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/urun1.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h2, .page-banner h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Sayfalara Özel Bannerlar (Override) */
.banner-urunler { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/urun2.jpg') !important; }
.banner-hakkimizda { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/urun10.jpg') !important; }
.banner-vizyon { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/urun14.jpg') !important; }
.banner-iletisim { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/urun17.jpg') !important; }

/* Butonlar */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c9a24d;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.4);
}
.cta-btn:hover { 
    background-color: #fff; 
    color: #c9a24d; 
    transform: scale(1.05); 
}

/* Ana Sayfa Siyah-Gold CTA Alanı */
.cta-section {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-top: 50px;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/urun1.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.cta-section h2 { font-size: 36px; color: #c9a24d; margin-bottom: 15px; }
.cta-section p { font-size: 18px; color: #ccc; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

.cta-btn-large {
    display: inline-block;
    background-color: #c9a24d;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.4);
}
.cta-btn-large:hover {
    background-color: #fff;
    color: #c9a24d;
    transform: scale(1.05) translateY(-3px);
}

/* ======================================================= */
/* 4. ÜRÜNLER & KARTLAR */
/* ======================================================= */
.products-section, .featured-products { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.underline { width: 60px; height: 3px; background: #c9a24d; margin: 10px auto; }

.products-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(201, 162, 77, 0.2);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: zoom-in;
}

.featured-products .product-img-wrapper { height: 350px; }

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

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

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(201, 162, 77, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.product-card:hover .overlay { opacity: 1; }

.view-btn {
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
}

.product-info, .product-desc { display: none !important; }

/* Skeleton Loading */
.skeleton-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    height: 400px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.skeleton-image {
    width: 100%;
    height: 100%;
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}
@keyframes shine { to { background-position-x: -200%; } }

/* ======================================================= */
/* 5. VİZYON, MİSYON & HAKKIMIZDA */
/* ======================================================= */
.split-section { padding: 80px 0; }
.split-row { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.split-row.reverse { flex-direction: row-reverse; }
.split-text { flex: 1; }
.split-image { flex: 1; position: relative; }

.sub-title {
    color: #c9a24d;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.split-text h3 { font-size: 36px; margin-bottom: 20px; color: #1a1a1a; }
.split-text p { color: #555; margin-bottom: 20px; font-size: 16px; line-height: 1.8; }

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.image-deco {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #c9a24d;
    border-radius: 10px;
    top: 20px;
    right: -20px;
    z-index: 1;
}
.image-deco.deco-left { right: auto; left: -20px; }

/* Değer Kartları */
.gray-bg { background-color: #f0f0f0; padding: 60px 0; }
.values-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.core-value-card {
    background: white;
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 4px solid transparent;
}
.core-value-card:hover {
    transform: translateY(-10px);
    border-top: 4px solid #c9a24d;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.value-icon { font-size: 45px; margin-bottom: 20px; display: inline-block; }

/* Hakkımızda Kreatif */
.about-creative { padding: 100px 0; background-color: #fff; overflow: hidden; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-container { position: relative; z-index: 1; }
.about-img-container img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}
.about-img-container:hover img { transform: scale(1.02); }
.img-border-deco {
    position: absolute; top: -20px; left: -20px; width: 100%; height: 100%;
    border: 5px solid #c9a24d; border-radius: 10px; z-index: 1; transition: 0.5s;
}
.about-img-container:hover .img-border-deco { top: 10px; left: 10px; }
.about-content h3 { font-size: 38px; color: #1a1a1a; line-height: 1.2; margin-bottom: 15px; }
.gold-line { width: 80px; height: 4px; background: #c9a24d; margin-bottom: 25px; }

/* İstatistikler */
.stats-modern {
    background: #1a1a1a;
    padding: 80px 0;
    color: white;
    margin-top: 50px;
}
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}
.stat-number { display: block; font-size: 48px; font-weight: 800; color: #c9a24d; margin-bottom: 5px; }

/* ======================================================= */
/* 6. İLETİŞİM */
/* ======================================================= */
.contact-info { padding: 60px 0; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.info-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}
.info-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid #c9a24d;
}
.card-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.info-card h3 { margin-bottom: 15px; font-size: 20px; color: #1a1a1a; }

/* ======================================================= */
/* 7. ANA SAYFA ÖZET KUTULARI (HOME SUMMARY) */
/* ======================================================= */
.home-summary { padding: 80px 0; background-color: #f4f4f4; }
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.summary-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}
.summary-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 3px solid #c9a24d;
}
.icon-wrapper {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    background: #fff8e1;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    color: #c9a24d;
    transition: 0.3s;
}
.summary-box:hover .icon-wrapper {
    background: #c9a24d;
    color: white;
    transform: rotateY(180deg);
}
.summary-box h4 { font-size: 22px; margin-bottom: 15px; color: #1a1a1a; font-weight: 700; }
.read-more {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #eee;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
    display: inline-block;
}
.read-more:hover { background: #1a1a1a; color: #c9a24d; border-color: #1a1a1a; }

/* ======================================================= */
/* 8. FOOTER */
/* ======================================================= */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 60px 0 20px;
    text-align: center;
}
.footer-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
    margin-bottom: 20px;
}
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-logo-img {
    max-height: 60px;
    margin-bottom: 15px;
    opacity: 0.9;
    display: block;
    width: auto;
}
.social img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.social img:hover { 
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(201, 162, 77, 0.4);
}
.copyright { text-align: center; font-size: 13px; }

/* ======================================================= */
/* 9. MODAL & EFEKTLER */
/* ======================================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s;
}
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
}
.close:hover { color: #c9a24d; }
@keyframes zoomIn { from {transform:scale(0)} to {transform:scale(1)} }

/* WhatsApp Yüzen Buton (Desktop) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #1ebe57; }
.whatsapp-float img { width: 35px; height: 35px; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ======================================================= */
/* 10. MOBİL UYUMLULUK (MEDIA QUERIES) - TEK YERDE TOPLANDI */
/* ======================================================= */
@media (max-width: 900px) {
    .split-row { flex-direction: column; gap: 30px; margin-bottom: 60px; }
    .split-row.reverse { flex-direction: column-reverse; }
    .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .img-border-deco { display: none; }
}

@media (max-width: 768px) {
    /* Header & Menü */
    .main-header .container { flex-direction: row; justify-content: space-between; }
    .hamburger { display: block; z-index: 1001; }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding-bottom: 20px;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    .nav-links li a { font-size: 18px; }
    
    /* Hamburger Animasyonu */
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Ürün Izgarası (2'li) */
    .products-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px;
    }
    .product-img-wrapper, .skeleton-card { height: 200px !important; }
    .product-card { box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

    /* Yazı ve Başlıklar */
    .hero-content h2, .page-banner h2 { font-size: 24px !important; }
    .section-title { font-size: 22px; }
    .hero-home, .page-banner { height: 35vh !important; min-height: 250px; }
    .cta-section { padding: 40px 20px; }

    /* Alt Kısımlar */
    .footer-grid { flex-direction: column; gap: 20px; }
    body { padding-bottom: 70px; }
    .whatsapp-float { display: none !important; }
    
    /* Mobil Alt Menü Görünür Olsun */
    .mobile-bottom-nav { display: flex; }
}

/* ======================================================= */
/* 11. MOBİL ALT MENÜ TASARIMI */
/* ======================================================= */
.mobile-bottom-nav {
    display: none; /* Desktopta gizli, mobilde media query ile açılır */
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.nav-item {
    text-decoration: none;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    flex: 1;
}

.nav-icon { font-size: 20px; margin-bottom: 2px; }

/* Ortadaki Büyük WhatsApp Butonu */
.nav-item.main-action {
    background-color: #25d366;
    color: white;
    padding: 10px;
    border-radius: 50%;
    margin-top: -30px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    border: 4px solid #fff;
    width: 60px;
    height: 60px;
    justify-content: center;
}
.nav-item.main-action .nav-text { display: none; }
.nav-item.main-action .nav-icon { font-size: 28px; margin: 0; }

/* ================= FİLTRELEME BUTONLARI ================= */
.filter-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.filter-btn {
    background: white;
    border: 2px solid #eee;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.filter-btn:hover {
    background: #f4f4f4;
    border-color: #ddd;
}

/* Seçili olan butonun rengi */
.filter-btn.active {
    background: #c9a24d;
    color: white;
    border-color: #c9a24d;
    box-shadow: 0 4px 10px rgba(201, 162, 77, 0.3);
}

/* MEVCUT BANNERLARIN ALTINA EKLE */

/* Sıfır Ürünler Sayfası İçin Banner (Resmi değiştirebilirsin) */
.banner-new { 
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/urun12.jpg') !important; 
    background-position: center; 
    background-size: cover; 
}

/* Yenilenmiş Ürünler Sayfası İçin Banner (Resmi değiştirebilirsin) */
.banner-refurbished { 
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/urun15.jpg') !important; 
    background-position: center; 
    background-size: cover; 
}

/* ================= 404 HATA SAYFASI ================= */
.error-page {
    height: 60vh; /* Ekranın %60'ını kaplasın */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-size: 100px;
    font-weight: 800;
    color: #c9a24d; /* Altın rengi */
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.error-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.error-content p {
    color: #666;
    margin-bottom: 30px;
}

/* Mobilde yazı boyutunu küçültelim */
@media (max-width: 768px) {
    .error-code { font-size: 80px; }
    .error-content h2 { font-size: 24px; }
    .error-actions { display: flex; flex-direction: column; gap: 10px; }
    .error-actions .cta-btn { margin: 0 !important; }
}