/* =========================================
   1. ELİT RENK PALETİ VE TEMEL AYARLAR
========================================= */
:root {
    --petrol-ultra-dark: #02060d; 
    --petrol-dark: #071324;
    --petrol-mid: #112240;
    --cream-gold: #F3E1B9; 
    --pure-white: #ffffff;
    --dark-red: #7a0b0b;
    --text-light: #ccd6f6;
    --text-white: #ffffff;
    --text-dark: #333333;
    --premium-red-bg: linear-gradient(135deg, #8a0c0c, #4a0404);
}

body {
    background-color: var(--petrol-dark);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    margin: 0; padding: 0;
}

.brand-font { font-family: 'Playfair Display', serif; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--petrol-ultra-dark); }
::-webkit-scrollbar-thumb { background: var(--cream-gold); border-radius: 10px; }


/* =========================================
   2. EN ÜST SABİT KAYAN DUYURU (TOP TICKER)
========================================= */
.top-ticker {
    position: relative; 
    width: 100%;
    background: var(--cream-gold); color: var(--petrol-ultra-dark);
    padding: 10px 0; z-index: 1060; overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.ticker-move-top {
    display: flex; width: max-content; white-space: nowrap;
    animation: tickerTop 30s linear infinite;
}

.ticker-item-top {
    font-size: 0.85rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; padding: 0 40px; display: inline-flex; align-items: center;
}

@keyframes tickerTop { 
    0% { transform: translateX(0); } 100% { transform: translateX(-50%); } 
}


/* =========================================
   3. BEYAZ NAVBAR VE YENİ DÜZEN (SOLA YASLI)
========================================= */
.navbar-custom {
    position: relative !important; 
    top: 0; 
    width: 100%; 
    z-index: 1050; 
    padding: 15px 0; 
    background-color: #ffffff !important; 
    border-bottom: 1px solid #e5e7eb; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
}

.navbar-custom .nav-link {
    color: #333333 !important; 
    font-size: 14px; font-weight: 700; letter-spacing: 1px;
    margin: 0 10px; transition: color 0.3s; text-transform: uppercase;
}

.navbar-custom .nav-link:hover { 
    color: var(--dark-red) !important; 
}

/* YENİ YEŞİL BUTON (ONLINE ALIŞVERİŞ) */
.btn-online-shop {
    background-color: #198754; 
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 5px; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid #198754;
}

.btn-online-shop:hover {
    background-color: #ffffff;
    color: #198754 !important;
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
    transform: translateY(-2px);
}

/* Logo Ayarları (Masaüstü - Doğal Akışında Sola Yaslı) */
.brand-custom {
    color: var(--petrol-mid) !important; 
    font-size: 30px !important; 
    font-weight: 900; 
    font-style: italic;
    background: transparent !important; 
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    margin-right: 20px;
}

.brand-custom:hover {
    color: var(--dark-red) !important;
}

.brand-custom img {
    max-height: 60px !important; 
    object-fit: contain;
}

/* Açılır Menü (Dropdown) */
.glass-dropdown {
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 5px; 
    padding: 10px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.glass-dropdown .dropdown-item {
    color: #333333; font-size: 13px; text-transform: uppercase;
    letter-spacing: 1px; padding: 8px 20px; transition: all 0.3s; font-weight: 500;
}
.glass-dropdown .dropdown-item:hover {
    background: #f8f9fa; color: var(--dark-red); padding-left: 25px;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu { display: block; margin-top: 0; animation: fadeIn 0.3s ease; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Masaüstü gizli olan, mobilde çıkan menü ikonu */
.menu-btn {
    background: transparent; border: none; 
    color: var(--petrol-mid) !important; 
    font-size: 28px; cursor: pointer; display: none; z-index: 1040; transition: transform 0.3s;
}


/* =========================================
   4. MOBİL TAM EKRAN MENÜ
========================================= */
.mobile-menu-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(2, 6, 13, 0.98); backdrop-filter: blur(25px);
    z-index: 1060; transition: right 0.6s cubic-bezier(0.77,0.2,0.05,1.0);
    display: flex; flex-direction: column; padding: 100px 40px 50px 40px;
}
.mobile-menu-overlay.active { right: 0; }
.close-menu-btn { position: absolute; top: 30px; right: 30px; font-size: 35px; color: var(--cream-gold); background: transparent; border: none; }
.mobile-nav-list { list-style: none; padding: 0; width: 100%; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.mobile-nav-list li { margin: 15px 0; overflow: hidden; }
.mobile-nav-list a { 
    color: var(--text-white); font-size: 28px; text-decoration: none; font-family: 'Playfair Display', serif; 
    display: flex; align-items: center; transition: all 0.4s ease; transform: translateY(100%); opacity: 0;
}
.mobile-nav-list a i { font-size: 20px; margin-right: 15px; color: rgba(255,255,255,0.3); }
.mobile-nav-list a:hover { color: var(--cream-gold); padding-left: 15px; }
.mobile-menu-overlay.active .mobile-nav-list a { transform: translateY(0); opacity: 1; }
.mobile-menu-footer { border-top: 1px solid rgba(243, 225, 185, 0.2); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; opacity: 0; transform: translateY(20px); transition: all 0.5s ease 0.8s; }
.mobile-menu-overlay.active .mobile-menu-footer { opacity: 1; transform: translateY(0); }
.mobile-socials a { color: var(--text-light); font-size: 20px; margin-left: 15px; transition: color 0.3s;}
.mobile-socials a:hover { color: var(--cream-gold); }


/* =========================================
   5. ULTRA LÜKS HERO SLIDER
========================================= */
.premium-hero-section {
    height: calc(100vh - 100px); 
    min-height: 650px; position: relative; overflow: hidden;
    background: radial-gradient(circle at top right, var(--petrol-mid), var(--petrol-dark) 60%, var(--petrol-ultra-dark));
}
.premiumHeroSwiper { width: 100%; height: 100%; }

.massive-bg-text {
    position: absolute; top: 50%; left: 2%; transform: translateY(-50%); font-size: 22vw;
    font-family: 'Playfair Display', serif; font-weight: 900; color: transparent;
    -webkit-text-stroke: 2px rgba(243, 225, 185, 0.06); z-index: 0; white-space: nowrap;
    opacity: 0; transition: all 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.swiper-slide-active .massive-bg-text { opacity: 1; left: 5%; }

.hero-content-lux { padding-top: 20px; opacity: 0; transform: translateY(50px); z-index: 10; transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s; }
.swiper-slide-active .hero-content-lux { opacity: 1; transform: translateY(0); }

.slide-counter { font-size: 1.2rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; letter-spacing: 2px; }
.slide-counter span { color: var(--cream-gold); font-size: 2rem; font-weight: bold; }
.hero-subtitle-lux { font-size: 0.9rem; color: var(--cream-gold); letter-spacing: 4px; margin-bottom: 15px; font-weight: bold; }
.hero-title-lux { font-size: 5.5rem; font-weight: 900; line-height: 1; color: var(--pure-white); margin-bottom: 25px; text-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.hero-title-lux .text-gold { color: var(--cream-gold); font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; }
.hero-desc-lux { font-size: 1.15rem; line-height: 1.7; color: rgba(204, 214, 246, 0.8); max-width: 450px; border-left: 2px solid var(--cream-gold); padding-left: 20px; margin-bottom: 40px; }

.btn-lux-discover {
    display: inline-flex; align-items: center; gap: 15px; background: transparent; color: var(--cream-gold);
    border: 1px solid var(--cream-gold); padding: 15px 35px; border-radius: 50px; font-size: 1rem; font-weight: bold;
    text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: all 0.4s ease;
}
.btn-lux-discover:hover { background: var(--cream-gold); color: var(--petrol-ultra-dark); transform: translateY(-3px); }

.hero-image-lux { display: flex; justify-content: center; align-items: center; position: relative; opacity: 0; transform: scale(0.8) rotate(-5deg); transition: all 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s; z-index: 5; }
.swiper-slide-active .hero-image-lux { opacity: 1; transform: scale(1) rotate(0deg); }

.glow-pedestal { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(243, 225, 185, 0.15) 0%, transparent 70%); border-radius: 50%; z-index: 0; animation: pulseGlow 4s infinite alternate; }
@keyframes pulseGlow { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.2); opacity: 1; } }

.image-wrapper-lux { position: relative; z-index: 2; }
.lux-product-img { width: 500px; height: 500px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(243, 225, 185, 0.3); padding: 15px; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); box-shadow: 0 40px 80px rgba(0,0,0,0.8); animation: floatLux 6s ease-in-out infinite; }
@keyframes floatLux { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }

.floating-badge { position: absolute; background: rgba(7, 19, 36, 0.8); backdrop-filter: blur(15px); border: 1px solid rgba(243, 225, 185, 0.2); color: var(--pure-white); padding: 12px 25px; border-radius: 50px; font-weight: bold; font-size: 0.9rem; box-shadow: 0 15px 35px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 10px; animation: floatLux 5s ease-in-out infinite reverse; }
.glass-badge-1 { top: 10%; right: -5%; }
.glass-badge-2 { bottom: 15%; left: -10%; animation-delay: 1s; }

.premium-slider-controls { position: absolute; bottom: 5%; right: 5%; z-index: 10; display: flex; align-items: center; gap: 20px; }
.lux-pagination { position: relative !important; width: auto !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.3); opacity: 1; width: 10px; height: 10px; transition: 0.4s; }
.swiper-pagination-bullet-active { background: var(--cream-gold); width: 30px; border-radius: 10px; }
.lux-prev, .lux-next { position: static !important; width: 50px; height: 50px; margin: 0; border: 1px solid rgba(243, 225, 185, 0.3); border-radius: 50%; color: var(--cream-gold); transition: 0.3s; }
.lux-prev::after, .lux-next::after { display: none; }
.lux-prev:hover, .lux-next:hover { background: var(--cream-gold); color: var(--petrol-ultra-dark); }


