:root {
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --dark: #0a0a0a;
    --darker: #050505;
    --gray: #222222;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.text-gold { color: var(--gold) !important; }
.bg-darker { background-color: var(--darker); }
.bg-black { background-color: #000; }

/* Navbar */
.navbar {
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.nav-link {
    color: var(--text-main) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--gold) !important; }

/* Hero Video */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Video şeffaflaştığında altından siyah renk görünmesi için eklendi: */
    background-color: #000; 
}
#hero-video {

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0.6;

    z-index:0;

}
.hero-overlay {

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to bottom,
    rgba(5,5,5,0.45),
    rgba(5,5,5,0.85)
    );

    z-index:1;

}
.hero-content{

    position:relative;

    z-index:2;

}

/* Butonlar */
.btn-gold {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.4s;
}
.btn-gold:hover, .btn-filter.active {
    background-color: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.btn-filter {
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--text-muted);
    margin: 0 5px 10px 0;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.85rem;
    transition: 0.3s;
}
.btn-filter:hover { border-color: var(--gold); color: var(--gold); }

/* Kartlar ve Fiyatlandırma */
.premium-card {
    background: linear-gradient(
        145deg,
        #111,
        #050505
    );

    border: 1px solid rgba(212,175,55,0.15);

    border-radius: 12px;

    overflow: hidden;

    cursor: pointer;

    position: relative;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}


.premium-card::before {

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(212,175,55,0.15),
        transparent
    );

    opacity:0;

    transition:0.5s;

}



.premium-card:hover {

    transform:
    translateY(-12px)
    scale(1.02);


    border-color:
    var(--gold);


    box-shadow:

    0 20px 40px rgba(0,0,0,0.8),

    0 0 25px rgba(212,175,55,0.25);

}



.premium-card:hover::before {

    opacity:1;

}
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    /* Dövme fotoğraflarının dikeyde çok kırpılmaması için kare (1/1) veya 3/4 yapabilirsin. 1/1 en risksizidir. */
    aspect-ratio: 1 / 1; 
    background-color: #000; /* Resim tam oturmazsa arkası siyah kalır */
}

/* MASAÜSTÜ RESİM AYARI (Eksik olan kısım buydu) */
.card-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    /* NOT: Eğer dövmelerin kenarlardan HİÇ kırpılmasını istemiyorsan 'cover' yerine 'contain' yazabilirsin. */
    object-fit: cover; 
    object-position: center;
    transition: transform 0.5s ease-in-out;
}

/* Hover durumunda premium, hafif bir yaklaşma efekti */
.premium-card:hover .card-img-wrapper img.image-loaded {
    transform: scale(1.05);
}
.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 3px;
    z-index: 2;
}
.price-container .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 10px;
}
.price-container .new-price {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Arama Kutusu */
.search-box {
    position: relative;
}
.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.premium-input {
    background: var(--dark);
    border: 1px solid var(--gray);
    color: var(--text-main);
    padding-left: 40px;
    border-radius: 20px;
}
.premium-input::placeholder {
    color: #cfcfcf;
    opacity: 1;
}
.premium-input:focus {
    background: var(--darker);
    color: var(--text-main);
    border-color: var(--gold);
    box-shadow: none;
}

/* İnce Çizgi / Ayırıcı */
.separator {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto;
}

/* Yorum Kartları */
.review-card {
    background: var(--gray);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    height: 100%;
    border-left: 3px solid var(--gold);
}

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* kart içine hafif ışık */

.card-img-wrapper::after {

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );

    transform:translateX(-100%);

    transition:0.6s;

}



.premium-card:hover 
.card-img-wrapper::after {

    transform:translateX(100%);

}
/* ========================= */
/* PREMIUM LIGHTBOX */
/* ========================= */

.premium-modal{

    background:#0b0b0b;

    border:1px solid rgba(212,175,55,.20);

    border-radius:15px;

    overflow:hidden;

}

.detail-image{

    width:100%;

    height:85vh;

    object-fit:contain;

    background:#000;

    display:block;

}

