/* --- İÇ SAYFA ÜST BANNER --- */
.sn-page-title-area {
    background-color: #1a222b !important;
    padding: 60px 0 !important;
    position: relative;
    width: 100%;
}
.sn-page-title {
    color: #ffffff !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.sn-breadcrumb {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.sn-breadcrumb li, .sn-breadcrumb a { 
    color: #a0a5aa !important; 
    font-size: 15px !important; 
    text-decoration: none !important; 
    margin: 0 5px !important;
}
.sn-breadcrumb a:hover { 
    color: #1a8b41 !important; 
}

/* --- ANA ÜRÜN SUNUM ALANI --- */
.sn-product-main-section {
    padding: 70px 0 30px 0;
    background-color: #ffffff;
}

/* --- YAPIŞKAN (STICKY) SOL SÜTUN - KESİN ÇÖZÜM --- */
@media (min-width: 992px) {
    .sn-sticky-column {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 120px !important; /* Menü aşağı inince üstte bırakılacak boşluk */
        z-index: 999 !important;
        /* max-content yerine fit-content kullanıyoruz, Flexbox ile daha uyumludur */
        height: -webkit-fit-content !important;
        height: -moz-fit-content !important;
        height: fit-content !important;
    }
}

/* KRİTİK MÜDAHALE:
  Temanın "Sticky" özelliğini bozan "overflow: hidden" (taşmayı gizle) 
  kodlarını bu sayfa özelinde iptal ediyoruz. 
*/
.about_wrapper_4,
.sn-product-main-section,
.sn-product-main-section .container,
.sn-product-main-section .row {
    overflow: visible !important;
}

/* Eğer temada body veya html etiketinde gizleme varsa, 
  "hidden" yerine yeni nesil "clip" kullanıyoruz ki sticky bozulmasın. 
*/
html, body {
    overflow-x: clip !important; 
}

/* Premium Stüdyo Çerçevesi */
.sn-main-img-wrapper {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: block; 
    text-decoration: none !important;
    transition: all 0.4s ease;
}
.sn-main-img-wrapper:hover {
    border-color: #1a8b41;
    box-shadow: 0 15px 40px rgba(26,139,65,0.08);
}
.sn-main-img-wrapper img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.sn-main-img-wrapper:hover img {
    transform: scale(1.03);
}

/* Büyüteç İpucu */
.sn-img-hint {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: rgba(26, 34, 43, 0.8);
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sn-main-img-wrapper:hover .sn-img-hint { opacity: 1; }

/* Teklif İste Butonu (Sol Taraf İçin) */
.sn-quote-btn-left {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #1a8b41;
    color: #ffffff !important;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(26,139,65,0.3);
}
.sn-quote-btn-left:hover {
    background-color: #12632e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26,139,65,0.4);
}

/* Sağ Taraf: Teknik Veriler ve Açıklama */
.sn-product-details {
    padding-left: 20px;
}
.sn-product-details-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a222b;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.sn-product-desc-box {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}
.sn-product-desc-box h1, .sn-product-desc-box h2, .sn-product-desc-box h3, .sn-product-desc-box h4 {
    color: #1a8b41;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
}
.sn-product-desc-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.sn-product-desc-box li {
    margin-bottom: 8px;
    border-bottom: 1px dashed #f0f0f0;
    padding-bottom: 8px;
}

/* --- ALT GALERİ ALANI --- */
.sn-title-badge { color: #1a8b41; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 5px; }
.sn-main-title { font-size: 26px; font-weight: 800; color: #222; margin: 0 0 10px 0; text-transform: uppercase; }
.sn-gallery-card { background-color: #ffffff; border-radius: 8px; border: 1px solid #eaeaea; overflow: hidden; position: relative; transition: all 0.4s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.sn-gallery-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: #1a8b41; }
.sn-gallery-img-box { background-color: #f8f9fa; height: 260px; display: flex; align-items: center; justify-content: center; padding: 20px; position: relative; border-bottom: 3px solid #1a8b41; }
.sn-gallery-img-box img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.5s ease; }
.sn-gallery-card:hover .sn-gallery-img-box img { transform: scale(1.05); }

.sn-gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(26, 34, 43, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 2; }
.sn-gallery-card:hover .sn-gallery-overlay { opacity: 1; visibility: visible; }
.sn-zoom-btn { width: 60px; height: 60px; background-color: #1a8b41; color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; transform: scale(0); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.sn-gallery-card:hover .sn-zoom-btn { transform: scale(1); }

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .sn-product-details { padding-left: 0; margin-top: 30px; }
}