@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:wght@400;700&display=swap');

:root {
  --font-site: 'Balsamiq Sans', cursive;
}



body {
  font-family: var(--font-site);
}



html {
  font-family: var(--font-site) !important;
}

body, input, textarea, select, button, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-site) !important;
}

.firstLi {
    font-weight: 700;
}

.dropdown-item {
    font-weight: 600;
}



.custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20 !important;
}

.custom-search-section {
  flex-shrink: 0;
}

.custom-logo-section {
  flex-grow: 1;
  flex-shrink: 0;
  padding: 0 16px;
}

.custom-menu-section {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .custom-header {
    flex-wrap: wrap;
  }
  
  .custom-search-section {
    width: 33.333%;
  }
  
  .custom-logo-section {
    width: 33.333%;
  }
  
  .custom-menu-section {
    width: 33.333%;
  }
}

.custom-logo-section .logo img {
  height: 70px;
  width: auto;
}

#header .logoTheme {
  width: auto;
  margin: 0 auto;
  display: inline-flex;
}

@media screen and (max-width: 768px) {
  .custom-logo-section {
    padding: 0 8px;
  }
  .custom-logo-section .logo img {
    height: 64px;
  }
}

.custom-logo {
    max-width: 300px !important;
}

/* FOOTER */

.custom-footer {
    width: 100%;
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 0;
    position: relative;
}

.custom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.5), transparent);
}

.custom-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 60px;
}

.custom-footer-logo-col {
    margin-bottom: 50px;
    text-align: center;
}

.custom-footer-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.custom-footer-disclaimer {
    font-size: 13px;
    line-height: 1.8;
    color: #8a8a8a;
    max-width: 600px;
    margin: 0 auto;
}

.custom-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.custom-footer-column {
    display: flex;
    flex-direction: column;
}

.custom-footer-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    position: relative;
}

.custom-footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-footer-list li {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
}

.custom-footer-link {
    font-size: 14px !important;
    color: #b5b5b5;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.custom-footer-link:hover {
    color: #d4a574;
    padding-left: 6px;
}

/* Blog Section - Premium Design */
.custom-footer-blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-footer-blog-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.custom-footer-blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #d4a574, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.custom-footer-blog-item:hover::before {
    opacity: 1;
}

.custom-footer-blog-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 165, 116, 0.2);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.custom-footer-blog-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.custom-footer-blog-item:hover .custom-footer-blog-img {
    transform: scale(1.08);
    border-color: rgba(212, 165, 116, 0.3);
}

.custom-footer-blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.custom-footer-blog-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.custom-footer-blog-title .custom-footer-link {
    text-decoration: none;
    color: #e8e8e8;
    padding-left: 0;
}

.custom-footer-blog-title .custom-footer-link:hover {
    color: #d4a574;
    padding-left: 0;
}

.custom-footer-blog-date {
    font-size: 11px;
    color: #707070;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Bottom */
.custom-footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}

.custom-footer-copy {
    font-size: 12px;
    color: #808080;
    font-weight: 400;
}

.custom-footer-banks {
    max-height: 36px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.custom-footer-banks:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1200px) {
    .custom-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .custom-footer {
        padding: 0;
    }
    
    .custom-footer-inner {
        padding: 50px 24px 40px;
    }
    
    .custom-footer-logo-col {
        margin-bottom: 40px;
    }
    
    .custom-footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }
    
    .custom-footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 24px 24px;
        text-align: center;
    }
    
    .custom-footer-blog-img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .custom-footer-columns {
        gap: 35px;
    }
    
    .custom-footer-blog-item {
        padding: 14px;
        gap: 12px;
    }
    
    .custom-footer-blog-img {
        width: 60px;
        height: 60px;
    }
}




/* SERVICES */
.custom-features {
    padding: 24px 24px;
    background-color: #f9fafb;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.custom-features-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px; /* 32px 48px */
    justify-content: center;
    text-align: center;
}

.custom-feature {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 260px;
    margin: 0 auto;
    padding: 24px 16px 8px;
    border-radius: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.custom-feature:hover {
    transform: translateY(-8px);
    background-color: #ffffff;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.10);
}

.custom-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, #ffb3c3, #ff6f91);
    box-shadow: 0 10px 24px rgba(255, 111, 145, 0.35);
}

