@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #C6CDD4;
    --bg-white: #ffffff;
    --text-primary: #1c1c1c;
    --text-secondary: #555555;
    --accent-red: #e31e24;
    --whatsapp-green: #25d366;
    --border-color: #ededed;
    --card-bg: #fdfdfd;

    /* SERAMİK/BANYO/MUTFAK... 6'lı kutu grubunun, masaüstünde slider'ın üzerine
       ne kadar taşacağını buradan ayarlayın. Sayı ne kadar KÜÇÜK (daha eksi/negatif)
       olursa kutular o kadar YUKARI çıkar (örn. -220px, -150px'ten daha yukarıda olur).
       Sadece bu tek satırı değiştirmeniz yeterli - başka hiçbir yeri düzenlemenize
       gerek yok. */
    --hero-categories-lift-desktop: -190px;
}

/* =====================================================================
   KOYU MOD / GECE MODU
   Site, her sayfada kendi renk kodlarıyla (CSS değişkeni kullanmadan)
   elle tasarlanmış onlarca bölüm içeriyor - bu yüzden "birkaç rengi
   değiştir" yöntemi sadece birkaç yeri kapsayıp geri kalan her yerde
   (beyaz kutular, okunmaz koyu metinler) bozuk görünüme yol açıyordu.
   Onun yerine TÜM SAYFAYI TEK BİR FİLTREYLE ters çeviriyoruz - bu,
   hangi rengin nerede/nasıl yazıldığından bağımsız olarak, sayfadaki
   HER ŞEYİ (sabit renk kodları dahil) tutarlı şekilde karartır.
   Görseller/videolar ayrıca ters çevrilip normal renklerine
   döndürülüyor ki fotoğraflar "negatif" gibi görünmesin.
   ===================================================================== */
html[data-theme="night"] {
    filter: invert(1) hue-rotate(180deg);
    background: #fff;
    will-change: filter;
}

html[data-theme="night"] img:not(.site-footer img):not(.main-slider img),
html[data-theme="night"] video:not(.site-footer video):not(.main-slider video),
html[data-theme="night"] iframe:not(.site-footer iframe):not(.main-slider iframe),
html[data-theme="night"] picture:not(.site-footer picture):not(.main-slider picture),
html[data-theme="night"] .showroom-grid .card,
html[data-theme="night"] .site-footer,
html[data-theme="night"] .main-slider {
    filter: invert(1) hue-rotate(180deg);
}

html, body {
    transition: filter 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img, video, iframe {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    /* Sitenin genelindeki soğuk mavi-gri tonuyla (body arka planı --bg-main
       ve footer ile aynı renk ailesinden) uyumlu olsun diye o tondan koyu
       bir versiyon türetildi - önceki gri (#A2A0A5 ve ondan koyulaştırılan
       #8A888C) neredeyse tondan yoksundu ve siteye hakim mavimsi griyle
       uyuşmuyordu */
    background-color: #8594A3;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1001;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.site-logo-img {
    height: 48px;
    width: auto;
    display: block;
}
@media (min-width: 1025px) {
    .site-logo-img {
        height: 68px;
    }
}
.footer-logo-img {
    display: block;
    height: auto;
    width: auto;
    max-height: 150px;
    margin-bottom: 2px;
    transform: none;
    transform-origin: initial;
    max-width: 100%;
    position: relative;
    z-index: 1;
}
.site-footer .footer-logo-img {
    transform: none !important;
}
@media (max-width: 600px) {
    .site-logo-img { transform: none; }
}

.logo span { color: var(--accent-red); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px 16px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    white-space: nowrap;
}

.nav-links a {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent-red); }