/* =========================================
   6. VİDEOLU TANITIM
========================================= */
.video-promo-section { background: var(--premium-red-bg); padding: 100px 0; position: relative; overflow: hidden; color: var(--pure-white); }
.promo-subtitle { color: var(--cream-gold); font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; }
.promo-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 25px; line-height: 1.1; }
.promo-title span { color: var(--cream-gold); font-style: italic; }
.promo-desc { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.btn-promo-play { background: transparent; border: 2px solid var(--pure-white); color: var(--pure-white); padding: 12px 30px; border-radius: 50px; font-weight: bold; transition: all 0.3s; }
.btn-promo-play:hover { background: var(--pure-white); color: var(--dark-red); }
.promo-video-wrapper { position: relative; border-radius: 20px; z-index: 2; padding: 15px; display: inline-block; width: 100%;}
.video-frame { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 2px solid var(--cream-gold); border-radius: 20px; z-index: -1; transform: translate(20px, 20px); transition: all 0.4s ease; }
.promo-video-wrapper:hover .video-frame { transform: translate(10px, 10px); }
.video-thumbnail { width: 100%; height: 400px; object-fit: cover; border-radius: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.play-btn-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: var(--cream-gold); border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 5; cursor: pointer; color: var(--petrol-ultra-dark); font-size: 24px; animation: pulse-gold-video 2s infinite cubic-bezier(0.66, 0, 0, 1); }
@keyframes pulse-gold-video { to { box-shadow: 0 0 0 25px rgba(243, 225, 185, 0); } }


/* =========================================
   7. HAKKIMIZDA BÖLÜMÜ
========================================= */
.advanced-about { padding: 120px 0; background-color: var(--petrol-dark); position: relative; overflow: hidden; }
.about-text-content h4 { color: var(--cream-gold); font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px;}
.about-text-content h2 { font-size: 3rem; color: var(--text-white); margin-bottom: 25px;}
.about-text-content p { color: var(--text-light); line-height: 1.8; font-size: 1.05rem; margin-bottom: 30px;}
.about-features { display: flex; gap: 30px; margin-bottom: 40px; }
.feature-box { display: flex; align-items: flex-start; gap: 15px; }
.feature-box i { font-size: 24px; color: var(--cream-gold); background: rgba(243, 225, 185, 0.1); padding: 15px; border-radius: 10px; }
.feature-box h5 { color: var(--text-white); font-weight: bold; font-size: 1.1rem; margin-bottom: 5px; font-family: 'Playfair Display', serif;}
.feature-box p { font-size: 0.85rem; color: rgba(204, 214, 246, 0.7); margin: 0; line-height: 1.4;}
.about-image-wrapper { position: relative; padding-right: 30px; padding-bottom: 30px;}
.about-main-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); position: relative; z-index: 2;}
.about-sub-img { position: absolute; bottom: 0; right: 0; width: 55%; border-radius: 20px; border: 5px solid var(--petrol-dark); z-index: 3;}
.about-shape { position: absolute; top: -20px; left: -20px; width: 100px; height: 100px; border-top: 3px solid var(--cream-gold); border-left: 3px solid var(--cream-gold); z-index: 1; border-radius: 10px 0 0 0;}


