/* style.css - HENSE Care Styles (SEO & Content Rich) */

/* Font Weight Yardımcıları */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }

/* ============================================================
   RENK DÖNÜŞÜM SİHİRBAZI (OVERRIDE)
   ============================================================ */
:root {
    --new-brand-blue: #1b329a;
}
.text-brand-black { color: var(--new-brand-blue) !important; }
.bg-brand-black { background-color: var(--new-brand-blue) !important; }
.border-brand-black { border-color: var(--new-brand-blue) !important; }
.hover\:text-brand-black:hover { color: var(--new-brand-blue) !important; }
.hover\:bg-brand-black:hover { background-color: var(--new-brand-blue) !important; }
.hover\:border-brand-black:hover { border-color: var(--new-brand-blue) !important; }
.focus\:border-brand-black:focus { border-color: var(--new-brand-blue) !important; }
[class*="bg-[#000b75]"] { background-color: var(--new-brand-blue) !important; }

/* ============================================================
   YENİ EKLENEN SEO & İÇERİK MODÜLLERİ STİLLERİ
   ============================================================ */

/* 1. Ürün Detay: Video Alanı */
.product-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    background-color: #000;
}
.product-video-container iframe, 
.product-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 2. Ürün Detay: Yorumlar ve Yıldızlar (Social Proof) */
.star-rating { color: #d4af37; font-size: 1.2rem; letter-spacing: 2px; }
.review-card { border-bottom: 1px solid #e8dcd8; padding: 1.5rem 0; }
.review-card:last-child { border-bottom: none; }
.review-author { font-weight: 600; color: var(--new-brand-blue); font-size: 0.95rem; text-transform: uppercase; }
.review-date { font-size: 0.8rem; color: var(--new-brand-blue); opacity: 0.6; }
.verified-badge { background-color: #d4af37; color: white; padding: 3px 8px; font-size: 0.65rem; border-radius: 2px; margin-left: 10px; text-transform: uppercase; letter-spacing: 1px; }

/* 3. İçerik Sözlüğü (Ingredients Glossary) */
.ingredient-card {
    background: white;
    border: 1px solid #e8dcd8;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 4px;
}
.ingredient-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.ingredient-letter {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e8dcd8;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Gotham', 'Montserrat', sans-serif;
}

/* 4. Tablo Yapısı (Detay Sayfası Sekmeleri) */
.detail-tab-btn {
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--new-brand-blue);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0.6;
    white-space: nowrap;
}
.detail-tab-btn:hover { opacity: 1; color: #d4af37; }
.detail-tab-btn.active {
    opacity: 1;
    border-bottom-color: #d4af37;
    font-weight: 600;
}
.tab-content { display: none; animation: fadeIn 0.5s; }
.tab-content.active { display: block; }

/* 5. B2B / Private Label Özel İkonları */
.b2b-feature-icon {
    width: 70px;
    height: 70px;
    background: #dbe6fd;
    color: var(--new-brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.group:hover .b2b-feature-icon {
    background: var(--new-brand-blue);
    color: white;
    transform: scale(1.1);
}

/* ============================================================ */

/* SLIDER EFEKTLERİ */
.slide { transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out; opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; transform: scale(1.05); }
.slide.active { opacity: 1; z-index: 10; transform: scale(1); }
.slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.thumb { transition: all 0.3s ease; border: 2px solid transparent; }
.thumb.active-thumb { border-color: #d4af37; transform: scale(1.1); opacity: 1; }

/* SAYFA GEÇİŞ VE YÜKLEME */
.page-section { display: block; opacity: 1; padding-top: 130px; min-height: 100vh; animation: fadeIn 0.5s ease-out forwards; }
.home-section { padding-top: 0 !important; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #b5952f; }

/* LOADER */
#loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #f9f7f2; z-index: 100; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s ease; pointer-events: none; animation: forceHideLoader 0.5s ease-out 1.5s forwards; }
@keyframes forceHideLoader { 0% { opacity: 1; visibility: visible; } 99% { opacity: 0; visibility: hidden; } 100% { opacity: 0; display: none; z-index: -9999; visibility: hidden; } }

.golden-line { height: 2px; width: 24rem; background: linear-gradient(90deg, rgba(212,175,55,0) 0%, rgba(212,175,55,1) 50%, rgba(212,175,55,0) 100%); margin-left: auto; margin-right: auto; border-radius: 100%; opacity: 0.8; }

.chrome-loader-text { font-family: 'Gotham', 'Montserrat', sans-serif; font-weight: 600; font-size: 3.5rem; letter-spacing: 0.2em; text-transform: uppercase; background: linear-gradient(135deg, #1b329a 0%, #2563eb 20%, #ffffff 45%, #2563eb 55%, #1b329a 70%, #ffffff 85%, #1b329a 100%); background-size: 300% 100%; color: #1b329a; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: chromeShine 4s linear infinite; }
@keyframes chromeShine { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

::selection { background: #d4af37; color: #ffffff; }
::-moz-selection { background: #d4af37; color: #ffffff; }

/* ÜRÜN VE MAKALE KARTLARI */
.article-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.article-prose p { margin-bottom: 1.5rem; line-height: 1.8; font-size: 1.1rem; color: #1b329a; font-weight: 300; }
.article-prose h3 { font-family: 'Gotham', 'Montserrat', sans-serif; font-weight: 500; font-size: 1.5rem; color: #1b329a; margin-top: 2.5rem; margin-bottom: 1rem; }
.article-prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-prose li { margin-bottom: 0.5rem; color: #1b329a; font-weight: 300; }

/* MENÜLER VE DROPDOWN */
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: rgba(27, 50, 154, 0.95); min-width: 220px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); z-index: 60; border-top: 3px solid #d4af37; padding: 0; animation: fadeIn 0.3s ease-out; }
.group:hover .dropdown-menu { display: block; }
.dropdown-item { display: block; padding: 15px 25px; color: #ffffff; font-weight: 400; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; transition: all 0.3s ease; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background-color: transparent; color: #d4af37; padding-left: 30px; }

/* MEGA MENU */
.mega-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: rgba(27, 50, 154, 0.95); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); z-index: 60; border-top: 3px solid #d4af37; padding: 2.5rem 2.5rem; animation: fadeIn 0.3s ease-out; }
.group:hover .mega-menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mega-menu-col h3 { color: #ffffff !important; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.5rem; padding-bottom: 0; border-bottom: none; font-weight: 700; transition: color 0.3s ease; cursor: default; }
.mega-menu-col h3:hover { color: #d4af37 !important; }
.mega-menu-link { display: block; color: #ffffff !important; background-color: transparent !important; font-size: 1.05rem; padding: 0.75rem 0; transition: all 0.3s ease; font-weight: 300; text-decoration: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.mega-menu-link:hover { color: #d4af37 !important; transform: translateX(5px); border-bottom-color: #d4af37; }

/* FAQ STİLLERİ */
.faq-item { border-bottom: 1px solid #e8dcd8; }
.faq-item:last-child { border-bottom: none; }
.faq-button { width: 100%; text-align: left; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-family: 'Gotham', 'Montserrat', sans-serif; font-weight: 500; color: #1b329a; transition: color 0.3s; }
.faq-button:hover { color: #d4af37; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-content.open { max-height: 500px; }
.faq-icon { transition: transform 0.3s ease; }
.faq-button.active .faq-icon { transform: rotate(45deg); }
