/* ==================================== */
/* 1. TEMEL STİL ve RENK PALETİ */
/* ==================================== */

:root {
    /* Renk Paleti: Oriflame Kurumsalına Yakın Tonlar */
    --color-primary: #8e44ad;   /* Koyu Mor (Ana Vurgu, Butonlar) */
    --color-secondary: #e76c7c; /* Yumuşak Pembe (CTA Arkaplan) */
    --color-background-light: #f5f0e3; /* Açık Bej/Krem (Ana Arkaplan) */
    --color-text-dark: #333333; /* Koyu Gri/Siyah (Metin) */
    --color-highlight-gold: #c39e6a; /* Altın Vurgu */
    --color-footer: #4a4a4a; /* Koyu Gri (Footer Arkaplan) */
    --color-success: #25d366; /* WhatsApp ve Başarı İkonları */

    /* Font Seçimi */
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
}

/* Tüm sayfa ayarları */
body {
    font-family: var(--font-primary);
    background-color: var(--color-background-light);
    color: var(--color-text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Tüm kutu boyutlandırmasını basitleştirir */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Sayfa İçerik Genişliği */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    margin-top: 0;
    line-height: 1.2;
}

/* ==================================== */
/* 2. HEADER (Üst Çubuk, Navigasyon ve Logo) */
/* ==================================== */

header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 2px 0;
    position: relative;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
}

.logo img {
    height: 60px; 
}