/* =========================================
   8. İKİLİ BİLGİ ALANI
========================================= */
.split-section { display: flex; flex-wrap: wrap; width: 100%; }
.split-box { flex: 1; min-width: 300px; padding: 100px 10%; display: flex; flex-direction: column; justify-content: center; transition: all 0.5s ease; cursor: default; }
.split-box h2 { font-weight: 800; font-size: 2.2rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; transition: color 0.5s ease;}
.split-box p { font-size: 1rem; line-height: 1.6; margin-bottom: 30px; transition: color 0.5s ease; font-weight: 500;}
.left-box { background-color: var(--cream-gold); }
.left-box h2, .left-box p { color: var(--petrol-ultra-dark); }
.right-box { background-color: var(--petrol-ultra-dark); }
.right-box h2, .right-box p { color: var(--cream-gold); }
.btn-readmore { align-self: flex-start; padding: 10px 25px; background: transparent; font-weight: bold; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: all 0.5s ease; border: 2px solid; }
.left-box .btn-readmore { border-color: var(--petrol-ultra-dark); color: var(--petrol-ultra-dark); }
.right-box .btn-readmore { border-color: var(--cream-gold); color: var(--cream-gold); }
.split-box:hover { background-color: var(--dark-red) !important; }
.split-box:hover h2, .split-box:hover p { color: var(--pure-white) !important; }
.split-box:hover .btn-readmore { border-color: var(--pure-white) !important; color: var(--pure-white) !important; }
.split-box:hover .btn-readmore:hover { background-color: var(--pure-white) !important; color: var(--dark-red) !important; }


