/* Modern Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* Premium Animations */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
::-webkit-scrollbar {width: 6px;background-color: #f1f5f9;border-left: 0px solid #6366f1;}
::-webkit-scrollbar-thumb {background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); border-radius: 3px;}
::-webkit-scrollbar-thumb:hover {background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);}
/* Modern Typography */
h1,h2,h3,h4,h5 {font-family: 'Poppins', sans-serif !important; font-weight: 700 !important; letter-spacing: -0.5px;}
h1 {font-size: 2.75rem !important; line-height: 1.2 !important;}
h2 {font-size: 2.25rem !important; line-height: 1.3 !important;}
h3 {font-size: 1.875rem !important; line-height: 1.4 !important;}
h4 {font-size: 1.5rem !important; line-height: 1.4 !important;}
h5 {font-size: 1.25rem !important; line-height: 1.5 !important;}

a {font-family: 'Inter', sans-serif !important; font-weight: 500;}
b, strong {font-family: 'Inter', sans-serif !important; font-weight: 700 !important; font-style: normal;}
span {font-family: 'Inter', sans-serif !important; font-style: normal;}
em {font-family: 'Inter', sans-serif !important; font-style: normal;}
li {font-family: 'Inter', sans-serif !important;}
ul {font-family: 'Inter', sans-serif !important; list-style-type: none !important; }
.btn {font-family: 'Inter', sans-serif !important; font-weight: 600 !important; font-style: normal;}