/* Masaüstü Menüsü */
.menu {
    display: flex; 
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.menu a:hover {
    color: var(--color-primary);
}

/* Sağ Üst Elemanlar (Dil Seçeneği ve Hamburger) */
.right-header-elements {
    display: flex;
    align-items: center;
    position: relative; 
}

/* Dil Seçeneği Stilleri */
.custom-language-selector {
    position: relative;
    font-size: 0.95rem;
    font-weight: 600;
    margin-right: 20px;
}

.custom-language-selector a {
    color: var(--color-text-dark);
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.custom-language-selector a:hover {
    background-color: #f0f0f0;
}

.custom-language-selector .fa-chevron-down {
    margin-left: 8px;
    font-size: 0.8rem;
}

/* Açılır Menü Stili */
.lang-dropdown {
    display: none; 
    position: absolute;
    top: 100%; 
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 150px;
    z-index: 1050;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.lang-dropdown.active {
    display: block; 
}

.lang-dropdown a {
    display: block;
    border: none;
    padding: 10px 15px;
    font-weight: normal;
}

.lang-dropdown a:hover {
    background-color: var(--color-background-light);
}

/* Hamburger Menü İkonu */
.hamburger-menu {
    display: none; /* Masaüstünde gizli */
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-dark);
}

/* ==================================== */
/* X. AKTİF SAYFA VURGUSU (ACTIVE CLASS) */
/* ==================================== */

/* Masaüstü Navigasyonu */
.menu a.active {
    color: var(--color-primary); /* Ana rengimiz (Koyu Mor) */
    border-bottom: none;
    padding-bottom: 2px; /* Çizgi ile metin arasına boşluk */
}

/* Mobil Navigasyon */
.mobile-nav-container a.active {
    color: var(--color-primary); /* Mobil menüde de mor renk */
    background-color: var(--color-background-light); /* Arkaplanı hafifçe vurgula */
    border-left: 5px solid var(--color-primary); /* Soluna kalın çizgi ekle */
    padding-left: 15px; /* İçeriği it */
}

/* ==================================== */
/* 3. MOBİL AÇILIR MENÜ STİLİ */
/* ==================================== */

.mobile-nav-container {
    display: none; 
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: white;
    z-index: 2000;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-container.active {
    display: flex; 
    transform: translateX(0); 
}

.mobile-nav-container a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.close-btn {
    font-size: 2rem;
    cursor: pointer;
}

/* ==================================== */
/* 4. CTA BUTON STİLLERİ */
/* ==================================== */

.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.button-primary {
    background-color: var(--color-primary);
    color: white;
}

.button-primary:hover {
    background-color: #7b3793;
}

.button-secondary {
    background-color: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.button-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

/* ==================================== */
/* 5. ANASAYFAYA DÖN / GERİ GEL LİNKİ */
/* ==================================== */

.back-to-home {
    display: block;
    margin: 20px auto 0;
    width: 90%;
    max-width: 1200px;
    text-align: left;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    padding-left: 0;
}

.back-to-home i {
    margin-right: 5px;
}

/* ==================================== */
/* 6. ANASAYFA (HERO, GÖVDE, CTA) */
/* ==================================== */


.feature-section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

/* Esnek Yan Yana Düzen */
.feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Mobilde alt alta gelmesi için */
}

/* Zikzak için yer değiştirme */
.feature-row.reverse {
    flex-direction: row;
}

.feature-media, .feature-text {
    flex: 1;
    min-width: 300px;
}

/* Video Tasarımı */
/* YouTube Videolarını Duyarlı Yapma */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Oranı */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.custom-video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Yazı ve Liste Tasarımı */
.feature-text h2 {
    color: #7b3793;
    margin-bottom: 20px;
    font-size: 28px;
}

.feature-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-text li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
}

/* Butonlar */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-primary { background-color: #7b3793; color: white; }
.btn-secondary { background-color: #7b3793; color: white; }

.btn-primary:hover, .btn-secondary:hover {
    transform: scale(1.05);
}

/* MOBİL AYARLAR */
@media (max-width: 768px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column; /* Mobilde her zaman alt alta */
        text-align: center;
    }
}


/* Kartın genel yapısı */
.perfume-card {
    width: 200px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 10px; /* İçeriden hafif boşluk */
    display: flex;
    flex-direction: column;
    align-items: center; /* Her şeyi ortala */
    justify-content: space-between; /* İçeriği dengeli dağıt */
    min-height: 400px; /* Kartların boyunu eşitlemek için */
}

.perfume-card:hover {
    box-shadow: 0 15px 30px rgba(123, 55, 147, 0.15);
    transform: translateY(-5px);
}

.perfume-card img {
    width: 100%;
    height: 140px; /* Resim boyunu biraz kısalttık boşluk azalsın diye */
    object-fit: contain;
    margin-bottom: 5px; /* Altındaki başlığa yaklaştırdık */
}

/* Kartın içindeki yazı alanı */
.perfume-info {
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* İçeriği yukarıdan başlatır */
    flex-grow: 1; /* Yazı alanı kartın kalan boşluğunu doldurur */
}

/* Kartın içindeki paragraf ve başlıkların yanındaki boşlukları dengeler */
.perfume-info h3, 
.perfume-info p, 
.perfume-info .product-code {
    margin-left: auto;
    margin-right: auto;
}

/* Parfüm Başlığı */
.perfume-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    min-height: 45px; /* Sabit değil, 'en az' bu kadar yer kaplasın dedik */
    display: flex;
    align-items: center; /* Kısa isimleri dikeyde ortalar */
    justify-content: center;
}

/* Parfüm Açıklaması */
.perfume-info p {
    font-size: 13px;
    line-height: 1.4;
    min-height: 40px; /* Açıklamalar için de 'en az' yer belirledik */
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ürün Kodu Kutusu */
.product-code {
    background: #fdf7ff;
    border: 1px dashed #7b3793;
    color: #7b3793;
    padding: 5px 10px;
    margin: 10px 0;
    font-size: 13px;
    border-radius: 8px;
    width: fit-content; /* Sadece yazı kadar genişlik kaplasın */
}

.buy-btn {
    background: #7b3793;
    color: white !important;
    text-decoration: none;
    padding: 8px 5px !important; /* Üst-alt az, yanlar çok az boşluk */
    border-radius: 50px;
    font-size: 11px !important; /* Yazıyı bir tık küçülttük ki sığsın */
    font-weight: bold;
    display: block;
    width: 90%; /* Buton karta tam yayılmasın, kibar dursun */
    white-space: nowrap; /* Yazının alt satıra geçmesini engeller */
    text-align: center;
    border-radius: 25px;
}

/* Mobil Ayarı */
@media (max-width: 480px) {
    .perfume-card {
        width: 45%; /* Tek tek görmek istiyorsan 100%, ikişerli istiyorsan 45% yap */
        margin-bottom: 20px;
    }
}




.video-guide-section {
    padding: 50px 20px; /* Kenarlardan 20px boşluk vererek taşmayı önledik */
    background-color: #fdf7ff;
}

/* Kapsayıcıyı tam ortalamak için */
.guide-wrapper {
    display: flex;
    flex-direction: column; /* Masaüstünde de alt alta gelmesi daha dengeli durur */
    align-items: center; /* Ortalar */
    gap: 40px;
}

/* Video ve Metin kutularının genişliğini mobilde güvenli hale getirelim */
.guide-video, .guide-text {
    flex: 1;
    min-width: 280px; /* 320px çok geniş kalabilir, 280px daha güvenli */
    box-sizing: border-box; /* Padding'in genişliğe dahil olmasını sağlar */
    max-width: 800px; /* Videonun devasa olmasını engeller, ideal boyda tutar */
    padding: 0 15px;
    text-align:center; /* Yazılar yine sola yaslı kalsın */
    width: 100%;       /* Bulunduğu yerin tamamını kaplasın */
    margin: 0 auto;    /* Ortada dursun */
}

/* Videonun taşmasını önlemek için */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%; /* Dışarı taşmaması için net genişlik */
    margin: 0 auto; /* Tam ortalama */
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.guide-text h2 {
    color: #7b3793;
    font-size: 26px;
    margin-bottom: 20px;
}

.steps-list {
    list-style: none;
    padding: 0;
    text-align: left; /* Adımlar içeride sola yaslı kalsın ama liste ortada dursun */
    display: inline-block;
}

/* Listenin mobildeki karmaşasını çözen kısım */
.steps-list li {
    display: block; /* Flex yerine block yaparak numara ve yazının iç içe geçmesini önledik */
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.steps-list span {
    display: inline-flex; /* Numaranın metinle aynı satırda başlamasını sağlar */
    background: #7b3793;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    font-size: 14px;
    font-weight: bold;
    vertical-align: middle;
}

.steps-list strong {
    color: #333;
    display: inline; /* Başlığın açıklama ile aynı satırda kalmasını sağlar */
}

.lang-support {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-size: 14px;
    color: #666;
}

.btn-highlight {
    background: #fff;
    color: #7b3793;
    padding: 12px 28px; /* İşte burası butonu küçülten yer */
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px; /* Yazıyı daha estetik boyuta indirdik */
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-highlight:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px); /* Scale yerine hafif yükselme daha moderndir */
}

.international-support p {
    line-height: 1.8;
}

.benefit-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(123, 55, 147, 0.1) !important;
}
.benefit-box h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}




.hero-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    height: 450px; 
}