/* =========================================
   9. PREMİUM KARE ÜRÜN KARTLARI (GÖLGELİ)
========================================= */
.products-section {
    background: #fdfdfd;
}

/* Kart Ana Yapısı */
.premium-square-card {
    background: #ffffff;
    border-radius: 20px; /* Görseldeki gibi geniş yuvarlak köşeler */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Yumuşak başlangıç gölgesi */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

/* Üzerine Gelince Animasyon */
.premium-square-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12); /* Derin gölge efekti */
}

/* Kare Görsel Kutusu */
.square-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Tam kare formatı */
    overflow: hidden;
    position: relative;
}

.square-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kareyi tam doldurur */
    transition: transform 0.6s ease;
}

.premium-square-card:hover .square-img-wrapper img {
    transform: scale(1.1);
}

/* Bilgi Alanı */
.product-details {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--petrol-ultra-dark);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.product-price {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
}

/* Sepete Ekle Butonu */
.btn-add-cart {
    width: 100%;
    padding: 12px 0;
    background: var(--petrol-mid);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto; /* Butonu hep en alta sabitler */
}

.btn-add-cart:hover {
    background: var(--cream-gold);
    color: var(--petrol-ultra-dark);
    box-shadow: 0 5px 15px rgba(243, 225, 185, 0.4);
}

