/* ========================================= */
/* 1. TEMEL AYARLAR                          */
/* ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================= */
/* 2. TOP BAR (ÜST ŞERİT)                    */
/* ========================================= */
.top-bar {
    background-color: #fafafa; 
    color: #555555; 
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    border-bottom: 1px solid #eeeeee; 
}
.top-bar-left span { margin-right: 20px; }
.top-bar-left i { color: #888888; margin-right: 6px; }
.top-bar-right a {
    color: #333333; 
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px; 
    transition: color 0.3s ease, transform 0.3s ease;
}
.top-bar-right a:hover { color: #bfa15f; transform: translateY(-2px); }

/* ========================================= */
/* 3. HEADER (ANA MENÜ)                      */
/* ========================================= */
header {
    background-color: #ffffff;
    padding: 20px 50px;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img { height: 75px; width: auto; }
nav ul { list-style: none; display: flex; gap: 40px; }
nav ul li a {
    text-decoration: none; 
    color: #555555;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease; 
}
nav ul li a:hover { color: #bfa15f; }

.menu-toggle { display: none; font-size: 28px; cursor: pointer; color: #333333; }

/* ========================================= */
/* 4. SLIDER (KAYAN FOTOĞRAFLAR)             */
/* ========================================= */
.slider-container { position: relative; width: 100%; height: 600px; overflow: hidden; }
.slider-wrapper { width: 100%; height: 100%; }
.slide {
    position: absolute; width: 100%; height: 100%; opacity: 0; 
    transition: opacity 0.8s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(60%); }
.slide-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; color: white; width: 80%;
}
.slide-text h2 { font-size: 50px; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.slide-text p { font-size: 22px; }

.prev-btn, .next-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4); color: white; border: none;
    padding: 15px 20px; cursor: pointer; font-size: 30px; transition: 0.3s; border-radius: 5px; z-index: 10;
}
.prev-btn:hover, .next-btn:hover { background-color: rgba(0,0,0,0.8); }
.prev-btn { left: 20px; } .next-btn { right: 20px; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.dot { width: 12px; height: 12px; background-color: rgba(255, 255, 255, 0.4); border-radius: 50%; cursor: pointer; transition: 0.3s ease; }
.dot.active { background-color: #ffffff; transform: scale(1.4); }

/* ========================================= */
/* 5. KOLEKSİYONLAR (YENİ OVAL TASARIM)      */
/* ========================================= */
.featured-products { padding: 80px 50px; text-align: center; background-color: #f9f9f9; }

.section-title { font-size: 36px; color: #222222; margin-bottom: 50px; font-weight: 600; position: relative; display: inline-block; }
.section-title::after { content: ''; width: 60px; height: 3px; background-color: #bfa15f; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); }

/* EKRAN NE KADAR BÜYÜRSE BÜYÜSÜN KUTULARIN UZAMASINI DURDURUR */
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin: 20px auto 0 auto; /* Kutuları ekranın ortasına hizalar */
    max-width: 1200px; /* İşte sihir bu: 1200 pikselde büyümeyi durdur! */
}

.product-card { 
    background: #ffffff;
    border: none; 
    border-radius: 20px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); 
    transition: transform 0.4s ease, box-shadow 0.4s ease; 
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }

/* SİHİRLİ DOKUNUŞ: FOTOĞRAFLARI KUTUYA ÇİVİLER */
.product-image { width: 100%; height: 250px; overflow: hidden; background-color: #f0f0f0; }
.product-image img { 
    width: 100% !important; 
    height: 100% !important; 
    object-fit: cover !important; 
    object-position: center !important;
    display: block;
    transition: transform 0.5s ease; 
}
.product-card:hover .product-image img { transform: scale(1.05); } 

.product-info { padding: 30px 20px; text-align: center; }
.product-info h3 { font-size: 20px; color: #333333; margin-bottom: 10px; }
.product-info p { font-size: 14px; color: #777777; margin-bottom: 25px; line-height: 1.5; }

.btn-incele { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: 8px; 
    padding: 12px 25px; 
    background-color: #1a1a1a; 
    color: #ffffff; 
    text-decoration: none; 
    border-radius: 50px; 
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease; 
}
.btn-incele:hover { 
    background-color: #bfa15f; 
    color: #ffffff;
    padding-right: 20px;
    padding-left: 30px; 
}

/* ========================================= */
/* 6. KAYAN MARKALAR ŞERİDİ                  */
/* ========================================= */
.brands-marquee { background-color: #f9f9f9; padding: 12px 0; border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee; overflow: hidden; white-space: nowrap; position: relative; }
.marquee-track { display: inline-flex; align-items: center; animation: scroll 25s linear infinite; }
.brands-marquee:hover .marquee-track { animation-play-state: paused; }
.brand-item { font-size: 16px; font-weight: 700; color: #aaaaaa; letter-spacing: 2px; text-transform: uppercase; padding: 0 40px; transition: 0.3s; cursor: pointer; }
.brand-item:hover { color: #bfa15f; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========================================= */
/* 7. MÜŞTERİ YORUMLARI                      */
/* ========================================= */
.testimonials { padding: 80px 50px; background-color: #ffffff; text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { background-color: #fafafa; padding: 30px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: transform 0.3s; border: 1px solid #eeeeee; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.stars { color: #bfa15f; margin-bottom: 15px; }
.review-card p { font-style: italic; color: #555555; margin-bottom: 20px; line-height: 1.6; }
.review-card h4 { color: #222222; font-size: 16px; }

/* ========================================= */
/* 8. HAKKIMIZDA SAYFASI                     */
/* ========================================= */
.page-header { background-color: #1a1a1a; color: #ffffff; padding: 60px 20px; text-align: center; }
.page-header h1 { font-size: 40px; margin-bottom: 15px; letter-spacing: 2px; color: #bfa15f;}
.page-header p { font-size: 18px; color: #aaaaaa; font-weight: 300; }

.about-story { display: flex; align-items: flex-start; gap: 60px; padding: 60px 50px; background-color: #ffffff; }
.story-content { flex: 1; padding-top: 20px; }
.story-content h2 { font-size: 32px; color: #222222; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.story-content h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 3px; background-color: #bfa15f; }
.story-content p { font-size: 16px; color: #555555; line-height: 1.8; margin-bottom: 20px; }
.story-image { flex: 1; height: 450px; overflow: hidden; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.story-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; }

.core-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; padding: 60px 50px 80px; background-color: #f9f9f9; text-align: center; }
.value-box { background-color: #ffffff; padding: 40px 30px; border-radius: 20px; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: transform 0.3s ease; }
.value-box:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.value-box i { font-size: 45px; color: #bfa15f; margin-bottom: 20px; }
.value-box h3 { font-size: 20px; color: #222222; margin-bottom: 15px; }
.value-box p { font-size: 15px; color: #777777; line-height: 1.6; }

/* ========================================= */
/* 9. İLETİŞİM SAYFASI                       */
/* ========================================= */
.contact-section { padding: 80px 50px; background-color: #ffffff; }
.contact-container { max-width: 1200px; margin: 0 auto; }
/* İLETİŞİM KUTULARININ UZAMASINI DURDURUR */
.contact-info-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 30px; 
    width: 100%; 
    max-width: 1000px; /* Büyümeyi durdurur */
    margin: 0 auto; /* Ekranda ortalar */
}
.info-card { background: #fafafa; padding: 40px 30px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border-bottom: 5px solid #bfa15f; display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.info-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.info-card i { font-size: 40px; color: #bfa15f; margin-bottom: 20px; }
.info-card h3 { font-size: 18px; color: #222222; margin-bottom: 15px; }
.info-card p { color: #555555; line-height: 1.6; font-size: 14px; }
.full-map { width: 100%; display: block; }
.full-map iframe { display: block; filter: grayscale(15%); }

/* ========================================= */
/* 10. HARİTALI MASTER FOOTER                */
/* ========================================= */
.site-footer { background-color: #1a1a1a; color: #aaaaaa; padding: 60px 50px 20px; font-size: 14px; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo { max-width: 180px; height: auto; margin-bottom: 20px; display: block; }
.footer-col h4 { font-size: 18px; color: #ffffff; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background-color: #bfa15f; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; display: flex; align-items: center; }
.footer-col ul li i { margin-right: 10px; color: #bfa15f; font-size: 16px; }
.footer-col ul li a { color: #aaaaaa; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #ffffff; padding-left: 5px; }

.social-links a { display: inline-block; width: 35px; height: 35px; background: #333333; color: #ffffff; text-align: center; line-height: 35px; border-radius: 50%; margin-right: 10px; transition: 0.3s; }
.social-links a:hover { background: #bfa15f; transform: translateY(-3px); }
.footer-map iframe { width: 100%; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); filter: grayscale(20%); }
.footer-bottom { text-align: center; border-top: 1px solid #333333; padding-top: 20px; font-size: 13px; color: #777777; }

/* ========================================= */
/* 11. SABİT WHATSAPP BUTONU                 */
/* ========================================= */
.floating-wp {
    position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #ffffff;
    width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1000; transition: transform 0.3s; text-decoration: none;
}
.floating-wp:hover { transform: scale(1.1); }

/* ========================================= */
/* 12. MOBİL CİHAZ UYUMU (RESPONSIVE)        */
/* ========================================= */
@media (max-width: 768px) {
    .top-bar { flex-direction: column; gap: 8px; padding: 10px 20px; text-align: center; }
    .top-bar-right a { margin: 0 10px; }
    header { padding: 15px 20px; }
    .menu-toggle { display: block; }
    #nav-menu { position: absolute; top: 100%; left: 0; width: 100%; background-color: #ffffff; box-shadow: 0 5px 10px rgba(0,0,0,0.1); display: none; flex-direction: column; z-index: 999; }
    #nav-menu.active { display: flex; }
    #nav-menu ul { flex-direction: column; gap: 0; }
    #nav-menu ul li { text-align: center; border-bottom: 1px solid #eeeeee; }
    #nav-menu ul li a { display: block; padding: 15px 0; }
    .featured-products, .testimonials, .contact-section { padding: 50px 20px; }
    .site-footer { padding: 40px 20px 20px; }
    .about-story { flex-direction: column; padding: 50px 20px; text-align: center; gap: 30px; }
    .story-content h2::after { left: 50%; transform: translateX(-50%); }
    .story-image { width: 100%; height: 300px; }
    .slider-container { height: 400px; }
    .slide-text h2 { font-size: 30px; }
}

/* ========================================= */
/* 13. ÜRÜNLER / KOLEKSİYON SAYFASI          */
/* ========================================= */
/* ========================================= */
/* 13. ÜRÜNLER / KOLEKSİYON SAYFASI          */
/* ========================================= */
.collection-row {
    display: flex;
    align-items: center;
    justify-content: center; /* SİHİRLİ KOD 1: Dev ekranda içeriği tam merkeze toplar */
    gap: 60px;
    padding: 80px 50px;
    background-color: #ffffff;
}

.collection-row.reverse {
    background-color: #f9f9f9;
}

.collection-img {
    flex: 1;
    max-width: 550px; /* SİHİRLİ KOD 2: Resim kutusunun sakız gibi uzamasını durdurur */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    height: 450px;
}

.collection-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.5s ease;
}

.collection-row:hover .collection-img img {
    transform: scale(1.05); 
}

.collection-info {
    flex: 1;
    max-width: 550px; /* SİHİRLİ KOD 3: Yazıların sonsuza uzamasını engeller, okumayı kolaylaştırır */
}

.collection-info h2 {
    font-size: 36px;
    color: #222222;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.collection-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #bfa15f;
}

.collection-info p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-contact-wp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 15px 30px;
    background-color: #25d366; 
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-contact-wp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.btn-contact-wp i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .collection-row, 
    .collection-row.reverse { 
        flex-direction: column;
        padding: 50px 20px;
        text-align: center;
        gap: 30px;
    }
    .collection-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .collection-img {
        width: 100%;
        height: 300px;
    }
}

/* ========================================= */
/* 14. PREMIUM EFEKTLER & SÜSLEMELER         */
/* ========================================= */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #ffffff; z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.loader-logo { width: 120px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); opacity: 0.7; } }

.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.goster { opacity: 1; transform: translateY(0); }

.floating-wp { animation: wp-pulse 2s infinite; } 
@keyframes wp-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); } }
.wp-tooltip { position: absolute; right: 75px; top: 50%; transform: translateY(-50%); background: #ffffff; color: #222; padding: 8px 15px; border-radius: 20px; font-size: 13px; font-weight: bold; box-shadow: 0 5px 15px rgba(0,0,0,0.1); white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.3s; pointer-events: none; }
.floating-wp:hover .wp-tooltip { opacity: 1; visibility: visible; right: 85px; } 

#backToTop { 
    position: fixed; 
    bottom: 115px; 
    right: 37px; 
    background: #1a1a1a; 
    color: #ffffff; 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    border: none; 
    font-size: 18px; 
    cursor: pointer; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    opacity: 0; 
    visibility: hidden; 
    transition: 0.3s; 
    z-index: 999; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
#backToTop.goster { opacity: 1; visibility: visible; }
#backToTop:hover { background: #bfa15f; transform: translateY(-5px); }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 10000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(5px); }
.modal-overlay.goster { opacity: 1; visibility: visible; }
.modal-content { background: #ffffff; width: 90%; max-width: 600px; padding: 40px; border-radius: 20px; position: relative; transform: scale(0.8); transition: 0.4s ease; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.modal-overlay.goster .modal-content { transform: scale(1); }
.close-modal { position: absolute; top: 20px; right: 25px; font-size: 28px; cursor: pointer; color: #333; transition: 0.3s; }
.close-modal:hover { color: #d9534f; }
.modal-content h2 { color: #222; margin-bottom: 20px; text-align: center; }
.face-guide-item { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px dashed #eee; }
.face-guide-item h4 { color: #bfa15f; margin-bottom: 5px; font-size: 18px; }
.btn-rehber { display: flex; align-items: center; justify-content: center; gap: 10px; width: fit-content; margin: 30px auto; padding: 15px 35px; background: #1a1a1a; color: #fff; border-radius: 50px; border: none; font-size: 16px; cursor: pointer; transition: 0.3s; }
.btn-rehber:hover { background: #bfa15f; transform: translateY(-3px); }

.faq-section { padding: 80px 50px; background: #ffffff; max-width: 900px; margin: 0 auto; text-align: center; }
.faq-item { border-bottom: 1px solid #eeeeee; text-align: left; }
.faq-question { width: 100%; background: none; border: none; font-size: 18px; color: #222; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; transition: color 0.3s; }
.faq-question:hover, .faq-question.active { color: #bfa15f; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #555; line-height: 1.6; font-size: 15px; }
.faq-answer p { padding-bottom: 20px; }