.hero-box {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 8px;
    overflow: hidden;
}

.hero-box h3, .hero-box p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.body-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.product-showcase, .info-box {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-list {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.product-item {
    text-align: center;
}

.product-item img {
    width: 100px;
    height: auto;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li i {
    color: var(--color-primary);
    margin-right: 8px;
}

.footer-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 40px 0;
}

.cta-shop {
    background-color: var(--color-secondary);
    color: white;
    padding: 50px;
    border-radius: 8px 0 0 8px;
}

.cta-earn {
    background-color: #e3e0d8;
    padding: 50px;
    border-radius: 0 8px 8px 0;
    color: var(--color-text-dark);
}

/* ==================================== */
/* 7. DANIŞMAN OL SAYFASI STİLLERİ */
/* ==================================== */

.consultant-section h1, .consultant-section .subtitle {
    text-align: center;
    margin-bottom: 25px;
}

.consultant-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start; 
    margin-bottom: 40px;
}

.consultant-image {
    flex: 1; 
    max-width: 40%; 
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.consultant-image img {
    width: 100%;
    height: auto;
    display: block;
}

.consultant-form-wrapper {
    flex: 1.5; 
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #fcfcfc;
    text-align: center;
}

.consultant-form-wrapper h2 {
    font-size: 24px;
    color: var(--color-primary); 
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

/* Form Elemanlarını Sola Yaslama ve Büyütme */
        .consultant-form .form-group {
            text-align: left !important;
            margin-bottom: 20px;
        }
        .consultant-form label {
            display: block;
            text-align: left !important;
            margin-bottom: 8px;
            font-weight: 600;
            color: #4a1a5a;
        }

        /* SEO Blok Düzenlemeleri */
        .seo-content-block { 
            margin-top: 60px; 
            padding: 60px 50px; 
            margin-left: 10%; 
            margin-right: 10%;
            background: #fdf7ff; 
            border-radius: 20px; 
            border: 1px solid #7b379322; 
            box-sizing: border-box;
            margin-left: auto;
            margin-right: auto;
        }
        .seo-content-block h2 { color: #7b3793; margin-bottom: 20px; font-size: 28px; text-align: center; }
        .seo-content-block h3 { color: #4a1a5a; margin-top: 25px; font-size: 20px; }
        .seo-content-block p { line-height: 1.8; color: #444; margin-bottom: 15px; }


            /* Liste ve Kart Düzenlemeleri */
        .benefit-list { list-style: none; padding: 0; }
        .benefit-list li { margin-bottom: 12px; padding-left: 30px; position: relative; }
        .benefit-list li::before { content: '✔'; position: absolute; left: 0; color: #7b3793; font-weight: bold; }
        .step-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
        .step-card { background: white; padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }


/* Form giriş kutucuklarını büyütür */
.consultant-form input[type="text"],
.consultant-form input[type="tel"],
.consultant-form input[type="email"],
.consultant-form textarea {
    padding: 15px 12px !important; /* Kutunun içindeki boşluğu artırır */
    font-size: 16px !important;     /* Yazılan yazıların boyutunu büyütür */
    border-radius: 8px !important;  /* Köşeleri biraz daha yumuşatır */
    border: 1px solid #ddd !important;
    width: 100% !important;         /* Kutunun tam genişlikte kalmasını sağlar */
    box-sizing: border-box !important;
}

/* Kutucuğa tıklandığında (odaklanıldığında) oluşacak efekt */
.consultant-form input:focus,
.consultant-form textarea:focus {
    border-color: #7b3793 !important; /* Oriflame moru çerçeve */
    outline: none !important;
    box-shadow: 0 0 8px rgba(123, 55, 147, 0.2) !important;
}

        /* Mobil İçin SEO Bloğu Boşluk Ayarı */
        @media (max-width: 768px) {
            .seo-content-block {
                margin-left: 15px;
                margin-right: 15px;
                padding: 40px 20px;
            }
        }

/* Alt Çağrı Butonları (CTA) */
.cta-buttons-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.whatsapp-large-btn {
    background-color: var(--color-success); /* WhatsApp yeşili */
    color: white;
}

.whatsapp-large-btn:hover {
    background-color: #128C7E;
}


/* ========================================================= */
/* 8. KATALOG YAPISI (KRİTİK DÜZELTMELER BURADA YAPILDI) */
/* ========================================================= */

.catalogue-viewer {
    text-align: center;
    padding: 30px 0;
}

/* Görüntüleme Alanı */
.viewer-frame {
    position: relative;
    width: 800px; /* Genişliği sabitleyin (İki sayfa yan yana sığması için) */
    max-width: 100%;
    margin: 30px auto;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

/* Sayfa Görsellerinin Tutulduğu Kapsayıcı (Genişliği tüm sayfaların toplamı olacak) */
#page-container {
    display: flex;
    transition: transform 0.4s ease-in-out; /* Kaydırma animasyonu */
    width: 100%; 
    height: auto;
}

/* Tek Bir Sayfanın Stili */
.catalogue-page {
    min-width: 50%; /* Her sayfa, viewer-frame'in yarısı genişliğinde olacak (2 sayfa yan yana) */
    height: auto;
}

.catalogue-page img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigasyon Butonları */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-btn:hover {
    opacity: 1;
}

#prev-btn {
    left: 0;
    border-radius: 0 5px 5px 0;
}

#next-btn {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* Mobil Uyumlu: Tek Sayfa Görünümü */
@media (max-width: 850px) {
    .viewer-frame {
        width: 100%;
    }
    .catalogue-page {
        min-width: 100%; /* Mobilde her seferinde tek sayfa gösterilir */
    }
}

/* ==================================== */
/* 7. VİDEO UYUMLULUĞU VE RESPONSIVE STİLİ */
/* ==================================== */

/* Bu kapsayıcı, videonun 16:9 oranını korur */
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 oranı (9 / 16 * 100 = 56.25%) */
    position: relative;
    height: 0;
}

/* iframe VE video etiketlerini hedefle */
.video-responsive iframe,
.video-responsive video { /* BURASI YENİ EKLEME VEYA GÜNCELLEME */
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}


/* ==================================== */
/* 9. SSS SAYFASI STİLLERİ */
/* ==================================== */

.faq-section {
    padding: 30px 0;
}

.faq-section h1 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 40px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    color: var(--color-text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 10px;
}

.faq-answer {
    border-top: 1px solid #eee;
    padding-top: 10px;
    font-size: 0.95rem;
    color: #555;
}
.faq-section { padding: 60px 0; background: #fff; }
.faq-title { text-align: center; color: #7b3793; margin-bottom: 30px; font-size: 28px; }

.accordion { max-width: 800px; margin: 0 auto; border-top: 1px solid #eee; }
.accordion-item { border-bottom: 1px solid #eee; }

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: background 0.3s;
}

.accordion-header:hover { background: #fdf7ff; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.accordion-content p { padding: 20px; color: #666; line-height: 1.6; margin: 0; }

.accordion-item.active .accordion-content { max-height: 200px; }
.accordion-item.active .icon { transform: rotate(45deg); }
.icon { transition: transform 0.3s; font-size: 22px; color: #7b3793; }

.faq-footer { text-align: center; margin-top: 30px; color: #888; }

/* ==================================== */
/* 10. EN ALT BÖLÜM (FOOTER) */
/* ==================================== */

footer {
    background-color: var(--color-footer);
    color: #cccccc;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

.whatsapp-btn {
    background-color: var(--color-success);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 15px 0;
    font-weight: 600;
    display: inline-block; /* Footer'daki WhatsApp butonu */
}

/* ==================================== */
/* 11. MOBİL UYUMLULUK (MEDIA QUERIES) */
/* ==================================== */

/* Tablet Görünümü (992px ve altı) */
@media (max-width: 992px) {
    
    .hero-section {
        grid-template-columns: 1fr 1fr; 
        height: auto;
        gap: 10px;
    }
    
    .body-section {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    /* Danışman Ol sayfası mobil uyumu */
    .consultant-content-wrapper {
        flex-direction: column;
    }

    .consultant-image, .consultant-form-wrapper {
        max-width: 100%;
        flex: none;
        width: 100%;
    }

    .cta-buttons-bottom {
        flex-direction: column; 
        gap: 10px;
    }

    .cta-earn, .cta-shop {
        padding: 30px;
    }
}

/* Mobil Görünüm (768px ve altı) */
@media (max-width: 768px) { 
    
    .menu {
        display: none; 
    }
    
    .hamburger-menu {
        display: block; 
        font-size: 1.5rem;
        cursor: pointer;
        margin-left: 20px; 
        z-index: 1002; 
    }
    

    .custom-language-selector {
        margin-right: 0; /* Boşluğu kaldır */
    }

        /* Dil Butonu Sığdırma Çözümü */
    .custom-language-selector a {
        font-size: 15px;
        padding: 4px 8px;
        white-space: nowrap;
    }
    

    .logo img {
        height: 50px;
    }

    .hero-section {
        grid-template-columns: 1fr; 
        height: auto;
    }
    
    .product-list {
        flex-wrap: wrap; 
    }

    .product-item {
        flex: 1 1 40%; 
    }

    .footer-cta {
        grid-template-columns: 1fr; 
    }
    
    .cta-shop {
        border-radius: 8px 8px 0 0; 
    }
    
    .cta-earn {
        border-radius: 0 0 8px 8px;
    }
    
    /* Katalog mobil uyumu: 
       Bu kısım artık gereksiz, çünkü .catalog-page varsayılan olarak 100% ve 
       851px'te 50% oluyor. Bu çakışmayı kaldırdık.
    */
}

/* Masaüstü Görünümü (851px ve üstü): Çift Sayfa Katalog Ayarı */
@media (min-width: 851px) {
    .catalog-page {
        min-width: 50%; /* Her sayfa, viewer-frame'in yarısı genişliğinde olacak */
        flex-basis: 50%;
        margin-right: 0;
    }
}

/* Google Translate Widget'ı */
.skiptranslate {
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 100px !important;
}

/* Sadece Geniş Ekranlar İçin (Masaüstü) */
@media (min-width: 992px) {
    .guide-wrapper {
        /* Yan yana durmak yerine alt alta gelsinler ki video tam genişlikte büyüsün */
        flex-direction: column; 
    }
}

/* Mobil için ek düzenlemeler */
@media (max-width: 768px) {
    .guide-video {
        width: 100%; /* Videoyu mobil ekrana tam sığdır */
        padding: 0;
        margin-bottom: 20px;
    }
    
    .guide-text h2 {
        font-size: 22px; /* Başlığı mobilde biraz küçültelim */
    }
}




/* SSS Sayfası WhatsApp Yönlendirme Alanı */
.faq-contact-cta {
    background-color: white;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-contact-cta h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.faq-contact-cta p {
    margin-bottom: 25px;
    color: #666;
}

/* Mevcut WhatsApp buton stilini destekleyen ikon boşluğu */
.faq-contact-cta i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* --- YENİ HERO TASARIMI --- */
.new-hero {
    background: #fff;
    padding: 40px 0;
    border-bottom: 2px solid #f0f0f0;
}
.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hero-content {
    flex: 1.5;
    min-width: 300px;
}
.badge {
    background: var(--color-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}
.hero-content h1 {
    font-size: 32px;
    color: var(--color-primary);
    margin: 15px 0;
}
.hero-subtext {
    font-size: 20px;
    margin-bottom: 30px;
}
.btn-wa-big {
    background: #25d366;
    color: white;
    padding: 20px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}
.btn-wa-big:hover { transform: translateY(-3px); background: #20ba5a; color: white; }
.lang-hint { font-size: 13px; margin-top: 10px; color: #666; }

/* --- KATALOG BUTONLARI --- */
.catalog-grid { padding: 30px 0; background: #fdf7ff; }
.grid-layout { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.grid-item {
    background: white;
    border: 1px solid #ddd;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}
.grid-item:hover { background: var(--color-primary); color: white; }

@media (max-width: 768px) {
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 26px; }
}

/* ==================================== */
/* WHATSAPP YENİ NESİL DÜZENLEME */
/* ==================================== */

/* Ana Taşıyıcı: Buton ve Balonu bir arada tutar */
.whatsapp-container {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    display: flex !important;
    flex-direction: row !important; /* Masaüstünde yan yana */
    align-items: center !important;
    justify-content: flex-end !important;
    z-index: 999999 !important;
}

/* Durum Balonu (Tooltip) */
.wa-status {
    background: white !important;
    color: #333 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    margin-right: 0px !important; /* BUTONA YAKINLAŞTIRDIK (Kopukluk giderildi) */
    font-size: 13px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    white-space: nowrap !important;
    border: 1px solid #e0e0e0 !important;
    display: flex !important;
    align-items: center !important;
}

/* WhatsApp Butonu */
.whatsapp-fixed-btn {
    background-color: #25d366 !important;
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 35px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    position: relative !important; /* Sabitliği container sağlıyor artık */
    bottom: auto !important;
    right: auto !important;
}

/* Yanıp Sönen Yeşil Nokta */
.online-dot {
    height: 10px;
    width: 10px;
    background-color: #25d366;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==================================== */
/* MOBİL DÜZENLEME (480px Altı) */
/* ==================================== */
@media screen and (max-width: 480px) {
    .whatsapp-container {
        flex-direction: column-reverse !important; /* Yazı kesinlikle butonun üstünde */
        align-items: flex-end !important;           /* Sağa tam yasla */
        right: 15px !important;
        bottom: 15px !important;
    }

    .wa-status {
        margin-right: 0 !important;
        margin-bottom: 10px !important;
        font-size: 11px !important;      /* Okunabilirlik için 11px idealdir */
        padding: 6px 12px !important;    /* Kutuyu biraz daha ferahlattık */
        max-width: 160px !important;     /* Yazının sıkışmasını engellemek için genişlettik */
        white-space: normal !important;  /* Tek satırda kalmasını zorla (daralmayı önler) */
        width: auto !important;          /* Genişliği içeriğe göre bırak */
        border-radius: 15px !important;
        display: inline flex !important; /* İçeriği (ışık + metin) sarmala */
        align-items: center !important;
        text-align: center !important;
    }

    /* Işığın (Yeşil Nokta) Şekil Bozukluğunu Gideren Kısım */
    .online-dot {
        width: 8px !important;           /* Sabit genişlik */
        height: 8px !important;          /* Sabit yükseklik */
        min-width: 8px !important;       /* Sıkışmasını engellemek için */
        min-height: 8px !important;      /* Sıkışmasını engellemek için */
        border-radius: 50% !important;   /* Tam yuvarlak yap */
        margin-right: 6px !important;
        flex-shrink: 0 !important;       /* Flex içinde ezilmesini önler */
    }

    .whatsapp-fixed-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 28px !important;
    }
}

/* Mobil menüdeki linklerin birbirine girmesini engeller */
.mobile-nav-container a {
    display: block !important;    /* Her linki tam satır yapar */
    width: 100%;                  /* Genişliği tam kullanır */
    padding: 15px 20px;           /* Tıklama alanını rahatlatır */
    line-height: 1.4;             /* Satır aralığını açar */
    word-wrap: break-word;        /* Uzun kelimeleri böler */
    white-space: normal !important; /* Metnin alt satıra geçmesine izin verir */
    border-bottom: 1px solid rgba(255,255,255,0.1); /* Linkler arasına ince bir çizgi atar */
}

/* Masaüstü menü için (isteğe bağlı) */
.menu a {
    display: inline-block;
    white-space: nowrap; /* Masaüstünde yan yana durdukları için tek satır kalsın */
}