/* Örneğin ikonu img ile koyarsan */
.custom-feature-icon img,
.custom-feature-icon svg {
    max-width: 60%;
    max-height: 60%;
    display: block;
}

.custom-feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111111;
    margin-bottom: 10px;
}

.custom-feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    max-width: 260px;
    margin: 0 auto;
    text-align: left;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .custom-feature {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .custom-features-container {
        max-width: 1100px;
        /*flex-wrap: nowrap;*/
        justify-content: center;
    }

    .custom-feature {
        flex: 0 0 auto;
        max-width: 260px;
        /*margin: 0 24px;*/
    }
}

/* Mobil uyum */
@media (max-width: 768px) {
    .custom-features-container {
        justify-content: center;
    }

    .custom-feature {
        max-width: 360px;
        padding: 20px 16px 4px;
    }
}

/* FEATURES */
.custom-features-section {
    background: rgb(249, 250, 251); /* bölüm arkası gri */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    position: relative;
    margin-bottom: 3rem;
}

.custom-features-section::before {
    /* Kırmızı arka plan için kullanılan glow efekti kapatıldı */
    display: none;
}

/* Container biraz iç boşluk alsın */
.custom-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Sekme barı: biraz daha büyük */
.custom-features-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;          /* eskiden: 6px 10px */
    margin: 0 auto 26px auto;
    background: rgba(12, 10, 14, 0.9);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

/* Sekme butonu: hafifçe büyütüldü */
.custom-feature-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;          /* eskiden: 6px 14px */
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #f9fafb;
    font-size: 0.82rem;         /* eskiden: 0.78rem */
    cursor: pointer;
    opacity: 0.8;
    transition: background-color 0.18s ease, opacity 0.18s ease,
        transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}

.custom-feature-tab:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.custom-feature-tab--active {
    background: linear-gradient(135deg, #f97316, #ef4444);
    opacity: 1;
    box-shadow: 0 6px 16px rgba(248, 113, 113, 0.45);
}

/* İkonları da küçült */
.custom-feature-tab-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.custom-feature-tab-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* ikonları beyaza çevir */
}

/* HERO KART: orta tonda kırmızı/pembe degrade + daha hafif shadow */
.custom-features-hero {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 24px;
    background: radial-gradient(
        circle at top left,
        #450a0a 0%,
        #7f1d1d 40%,
        #4c0519 75%,
        #020617 100%
    );
    border-radius: 32px;
    padding: 40px 44px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(248, 250, 252, 0.16);
    overflow: hidden;
}



/* Slide kapsayıcı */
.custom-feature-slides {
    position: relative;
    width: 100%;
}

/* Her bir slide */
.custom-feature-slide {
    display: none;
    align-items: center;
}

.custom-feature-slide--active {
    display: flex; /* aktif slaytlar yan yana (masaüstü/tablet) */
}

/* METİN ALANI: daha fazla yer kaplasın */
.custom-feature-text {
    flex: 0 0 60%;
    max-width: 100%;
    text-align: center;
}

.custom-feature-eyebrow {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fee2e2; /* açık pembe */
}

.custom-feature-heading {
    font-size: 2.3rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fef2f2; /* neredeyse beyaz */
}

.custom-feature-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 241, 242, 0.9); /* yumuşak pembe-gri */
    margin-bottom: 4px;
}

/* GÖRSEL ALANI: biraz daralt, ortala */
.custom-feature-image-wrapper {
    flex: 0 0 40%;
    max-width: 40%;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
    max-height: 250px;           /* 280'den küçültüldü */
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;      /* sağa kaymış hissini azalt */
    display: block;
}