.detail-content{

    padding:45px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.detail-price{

    margin-top:25px;

    margin-bottom:10px;

}

.detail-price .old-price{

    display:block;

    font-size:18px;

    color:#8a8a8a;

    text-decoration:line-through;

    margin-bottom:8px;

}

.detail-price .new-price{

    display:block;

    font-size:34px;

    font-weight:700;

    color:var(--gold);

}

.btn-close{

    position:absolute;

    right:20px;

    top:20px;

    z-index:20;

}



/* ========================= */
/* MOBİL */
/* ========================= */

@media (max-width:991px){

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:18px;

}

.detail-image{

    width:100%;

    height:auto;

    max-height:45vh;

    object-fit:contain;

}

.detail-content{

padding:25px;

}

.modal-dialog{

margin:10px;

}

}



/* ========================= */
/* TELEFON */
/* ========================= */

@media (max-width:576px){

.hero-section{

height:85vh;

}

.hero-content h1{

font-size:34px;

letter-spacing:1px;

}

.hero-content p{

font-size:15px;

}

.btn-gold{

padding:10px 18px;

font-size:14px;

}

.discount-badge{

font-size:11px;

padding:4px 8px;

}

.new-price{

font-size:22px !important;

}

.old-price{

font-size:14px !important;

}

.review-card{

padding:20px;

}

.whatsapp-btn{

width:55px;

height:55px;

font-size:28px;

bottom:20px;

right:20px;

}

}
/* ========================= */
/* KATEGORİ ETİKETİ */
/* ========================= */

.category-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:rgba(0,0,0,.70);

    backdrop-filter:blur(8px);

    color:var(--gold);

    border:1px solid rgba(212,175,55,.45);

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    z-index:5;

}
/* Görsel referans numarası (örn. Fine Line #11) */
.ref-number{
    font-size:13px;
    color:var(--text-muted);
    font-weight:600;
    letter-spacing:0;
}
/* Premium açıklama */

.style-description{

    color:#9f9f9f;

    font-size:14px;

    letter-spacing:.5px;

    min-height:22px;

}

/* Google */

.google-rating{

    color:var(--gold);

    font-size:14px;

    margin-top:10px;

    margin-bottom:15px;

}

.google-rating span{

    color:#d7d7d7;

    margin-left:8px;

}

/* Randevu */

.availability{

    margin-top:18px;

    color:#44d862;

    font-size:14px;

    font-weight:600;

}
/* ========================= */
/* CARD OVERLAY */
/* ========================= */

.card-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:15px;

    opacity:0;

    transition:.35s;

}

.premium-card:hover .card-overlay{

    opacity:1;

}

.overlay-btn{

    width:220px;

    text-align:center;

    padding:12px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.detail-btn{

    background:transparent;

    border:1px solid var(--gold);

    color:var(--gold);

}

.detail-btn:hover{

    background:var(--gold);

    color:#000;

}

.whatsapp-btn-card{

    background:#25D366;

    color:white;

}

.whatsapp-btn-card:hover{

    transform:scale(1.05);

    color:white;

}
/* ========================= */
/* AI TASARIM BUTONU */
/* ========================= */


.ai-design-btn{

    background:linear-gradient(
        135deg,
        #111,
        #222
    );

    color:var(--gold);

    border:1px solid var(--gold);

    padding:12px 25px;

    letter-spacing:1px;

    font-weight:600;

    transition:.4s;

}


.ai-design-btn:hover{

    background:var(--gold);

    color:#000;

    box-shadow:
    0 0 20px rgba(212,175,55,.5);

    transform:translateY(-3px);

}



/* Mobilde hover yerine temiz görünüm */


.card-overlay{

    opacity:1;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.75)
    );

    justify-content:flex-end;

    padding-bottom:20px;

}


.overlay-btn{

    width:85%;

    padding:10px;

}


/* fiyat alanı */

.price-container{

    display:flex;

    flex-direction:column;

}


.price-container .new-price{

    font-size:24px!important;

}



/* detay ekranı */


.premium-modal{

    border-radius:20px;

}


.detail-image{

    height:50vh;

    object-fit:contain;

}


.detail-content{

    padding:20px;

}


.detail-content h2{

    font-size:24px;

}