.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; margin-top: 0;
    background: #fff; border: 1px solid var(--border-color); border-radius: 12px;
    list-style: none; min-width: 220px; display: none; z-index: 10;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    padding: 8px; overflow: hidden;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li + li { border-top: 1px solid #f2f2f2; }
.dropdown-menu li a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; font-size: 14.5px; font-weight: 500; color: #333;
    border-radius: 8px; letter-spacing: 0.2px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.dropdown-menu li a::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: #b08d57; opacity: 0; transition: opacity 0.2s ease;
    flex-shrink: 0;
}
.dropdown-menu li a:hover {
    background: linear-gradient(90deg, #faf7f2, #fff);
    color: #b08d57; padding-left: 18px;
}
.dropdown-menu li a:hover::before { opacity: 1; }

.homepage-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 750px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateZ(0);
    isolation: isolate;
}

.main-slider .slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    z-index: 0;
}

.main-slider .slide.active {
    display: block !important;
    z-index: 1;
}

.slider-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.65);
    z-index: 2;
}

.slider-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    max-width: 800px;
}

.slider-content h2 {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 700;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 15px;
}

.slider-content p {
    font-size: clamp(12px, 1.5vw, 15px);
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: #1c1c1c;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}

.slider-btn:hover {
    background-color: var(--accent-red);
    color: #fff;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.category-section-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 10;
}

.hero-categories {
    margin-top: var(--hero-categories-lift-desktop, -150px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-strip-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.category-strip-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 60%;
}

.cat-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1.3;
    margin-bottom: 8px;
}

.cat-sub {
    font-size: 11px;
    font-weight: 600;
    color: #777;
}

.card-img-box {
    width: 35%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-strip-card:nth-child(-n+3) .card-img-box {
    align-items: flex-end;
    padding-bottom: 10px;
}

.category-strip-card:nth-child(n+4) .card-img-box {
    align-items: flex-start;
    padding-top: 10px;
}

.card-img-box img {
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
}

.main-content {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.brand-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    text-align: center;
    color: #aaa;
}

.fixed-teklif-btn {
    position: fixed; bottom: 20px; right: 20px;
    background-color: var(--accent-red); color: #fff;
    padding: 10px 20px; font-size: 11px; font-weight: 700;
    border-radius: 20px; box-shadow: 0 4px 12px rgba(227,30,36,0.25);
    z-index: 1000; letter-spacing: 0.5px;
}

.fixed-whatsapp-btn {
    position: fixed; bottom: 20px; left: 20px;
    background-color: var(--whatsapp-green); color: #fff;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 24px; box-shadow: 0 4px 12px rgba(37,211,102,0.25);
    z-index: 1000;
}

.music-toggle-btn {
    position: fixed; bottom: 144px; left: 20px; z-index: 1000;
    width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--bg-white); color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    display: none; align-items: center; justify-content: center; font-size: 18px;
}
.music-toggle-btn.visible { display: flex; }
.music-toggle-btn.playing { color: var(--accent-red); }
.music-toggle-btn .fa-music { animation: none; }
.music-toggle-btn.playing .fa-music { animation: music-pulse 1.4s ease-in-out infinite; }
@keyframes music-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

@media (max-width: 600px) {
    .music-toggle-btn { bottom: 140px; }
}

.theme-switcher { position: fixed; bottom: 82px; left: 20px; z-index: 1000; }
.theme-switcher-btn {
    width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--bg-white); color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.theme-switcher-menu {
    display: none; position: absolute; bottom: 60px; left: 0;
    background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18); padding: 8px; min-width: 150px;
}
.theme-switcher.open .theme-switcher-menu { display: block; }
.theme-switcher-menu button {
    display: flex; align-items: center; gap: 10px; width: 100%;
    background: none; border: none; cursor: pointer; text-align: left;
    padding: 9px 10px; border-radius: 8px; font-size: 13px; font-weight: 600;
    color: var(--text-primary);
}
.theme-switcher-menu button:hover { background: var(--bg-main); }
.theme-switcher-menu button.active { color: var(--accent-red); }
.theme-switcher-menu .dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; border: 1px solid var(--border-color); }
.theme-dot-light { background: #ffffff; }
.theme-dot-night { background: #0c0d10; }

@media (max-width: 600px) {
    .theme-switcher { bottom: 78px; }
}

@media (max-width: 1024px) {
    .nav-container { padding: 18px 20px; }
    .hero-categories {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -60px;
    }
}

@media (max-width: 1440px) {
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .main-slider {
        height: 85vh;
        min-height: 550px;
    }

    .slider-btn {
        width: 35px; height: 35px; font-size: 14px;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }

    .hero-categories {
        grid-template-columns: 1fr;
        margin-top: -15px;
        gap: 15px;
    }

    .category-strip-card {
        height: 120px;
        padding: 15px;
    }

    .cat-title { font-size: 13px; margin-bottom: 4px; }
    .card-img-box img { max-height: 60px; }
    
    .main-content { margin: 40px auto; }
}
.logo h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
}

.logo .logo-white {
    color: #ffffff;
    text-shadow: 
        -1px -1px 0 #1c1c1c,  
         1px -1px 0 #1c1c1c,
        -1px  1px 0 #1c1c1c,
         1px  1px 0 #1c1c1c;
    margin-right: 4px;
}

.logo .logo-blue {
    color: #0056b3;
}

.logo .logo-red {
    color: var(--accent-red);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 1440px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        display: none;
        z-index: 1000;
    }

    nav.active {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        padding-left: 15px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
.about-text {
    flex: 1;
    padding: 20px 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.about-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-text {
        padding: 15px;
        text-align: left;
    }
    .about-text h2 {
        font-size: 22px;
    }
}

.header-container { display: flex; align-items: center; gap: 16px; }

.nav-search-btn {
    background: none; border: none; cursor: pointer; padding: 6px;
    display: flex; align-items: center; justify-content: center;
    color: inherit; opacity: 0.85; transition: opacity 0.2s ease;
    flex-shrink: 0;
}
.nav-search-btn:hover { opacity: 1; }
.nav-search-btn svg { width: 19px; height: 19px; }

.site-search-overlay {
    display: none; position: fixed; inset: 0; z-index: 10000;
    background: rgba(15, 15, 20, 0.6); backdrop-filter: blur(2px);
    padding: 8vh 20px; overflow-y: auto;
}
.site-search-overlay.open { display: block; }

.site-search-box {
    max-width: 620px; margin: 0 auto; background: #fff; border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35); overflow: hidden;
}
.site-search-input-row { display: flex; align-items: center; border-bottom: 1px solid #eee; padding: 4px 8px; }
.site-search-input-row svg { width: 20px; height: 20px; color: #999; margin: 0 10px; flex-shrink: 0; }
.site-search-input {
    flex: 1; border: none; outline: none; font-size: 1.15rem; padding: 18px 8px;
    font-family: inherit; color: #222;
}
.site-search-close {
    border: none; background: #f2f2f2; color: #555; width: 34px; height: 34px; border-radius: 50%;
    cursor: pointer; font-size: 1.1rem; flex-shrink: 0; margin-left: 8px; transition: background 0.2s ease;
}
.site-search-close:hover { background: #e5e5e5; }

.site-search-results { max-height: 60vh; overflow-y: auto; }
.site-search-hint, .site-search-empty { padding: 30px 24px; color: #999; text-align: center; font-size: 0.95rem; }

.site-search-result-item {
    display: flex; align-items: center; gap: 14px; padding: 12px 20px; text-decoration: none;
    color: inherit; border-bottom: 1px solid #f5f5f5; transition: background 0.15s ease;
}
.site-search-result-item:last-child { border-bottom: none; }
.site-search-result-item:hover { background: #f7f9fc; }
.site-search-result-item img {
    width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: #f0f0f0;
}
.site-search-result-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.site-search-result-name { font-weight: 700; color: #111; font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-search-result-cat { font-size: 0.8rem; color: #888; }

@media (max-width: 600px) {
    .site-search-overlay { padding: 5vh 12px; }
    .site-search-input { font-size: 1rem; padding: 14px 6px; }
}

.img-skeleton {
    position: relative;
    overflow: hidden;
    background-color: #ececec;
}
.img-skeleton::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.image-wrapper img,
.gallery-main img,
.card-img-box img,
.site-search-result-item img {
    opacity: 1;
    transition: opacity 0.35s ease;
}
.image-wrapper img:not(.img-loaded),
.gallery-main img:not(.img-loaded),
.card-img-box img:not(.img-loaded),
.site-search-result-item img:not(.img-loaded) {
    opacity: 0;
}

.error-page-wrapper {
    max-width: 640px; margin: 90px auto; padding: 0 20px; text-align: center;
}
.error-code {
    font-size: 7rem; font-weight: 800; color: #0056b3; line-height: 1; margin-bottom: 10px;
    letter-spacing: -2px;
}
.error-title { font-size: 1.6rem; color: #222; margin-bottom: 14px; font-weight: 700; }
.error-text { font-size: 1rem; color: #666; line-height: 1.7; margin-bottom: 35px; }
.error-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 45px; }
.error-btn-primary {
    background: #0056b3; color: #fff; padding: 13px 26px; border-radius: 8px;
    text-decoration: none; font-weight: 700; transition: background 0.2s ease;
}
.error-btn-primary:hover { background: #003d80; }
.error-btn-secondary {
    background: #f2f2f2; color: #333; padding: 13px 26px; border-radius: 8px;
    text-decoration: none; font-weight: 700; transition: background 0.2s ease;
}
.error-btn-secondary:hover { background: #e5e5e5; }
.error-quick-links { border-top: 1px solid #eee; padding-top: 25px; }
.error-quick-links p { font-size: 0.9rem; color: #999; margin-bottom: 12px; }
.error-quick-links-list { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.error-quick-links-list a {
    font-size: 0.9rem; color: #0056b3; text-decoration: none; padding: 6px 12px;
    border: 1px solid #ddd; border-radius: 20px; transition: all 0.2s ease;
}
.error-quick-links-list a:hover { background: #0056b3; color: #fff; border-color: #0056b3; }

@media (max-width: 600px) {
    .error-code { font-size: 5rem; }
    .error-title { font-size: 1.3rem; }
}

.map-section { max-width: 1300px; margin: 60px auto; padding: 0 20px; }
.map-section-header { text-align: center; margin-bottom: 30px; }
.map-section-header h2 { font-size: 1.8rem; color: #222; margin-bottom: 10px; font-weight: 700; }
.map-section-header p { color: #666; font-size: 0.98rem; }
.map-embed-wrap {
    width: 100%; border-radius: 16px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid #eee;
}
.map-embed-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

@media (max-width: 600px) {
    .map-embed-wrap iframe { height: 300px; }
}

.site-footer {
    background: #14161a;
    color: #c9ccd1;
    margin-top: 60px;
    font-family: 'Montserrat', sans-serif;
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-logo {
    font-size: 1.6rem;
    margin: 0 0 18px;
    font-weight: 700;
}

.footer-about p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #9a9ea6;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: #e60000;
    transform: translateY(-3px);
}

.footer-col h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #e60000;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 13px;
    font-size: 0.92rem;
}

.footer-col ul li a {
    color: #c9ccd1;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #c9ccd1;
}

.footer-contact ul li i {
    color: #0056b3;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: #c9ccd1;
    text-decoration: none;
}

.footer-contact ul li a:hover {
    color: #fff;
}

.footer-destek {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
}

.destek-hatti-img-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    max-width: 88px;
    width: 100%;
}

.destek-hatti-img-link:hover {
    transform: translateY(-4px);
}

.destek-hatti-img {
    display: block;
    width: 100%;
    max-width: 88px;
    height: auto;
    border-radius: 10px;
}

.footer-map-full {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer-map-wrap {
    position: relative;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-map-wrap iframe {
    position: absolute;
    top: -165px;
    left: 0;
    width: 100%;
    height: calc(100% + 165px);
    border: 0;
    pointer-events: none;
}

.footer-map-link {
    position: absolute;
    inset: 0;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 11px 22px;
    background: #e60000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #83878f;
}

.footer-legal {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.footer-legal a {
    color: #83878f;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
    .footer-destek {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 45px 20px 30px;
        gap: 34px;
    }
    .footer-logo-img {
        margin: 0 auto 2px;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact ul li {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer-contact ul li span {
        text-align: center;
        max-width: 210px;
    }
    .footer-cta {
        margin: 6px auto 0;
    }
    .footer-destek {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-map-wrap {
        height: 220px;
    }
    .destek-hatti-img,
    .destek-hatti-img-link {
        max-width: 100px;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .footer-map-wrap {
        height: 190px;
    }
}
/* ================= /SITE FOOTER ================= */

/* =====================================================================
   ÜRÜN KARTLARINDA "HIZLI BAK" ÖNİZLEMESİ
   Kart görselinin sağ-alt köşesinde beliren göz ikonu ve tıklayınca
   açılan hafif önizleme penceresi. Tüm kategori listeleme sayfalarında
   (product_grid.php üzerinden) otomatik olarak çalışır.
   ===================================================================== */
.image-wrapper { position: relative; }
.quick-view-btn {
    position: absolute; bottom: 10px; right: 10px; z-index: 3;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.95); border: 1px solid rgba(0,0,0,0.08);
    color: #1c1c1c; font-size: 0.9rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.product-card:hover .quick-view-btn { opacity: 1; transform: translateY(0); }
.quick-view-btn:hover { background: #b08d57; color: #fff; }
@media (max-width: 900px) {
    /* Dokunmatik ekranlarda hover olmadığı için buton hep görünür kalsın */
    .quick-view-btn { opacity: 1; transform: none; width: 34px; height: 34px; font-size: 0.82rem; }
}

.qv-modal {
    display: none; position: fixed; inset: 0; z-index: 20500;
    background: rgba(10,10,15,0.65); backdrop-filter: blur(2px);
    align-items: center; justify-content: center; padding: 20px;
}
.qv-modal.open { display: flex; }
.qv-modal-inner {
    background: #fff; border-radius: 16px; overflow: hidden;
    max-width: 760px; width: 100%; max-height: 88vh; overflow-y: auto;
    display: grid; grid-template-columns: 1fr 1fr; position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.qv-close {
    position: absolute; top: 12px; right: 12px; z-index: 5;
    width: 36px; height: 36px; border-radius: 50%; border: none;
    background: rgba(0,0,0,0.5); color: #fff; font-size: 1.4rem; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.qv-close:hover { background: #b08d57; }
.qv-img-wrap { background: #f4f4f4; min-height: 260px; }
.qv-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qv-info { padding: 26px 26px 24px; display: flex; flex-direction: column; }
.qv-cat {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
    color: #b08d57; margin-bottom: 6px;
}
.qv-info h3 { font-size: 1.25rem; color: #1c1c1c; margin-bottom: 10px; font-weight: 700; line-height: 1.3; }
.qv-info p { font-size: 0.9rem; color: #666; line-height: 1.65; margin-bottom: 14px; max-height: 110px; overflow-y: auto; }
.qv-specs { margin-bottom: 18px; }
.qv-spec-row {
    display: flex; justify-content: space-between; gap: 10px;
    font-size: 0.85rem; color: #444; padding: 7px 0; border-bottom: 1px solid #f0f0f0;
}
.qv-spec-row span { color: #999; }
.qv-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.qv-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 18px; border-radius: 8px; font-weight: 700; font-size: 0.88rem;
    text-decoration: none; transition: all 0.2s ease;
}
.qv-btn-primary { background: #1c1c1c; color: #fff; }
.qv-btn-primary:hover { background: #b08d57; }
.qv-btn-whatsapp { background: #25d366; color: #fff; }
.qv-btn-whatsapp:hover { background: #1ea952; }

@media (max-width: 700px) {
    .qv-modal-inner { grid-template-columns: 1fr; max-height: 92vh; }
    .qv-img-wrap { min-height: 220px; }
}