/* Responsive (güncellendi) */
@media (max-width: 900px) {
    .custom-features-hero {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .custom-feature-heading {
        font-size: 2rem;
    }
}

/* Mobil */
@media (max-width: 640px) {
    .custom-features-container {
        padding: 0 16px;
    }

    .custom-features-hero {
        padding: 20px 16px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
    }

    .custom-feature-heading {
        font-size: 1.8rem;
    }

    .custom-feature-description {
        font-size: 0.9rem;
    }


    .custom-feature-slide--active {
        flex-direction: column;
    }

    /* Mobilde metni ortala */
    .custom-feature-text {
        flex: 1 1 auto;
        max-width: 100%;
        text-align: center;
    }

    /* GÖRSEL: kart içinde yatayı tam kapla (padding’i yok sayarak) */
    .custom-feature-image-wrapper {
        flex: 1 1 auto;
        max-width: 100%;
        width: calc(100% + 32px);      /* hero padding: 16px + 16px */
        margin: 18px -16px 4px;        /* sola/sağa negatif margin ile tam otur */
        max-height: none;
        border-radius: 24px;  /* alt köşeleri yuvarla, yanlar kart ile aynı */
        overflow: hidden;
    }

    .custom-feature-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .custom-features-tabs {
        flex-wrap: wrap;
        padding: 6px 8px;
        gap: 6px;
        border-radius: 16px;
    }

    .custom-feature-tab {
        padding: 5px 10px;
        font-size: 0.74rem;
    }
}

/* SERVICE BANNERS FOR DETAIL PAGE */
.custom-service-banners {
    margin-top: 1rem;      /* yukarıdan boşluk */
    width: 100%;           /* bulunduğu yatayı tamamen kaplasın */
    max-width: 650px;      /* daha dar – sağ kolon genişliği gibi */
    margin-inline: auto;   /* ortala */
}

/* Tek tek banner kutuları */
.custom-service-banner {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;      /* img köşeleri de yuvarlansın */
    margin-bottom: 0.75rem; /* bannerlar arasında boşluk */
}

/* Banner görselleri */
.custom-service-banner img {
    display: block;
    width: 100%;
    object-fit: cover;     /* alanı tamamen doldur */
}

.main .productTab #aciklama {
    overflow-y: visible !important;
    max-height: none !important;
    
}

/* ----------- MAKALE / BLOG ------------*/

.showBlog {
    /* Ana Grid Konteyneri */
    display: grid !important;
    gap: 20px; 
    
    /* Mobil (Varsayılan) -> 1 Sütun */
    grid-template-columns: 1fr;
    margin: 0 auto; 
}

/* Tablet (768px+) -> 2 Sütun */
@media (min-width: 768px) {
    .showBlog {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
}

/* Masaüstü (1200px+) -> 4 Sütun */
@media (min-width: 1200px) {
    .showBlog {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}

/* Grid Öğesi Ayarları: Eski sıfırlamalar korunmuştur. */
.showBlog .custom-blog-list-item {
    float: none !important;
    display: block !important;
    width: 100% !important; 
    margin: 0 !important; 
    padding: 0 !important; 
}

/* ========================================================= */
/* 🖼️ 2. KART YAPISI VE ETKİLEŞİMİ (.custom-blog-container) */
/* ========================================================= */

.custom-blog-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Yükseklik: Grid'in tüm kartları aynı boyutta tutmasını sağlar */
    height: 100%; 
    
    /* Hover Efektleri */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* İçeriğin (image ve content) dikey yayılımını sağlamak için Flexbox */
    display: flex;
    flex-direction: column;
}

.custom-blog-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ========================================================= */
/* 🏞️ 3. GÖRSEL ALANI (.custom-image-wrapper & .custom-image) */
/* ========================================================= */

.custom-image-wrapper {
    overflow: hidden;
    position: relative;
    /* GÖRSEL ORANINI SABİTLEME (390/540 ≈ 72.22%) */
    height: 0; 
    padding-bottom: 72.22%; 
    flex-shrink: 0; /* İçerik daraldığında görselin küçülmesini engeller */
}

.custom-image {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    object-fit: cover; 
    
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-blog-container:hover .custom-image {
    transform: scale(1.08);
}

/* ========================================================= */
/* 📝 4. İÇERİK ALANI (.custom-content-area) - FLEXBOX */
/* ========================================================= */

.custom-content-area {
    padding: 20px 25px 30px; 
    text-align: center;
    
    /* Kalan tüm alanı kaplar */
    flex-grow: 1;
    
    /* Başlık ve Butonu hizalamak için Flexbox kullanılır */
    display: flex;
    flex-direction: column;
}

.custom-title {
    font-size: 1.3em; 
    font-weight: 700; 
    margin-top: 0;
    margin-bottom: 20px; /* Butondan önceki boşluk artırıldı */
    line-height: 1.3;
    flex-shrink: 0; /* Başlığın küçülmesini engeller */
}

.custom-title a {
    color: #333; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-title a:hover {
    color: #a32243; 
}

/* Not: HTML'de "custom-excerpt" olmadığı için ilgili stiller çıkarılmıştır. */


/* ========================================================= */
/* 🖱️ 5. DEVAMINI OKU BUTONU (.custom-read-more-btn) */
/* ========================================================= */

.custom-read-more-btn {
    display: inline-block;
    padding: 10px 25px; 
    background-color: #a32243;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600; 
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.8px; 
    
    /* Flexbox: Butonu her zaman dibe iter */
    margin-top: auto; 
    
    /* Butonun ortalanması */
    align-self: center;
}

.custom-read-more-btn:hover {
    background-color: #7a1b32;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(163, 34, 67, 0.3);
}
/* CUSTOM BLOG PAGE */
.customm-blog-section {
    padding: 2rem 0;
}

.customm-blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.customm-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.customm-blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.customm-blog-more {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.customm-blog-more::after {
    content: '⊕';
    font-size: 1.2rem;
}

.customm-blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.customm-blog-card {
    margin: 0;
    padding: 0;
}

.customm-blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e5e5e5;
}

.customm-blog-card-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #d0d0d0;
}

.customm-blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.customm-blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customm-blog-card-date {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.customm-blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.75rem 1.5rem 1.5rem;
}

.customm-blog-card-title {
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1a1a1a;
    flex: 1;
}

.customm-blog-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    margin-left: auto;
    padding: 0.75rem 1.25rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    /*min-width: 80px;*/
}