.ai-design-btn,
.btn-gold{

    width:100%;

}
/* ========================= */
/* PREMIUM MOBİL OPTİMİZASYON */
/* ========================= */
@media (max-width: 576px) {

    /* Fotoğrafların aşırı zoomlanmasını önlemek için kare (1/1) oranına çekiyoruz */
    .card-img-wrapper {
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
    }

    .card-img-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Fotoğrafı bozmadan çerçeveye odaklar */
        transform: none !important;
    }

    /* Kart üzerindeki buton alanını mobilde gizleyebilir veya optimize edebilirsin */
    .card-overlay {
        opacity: 1 !important;
        background: linear-gradient(transparent, rgba(0,0,0,0.85)) !important;
        justify-content: flex-end !important;
        padding-bottom: 10px !important;
    }

    .overlay-btn {
        width: 90% !important;
        font-size: 11px !important;
        padding: 6px !important;
        margin-bottom: 4px !important;
    }

    /* Mobilde yazı boyutları ve boşlukları daraltarak tasarımı rahatlatıyoruz */
    .premium-card .p-4 {
        padding: 10px !important;
    }

    .premium-card h5 {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }

    .style-description {
        font-size: 11px !important;
        min-height: auto !important;
        margin-bottom: 4px !important;
    }

    .google-rating {
        font-size: 10px !important;
        margin-top: 4px !important;
        margin-bottom: 6px !important;
    }

    .availability {
        font-size: 10px !important;
        margin-top: 6px !important;
    }

    .price-container .old-price {
        font-size: 11px !important;
    }

    .price-container .new-price {
        font-size: 16px !important;
    }
}
/* ========================================== */
/* PREMIUM FOOTER & CONTACT CSS (KODU BOZMADAN) */
/* ========================================== */

/* Ana Footer Alanı */
.bg-darker {
    background-color: #070707 !important; /* Premium derin lüks siyah */
    border-top: 1px solid rgba(212, 175, 55, 0.15); /* Üst kısma ince gold çizgi */
    position: relative;
}

/* İletişim Bilgileri Satırları */
#contact p.text-muted {
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

#contact p.text-muted:hover {
    color: #ffffff !important; /* Üzerine gelindiğinde parlayan metinler */
}

/* Harita Kapsayıcısı (Map Container) */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15); /* Hafif gold çerçeve */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: border-color 0.3s ease;
}

.map-container:hover {
    border-color: rgba(212, 175, 55, 0.4); /* Haritaya odaklanınca canlanan gold çizgi */
}

/* Sihirli Karanlık Harita Filtresi */
.map-container iframe {
    display: block;
    filter: grayscale(1) invert(0.92) contrast(1.2); /* Açık renkli Google Haritasını sitenin karanlık temasına uydurur */
    transition: filter 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) invert(0) contrast(1); /* Kullanıcı haritaya gelince orijinal renkleri gösterir */
}

/* Sosyal Medya İkon Alanı (Telefonun Altı İçin Sola Hizalı) */
.social-links {
    text-align: left; /* Ortalamadan sola hizalamaya çektik */
    margin-top: 20px; /* Telefon numarasıyla arasındaki premium boşluk */
    padding-left: 5px; /* İkonların yazı hizasıyla jilet gibi uyuşması için */
}

/* İkonların Yuvarlak Premium Butonlara Dönüşmesi */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #d4af37 !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Sosyal Medya Hover Efekti */
.social-links a:hover {
    background: #d4af37 !important;
    color: #000000 !important;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Telif Hakkı Çizgisi ve Metni */
#contact .border-top {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

#contact .small {
    font-size: 12px;
    letter-spacing: 0.5px;
}
#contact .text-gold:hover {
    color: #ffffff !important; /* Altın sarısı linke yaklaşınca beyaza döner */
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5); /* Hafif bir gold ışıma efekti */
}
/* ========================================== */
/* PREMIUM PRELOADER STYLES                   */
/* ========================================== */

/* Sayfa yüklenene kadar kaydırma çubuğunu gizle */
body.loading {
    overflow: hidden !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #050505; /* Stüdyonun derin siyahı */
    z-index: 999999; /* Her şeyin, hatta navbarın bile üzerinde durmalı */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.6s ease;
    opacity: 1;
    visibility: visible;
}