/* Mobilde Yana Kaydırma Desteği */
@media (max-width: 991px) {
    .mobile-scroll-row {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        padding-bottom: 30px;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
    }
    .mobile-scroll-row > div {
        flex: 0 0 80%;
        max-width: 80%;
    }
}


/* =========================================
   10. GALERİ
========================================= */
.gallery-section { padding: 80px 0; background: #f8f9fa; }
.gallery-item { position: relative; overflow: hidden; border-radius: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); cursor: pointer; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(122, 11, 11, 0.8); display: flex; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--cream-gold); font-size: 30px; transform: scale(0); transition: transform 0.4s ease 0.1s; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }
.modal-gallery-img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 10px; }


/* =========================================
   11. FOOTER ÜSTÜ KAYAN DUYURU (BOTTOM TICKER)
========================================= */
.ticker-wrapper { background: rgba(243, 225, 185, 0.9); padding: 15px 0; overflow: hidden; position: relative; z-index: 10; }
.ticker-move { display: flex; width: max-content; animation: tickerBottom 25s linear infinite; }
.ticker-move:hover { animation-play-state: paused; }
.ticker-item { color: var(--petrol-ultra-dark); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; padding: 0 50px; display: inline-flex; align-items: center; }
.ticker-item i { color: var(--dark-red); margin-right: 10px; font-size: 1.2rem; }
@keyframes tickerBottom { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* =========================================
   12. PREMIUM FOOTER
========================================= */
.premium-footer { background-color: var(--petrol-ultra-dark); padding: 80px 0 0 0; position: relative; color: var(--text-light); }
.footer-logo { font-size: 28px; color: var(--cream-gold); font-weight: bold; font-style: italic; margin-bottom: 20px; display: inline-block;}
.footer-desc { font-size: 0.9rem; line-height: 1.6; margin-bottom: 25px; color: rgba(204, 214, 246, 0.7); }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); color: var(--cream-gold); margin-right: 10px; transition: all 0.3s ease; }
.footer-socials a:hover { background: var(--cream-gold); color: var(--petrol-ultra-dark); transform: translateY(-5px); }
.footer-title { color: var(--text-white); font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 25px; position: relative; padding-bottom: 10px;}
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--cream-gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(204, 214, 246, 0.7); text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; display: inline-flex; align-items: center;}
.footer-links a i { margin-right: 8px; font-size: 10px; color: var(--cream-gold); opacity: 0; transform: translateX(-10px); transition: all 0.3s;}
.footer-links a:hover { color: var(--cream-gold); transform: translateX(5px); }
.footer-links a:hover i { opacity: 1; transform: translateX(0); }
.footer-contact li { display: flex; align-items: flex-start; margin-bottom: 15px; color: rgba(204, 214, 246, 0.7); font-size: 0.9rem; line-height: 1.5;}
.footer-contact i { color: var(--cream-gold); font-size: 18px; margin-right: 15px; margin-top: 3px; }
.footer-bottom { background-color: rgba(0,0,0,0.3); padding: 25px 0; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-text { margin: 0; font-size: 0.85rem; color: rgba(204, 214, 246, 0.5); }


/* =========================================
   13. SABİT ONLİNE ALIŞVERİŞ BUTONU
========================================= */
.fixed-shop-btn {
    position: fixed; bottom: 30px; right: 30px; background: var(--cream-gold); color: var(--petrol-ultra-dark);
    padding: 15px 25px; border-radius: 50px; font-weight: 800; font-size: 1rem; text-decoration: none;
    display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(243, 225, 185, 0.4);
    z-index: 1045; transition: all 0.3s ease; animation: pulse-glow 2s infinite;
}
.fixed-shop-btn:hover { transform: translateY(-5px) scale(1.05); color: var(--pure-white); background: var(--petrol-mid); border: 2px solid var(--cream-gold); box-shadow: 0 15px 40px rgba(243, 225, 185, 0.6); animation: none; }
@keyframes pulse-glow { 0% { box-shadow: 0 0 0 0 rgba(243, 225, 185, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(243, 225, 185, 0); } 100% { box-shadow: 0 0 0 0 rgba(243, 225, 185, 0); } }


/* =========================================
   14. MOBİL UYUM (TÜM BÖLÜMLER İÇİN)
========================================= */
@media (max-width: 991px) {
    /* Navbar ve Ticker */
    .navbar-collapse { display: none !important; }
    
    .navbar-custom {
        min-height: 80px; 
        display: flex;
        align-items: center;
        padding: 0 !important; 
    }

    /* Mobil Menü Butonu (Beyaz, tam yuvarlak, belirgin gölgeli) */
    .menu-btn { 
        display: flex !important; 
        align-items: center; 
        justify-content: center;
        position: absolute; 
        right: 20px; 
        top: 50% !important; 
        transform: translateY(-50%) !important; 
        width: 48px; 
        height: 48px; 
        background: #ffffff !important; 
        color: var(--petrol-mid) !important; 
        border-radius: 50% !important; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important; 
        font-size: 22px;
    }
    
    .menu-btn i { 
        text-shadow: 0 2px 4px rgba(0,0,0,0.2); 
    }
    
    /* Mobil Logo (Sola Yaslı, Çerçevesiz, Temiz) */
    .brand-custom { 
        position: absolute !important; 
        left: 20px !important; 
        top: 50% !important; 
        transform: translateY(-50%) !important; 
        font-size: 26px !important; 
        font-weight: 900 !important;
        padding: 0 !important; 
        background: transparent !important;
        border: none !important; 
        box-shadow: none !important; 
        display: flex;
        align-items: center;
        margin: 0 !important;
    }
    
    .brand-custom img { 
        max-height: 45px !important; 
        border-radius: 0 !important; 
    }
    
    /* Hero Section */
    .premium-hero-section { min-height: 100vh; display: flex; align-items: center; padding-top: 0px; }
    .massive-bg-text { font-size: 35vw; top: 10%; left: 50% !important; transform: translateX(-50%) !important; text-align: center; width: 100%; }
    .swiper-slide-active .massive-bg-text { left: 50% !important; transform: translateX(-50%) !important; }

    .swiper-slide .row { display: flex; flex-direction: column; justify-content: center; text-align: center; width: 100%; margin: 0; }
    
    /* Resim Üstte, Yazı Altta Düzeni */
    .hero-image-lux { order: 1; position: relative; width: 100%; display: flex; justify-content: center; margin-top: 20px; margin-bottom: 30px; }
    .swiper-slide-active .hero-image-lux { transform: scale(1) !important; }
    .lux-product-img { width: 300px; height: 300px; }
    .glow-pedestal { width: 280px; height: 280px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

    .hero-content-lux { order: 2; padding-top: 0; margin-bottom: 20px; opacity: 0; transform: translateY(30px); z-index: 10; }
    .swiper-slide-active .hero-content-lux { transform: translateY(0); }
    .hero-title-lux { font-size: 3.5rem; line-height: 1.1; margin-bottom: 15px; }
    .hero-desc-lux { border-left: none; padding-left: 0; margin: 0 auto 25px auto; font-size: 0.95rem; max-width: 95%; }
    .hero-actions-lux { display: flex; justify-content: center; }

    .glass-badge-1 { top: 0; right: 5%; font-size: 0.75rem; padding: 8px 15px; }
    .glass-badge-2 { bottom: 0; left: 5%; font-size: 0.75rem; padding: 8px 15px; }

    .premium-slider-controls { right: auto; left: 50%; transform: translateX(-50%); bottom: 3%; width: 100%; justify-content: center; gap: 15px; }
    .lux-prev, .lux-next { width: 45px; height: 45px; }
    
    /* Alt Bölümlerin Düzeltilmesi */
    .video-promo-section { text-align: center; }
    .video-frame { transform: translate(10px, 10px); }
    .promo-video-wrapper { margin-top: 30px; }
    
    .advanced-about { padding: 80px 0; text-align: center; }
    .about-features { flex-direction: column; text-align: left; }
    .about-image-wrapper { margin-top: 50px; padding-right: 0;}
    
    .split-box { padding: 60px 20px; }
    .section-title-left { font-size: 2.5rem; text-align: center; }
    .fixed-shop-btn { bottom: 15px; right: 15px; font-size: 0.85rem; padding: 12px 20px; }
}

@media (max-width: 576px) {
    .hero-title-lux { font-size: 2.8rem; word-break: break-word;}
    .lux-product-img { width: 250px; height: 250px; }
    .hero-desc-lux { font-size: 0.85rem; }
    .glass-badge-1 { right: 0; top: 0; font-size: 0.7rem; padding: 6px 12px; }
    .glass-badge-2 { left: 0; bottom: 0; font-size: 0.7rem; padding: 6px 12px; }
    .massive-bg-text { font-size: 40vw; }
}

/* ==========================================================================
   TRUST BANNER (GÜVENLİ ALIŞVERİŞ ALANI)
   ========================================================================== */
.trust-banner-section {
    position: relative;
    background: linear-gradient(135deg, var(--petrol-ultra-dark) 0%, var(--petrol-mid) 100%);
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
    border-top: 2px solid var(--cream-gold);
    border-bottom: 2px solid var(--cream-gold);
}

/* Dekoratif Arka Plan İkonları */
.trust-banner-section .bg-icon {
    position: absolute;
    font-size: 400px;
    color: rgba(243, 225, 185, 0.03); /* Çok hafif transparan altın */
    z-index: 0;
}
.trust-banner-section .left-icon { top: -100px; left: -150px; transform: rotate(-15deg); }
.trust-banner-section .right-icon { bottom: -100px; right: -150px; transform: rotate(15deg); }

/* İçeriklerin İkonların Üstünde Kalması İçin */
.trust-banner-section .container {
    position: relative;
    z-index: 2;
}

.trust-subtitle {
    color: var(--cream-gold);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.trust-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.trust-desc {
    font-size: 1.15rem;
    color: #ccd6f6;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

/* Güven Rozetleri */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badge .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(243, 225, 185, 0.1);
    border: 1px solid rgba(243, 225, 185, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cream-gold);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.trust-badge:hover .icon-box {
    background: var(--cream-gold);
    color: var(--petrol-ultra-dark);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(243, 225, 185, 0.2);
}

.trust-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Güven Rengi Aksiyon Butonu (Yeşil) */
.btn-trust-action {
    display: inline-block;
    background-color: #20c997; /* Güven veren premium yeşil tonu */
    color: var(--petrol-ultra-dark);
    font-size: 1.2rem;
    font-weight: 800;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(32, 201, 151, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #20c997;
}

.btn-trust-action:hover {
    background-color: transparent;
    color: #20c997;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(32, 201, 151, 0.4);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .trust-title { font-size: 2.2rem; }
    .trust-badge .icon-box { width: 60px; height: 60px; font-size: 1.5rem; }
    .trust-badge span { font-size: 0.85rem; }
    .btn-trust-action { font-size: 1rem; padding: 15px 30px; }
}

/* ==========================================================================
   MOBİL SABİT ALT BUTON (STICKY BOTTOM BAR)
   ========================================================================== */
.mobile-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #20c997; /* Güven veren premium yeşil */
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.btn-sticky-shop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
    color: var(--petrol-ultra-dark);
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-sticky-shop:hover,
.btn-sticky-shop:focus {
    background-color: #1aab80;
    color: #ffffff;
}

.btn-sticky-shop i {
    font-size: 1.4rem;
    margin-right: 10px;
}

/* Sepet ikonuna hafif bir kalp atışı (pulse) animasyonu ekleyelim */
.pulse-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ÖNEMLİ: Sabit buton sitenin en altını kapatmasın diye mobilde body'e alttan boşluk veriyoruz */
@media (max-width: 991px) {
    body {
        padding-bottom: 60px; /* Buton yüksekliği kadar boşluk */
    }
}