body, html {
    font-family: 'Inter', sans-serif !important; 
    font-size: 16px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    color: #1f2937 !important;
    background: #ffffff;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Menü fixed olduğu için body'ye padding JavaScript ile dinamik ekleniyor */

p {
    font-family: 'Inter', sans-serif !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    color: #4b5563 !important;
    font-weight: 400 !important;
}
a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    text-decoration: none;
}
a:hover {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.header {
    padding: 0px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.header-ust {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}
.header-ust::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}
.header-ust p {
    color: #fff; 
    font-weight: 600; 
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}
.header-ust p b {
    color: #6366f1;
    font-style: normal;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255,200,0,0.5);
}
.header-ust p strong {
    color: #6366f1; 
    font-style: normal; 
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255,200,0,0.5);
}
.header-menu {text-align: right;}
.dropdown {
  position: relative;
  display: inline-block;
  color: #fff; cursor: pointer; font-weight: 700; 
}
.dropdown a {display: block; text-align: left; color: #fff; text-decoration: none; padding: 10px; font-weight: 600;}
.dropdown a:hover {background-color: #15212a;}
.dropdown-content {
  display: none;
  position: absolute;
  background: #6366f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 15px 0px;
  z-index: 1;  border-radius: 0px 0px 12px 12px; border-top: 2px solid #ffc800;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}
.menu {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

/* Menü scroll down'da gizlenir */
.header.navbar-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

/* Menü scroll up'da görünür ve shadow artar */
.header.navbar-visible {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
/* Modern Logo Styles */
.logo {
    text-decoration: none; 
    color: #1f2937; 
    font-weight: 900; 
    font-size: 36px;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}
.logo:hover {
    transform: translateY(-2px);
}
.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
.logo-icon {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo-text {
    transition: all 0.3s ease;
}
.logo:hover .logo-text {
    transform: translateX(3px);
}
.asp1 {color: #6366f1;}
.asp2 {color: #8b5cf6;}
.asp3 {color: #ec4899;}
.asp4 {color: #f59e0b;}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 14px 24px;
    margin: 0 4px;
    color: #1f2937 !important; 
    font-weight: 700 !important; 
    font-size: 15px !important;
    letter-spacing: 0.3px; 
    transition: all 0.3s ease; 
    position: relative;
    border-radius: 12px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, sans-serif;
} 
.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.navbar-expand-lg .navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}
.navbar-expand-lg .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}
.navbar-expand-lg .navbar-nav .nav-link:hover::before,
.navbar-expand-lg .navbar-nav .nav-link.active::before {
    opacity: 1;
}   
.btn-asp {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  padding: 12px 28px;
  text-align: center;
  transition: all 0.3s ease;
  color: #ffffff !important; 
  font-weight: 600 !important;
  font-size: 15px !important;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  display: block;
  border: none;
}

.btn-asp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
  color: #ffffff !important;
  text-decoration: none;
}

.site-baslik {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}
.site-baslik::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.site-baslik h1 {
    font-weight: 800 !important; 
    font-size: 3rem !important;
    letter-spacing: -1px; 
    color: #ffffff !important;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    line-height: 1.2 !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}
.site-baslik h2 {
    color: #e9d5ff !important; 
    font-weight: 600 !important; 
    font-size: 20px !important;
    position: relative;
    z-index: 1;
    line-height: 1.8 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.site-baslik p {
    color: #f3e8ff !important; 
    font-weight: 400 !important; 
    font-size: 18px !important;
    position: relative;
    z-index: 1;
    line-height: 1.75 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.site-baslik strong {
    font-style: normal;
    font-weight: 900 !important;
}
.temalar-tab {margin-top: 50px;}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 600 !important; border: none !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 600 !important; border: none !important;
}
.nav-tabs .nav-item {margin-right: 5px;}
.nav-tabs .nav-link:hover {
  border-color: #fff
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {color: #1f2937 !important; font-weight: 600 !important; font-size: 16px !important;}
.nav-tabs {
  border-bottom: 0px solid #dee2e6;
}
.temalar-baslik {
    margin-top: 60px;
    margin-bottom: 30px;
}
.temalar-baslik p {
    color: #6b7280 !important; 
    font-weight: 400 !important; 
    font-size: 18px !important;
    margin-top: 10px;
    line-height: 1.7 !important;
}
.temalar-baslik h2 {
    font-weight: 800 !important; 
    font-size: 2.5rem !important;
    letter-spacing: -0.5px; 
    color: #1f2937 !important; 
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.3 !important;
}
.temalar-baslik h2::before {
    content: "";
    width: 60px;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}
.temalar-baslik h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #e9ecef 0%, transparent 100%);
}
.tema-tumu {
    text-align: right; 
    margin-top: 20px;
}
.tema-tumu a {
    text-decoration: none; 
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff; 
    font-weight: 700; 
    padding: 12px 25px; 
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 33, 42, 0.3);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.tema-tumu a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 33, 42, 0.4);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #6366f1;
}
.tema-tumu a::after {
    content: '→';
    transition: transform 0.3s;
}
.tema-tumu a:hover::after {
    transform: translateX(5px);
}
.temalar {margin-top: 40px;} 
.temalar-ic img {width: 100%; height: 400px;}
.one-cikanlar {margin-bottom: 15px;}
.tasarimlar-ic {
    padding: 0px; 
    border-radius: 0px 0px 16px 16px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}
.tasarimlar-ic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s;
}
.tasarimlar-genel:hover .tasarimlar-ic::before {
    left: 100%;
}
.tasarimlar-genel:hover .tasarimlar-ic {
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}
.tema-bilgileri {
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
.tema-bilgileri h2 {
    margin: 0 0 12px 0;
}
.tema-bilgileri h2 a {
    font-weight: 800; 
    font-size: 19px; 
    color: #15212a; 
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.4;
}
.tema-bilgileri h2 a:hover {
    color: #667eea;
    transform: translateX(5px);
}
.tema-ozellik {
    color: #6b7280; 
    font-weight: 600; 
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}
.satis-butonlari {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.tema-tiyat {
    float: right; 
    font-weight: 800; 
    color: #15212a; 
    font-size: 22px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 5px 0;
}
    

.btn-demo {
    background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
    padding: 12px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 81, 47, 0.4);
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.btn-demo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-demo:hover::before {
    width: 300px;
    height: 300px;
}
.btn-demo:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 81, 47, 0.6);
    color: #fff;
    text-decoration: none;
}

.slider-resimler {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  transition: top 5s ease-out 0s;
}

.slider-resimler:hover {top: -250px !important;}
.asp11 {
    overflow: hidden;
    position: relative;
    height: 400px;
    border-radius: 16px 16px 0px 0px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.asp11::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.tasarimlar-genel:hover .asp11::after {
    opacity: 1;
}
.asp11 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tasarimlar-genel:hover .asp11 img {
    transform: scale(1.1);
}
.tasarimlar-genel {margin-bottom: 50px;}
.tasarimlar-ic { position: relative;}

/* Premium Theme Card Styles - Ultra Luxury */
.modern-theme-card {
    background: linear-gradient(145deg, #ffffff 0%, #fdfbff 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.10),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.12);
    backdrop-filter: blur(10px);
    
    /* High Quality Rendering */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.modern-theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.02) 0%, 
        transparent 50%, 
        rgba(99, 102, 241, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.modern-theme-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 35px 90px rgba(139, 92, 246, 0.25),
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(139, 92, 246, 0.4);
}

.modern-theme-card:hover::before {
    opacity: 1;
}

/* Premium Price Badge - Luxury Gold Shine */
.theme-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, 
        #8b5cf6 0%, 
        #6366f1 50%, 
        #7c3aed 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.35);
    transform: rotate(-3deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modern-theme-card:hover .theme-price-badge {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@keyframes pulsePrice {
    0%, 100% {
        transform: rotate(-3deg) scale(1);
        box-shadow: 
            0 15px 40px rgba(139, 92, 246, 0.5),
            0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: rotate(-3deg) scale(1.08);
        box-shadow: 
            0 20px 55px rgba(139, 92, 246, 0.7),
            0 8px 20px rgba(0, 0, 0, 0.3);
    }
}

.price-amount {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 255, 255, 0.3);
}

.price-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-top: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Premium Gold Badge - Luxury Custom */
.custom-badge {
    background: linear-gradient(135deg, 
        #fbbf24 0%, 
        #f59e0b 50%, 
        #d97706 100%);
    box-shadow: 
        0 15px 45px rgba(251, 191, 36, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@keyframes pulseGold {
    0%, 100% { 
        transform: rotate(-3deg) scale(1);
        box-shadow: 
            0 15px 45px rgba(251, 191, 36, 0.6),
            0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: rotate(-3deg) scale(1.08);
        box-shadow: 
            0 20px 60px rgba(251, 191, 36, 0.8),
            0 8px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Premium Category Badge */
.theme-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 800;
    z-index: 10;
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
}

.modern-theme-card:hover .theme-category-badge {
    transform: scale(1.05);
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Premium Image Wrapper - Luxury Display - Kare Format */
.theme-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, 
        #8b5cf6 0%, 
        #6366f1 50%, 
        #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* High Quality Container */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.theme-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 1;
    transition: opacity 0.6s ease;
}

.modern-theme-card:hover .theme-image-wrapper::before {
    opacity: 0.8;
}

.theme-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
    /* Ultra Sharp & High Quality Image Rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    
    /* Enhanced Visual Quality */
    filter: contrast(1.05) saturate(1.02);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    
    /* Anti-aliasing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modern-theme-card:hover .theme-image {
    transform: scale(1.08) translateZ(0);
    filter: brightness(1.02) contrast(1.1) saturate(1.08);
    image-rendering: -webkit-optimize-contrast;
}

/* Premium Theme Overlay - Hafif ve Şık */
.theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(139, 92, 246, 0.05) 0%, 
        rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(8px) saturate(120%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 5;
}

.modern-theme-card:hover .theme-overlay {
    opacity: 1;
    visibility: visible;
}

/* Premium View Button - Ultra Luxury */
.theme-view-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modern-theme-card:hover .theme-view-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.theme-view-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 
        0 16px 45px rgba(139, 92, 246, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Premium Theme Content */
.theme-content {
    padding: 26px 24px 24px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    z-index: 2;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.theme-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.2) 50%, 
        transparent 100%);
}

.theme-title {
    margin: 0 0 16px 0;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 54px;
}

.theme-title a {
    color: #020617;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    font-family: 'Poppins', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    position: relative; font-size:20px; font-weight:600;
}

.theme-title a:hover {
    color: #8b5cf6;
    transform: translateX(3px);
}

.theme-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: auto;
    padding-bottom: 20px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 74px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    padding-left: 16px;
    transition: all 0.3s ease;
}

.theme-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #8b5cf6 0%, 
        #6366f1 50%,
        rgba(139, 92, 246, 0.3) 100%);
    border-radius: 2px;
}

.modern-theme-card:hover .theme-description {
    color: #334155;
}

.modern-theme-card:hover .theme-description::before {
    width: 5px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

/* Premium Theme Footer */
.theme-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    border-top: 2px solid transparent;
    background: linear-gradient(90deg, #f9fafb 0%, #f3f4f6 50%, #f9fafb 100%) bottom/100% 2px no-repeat;
    flex-wrap: nowrap;
    margin-top: auto;
}

.theme-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.feature-item {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 900;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 12px rgba(139, 92, 246, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(139, 92, 246, 0.5),
        0 3px 8px rgba(0, 0, 0, 0.25);
}

.feature-item i {
    font-size: 14px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Premium Buy Button - Luxury Call-to-Action */
.theme-buy-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #7c3aed 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 
        0 8px 24px rgba(139, 92, 246, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
}

.theme-buy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s, height 0.8s;
}

.theme-buy-btn:hover::before {
    width: 400px;
    height: 400px;
}

.theme-buy-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 
        0 15px 45px rgba(139, 92, 246, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Premium Custom Theme Button - Emerald Green */
.custom-buy-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    box-shadow: 
        0 8px 24px rgba(16, 185, 129, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

.custom-buy-btn:hover {
    box-shadow: 
        0 15px 45px rgba(16, 185, 129, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   KAMPANYA BÖLÜMÜ - PREMIUM DESIGN
   ============================================ */

.campaign-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #2e1065 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.campaign-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, 50px); }
}

/* Campaign Header */
.campaign-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 8px 24px rgba(239, 68, 68, 0.4),
        0 0 40px rgba(239, 68, 68, 0.3);
    animation: pulseFire 2s ease-in-out infinite;
    margin-bottom: 24px;
}

.campaign-badge i {
    font-size: 18px;
    animation: fireFlicker 1s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes pulseFire {
    0%, 100% { 
        box-shadow: 
            0 8px 24px rgba(239, 68, 68, 0.4),
            0 0 40px rgba(239, 68, 68, 0.3);
    }
    50% { 
        box-shadow: 
            0 12px 32px rgba(239, 68, 68, 0.6),
            0 0 60px rgba(239, 68, 68, 0.5);
    }
}

.campaign-title {
    font-size: 44px;
    font-weight: 900;
    color: #f9fafb;
    margin: 8px 0 0 0;
    text-shadow: 0 6px 24px rgba(15, 23, 42, 0.6);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.04em;
}

/* Campaign Card */
.campaign-card {
    background: transparent;
    border-radius: 28px;
    overflow: visible;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.campaign-section .campaign-card {
    max-width: 960px;
    margin: 0 auto;
}

.campaign-main {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 28px 36px 32px;
    border-radius: 28px;
}

/* Campaign Slider */
.campaign-slider {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
}

.campaign-slider-track {
    position: relative;
    overflow: hidden;
}

.campaign-slide {
    display: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.campaign-slide.active {
    display: block;
}

@media (max-width: 991.98px) {
    .campaign-main {
        flex-direction: column;
        padding: 24px 20px 28px;
    }

    .campaign-image {
        max-width: 100%;
        width: 100%;
    }
}

.campaign-slider-nav {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.campaign-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.9);
    background: rgba(15, 23, 42, 0.25);
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
    transition: all 0.25s ease;
    pointer-events: auto;
}

.campaign-nav-btn:hover {
    background: rgba(79, 70, 229, 0.35);
    transform: translateY(-3px);
}

/* Kampanya kartı hover efekti kaldırıldı */

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    z-index: 10;
    box-shadow: 
        0 12px 32px rgba(239, 68, 68, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.discount-percent {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.discount-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Campaign Status */
.campaign-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-status i {
    animation: fireFlicker 1s ease-in-out infinite;
}

/* Campaign Image */
.campaign-image {
    flex: 0 0 48%;
    max-width: 48%;
    min-height: 260px;
    max-height: 340px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.45);
}

.campaign-image img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.5s ease;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.35);
}

.campaign-card:hover .campaign-image img {
    transform: none;
}

.campaign-content {
    flex: 1;
}

.campaign-image .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9ca3af;
    font-size: 60px;
}

/* Campaign Content */
.campaign-content {
    padding: 28px;
}

.campaign-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #7c3aed;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.campaign-product-title {
    font-size: 30px;
    font-weight: 950;
    line-height: 1.3;
    margin: 0 0 12px 0;
    font-family: 'Poppins', sans-serif;
}

.campaign-product-title a {
    color: #f9fafb;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    text-shadow: 0 8px 24px rgba(15, 23, 42, 0.7);
}

.campaign-product-title a:hover {
    color: #e0e7ff;
}

/* Campaign Price */
.campaign-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 22px;
}

.old-price {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #fb7185 0%, #ef4444 35%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(248, 113, 113, 0.45);
}

/* Countdown Timer */
.countdown-timer {
    background: radial-gradient(circle at top left, #fef9c3 0%, #fee2e2 45%, #f5f3ff 100%);
    border: 2px solid rgba(251, 191, 36, 0.95);
    border-radius: 22px;
    padding: 22px 26px;
    margin-bottom: 22px;
    box-shadow:
        0 24px 50px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(248, 250, 252, 0.7);
}

.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-label i {
    font-size: 16px;
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.countdown-box {
    background: #fefce8;
    border-radius: 16px;
    padding: 14px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 70px;
}

.countdown-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #b91c1c;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.countdown-text {
    display: block;
    font-size: 11px;
    color: #6b7280;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 22px;
    font-weight: 900;
    color: #92400e;
}

/* Campaign Buy Button */
.campaign-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 24px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.campaign-buy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.campaign-buy-btn:hover::before {
    width: 400px;
    height: 400px;
}

.campaign-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: white;
}

.campaign-buy-btn i:last-child {
    transition: transform 0.3s ease;
}

.campaign-buy-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .campaign-title {
        font-size: 32px;
    }
    
    .campaign-subtitle {
        font-size: 16px;
    }
    
    .countdown-box {
        min-width: 50px;
        padding: 10px 6px;
    }
    
    .countdown-value {
        font-size: 20px;
    }
    
    .discount-percent {
        font-size: 24px;
    }
}

/* Premium "Tüm Temalar" Button - Ultra Luxury Call-to-Action */
.btn-tum-temalar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    background: linear-gradient(135deg, 
        #8b5cf6 0%, 
        #6366f1 50%, 
        #7c3aed 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: 
        0 15px 50px rgba(139, 92, 246, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.btn-tum-temalar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.8s ease;
}

.btn-tum-temalar:hover::before {
    left: 100%;
}

.btn-tum-temalar::after {
    content: '→';
    font-size: 18px;
    font-weight: bold;
    margin-left: 8px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-tum-temalar:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 70px rgba(139, 92, 246, 0.6),
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 0 4px rgba(139, 92, 246, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-tum-temalar:hover::after {
    transform: translateX(6px);
}

.btn-tum-temalar:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.2);
}

#slider-text{
  padding-top: 40px;
  display: block;
}
#slider-text .col-md-6{
  overflow: hidden;
}


#slider-control img{
  padding-top: 60%;
  margin: 0 auto;
}

.kimiz h2 {font-weight: 700; color: #131022;}
.anlatim-isim { font-size: 16px; font-weight: 600; color: #0382ff !important;}
.anlatim-isim span {border-bottom: 1px solid #0382ff;}
.anlatim h2 {font-weight: 600; font-size: 24px; color:#131022 ; margin-top: 30px; margin-bottom: 20px;}
.yorumlariniz {
    background: linear-gradient(135deg, #e5eef7 0%, #f0f7ff 100%);
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}
.yorumlariniz::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.yorum-yapan {
    text-align: center;
    position: relative;
    z-index: 1;
}
.yorum-yapan img {
    object-fit: contain; 
    width: 250px; 
    height: 100px; 
    border-radius: 22px; 
    padding: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.yorum-yapan img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.yorum-yapan p {
    font-weight: 800; 
    margin-top: 15px; 
    font-size: 20px;
    color: #15212a;
}
.yorum-detay {
    text-align: center; 
    font-weight: 600; 
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Logo Slider */

.logo-slider {
	background: white;
	-webkit-box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
	box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.logo-slider::before, .logo-slider::after {
	background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 575px;
	position: absolute;
	width: 200px;
	z-index: 2;
}

.logo-slider::after {
	right: 0;
	top: 0;
	-webkit-transform: rotateZ(180deg);
	transform: rotateZ(180deg);
}

.logo-slider::before {
	left: 0;
	top: 0;
}

.logo-slider .logo-slide-track {
	-webkit-animation: logo-scroll 60s linear infinite;
	animation: logo-scroll 60s linear infinite;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: calc(250px * 14);
  animation-duration: 30s;
  animation-iteration-count: infinite;
}
.logo-slider .logo-slide-track:hover {animation-play-state: paused;}
.logo-slider .slide {
	height: 150px;
	width:20%;
	padding: 0px 20px;
}

@-webkit-keyframes logo-scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-webkit-transform: translateX(calc(-250px * 7));
		transform: translateX(calc(-250px * 7));
	}
}

@keyframes logo-scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-webkit-transform: translateX(calc(-250px * 7));
		transform: translateX(calc(-250px * 7));
	}
}
.blog-yazilari {
    margin-top: 20px;
}
.blog-yazilari-ic {
    border-radius: 18px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    overflow: hidden;
    border: 1px solid #f0f0f0;
    background: white;
    position: relative;
}
.blog-yazilari-ic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.blog-yazilari:hover .blog-yazilari-ic::before {
    transform: scaleX(1);
}
.blog-yazilari:hover .blog-yazilari-ic {
    transform: translateY(-8px) scale(1.02); 
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2) !important;
    border-color: #667eea;
}
.blog-yazilari-ic:hover h2 a {
    color: #667eea !important;
    transform: translateX(5px);
}
.blog-yazilari-ic:hover img {
    opacity: 0.9; 
    transform: scale(1.1); 
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.blog-resimi {
    overflow: hidden;
    position: relative;
}
.blog-resimi img {
    width: 100%; 
    height: 300px;  
    border-radius: 18px 18px 0px 0px; 
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    object-fit: cover;
}
.blog-baslik {padding:0px 15px;}
.blog-baslik h2 {font-size: 16px; font-weight: 800;margin-top: 15px; border-bottom: 1px solid #efefef; padding-bottom: 10px;}
.blog-baslik h2 a {color: #242628;}
.blog-yazi-istatistik {padding-bottom:10px; padding-left: 15px; padding-right: 15px;}
.blog-yazi-istatistik p {color: #6b7280 !important; font-weight: 500 !important; font-size: 15px !important;}
.istatistikler {text-align: right;}
.istatistikler span {font-size: 13px !important; color: #9ca3af !important; font-weight: 600 !important;}
.yapariz {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 60px 30px; 
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
.yapariz::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,200,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.yaptiklarimiz {
    text-align: center; 
    font-size: 48px; 
    color: #fff; 
    font-weight: 900; 
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.yaptiklarimiz p {
    font-size: 20px; 
    font-weight: 600; 
    letter-spacing: 0px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.yaptiklarimiz span {
    padding: 15px 25px;
    margin: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 16px;
    backdrop-filter: blur(10px);
}
.yaptiklarimiz span:hover {
    background: rgba(255,200,0,0.2);
    border-color: #6366f1;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255,200,0,0.3);
    color: #6366f1;
}

/* Table Card - Frontend */
.table-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.table-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.table-card h3, .table-card h4 {
    color: #15212a;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f8f9fa;
    position: relative;
}

.table-card h3::before, .table-card h4::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}
.footer {
    background: linear-gradient(135deg, #4c1d95 0%, #2e1065 50%, #1e1b4b 100%);
    margin-top: 80px; 
    padding: 70px 0 40px 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a78bfa, #c4b5fd, #ddd6fe, #fbbf24);
}
.footer-bilgiler {
    color: #e9d5ff;
    position: relative;
    z-index: 1;
}
.footer-bilgiler h4 {
    font-weight: 700 !important; 
    margin-bottom: 25px;
    font-size: 18px !important;
    color: #f3e8ff !important;
    text-transform: none;
    letter-spacing: 0px;
    position: relative;
    padding-bottom: 15px;
}
.footer-bilgiler h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
    border-radius: 2px;
}
.footer-bilgiler p {
    margin-bottom: 12px;
    color: #e9d5ff !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    transition: all 0.3s;
    line-height: 1.7 !important;
    display: flex;
    align-items: center;
}
.footer-bilgiler p i {
    min-width: 20px;
    opacity: 0.8;
    color: #c4b5fd;
}
.footer-bilgiler p:hover {
    color: #ffffff !important;
    transform: translateX(3px);
}
.footer-bilgiler p:hover i {
    opacity: 1;
    transform: scale(1.1);
}
.footer-belirt {
    color: #a78bfa !important; 
    font-size: 18px !important; 
    font-weight: 700 !important;
    margin-top: 20px;
    display: block;
}
.footer-linkler {
    text-align: left;
}
.footer-linkler a {
    color: #e9d5ff !important; 
    display: block;
    text-decoration: none; 
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    font-size: 15px !important;
    font-weight: 500 !important;
}
.footer-linkler a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
    color: #a78bfa;
    font-size: 16px;
}
.footer-linkler a:hover {
    color: #ffffff !important;
    transform: translateX(5px);
    padding-left: 30px;
}
.footer-linkler a:hover::before {
    opacity: 1;
    left: 5px;
}

/* Footer Sosyal Medya */
.footer-social-icons {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(167, 139, 250, 0.3);
}
.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.footer-social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}
.footer-social-icons a:hover::before {
    width: 100%;
    height: 100%;
}
.footer-social-icons a i {
    font-size: 18px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.footer-social-icons a:hover i {
    transform: rotate(360deg) scale(1.2);
}

/* Tawk.to Chat Widget Özelleştirme */
#tawkchat-container iframe {
    border-radius: 20px 20px 0 0 !important;
}
.widget-visible #tawkchat-minified-box {
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}
/* Mobilde Tawk.to pozisyonu */
@media (max-width: 768px) {
    .widget-visible #tawkchat-container {
        right: 10px !important;
        bottom: 10px !important;
        max-width: calc(100vw - 20px) !important;
    }
    .widget-visible #tawkchat-minified-box {
        right: 15px !important;
        bottom: 15px !important;
    }
}

/* WhatsApp Sabit Butonu */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 40px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: pulseWhatsApp 2.5s ease-in-out infinite;
    text-decoration: none;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: #FFF;
}
.whatsapp-float:hover::before {
    opacity: 1;
}
.whatsapp-float i {
    animation: rotate360 3s linear infinite;
}
.whatsapp-float:hover i {
    animation: shake 0.5s ease-in-out;
}
@keyframes pulseWhatsApp {
    0% { 
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
}
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}
/* WhatsApp Sol Pozisyon */
.whatsapp-float-left {
    right: auto !important;
    left: 40px !important;
}
/* WhatsApp Mobil Uyumluluk */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 20px;
        font-size: 28px;
    }
    .whatsapp-float-left {
        left: 20px !important;
    }
}
/* Hem Tawk.to hem WhatsApp aktifse pozisyon ayarı */
body.has-tawk .whatsapp-float {
    bottom: 160px;
}

/* Yukarı Çık Butonu */
.scroll-top-btn {
    position: fixed;
    right: 32px;
    bottom: 120px; /* Alt köşede değil, biraz yukarıda ve WhatsApp/Tawk'tan ayrı */
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: none;
    outline: none;
    background: radial-gradient(circle at 0 0, rgba(255,255,255,0.25), transparent 60%),
                linear-gradient(135deg, #4f46e5 0%, #8b5cf6 50%, #ec4899 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 18px 45px rgba(76, 81, 191, 0.65);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 998;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    box-shadow: 0 22px 55px rgba(76, 81, 191, 0.85);
    transform: translateY(-3px);
}
.scroll-top-btn i {
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
    .scroll-top-btn {
        right: 16px;
        bottom: 100px;
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
}

/*detay genel*/
.detay-genel {margin-top: 50px;}
.detay-genel h2 {font-size: 24px; font-weight: 800; color: #242628;}
.detay-genel h3 {font-size: 20px; font-weight: 800; color: #242628;}
.detay-genel img {width: 100%; float: left; height: auto; border-radius: 22px; margin-top: 15px; margin-bottom: 15px;}
.site-baslik a {font-weight:900; color: #424668;}
.detay-genel p {color: #585c7b;font-weight: 600;}
.sidebar {margin-top: 30px; padding:20px 50px; border-radius: 22px;}
.tema-fiyat p { font-size: 22px; font-weight: 800;}
.tema-fiyat span {float: right; color: #fc7d07;}
.tema-fiyat {border-bottom: 1px solid #efefef;}
.tema-ozellikleri {margin-top: 20px;}
.tema-ozellikleri h2  {font-weight: 800; font-size: 24px; margin-bottom: 25px;}
.tema-ozellikleri p { font-weight: 700; border-bottom: 1px solid #efefef; margin: 0px; padding: 10px 0px;}
.tema-ozellikleri i {color: #03ad11;}
.tema-demo-ve-satis {border-bottom: 1px solid #efefef; margin-bottom: 15px;}
.populer-temalar h2  {font-weight: 800; font-size: 24px; margin-bottom: 25px; margin-top: 30px;}
.populer-resimi img {width: 100%; height: 100px; border-radius: 8px;}
.populer-basligi h3  {font-weight: 800; font-size: 16px; }
.populer-basligi p {color: #585c7b;font-weight: 700; font-size: 15px;}
.populerler-ic {border-bottom: 1px solid #efefef; margin-bottom: 15px; padding-bottom: 15px;}
.detay-etiketler h2  {font-weight: 800; font-size: 24px; margin-bottom: 25px; margin-top: 30px;}
.detay-etiketler a {border-bottom: 1px solid #efefef; display: block; color: #585c7b;font-weight: 700; padding: 10px 0px;}
.detay-satin-al-btn {
  display: block;
  background-image: linear-gradient(to right, #FF512F 0%, #F09819  51%, #FF512F  100%);
  padding: 15px 25px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;            
  box-shadow: 0 0 20px #eee; font-weight: 600;
  border-radius: 12px;
text-decoration: none; margin-bottom: 15px;
}

.detay-satin-al-btn:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
  
.detay-demo-btn {
  margin-top: 15px; margin-bottom: 15px;
  background-image: linear-gradient(to right, #134E5E 0%, #71B280  51%, #134E5E  100%);
  padding: 15px 45px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;  font-weight: 700;          
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

.detay-demo-btn:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
/*detay2 başlangıç*/
.onceki-sonraki h2  {font-weight: 800; font-size: 24px; margin-bottom: 25px; margin-top: 30px;}
.onceki-basligi h2 {margin: 0px;}
.onceki-basligi h2 a  {font-weight: 600; font-size: 18px; color: #fff; display: block;}
.iconu {padding: 0px; text-align: center;}
.iconu i {color: #fff; font-size: 35px; padding: 5px;}
.onceki-konu {background-color: #15212a; margin-top: 15px; padding: 15px; border-radius: 12px;}
.sonraki-konu {background-color: #15212a; margin-top: 15px; padding: 10px 15px; border-radius: 12px;}
.tema-kategorileri {margin-top: 30px;}

@media (min-width:992px){
  .about_section .about_img img{width:60%;}
  .about_section .about_img_2{margin:-120px 0 0 250px;}
  .about_section .about_img_3{margin:-160px 0 0 40px;}
}
@media(max-width:991px){
  .about_section .about_img img{margin:3rem 0;}
}
@media (max-width: 768px) {
  /* Mobilde padding JavaScript ile dinamik ayarlanıyor */
  
  .about_section .about_img img{width:100%;}
  .about_section .about_img img {margin-top: 10px !important;}
  .sidebar {margin-top: 30px; padding:10px; border-radius: 22px;}
  .populer-resimi img {width: 100%; height: auto; margin-bottom: 15px;}
  .navbar-toggler i {color: #fff; font-size: 25px;}
  .footer-linkler {text-align: left;}
  .footer-bilgiler {
    margin-bottom: 40px;
    text-align: center;
  }
  .footer-bilgiler h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-social-icons {
    margin-top: 20px;
    padding-top: 20px;
  }
  .footer-social-icons > div {
    justify-content: center !important;
  }
  .dropdown-content {
    right: 0;
  }
  /* Responsive Logo */
  .logo-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .logo-icon svg {
    width: 22px !important;
    height: 22px !important;
  }
  .logo-text div:first-child {
    font-size: 18px !important;
  }
  .logo-text div:last-child {
    font-size: 9px !important;
  }
  /* Premium Theme Card Responsive */
  .modern-theme-card {
    margin-bottom: 30px;
  }
  .modern-theme-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
  .theme-image-wrapper {
    height: 250px;
  }
  .theme-content {
    min-height: auto;
    padding: 20px;
  }
  .theme-price-badge {
    padding: 12px 18px;
    transform: rotate(0deg);
  }
  .price-amount {
    font-size: 20px;
  }
  .theme-category-badge {
    padding: 8px 16px;
    font-size: 10px;
  }
  .theme-content {
    padding: 20px;
  }
  .theme-title {
    font-size: 19px;
    min-height: 54px;
    margin-bottom: 16px;
    font-weight: 900;
  }
  .theme-description {
    font-size: 13px;
    line-height: 1.65;
    min-height: 64px;
    padding-left: 14px;
    padding-bottom: 16px;
  }
  .theme-description::before {
    width: 3px;
  }
  .theme-footer {
    flex-wrap: wrap;
    gap: 12px;
  }
  .theme-features {
    width: 100%;
    justify-content: center;
  }
  .theme-buy-btn {
    flex: 0 0 auto;
    min-width: auto;
    padding: 12px 20px;
  }
  .feature-item {
    font-size: 10px;
    padding: 7px 14px;
  }
  
  /* Premium Tüm Temalar Button Responsive */
  .btn-tum-temalar {
    padding: 16px 35px;
    font-size: 13px;
    letter-spacing: 1px;
  }
  
  .btn-tum-temalar::after {
    font-size: 16px;
  }
  
  /* Responsive Hero Section */
  .site-baslik {
    padding: 60px 20px !important;
  }
  .site-baslik h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }
  .site-baslik h2 {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
  }
  .site-baslik h2 span {
    font-size: 1rem !important;
    display: block;
    margin-top: 10px;
  }
  .site-baslik h2 span:first-child {
    font-size: 1.15rem !important;
  }
  /* Modern Theme Card Responsive */
  .theme-price-badge {
    padding: 10px 14px;
    top: 15px;
    right: 15px;
  }
  .price-amount {
    font-size: 18px;
  }
  .price-label {
    font-size: 9px;
  }
  .theme-category-badge {
    padding: 6px 12px;
    font-size: 10px;
    top: 15px;
    left: 15px;
  }
  .theme-image-wrapper {
    height: 250px;
  }
  .theme-content {
    padding: 18px;
  }
  .theme-title {
    font-size: 17px;
  }
  .theme-description {
    font-size: 13px;
  }
  .theme-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .theme-buy-btn {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (min-width:1024px) and (max-width:1366px) { 
.asp11 {height: 250px;border-radius: 12px 12px 0px 0px;}
.tema-bilgileri h2 a {font-size: 14px;}
.tema-bilgileri h2 {line-height: 30px;}
.tema-ozellik {font-size: 12px;}
.btn-demo {font-size: 13px !important;}
.btn-satin-al {font-size: 13px !important;}
.about_section .about_img img{max-width:100%; height: 250px; }
.populer-resimi img {width: 100%; height: 100px; border-radius: 8px;}
.populer-basligi h3  {font-weight: 800; font-size: 16px; }
.populer-basligi p {color: #585c7b;font-weight: 700; font-size: 12px;}
.detay-etiketler h2 {font-size: 18px;}
.blog-resimi img {width: 100%; height:200px}
.blog-baslik h2 {font-size: 13px; font-weight: 800;margin-top: 15px; border-bottom: 1px solid #efefef; padding-bottom: 10px;}
.blog-yazi-istatistik {padding-bottom:10px; padding-left: 15px; padding-right: 15px;}
.blog-yazi-istatistik p {color: #51626a; font-weight: 600; font-size: 12px;}
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1600px;
  }
  
  }



.referanslari-sirala {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
}
.referanslari-sirala img {
    width: 150px; 
    height: auto; 
    padding: 20px;
    filter: grayscale(100%) opacity(0.6); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    cursor: pointer;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    object-fit: contain;
}
.referanslari-sirala img:hover {
    filter: grayscale(0%) opacity(1); 
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* ============================================
   STAR RATING SYSTEM - Yıldız Puanlama Sistemi
   ============================================ */
.star-rating-input {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 36px !important;
    margin: 10px 0 !important;
}

.rating-star {
    color: #fbbf24 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    margin-right: 5px !important;
    font-size: 36px !important;
    display: inline-block !important;
    -webkit-text-stroke: 1px rgba(251, 191, 36, 0.3);
}

.rating-star:hover {
    transform: scale(1.2) !important;
    color: #f59e0b !important;
}

.rating-star.fa-regular {
    color: #d1d5db !important;
    -webkit-text-stroke: 1px rgba(209, 213, 219, 0.5);
}

/* Yorum kartlarındaki yıldızlar - Küçük boyut */
.yorum-yildiz {
    color: #fbbf24 !important;
    font-size: 16px !important;
    margin-right: 2px !important;
}

.yorum-yildiz.fa-regular {
    color: #d1d5db !important;
}

/* Font Awesome İkon Fix */
.fa-star, .fa-solid.fa-star, .fa-regular.fa-star {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
}

.fa-regular.fa-star {
    font-weight: 400 !important;
}