/* Yükleme bittiğinde tetiklenecek sınıf */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

/* Altın sarısı parlayan logo yazısı */
.preloader-logo {
    font-size: 2.8rem;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif; /* Eğer projede font farklıysa uyar */
    animation: pulseGlow 2s infinite ease-in-out;
}

/* Logonun altındaki genişleyen asil çizgi */
.preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto;
    animation: fillLine 2s infinite ease-in-out;
}

/* Animasyonlar */
@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(0.98); 
        opacity: 0.5; 
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.1); 
    }
    50% { 
        transform: scale(1); 
        opacity: 1; 
        text-shadow: 0 0 25px rgba(212, 175, 55, 0.5); 
    }
}

@keyframes fillLine {
    0% { width: 0; opacity: 0; }
    50% { width: 150px; opacity: 1; }
    100% { width: 220px; opacity: 0; }
}

/* ========================================== */
/* PREMIUM FAQ ACCORDION STYLES               */
/* ========================================== */

.bg-blacker {
    background-color: #030303; /* Footer'dan bir tık daha derin siyah geçişi */
}

/* Akordeon Butonunun Ham Hali */
.custom-faq-btn {
    background-color: #0a0a0a !important;
    color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-radius: 8px !important;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* Fareyle Üzerine Gelindiğinde */
.custom-faq-btn:hover {
    border-color: rgba(212, 175, 55, 0.5) !important;
    color: #d4af37 !important;
}

/* Soru Açıldığında (Active Durumu) */
.custom-faq-btn:not(.collapsed) {
    background-color: #0d0d0d !important;
    color: #d4af37 !important;
    border-color: #d4af37 !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

/* Sağdaki Ok İkonunun Rengini Gold Yapma */
.custom-faq-btn::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg); /* Bootstrap okunu gold tona büker */
    transition: transform 0.3s ease;
}

/* İçerik Yazı Alanı */
.custom-faq .accordion-body {
    background-color: #0d0d0d;
    border: 1px solid #d4af37;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 20px 24px;
    line-height: 1.6;
    /* Eklenen Sihirli Satır */
    color: #f5f5f5 !important; /* Koyu griliği ezen, gözü yormayan net kırık beyaz */
}

.small-text {
    font-size: 13.5px;
    letter-spacing: 0.3px;
}
/* FAQ Alt Başlığını Belirginleştirme */
#faq .text-center p {
    color: #cccccc !important; /* Karanlıkta kaybolmayan, gözü yormayan asil bir gümüş tonu */
    letter-spacing: 0.5px; /* Harf aralığını hafif açarak kurumsal bir hava katıyoruz */
}
/* ========================================== */
/* PREMIUM PREMIUM DARK MAP STYLES            */
/* ========================================== */

.map-container {
    border: 1px solid rgba(212, 175, 55, 0.2); /* Hafif gold çerçeve */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Standart Google Haritasını Gece Moduna Çeviren Sihirli Filtre */
.map-container iframe {
    filter: grayscale(1) invert(1) contrast(1.2) sepia(0.1);
    transition: all 0.5s ease;
}

/* Kullanıcı haritanın üzerine gelince renkler hafifçe yumuşasın */
.map-container:hover iframe {
    filter: grayscale(0.7) invert(0.9) contrast(1.1);
}

/* ========================================== */
/* PREMIUM AFTERCARE CARD STYLES              */
/* ========================================== */

.text-silver {
    color: #cccccc !important;
    letter-spacing: 0.5px;
}

.care-card {
    background-color: #080808;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Kartların üzerine gelindiğinde gold çizgi parlaması */
.care-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.05);
}

/* Yasaklar kartı için özel hafif gold çerçeve */
.border-gold-soft {
    border-color: rgba(212, 175, 55, 0.15);
}

/* Arka plandaki asil büyük sayılar/ikonlar */
.care-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    font-family: 'Montserrat', sans-serif;
    user-select: none;
    transition: color 0.4s ease;
}

.badge-alert {
    color: rgba(212, 175, 55, 0.03);
}