.customm-blog-card-button:hover {
    background: #333;
    transform: translateX(4px);
}

.customm-blog-card-arrow {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.customm-blog-card-button:hover .customm-blog-card-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .customm-blog-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .customm-blog-container {
        padding: 0 1rem;
    }
    
    .customm-blog-section {
        padding: 2rem 0;
    }
}

/* BANNERS */
.custom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.custom-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 250px;
}

.custom-banner a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.custom-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.custom-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 15px 20px;
    text-align: center;
    transition: background 0.3s ease;
}

.custom-banner:hover .custom-overlay {
    background: rgba(0, 0, 0, 0.85);
}

.custom-overlay h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .custom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .custom-banner {
        height: 220px;
    }
}

@media screen and (max-width: 768px) {
    .custom-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .custom-container {
        padding: 15px;
    }
    
    .custom-banner {
        height: 200px;
    }
}

/* CUSTOM RENKLER */
.custom-color-container {
    max-width: 1400px;
    margin: 0 auto;
}


.custom-color-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.custom-color-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.custom-color-item:hover {
    transform: translateY(-5px);
}

.custom-color-swatch {
    width: 180px;
    height: 80px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.custom-color-item:hover .custom-color-swatch {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.custom-color-dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-color-item p {
    margin-top: 15px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.custom-color-gradient {
    background: linear-gradient(135deg, #000000 0%, #ffffff 100%);
}

/* Expandable color swatches */
.custom-color-expandable {
    position: relative;
}

.custom-color-swatch-group {
    position: relative;
    width: 180px;
    height: 80px;
}

.custom-color-swatch.custom-color-multi {
    position: absolute;
    width: 180px;
    height: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.custom-color-swatch.custom-color-multi:nth-child(1) {
    z-index: 3;
}

.custom-color-swatch.custom-color-multi:nth-child(2) {
    z-index: 2;
    transform: rotate(0deg);
}

.custom-color-swatch.custom-color-multi:nth-child(3) {
    z-index: 1;
    transform: rotate(0deg);
}

.custom-color-expandable:hover .custom-color-swatch.custom-color-multi:nth-child(1) {
    transform: rotate(-15deg);
}

.custom-color-expandable:hover .custom-color-swatch.custom-color-multi:nth-child(2) {
    transform: rotate(0deg);
}

.custom-color-expandable:hover .custom-color-swatch.custom-color-multi:nth-child(3) {
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .custom-color-grid {
        gap: 20px;
    }
    
    .custom-color-swatch,
    .custom-color-swatch-group {
        width: 150px;
        height: 70px;
    }
    
    .custom-color-swatch.custom-color-multi {
        width: 150px;
        height: 70px;
    }
}

/* CUSTOM HALI KILAVUZ */
.custom-kilavuz-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100%;
    padding: 40px 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
}

.custom-kilavuz-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    
}

.custom-kilavuz-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.custom-kilavuz-tab-btn {
    flex: 1;
    padding: 18px 24px;
    border: none;
    background: #2a2a3e;
    color: #d4a574;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(212, 165, 116, 0.2);
}

.custom-kilavuz-tab-btn:last-child {
    border-right: none;
}

.custom-kilavuz-tab-btn:hover {
    background: #3a3a4e;
    color: #e6b887;
}

.custom-kilavuz-tab-btn.active {
    background: #d4a574;
    color: #1a1a2e;
}

.custom-kilavuz-tab-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.custom-kilavuz-tab-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(72%) sepia(25%) saturate(584%) hue-rotate(349deg) brightness(93%) contrast(88%);
}

.custom-kilavuz-tab-btn.active .custom-kilavuz-tab-icon {
    filter: brightness(0) saturate(100%) invert(8%) sepia(16%) saturate(1688%) hue-rotate(202deg) brightness(96%) contrast(93%);
}

.custom-kilavuz-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.custom-kilavuz-tab-content {
    display: none;
}

.custom-kilavuz-tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.custom-kilavuz-text-section h1 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.custom-kilavuz-text-section h2 {
    font-size: 32px;
    color: #d4a574;
    margin-bottom: 24px;
    font-weight: 500;
}

.custom-kilavuz-text-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.custom-kilavuz-size-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.custom-kilavuz-size-grid > img {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-kilavuz-size-card {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.custom-kilavuz-size-card:hover {
    border-color: #d4a574;
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.25);
    transform: translateY(-2px);
}

.custom-kilavuz-size-card img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    border-radius: 4px;
}

.custom-kilavuz-size-label {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}

@media (max-width: 1024px) {
    .custom-kilavuz-tab-content.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .custom-kilavuz-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .custom-kilavuz-wrapper {
        padding: 20px 0;
    }
    
    .custom-kilavuz-container {
        padding: 0 20px;
    }
    
    .custom-kilavuz-tabs {
        flex-direction: column;
    }
    
    .custom-kilavuz-tab-btn {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
    
    .custom-kilavuz-tab-btn:last-child {
        border-bottom: none;
    }
    
    .custom-kilavuz-text-section h1 {
        font-size: 36px;
    }
    
    .custom-kilavuz-text-section h2 {
        font-size: 24px;
    }
    
    .custom-kilavuz-content {
        padding: 30px 20px;
    }
    
    .custom-kilavuz-size-grid {
        grid-template-columns: 1fr;
    }
}

/* CUSTOM BreadCrumbs */
.custom-breadcrumb-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: 0.5px;
}

/* CUSTOM BADGE */
#desktopImage {
    position: relative !important;
    display: block;
}

/* Rozet stili */
.custom-product-badge {
    position: absolute !important;
    top: 20px;       /* Üstten boşluk */
    right: 20px;     /* Sağdan boşluk */
    z-index: 99;     /* Resmin ve zoom efektinin üstünde kalması için */
    width: 85px;     /* Rozet boyutu */
    height: auto;
    pointer-events: none; /* Altındaki resme tıklanmasını veya zoom'u engellemez */
    user-select: none;
}

.custom-product-badge-left {
    position: absolute !important;
    top: 30px;       /* Üstten boşluk */
    left: 80px;     /* Sağdan boşluk */
    width: 170px !important;
    height: 50px !important;     /* Rozet boyutu */
    height: auto;
    pointer-events: none; /* Altındaki resme tıklanmasını veya zoom'u engellemez */
    user-select: none;
    z-index: 99;
}

/* Kapsayıcı div'in taşmasını önleyelim */
.homeImages {
    position: relative;
    overflow: hidden;
}

/* Tablet ve küçük ekranlar için boyut ayarı */
@media screen and (max-width: 1024px) {
    .custom-product-badge {
        width: 65px;
        top: 15px;
        right: 15px;
    }
    
    .custom-product-badge-left {
        width: 65px;
        top: 15px;
        left: 15px;
    }
}

/* Sadece Telefon/Mobil Modu İçin */
@media screen and (max-width: 768px) {
    /* Rozetlerin genel kapsayıcısı - Boşlukları daralt */
    .custom-filter-product-badges {
        top: 4px !important;
        left: 4px !important;
        right: 4px !important;
        gap: 2px !important;
    }

    /* Yazı Rozetleri (Yeni & İndirim) - Metni ve kutuyu küçült */
    .custom-filter-badge {
        padding: 2px 5px !important;
        font-size: 8px !important;
        min-width: 45px !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
    }

    /* Kargo Bedava Görseli - En önemli küçültme burada */
    .custom-filter-badge-img {
        width: 35px !important; /* Kartın içinde kaybolmayacak ama görseli kapatmayacak boyut */
        top: -2px !important;
        right: -2px !important;
    }

    /* Ürün kartının mobil yüksekliğini ve paddingini optimize et */
    .custom-filter-product-card {
        padding: 5px !important;
    }
    
    /* Ürün başlıklarını mobilde daralt (Görseldeki gibi 2 sütunlu yapıda taşma yapmaması için) */
    .custom-filter-product-card h4, .custom-product-titlee{
        font-size: 11px !important;
        margin: 5px 0 !important;
        line-height: 1.2 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* MOBILE */
.custom-product-badge-mobile {
    position: absolute !important;
    z-index: 100; /* Swiper elemanlarının ve pagination'ın üstünde durması için */
    top: 15px;
    right: 15px;
    width: 65px; /* Mobildeki ideal boyut */
    height: auto;
    pointer-events: none; /* Altındaki slider'ın kaydırılmasını engellemez */
    user-select: none;
}

.custom-product-badge-mobile-left {
    position: absolute !important;
    z-index: 100; /* Swiper elemanlarının ve pagination'ın üstünde durması için */
    top: 15px;
    left: 15px;
    width: 170px !important; /* Mobildeki ideal boyut */
    height: auto !important;
    pointer-events: none; /* Altındaki slider'ın kaydırılmasını engellemez */
    user-select: none;
    width: 110px;
    height: 40px;
}

/* Masaüstü Ekranlar İçin Boyut Ayarı */
@media screen and (min-width: 1024px) {
    .custom-product-badge-mobile {
        width: 85px;
        top: 20px;
        right: 20px;
    }
    
    .custom-product-badge-mobile-left {
        width: 85px;
        top: 20px;
        left: 20px;
    }
}

/* Swiper container'ın badge'i doğru hizalaması için */
.swiper-container.relative {
    position: relative !important;
}


/* SINGLE BLOG PAGE */
.custom-single-blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.custom-single-blog-main {
    width: 100%;
}

.custom-single-blog-header {
    text-align: center;
    margin-bottom: 30px;
}

.custom-single-blog-date {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.custom-single-blog-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.custom-single-blog-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.custom-single-blog-media {
    margin-bottom: 40px;
}

.custom-single-blog-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.custom-single-blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.custom-single-blog-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
}

.custom-single-blog-content ul,
.custom-single-blog-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.custom-single-blog-content li {
    margin-bottom: 10px;
}

.custom-single-blog-content p {
    margin-bottom: 15px;
}

.custom-single-blog-share {
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.custom-single-blog-share-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.custom-single-blog-share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-single-blog-share-btn:hover {
    background: #f8f8f8;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-single-blog-share-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.custom-single-blog-recent {
    margin-bottom: 40px;
}

.custom-single-blog-recent-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

.custom-single-blog-last-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.custom-single-blog-last-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.custom-single-blog-last-item:hover {
    transform: translateY(-5px);
}

.custom-single-blog-last-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.custom-single-blog-last-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.custom-single-blog-last-title {
    display: block;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.custom-single-blog-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.custom-single-blog-back {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.custom-single-blog-back:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .custom-single-blog-title {
        font-size: 28px;
    }
    
    .custom-single-blog-intro {
        font-size: 16px;
    }
    
    .custom-single-blog-last-list {
        grid-template-columns: 1fr;
    }
}


/* CUSTOM WP AND TEL */
/* İki butonu yan yana tutan kapsayıcı */
.custom-siparis-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    margin: 20px 0;
    align-items: stretch;
}

.custom-tabela {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    height: 65px; /* Taşmayı önlemek için sabitlendi */
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.custom-tabela .wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.custom-tabela .icon {
    font-size: 24px;
    flex-shrink: 0;
}

.custom-tabela .right {
    min-width: 0; /* Metin kesme (ellipsis) için gerekli */
}

.custom-tabela .title {
    font-size: 11px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-tabela .number {
    font-size: 13px;
    font-weight: 600;
    margin: 2px 0;
}

.custom-tabela .slogan {
    font-size: 10px;
    margin: 0;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Renk Düzenlemeleri */
.custom-tel { background: #fff; color: #e74c3c; border-color: #e74c3c; }
.custom-wp { background: #2ecc71; color: #fff; border-color: #27ae60; }
.custom-wp a { color: inherit; text-decoration: none; display: flex; width: 100%; align-items: center; }

@media (max-width: 768px) {
    .custom-siparis-wrapper { flex-direction: column; }
    .custom-tabela { height: auto; }
}

nav .category-menu .firstLi .dropdown-menu {
    z-index: 999 !important;    
}

/* system theme override */
.custom-filter-discount-badge-2 {
    /* Konumlandırma: Sol yerine SAĞA çekildi */
    position: absolute !important;
    top: 10px !important;   /* Üstten mesafe */
    right: 10px !important; /* Sağdan mesafe */
    z-index: 20 !important;

    /* Dikey Metin Yapısı */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Boyut ve Form */
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    
    /* Renk ve Degrade: Görseldeki o şık kırmızı tonları */
    background: radial-gradient(circle, #e74c3c 0%, #c0392b 85%) !important;
    color: #fff !important;
    
    /* SARI BOYAMA VE IŞIK EFEKTİ (Glow) */
    border: 2px solid #f1c40f !important;
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.8), 
                inset 0 0 8px rgba(255, 255, 255, 0.2) !important;
    
    /* Yazı Stilleri */
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 0.85 !important;
    text-align: center !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
}

/* "İNDİRİM" Alt Yazısı */
.custom-filter-discount-badge-2 small {
    display: block !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin-top: 2px !important;
}

/* Mobilde Sağ Üst Uyumu */
@media screen and (max-width: 768px) {
    .custom-filter-discount-badge-2 {
        width: 50px !important;
        height: 50px !important;
        font-size: 14px !important;
        top: 8px !important;   /* Mobilde biraz daha yanaştır */
        right: 8px !important;
    }
}


/*****/
.price.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.custom-discount-info {
    color: #e74c3c;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    animation: fadeIn 0.5s ease;
}

@media (max-width: 768px) {
    .custom-discount-info {
        font-size: 12px;
        padding: 3px 10px;
    }
}


.custom-up-top {
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .custom-up-top {
        margin-top: 0.4rem;
    }
}

.main .productList .productImages {
    padding-top: 105% !important;
}

.custom-spec-old {
    font-size: 16px;
    color: #969696;
    text-decoration: line-through;
}

.custom-spec-new {
    font-size: 20px;
    color: var(--anarenk);
    font-weight: 700;
}

@media screen and (max-width: 480px) {
    .custom-spec-old {
        font-size: 9px;
    }
    .custom-spec-new {
        font-size: 15px;
    }
}

/* CUSTOM TRUST */


.custom-trust-section {
	background: linear-gradient(135deg, #0d1b2a, #1b263b);
	color: #ffffff;
	padding: 18px 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.custom-trust-content {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.custom-trust-title {
	font-size: 18px;
	margin: 0;
	letter-spacing: 0.02em;
}

.custom-trust-text {
	margin: 0;
	font-size: 13px;
	opacity: 0.85;
}

.custom-trust-logos {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.custom-trust-logo {
	background-color: rgba(255, 255, 255, 0.06);
	border-radius: 999px;
	padding: 6px 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(6px);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.custom-trust-logo img {
	display: block;
	max-height: 26px;
	width: auto;
}

.custom-trust-logo:hover {
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.25);
}

/* Özel ikon sınıfları */
.custom-ssl img {
	max-height: 24px;
}

.custom-visa img,
.custom-mastercard img,
.custom-paytr img {
	max-height: 26px;
}

@media (min-width: 640px) {
	.custom-trust-content {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.custom-trust-title {
		font-size: 20px;
	}

	.custom-trust-text {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.custom-trust-section {
		padding: 14px 12px;
	}

	.custom-trust-logos {
		gap: 10px;
	}

	.custom-trust-logo img {
		max-height: 22px;
	}
}