.care-card:hover .care-badge {
    color: rgba(212, 175, 55, 0.08); /* Hover durumunda arkadaki sayı hafifçe gold parlar */
}

.care-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.care-text {
    color: #e0e0e0;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 0;
}

.care-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.care-list li {
    color: #e0e0e0;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.care-list li:last-child {
    margin-bottom: 0;
}

/* ========================================== */
/* ÇAKIŞMASIZ FOOTER & TELİF STYLES           */
/* ========================================== */

/* 1. GENEL BEYAZ ALANLAR (Adres, Telefon, Ekip İsimleri) */
#contact p, 
#contact .text-muted, 
#contact span,
footer, 
footer .text-muted,
.team-member {
    color: #ffffff !important; /* Bunlar net beyaz kalacak */
}

/* 2. GENEL LİNKLER VE HOVER DURUMLARI */
#contact a, 
footer a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact a:hover, 
footer a:hover {
    color: #d4af37 !important; /* Üzerine gelince gold olur */
}

/* 3. TELİF ALANI (Çakışmayı çözen, nokta atışı gold alan) */
/* Özgüllüğü (specificity) artırarak beyaz kodunu tamamen eziyoruz */
footer .copyright,
footer p.copyright,
.copyright,
.copyright a {
    color: #d4af37 !important; /* Telif yazısı ve @obsidianink.izmit artık kesinlikle sarı/gold */
    font-weight: 500;
}

/* Telif içindeki Instagram linkine fareyle gelince beyaza dönsün */
footer .copyright a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* ========================================== */
/* GOOGLE REVIEWS SECTION STYLES              */
/* ========================================== */
#google-reviews {
    background-color: #0b0b0b; /* Derin asil siyah arka plan */
    position: relative;
}

/* Başlık Altındaki Gold Çizgi */
.title-line {
    width: 60px;
    height: 20px;
    border-bottom: 2px solid #d4af37;
    margin: 0 auto;
}

/* Premium Yorum Kartları */
.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1); /* Çok hafif gold çerçeve */
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ortadaki kartın hafifçe öne çıkması için (Aura efekti) */
.featured-card {
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

/* Gold Yıldızlar */
.review-stars {
    color: #d4af37;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Yorum Metni */
.review-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

/* Müşteri İsmi */
.client-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================== */
/* KOCAMAN VE ASİL GOOGLE BUTONU              */
/* ========================================== */
.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #d4af37 !important;
    border: 2px solid #d4af37;
    padding: 14px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-google-reviews:hover {
    background-color: #d4af37;
    color: #000000 !important; /* Üzerine gelince içi gold, yazısı siyah olur */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
}
#google-reviews .text-muted {
    color: #ffffff !important;
}
.weekly-views {
    margin-top: 10px;
    color: #a8a8a8;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.weekly-views i {
    color: var(--gold);
    font-size: 12px;
}
@media (max-width: 576px) {
    .weekly-views {
        font-size: 9px;
        margin-top: 5px;
    }

    .weekly-views i {
        font-size: 9px;
    }
}
.tattoo-image {
    transition:
        filter 0.6s ease,
        opacity 0.6s ease,
        transform 0.6s ease;
}

.tattoo-image.loading-blur {
    filter: blur(14px);
    opacity: 0.55;
    transform: scale(1.04);
}

.tattoo-image.image-loaded {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
}
.install-app-box {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9998;
    display: none;
    max-width: 560px;
    margin: 0 auto;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.8),
        rgba(212, 175, 55, 0.12)
    );
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.75);
}

.install-app-box.show {
    display: block;
    animation: installBoxIn 0.45s ease;
}

.install-app-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 48px 16px 16px;
    border-radius: 15px;
    background: #090909;
}

.install-app-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 12px;
}

.install-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.install-app-text {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

.install-app-text strong {
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 15px;
}

.install-app-text span {
    margin-top: 3px;
    color: #b8b8b8;
    font-size: 12px;
}

.install-app-button {
    flex-shrink: 0;
    padding: 10px 15px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    background: var(--gold);
    color: #050505;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.install-app-close {
    position: absolute;
    top: 5px;
    right: 9px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 25px;
    cursor: pointer;
}

@keyframes installBoxIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .install-app-box {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .install-app-content {
        flex-wrap: wrap;
        padding: 14px 38px 14px 14px;
    }

    .install-app-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
    }

    .install-app-text {
        width: calc(100% - 65px);
    }

    .install-app-button {
        width: 100%;
    }
}

.campaign-badge {
    background: linear-gradient(
        135deg,
        #d4af37,
        #ff8c00
    );

    color: #050505;
    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 0 18px rgba(212, 175, 55, 0.55);

    animation: campaignGlow 1.8s infinite ease-in-out;
}

@keyframes campaignGlow {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 10px rgba(212, 175, 55, 0.35);
    }

    50% {
        transform: scale(1.03);
        box-shadow:
            0 0 24px rgba(255, 140, 0, 0.65);
    }
}

.campaign-timer {
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.06);
    text-align: center;
}

.campaign-timer-label {
    display: block;
    margin-bottom: 4px;
    color: #b8b8b8;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.campaign-countdown {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

@media (max-width: 576px) {
    .campaign-timer {
        margin-top: 7px;
        padding: 7px;
    }

    .campaign-timer-label {
        font-size: 8px;
    }

    .campaign-countdown {
        font-size: 13px;
    }
}

/* ========================= */
/* HEDİYE ÇEKİ BANNER */
/* ========================= */

.gift-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.02));
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    padding: 18px 24px;
}

.gift-cta-text {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gift-cta-text i {
    font-size: 28px;
}

.gift-cta-text strong {
    display: block;
    color: var(--gold);
    font-size: 17px;
}

.gift-cta-text span {
    color: var(--text-muted);
    font-size: 14px;
}

/* ========================= */
/* NAVBAR LOGO İKONU */
/* ========================= */

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 34px;
    width: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 28px;
        width: 28px;
    }
}

/* ========================= */
/* PORTFOLYO AÇIKLAMA KISALTMA */
/* ========================= */

.description-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================= */
/* YÜZEN (SÜRÜKLENEBİLİR) AI TASARIM BUTONU */
/* ========================= */

.ai-design-float-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111, #222);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 1000;
    cursor: grab;
    touch-action: none;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 0;
}

.ai-design-float-btn:hover {
    box-shadow: 0 0 20px rgba(212,175,55,.5);
}

.ai-design-float-btn:active {
    cursor: grabbing;
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .ai-design-float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 90px;
        right: 20px;
    }
}

/* Model filtre butonları, orta genişlikteki ekranlarda tek satıra daha
   kolay sığsın diye biraz daha kompakt */
@media (min-width: 768px) and (max-width: 991px) {
    .btn-filter {
        padding: 5px 12px;
        font-size: 0.78rem;
        margin: 0 3px 8px 0;
    }
}

/* ========================= */
/* YÜZEN (SÜRÜKLENEBİLİR) HEDİYE BUTONU */
/* ========================= */

.gift-float-btn {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111, #222);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 1000;
    cursor: grab;
    touch-action: none;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 0;
}

.gift-float-btn:hover {
    box-shadow: 0 0 20px rgba(212,175,55,.5);
}

.gift-float-btn:active {
    cursor: grabbing;
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .gift-float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
        bottom: 90px;
        left: 20px;
    }
}

/* ========================= */
/* YÜZEN (SÜRÜKLENEBİLİR) PAYLAŞ BUTONU */
/* ========================= */

.share-float-btn {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111, #222);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 1000;
    cursor: grab;
    touch-action: none;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 0;
}

.share-float-btn:hover {
    box-shadow: 0 0 20px rgba(212,175,55,.5);
}

.share-float-btn:active {
    cursor: grabbing;
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .share-float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
        bottom: 150px;
        right: 20px;
    }
}

/* ========================= */
/* PORTFOLYO KART PAYLAŞ BUTONU */
/* ========================= */

.portfolyo-share-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 5;
    transition: 0.3s;
}

.portfolyo-share-btn:hover {
    background: var(--gold);
    color: #000;
}

/* ========================= */
/* PORTFOLYO ÇOKLU GÖRSEL ROZETİ (SOL ÜST) */
/* ========================= */

.photo-count-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 3px;
    z-index: 2;
}
