/* Tema3 Custom Styles */

/* ============================================
   STICKY HEADER - MENÜ BLOĞU
   ============================================ */
header {
    position: relative;
    z-index: 1000;
}

header .header-1,
header .main-menu {
    transition: all 0.3s ease;
}

/* Sticky Header - Scroll olduğunda sabit kal */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

header.sticky .custom-container.container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

header.sticky .header-1 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

header.sticky .main-menu {
    width: 100% !important;
    max-width: 100% !important;
}

header.sticky .header-1 {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
}

header.sticky .main-menu {
    background: #fff;
}

/* Dark mode için sticky header */
.dark header.sticky .header-1 {
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.dark header.sticky .main-menu {
    background: #1a1a1a;
}

/* Top Header Styles */
.top_header {
    background: #111827;
    padding: 10px 0;
    text-align: center;
}

.top_header p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 15px;
}

.top_header p a {
    color: #fff;
    text-decoration: underline;
    margin-left: 5px;
}

.top_header p span {
    font-weight: 600;
    color: #f4c01a;
}

/* Light mode için top_header */
body:not(.dark) .top_header {
    background: #111827 !important;
}

body:not(.dark) .top_header p {
    color: #fff !important;
}

/* Dark mode için top_header */
.dark .top_header {
    background: #1a1a1a;
}

.dark .top_header p {
    color: #e5e7eb;
}

/* Sticky olduğunda top_header gizle */
header.sticky .top_header {
    display: none !important;
}

/* Mobil görünümde top_header gizle */
@media (max-width: 767px) {
    .top_header {
        display: none !important;
    }
}

/* Sticky header için smooth transition */
header.sticky .header-1,
header.sticky .main-menu {
    transition: all 0.3s ease;
}

/* Animasyon */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   HERO SLIDESHOW - YENİ TEMİZ YAPI
   ============================================ */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 100px;
    text-align: left;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: #000;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.hero-badge span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-discount {
    color: #fff;
    font-size: 72px;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    color: #fff;
    font-size: 18px;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-code {
    color: #fff;
    font-size: 16px;
    margin: 0 0 25px 0;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.hero-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Navigation Buttons */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slideshow {
        height: 400px;
    }
    
    .hero-content {
        padding-left: 30px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-discount {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-code {
        font-size: 14px;
    }
    
    .hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

/* Skeleton Loader Fix - İçerik her zaman görünür olmalı */
.skeleton_loader {
    min-height: 100vh;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: 1;
}

/* Skeleton body class'ı kaldırıldığında loading animasyonu gizlenir ama içerik görünür kalır */
body:not(.skeleton_body) .skeleton_loader {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Sayfa içeriğinin görünür olmasını garanti et */
body .skeleton_loader > * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Language Switcher Styles */
.lang-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 5;
}

.lang-pill {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* İngilizce butonu için daha görünür renk - aktif olmayan butonlar */
.lang-pill:not(.active),
.lang-inline .lang-pill:not(.active),
#deskLangTema3 .lang-pill:not(.active),
#mobLangTema3 .lang-pill:not(.active) {
    background: rgba(0,0,0,0.4) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.7) !important;
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    font-weight: 700 !important;
}

/* Desktop için özel stil - daha koyu arka plan */
.lang-desktop .lang-pill:not(.active),
#deskLangTema3 .lang-pill:not(.active) {
    background: rgba(0,0,0,0.5) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.8) !important;
    border-width: 2px !important;
}

/* Hover durumu için */
.lang-pill:not(.active):hover {
    background: rgba(0,0,0,0.6) !important;
    border-color: rgba(255,255,255,0.9) !important;
    transform: scale(1.05);
}

.lang-pill:hover,
.lang-pill.active {
    background: #f4c01a;
    color: #111827;
    border-color: #f4c01a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.lang-mobile .lang-pill {
    border-color: rgba(17,24,39,0.2);
    background: rgba(249,250,251,0.9);
    color: #111827;
}

.lang-mobile .lang-pill:hover,
.lang-mobile .lang-pill.active {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

/* Search Button Styles */
.search-btn {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.search-btn:hover {
    opacity: 0.7;
}

.search-btn i {
    font-size: 20px;
}

/* Sub header ul düzeni */
.sub_header ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub_header ul li {
    list-style: none;
    margin: 0;
}

/* Header Social Media Links */
.header-social-links {
    margin: 0 5px;
}

.header-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social-list li {
    margin: 0;
    list-style: none;
}

.header-social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.header-social-link i {
    font-size: 14px;
}

/* Dark mode için header social links */
.dark .header-social-link {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #e5e7eb;
}

.dark .header-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Light mode için header social links */
body:not(.dark) .header-social-link {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    color: #111827;
}

body:not(.dark) .header-social-link:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #111827;
}

/* Footer Styles */
.footer-section {
    background: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.footer-text {
    color: #6b7280;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: block !important;
    margin-bottom: 10px;
    width: 100%;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #111827;
}

/* ============================================
   PRODUCT CATEGORIES BANNER FIX
   Orijinal tema3 CSS yapısını kullanarak düzeltme
   ============================================ */
/* Kategori kartlarının aynı hizada görünmesi için */
.ratio_square.row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.ratio_square.row > [class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
}

.ratio_square .banner.p-left {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    border-radius: 8px !important;
}

.ratio_square .banner.p-left .bg-img {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    max-height: 400px !important;
    object-fit: cover !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
}

/* Kategori placeholder - siyah arka plan */
.ratio_square .banner.p-left .category-placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    max-height: 400px !important;
    background-color: #000000 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
}

.ratio_square .banner.p-left .banner-contain {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    float: left !important;
    background-color: transparent !important;
    background: none !important;
    padding: 20px !important;
    text-align: left !important;
    z-index: 2 !important;
    width: auto !important;
    margin: 0 !important;
}

.ratio_square .banner.p-left .banner-contain.w-auto {
    width: auto !important;
}

.ratio_square .banner.p-left .banner-contain h4 {
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    display: block !important;
    line-height: 1.3 !important;
    clear: both !important;
    float: none !important;
    width: 100% !important;
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
    font-size: 24px !important;
    animation: none !important;
    background: none !important;
    background-image: none !important;
    background-size: auto !important;
    transform: none !important;
    transition: none !important;
    position: static !important;
    overflow: visible !important;
}

.ratio_square .banner.p-left .banner-contain p {
    color: #fff !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    display: block !important;
    line-height: 1.4 !important;
    clear: both !important;
    float: none !important;
    width: 100% !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
    font-size: 14px !important;
    animation: none !important;
    background: none !important;
    background-image: none !important;
    background-size: auto !important;
    transform: none !important;
    transition: none !important;
    position: static !important;
    overflow: visible !important;
}

.ratio_square .banner.p-left .banner-contain {
    animation: none !important;
    background: none !important;
    background-image: none !important;
    background-size: auto !important;
    transform: none !important;
    transition: none !important;
}

.ratio_square .banner.p-left {
    animation: none !important;
    background: none !important;
    background-image: none !important;
    background-size: auto !important;
    transform: none !important;
    transition: none !important;
}

/* Responsive düzeltmeler */
@media (max-width: 768px) {
    .ratio_square .banner.p-left {
        min-height: 250px !important;
    }
    
    .ratio_square .banner.p-left .bg-img {
        min-height: 250px !important;
        max-height: 300px !important;
    }
    
    .ratio_square .banner.p-left .banner-contain {
        padding: 15px !important;
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(5px) !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        border-radius: 0 0 8px 8px !important;
    }
    
    .ratio_square .banner.p-left .banner-contain h4 {
        font-size: 18px !important;
        color: #fff !important;
        text-shadow: none !important;
    }
    
    .ratio_square .banner.p-left .banner-contain p {
        font-size: 12px !important;
        color: #fff !important;
        text-shadow: none !important;
    }
}

/* ============================================
   BANNER CONTENT FIX - Sol taraftaki yazılar
   ============================================ */
.banner-content {
    display: block !important;
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.banner-content h2 {
    display: block !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    clear: both !important;
    float: none !important;
    width: 100% !important;
    position: relative !important;
    overflow: visible !important;
    background: none !important;
    background-color: transparent !important;
    font-size: calc(20px + 1.5vw) !important;
    font-weight: 600 !important;
}

.banner-content h2 span {
    display: none !important;
}

.banner-content p {
    display: none !important;
}

.banner-content .link-hover-anim {
    display: none !important;
}

/* Gradient animasyonunu tamamen kaldır */
.link-hover-anim .link-strong-hovered,
.link-hover-anim .link-strong-unhovered {
    animation: none !important;
    background: none !important;
    background-image: none !important;
    background-size: auto !important;
}

/* Marquee animasyonunu kaldır */
@keyframes marquee {
    /* Animasyonu devre dışı bırak */
    to {
        transform: none !important;
    }
}

/* Tüm banner animasyonlarını kaldır */
.banner *,
.banner-contain *,
.banner-contain h4,
.banner-contain p {
    animation: none !important;
    background-image: none !important;
    background-size: auto !important;
    transform: none !important;
    transition: none !important;
}

/* Banner hover efektlerini kaldır */
.banner:hover .banner-contain,
.banner:hover .banner-contain h4,
.banner:hover .banner-contain p {
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

/* Link hover animasyonunu devre dışı bırak */
.link-hover-anim {
    overflow: visible !important;
    background: none !important;
    background-color: transparent !important;
}

.link-hover-anim .link-strong {
    overflow: visible !important;
    position: relative !important;
    background: none !important;
    background-color: transparent !important;
}

/* Responsive */
@media (max-width: 767px) {
    .banner-content {
        margin-bottom: 10px !important;
    }
    
    .banner-content h2 {
        font-size: calc(18px + 1vw) !important;
    }
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #6b7280;
}

.footer-contact i {
    color: #111827;
    margin-top: 4px;
}

.footer-contact a {
    color: #6b7280;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #111827;
}

.footer-map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: #f4c01a;
    color: #111827;
    transform: translateY(-2px);
}

/* Dark Mode Footer Styles */
.dark .footer-section {
    background: #1a1a1a !important;
    color: #e5e7eb;
}

.dark .footer-title {
    color: #e5e7eb !important;
}

.dark .footer-text {
    color: #9ca3af !important;
}

.dark .footer-links a {
    color: #9ca3af !important;
}

.dark .footer-links a:hover {
    color: #e5e7eb !important;
}

.dark .footer-contact li {
    color: #9ca3af !important;
}

.dark .footer-contact i {
    color: #e5e7eb !important;
}

.dark .footer-contact a {
    color: #9ca3af !important;
}

.dark .footer-contact a:hover {
    color: #e5e7eb !important;
}

.dark .copyright-text {
    color: #9ca3af !important;
}

.dark .footer-section .border-top {
    border-color: #374151 !important;
}

/* ============================================
   BREADCRUMB FIX - Internet adresini kaldır
   ============================================ */
.heading-banner .breadcrumb .breadcrumb-item:before {
    content: "" !important;
    display: none !important;
}

.heading-banner .breadcrumb .breadcrumb-item.active:before {
    content: "" !important;
    display: none !important;
}

.heading-banner .breadcrumb .breadcrumb-item {
    padding: 0 5px !important;
}

.heading-banner .breadcrumb .breadcrumb-item:not(:first-child):before {
    content: "/" !important;
    padding: 0 8px !important;
    color: rgba(var(--light-color), 1) !important;
}

.heading-banner .breadcrumb .breadcrumb-item.active span {
    color: rgba(var(--theme-font-color), 1) !important;
}

/* ============================================
   FILTER GRID ICONS FIX
   ============================================ */
.filter-option-grid svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    fill: currentColor !important;
}

.filter-option-grid .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
    border: 1px solid rgba(var(--light-border), 1) !important;
    background: transparent !important;
    color: rgba(var(--theme-font-color), 1) !important;
}

.filter-option-grid .nav-link.active {
    background: rgba(var(--theme-default), 1) !important;
    color: rgba(var(--white), 1) !important;
    border-color: rgba(var(--theme-default), 1) !important;
}

.filter-option-grid .nav-link:hover {
    background: rgba(var(--theme-default), 1) !important;
    color: rgba(var(--white), 1) !important;
    border-color: rgba(var(--theme-default), 1) !important;
}

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */
.fashikart-slide .product-box,
.featured-products-swiper .product-box,
.product-cards-swiper .product-box {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.fashikart-slide .product-box .product-detail,
.featured-products-swiper .product-box .product-detail,
.product-cards-swiper .product-box .product-detail {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
}

.fashikart-slide .product-box .product-detail h6,
.featured-products-swiper .product-box .product-detail h6,
.product-cards-swiper .product-box .product-detail h6 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fashikart-slide .product-box .product-detail .product-short-desc,
.featured-products-swiper .product-box .product-detail .product-short-desc,
.product-cards-swiper .product-box .product-detail .product-short-desc {
    font-size: 13px;
    color: rgba(var(--light-color), 1);
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.fashikart-slide .product-box .product-detail .product-price,
.featured-products-swiper .product-box .product-detail .product-price,
.product-cards-swiper .product-box .product-detail .product-price {
    font-size: 18px;
    font-weight: 600;
    color: rgba(var(--theme-default), 1);
    margin-bottom: 0;
    margin-top: auto;
    flex-shrink: 0;
}

/* Latest Products için aynı stiller */
.latest-products-swiper .product-box {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.latest-products-swiper .product-box .product-detail {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
}

.latest-products-swiper .product-box .product-detail h6 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.latest-products-swiper .product-box .product-detail .product-short-desc {
    font-size: 13px;
    color: rgba(var(--light-color), 1);
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.latest-products-swiper .product-box .product-detail .product-price {
    font-size: 18px;
    font-weight: 600;
    color: rgba(var(--theme-default), 1);
    margin-bottom: 0;
    margin-top: auto;
    flex-shrink: 0;
}

/* Swiper wrapper ve slide düzenlemeleri */
.fashikart-slide .swiper-wrapper,
.featured-products-swiper .swiper-wrapper,
.latest-products-swiper .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

.fashikart-slide .swiper-slide,
.featured-products-swiper .swiper-slide,
.latest-products-swiper .swiper-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 767px) {
    /* Only for product swipers on home: keep normal container padding so slides don't look wider on the right */
    .product-swiper-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }
    
    .fashikart-slide,
    .featured-products-swiper,
    .latest-products-swiper {
        overflow: hidden !important; /* Swiper kendi translate hesabını doğru yapsın */
        padding-bottom: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;  /* offset Swiper'dan gelecek */
        padding-right: 0 !important; /* offset Swiper'dan gelecek */
        width: 100% !important;
    }
    
    .fashikart-slide .swiper-wrapper,
    .featured-products-swiper .swiper-wrapper,
    .latest-products-swiper .swiper-wrapper {
        align-items: stretch !important;
        display: flex !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* ratio_square override for swiper wrapper */
    .fashikart-slide .swiper-wrapper.ratio_square,
    .featured-products-swiper .swiper-wrapper.ratio_square,
    .latest-products-swiper .swiper-wrapper.ratio_square {
        padding-bottom: 0 !important;
    }
    
    .fashikart-slide .swiper-slide,
    .featured-products-swiper .swiper-slide,
    .latest-products-swiper .swiper-slide {
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
        max-width: 100% !important;
    }
    
    .fashikart-slide .swiper-slide:last-child,
    .featured-products-swiper .swiper-slide:last-child,
    .latest-products-swiper .swiper-slide:last-child {
        margin-right: 0 !important;
    }
    
    .fashikart-slide .product-box,
    .featured-products-swiper .product-box,
    .latest-products-swiper .product-box {
        height: 100% !important;
        min-height: 350px !important;
        display: flex !important;
        flex-direction: column !important;
        background: #fff !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .dark .fashikart-slide .product-box,
    .dark .featured-products-swiper .product-box,
    .dark .latest-products-swiper .product-box {
        background: #1a1a1a !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    }
    
    .fashikart-slide .product-box .img-wrapper,
    .featured-products-swiper .product-box .img-wrapper,
    .latest-products-swiper .product-box .img-wrapper {
        flex-shrink: 0;
        width: 100% !important;
        height: 0 !important;
        padding-bottom: 100% !important;
        overflow: hidden !important;
        position: relative !important;
        background: #f8f9fa !important;
    }
    
    .dark .fashikart-slide .product-box .img-wrapper,
    .dark .featured-products-swiper .product-box .img-wrapper,
    .dark .latest-products-swiper .product-box .img-wrapper {
        background: #2a2a2a !important;
    }
    
    .fashikart-slide .product-box .product-image,
    .featured-products-swiper .product-box .product-image,
    .latest-products-swiper .product-box .product-image {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
    }
    
    .fashikart-slide .product-box .product-image a,
    .featured-products-swiper .product-box .product-image a,
    .latest-products-swiper .product-box .product-image a {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
    }
    
    .fashikart-slide .product-box .img-wrapper img,
    .featured-products-swiper .product-box .img-wrapper img,
    .latest-products-swiper .product-box .img-wrapper img,
    .fashikart-slide .product-box .product-image img,
    .featured-products-swiper .product-box .product-image img,
    .latest-products-swiper .product-box .product-image img,
    .fashikart-slide .product-box .product-image a img,
    .featured-products-swiper .product-box .product-image a img,
    .latest-products-swiper .product-box .product-image a img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
    }
    
    /* ratio_square override for mobile */
    .fashikart-slide .swiper-wrapper.ratio_square > *,
    .latest-products-swiper .swiper-wrapper.ratio_square > * {
        padding-bottom: 0 !important;
    }
    
    .fashikart-slide .ratio_square .bg-img,
    .latest-products-swiper .ratio_square .bg-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .fashikart-slide .product-box .product-detail,
    .featured-products-swiper .product-box .product-detail,
    .latest-products-swiper .product-box .product-detail {
        padding: 15px !important;
        flex-grow: 1;
        display: flex !important;
        flex-direction: column !important;
        min-height: 0;
        justify-content: space-between !important;
        background: transparent !important;
    }
    
    .dark .fashikart-slide .product-box .product-detail,
    .dark .featured-products-swiper .product-box .product-detail,
    .dark .latest-products-swiper .product-box .product-detail {
        background: transparent !important;
    }
    
    .fashikart-slide .product-box .product-detail h6,
    .featured-products-swiper .product-box .product-detail h6,
    .latest-products-swiper .product-box .product-detail h6 {
        font-size: 15px !important;
        min-height: 42px !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
        color: #111827 !important;
        font-weight: 600 !important;
    }
    
    .dark .fashikart-slide .product-box .product-detail h6,
    .dark .featured-products-swiper .product-box .product-detail h6,
    .dark .latest-products-swiper .product-box .product-detail h6 {
        color: #e5e7eb !important;
    }
    
    .fashikart-slide .product-box .product-detail .product-short-desc,
    .featured-products-swiper .product-box .product-detail .product-short-desc,
    .latest-products-swiper .product-box .product-detail .product-short-desc {
        font-size: 13px !important;
        min-height: 36px !important;
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
        color: #6b7280 !important;
    }
    
    .dark .fashikart-slide .product-box .product-detail .product-short-desc,
    .dark .featured-products-swiper .product-box .product-detail .product-short-desc,
    .dark .latest-products-swiper .product-box .product-detail .product-short-desc {
        color: #9ca3af !important;
    }
    
    .fashikart-slide .product-box .product-detail .product-price,
    .featured-products-swiper .product-box .product-detail .product-price,
    .latest-products-swiper .product-box .product-detail .product-price {
        font-size: 18px !important;
        font-weight: 600 !important;
        margin-top: auto !important;
        margin-bottom: 0 !important;
        color: rgba(var(--theme-default), 1) !important;
        padding-top: 10px !important;
    }
}

.fashikart-slide .swiper-button-next,
.fashikart-slide .swiper-button-prev,
.featured-products-swiper .swiper-button-next,
.featured-products-swiper .swiper-button-prev,
.latest-products-swiper .swiper-button-next,
.latest-products-swiper .swiper-button-prev {
    color: rgba(var(--theme-default), 1);
    background: rgba(var(--white), 1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fashikart-slide .swiper-button-next:after,
.fashikart-slide .swiper-button-prev:after,
.featured-products-swiper .swiper-button-next:after,
.featured-products-swiper .swiper-button-prev:after,
.latest-products-swiper .swiper-button-next:after,
.latest-products-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 600;
}

.fashikart-slide .swiper-button-next:hover,
.fashikart-slide .swiper-button-prev:hover,
.featured-products-swiper .swiper-button-next:hover,
.featured-products-swiper .swiper-button-prev:hover,
.latest-products-swiper .swiper-button-next:hover,
.latest-products-swiper .swiper-button-prev:hover {
    background: rgba(var(--theme-default), 1);
    color: rgba(var(--white), 1);
}

/* ============================================
   BLOG SECTION FIXES
   ============================================ */
.blog-page .title {
    margin-top: 40px !important;
    margin-bottom: 30px !important;
}

.blog-page .blog-main-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-page .blog-main-box > div:first-child {
    flex-shrink: 0;
}

.blog-page .blog-main-box .blog-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-page .blog-main-box .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-page .blog-main-box .blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px 20px 20px 20px;
}

.blog-page .blog-main-box .blog-content .blog-date {
    margin-bottom: 10px;
    padding: 0 5px;
}

.blog-page .blog-main-box .blog-content .blog-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 10px 0;
    padding: 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50px;
    color: rgba(var(--theme-font-color), 1);
}

.blog-page .blog-main-box .blog-content .blog-title:hover {
    color: rgba(var(--theme-default), 1);
}

.blog-page .blog-main-box .blog-content p {
    flex: 1;
    margin-bottom: 15px;
    padding: 0 5px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-page .blog-main-box .blog-content .share-box {
    margin-top: auto;
    padding: 10px 5px 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    .blog-page .blog-main-box .blog-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .blog-page .blog-main-box .blog-img {
        height: 180px;
    }
    
    .blog-page .blog-main-box .blog-content .blog-title {
        font-size: 16px;
        min-height: 44px;
    }
}

/* ============================================
   PRODUCT SLIDER THUMBNAIL FIX
   ============================================ */
.product-slider {
    height: 100% !important;
    width: 100% !important;
}

.product-slider .swiper-wrapper {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
}

.product-slider .swiper-slide {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box !important;
}

.product-slider .swiper-slide:last-child {
    margin-bottom: 0 !important;
}

.product-slider .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}

@media (max-width: 576px) {
    .product-thumbnail-page .col-3 {
        overflow-x: visible !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        max-height: 100% !important;
    }
    
    .product-slider {
        height: auto !important;
        width: 100% !important;
        overflow: visible !important;
    }
    
    .product-slider .swiper-wrapper {
        flex-direction: column !important;
        height: auto !important;
        overflow: visible !important;
        width: 100% !important;
    }
    
    .product-slider .swiper-slide {
        width: 100% !important;
        height: auto !important;
        margin-right: 0 !important;
        margin-bottom: 10px !important;
        flex-shrink: 0 !important;
    }
    
    .product-slider .swiper-slide:last-child {
        margin-bottom: 0 !important;
    }
    
    .product-slider .swiper-slide img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
}

/* Ürün detay sayfası büyük fotoğraf - kırpma yok */
.product-thumbnail-page .product-slider-thumb .swiper-wrapper.ratio_square-2 {
    padding-bottom: 0 !important;
    height: auto !important;
    min-height: 400px !important;
}

.product-thumbnail-page .product-slider-thumb .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    min-height: 400px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Sadece aktif slide'daki fotoğraf için - kırpma yok */
.product-thumbnail-page .product-slider-thumb .swiper-slide-active img,
.product-thumbnail-page .product-slider-thumb .swiper-slide-active .bg-img {
    object-fit: contain !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    display: block !important;
    margin: 0 auto !important;
}

@media (max-width: 576px) {
    .product-thumbnail-page .product-slider-thumb .swiper-wrapper.ratio_square-2 {
        min-height: 300px !important;
    }
    
    .product-thumbnail-page .product-slider-thumb .swiper-slide {
        min-height: 300px !important;
    }
}

.copyright-text {
    color: #6b7280;
    font-size: 14px;
}

/* Google Translate Hide */
#google_translate_element {
    display: none !important;
    visibility: hidden !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .lang-desktop { 
        display: none !important; 
    }
}

@media (min-width: 992px) {
    .lang-mobile { 
        display: none !important; 
    }
}

/* ============================================
   PRODUCT SEARCH STYLES
   ============================================ */
.search-details .search-box {
    position: relative;
    margin-bottom: 0;
}

.search-details .search-box input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    color: #111827;
    box-sizing: border-box;
}

.dark .search-details .search-box input {
    background: #1a1a1a;
    border-color: #374151;
    color: #e5e7eb;
}

.search-details .search-box input:focus {
    outline: none;
    border-color: rgba(var(--theme-default), 1);
    box-shadow: 0 0 0 3px rgba(var(--theme-default), 0.1);
}

.search-details .search-box i[data-icon="search-normal-2"] {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    z-index: 1;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .search-details .search-box i[data-icon="search-normal-2"] {
    color: #9ca3af;
}

.search-details .search-box .search-clear-btn {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    z-index: 2;
    width: 24px;
    height: 24px;
}

/* Clear butonu görünür olduğunda büyüteç ikonunu kaydır */
.search-details .search-box:has(.search-clear-btn:not(.d-none)) i[data-icon="search-normal-2"] {
    right: 48px;
}

.dark .search-details .search-box .search-clear-btn {
    color: #9ca3af;
}

.search-details .search-box .search-clear-btn:hover {
    color: #111827;
}

.dark .search-details .search-box .search-clear-btn:hover {
    color: #e5e7eb;
}

.product-search-results {
    min-height: 200px;
    max-height: 600px;
    overflow-y: auto;
}

.search-placeholder {
    color: #6b7280;
}

.dark .search-placeholder {
    color: #9ca3af;
}

.search-results-header h5 {
    color: #111827;
    font-weight: 600;
}

.dark .search-results-header h5 {
    color: #e5e7eb;
}

.product-search-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.dark .product-search-item {
    background: #1a1a1a;
    border-color: #374151;
}

.product-search-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.dark .product-search-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-search-item a {
    text-decoration: none;
    color: inherit;
}

.product-search-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: #f8f9fa;
}

.dark .product-search-image {
    background: #2a2a2a;
}

.product-search-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-search-info {
    min-width: 0;
}

.product-search-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 5px;
    line-height: 1.3;
}

.dark .product-search-name {
    color: #e5e7eb;
}

.product-search-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 5px;
}

.dark .product-search-desc {
    color: #9ca3af;
}

.product-search-category {
    display: inline-block;
    font-size: 12px;
    color: rgba(var(--theme-default), 1);
    background: rgba(var(--theme-default), 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 5px;
}

.product-search-price {
    font-size: 16px;
    font-weight: 600;
    color: rgba(var(--theme-default), 1);
    margin-top: 5px;
}

.search-no-results {
    color: #6b7280;
}

.dark .search-no-results {
    color: #9ca3af;
}

.search-loading {
    text-align: center;
    padding: 40px 0;
}

.search-loading .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
    color: rgba(var(--theme-default), 1);
}

/* ============================================
   MOBILE MENU LANGUAGE SWITCHER
   ============================================ */
.mobile-language-switcher {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body:not(.dark) .mobile-language-switcher {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.dark .mobile-language-switcher {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.mobile-language-container {
    padding: 15px 20px;
}

.mobile-language-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body:not(.dark) .mobile-language-title {
    color: #111827;
}

.dark .mobile-language-title {
    color: #e5e7eb;
}

.mobile-language-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-lang-pill {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.dark .mobile-lang-pill {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
}

body:not(.dark) .mobile-lang-pill {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    color: #333 !important;
}

.mobile-lang-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #fff !important;
}

.dark .mobile-lang-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff !important;
}

body:not(.dark) .mobile-lang-pill:hover {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.3);
    color: #333 !important;
}

.mobile-lang-pill.active {
    background: rgba(var(--theme-default), 1);
    border-color: rgba(var(--theme-default), 1);
    color: #fff !important;
    font-weight: 600;
}

.mobile-lang-pill .lang-flag {
    font-size: 18px;
}

/* ============================================
   MOBILE MENU SOCIAL LINKS
   ============================================ */
.mobile-social-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body:not(.dark) .mobile-social-links {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.dark .mobile-social-links {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.mobile-social-container {
    padding: 15px 20px;
}

.mobile-social-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body:not(.dark) .mobile-social-title {
    color: #111827;
}

.dark .mobile-social-title {
    color: #e5e7eb;
}

.mobile-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-social-list li {
    margin: 0;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body:not(.dark) .mobile-social-link {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: #111827;
}

.dark .mobile-social-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
}

.mobile-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: #fff;
}

body:not(.dark) .mobile-social-link:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    color: #111827;
}

.dark .mobile-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-social-link i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.mobile-social-link span {
    font-size: 15px;
    font-weight: 500;
}

/* Platform specific colors on hover */
.mobile-social-link[title="Facebook"]:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.3);
}

.mobile-social-link[title="Twitter"]:hover,
.mobile-social-link[title="X"]:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.3);
}

.mobile-social-link[title="LinkedIn"]:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.3);
}

.mobile-social-link[title="Instagram"]:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.3);
}

.mobile-social-link[title="YouTube"]:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 767px) {
    .product-search-item {
        padding: 12px;
    }
    
    .product-search-image {
        width: 60px;
        height: 60px;
    }
    
    .product-search-name {
        font-size: 14px;
    }
    
    .product-search-desc {
        font-size: 12px;
    }
}

/* ============================================
   ÜRÜN DETAY - BENZER ÜRÜNLER BAŞLIK DÜZELTMESİ
   ============================================ */
/* Ana sayfadaki gibi başlık stili için genel düzeltme */
.product-contain .title {
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.product-contain .title h3 {
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.product-contain .title svg {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* ============================================
   MOBIL GÖRÜNÜM - LOGO VE SOSYAL MEDYA DÜZENLEMESİ
   ============================================ */
@media (max-width: 767px) {
    /* Logo'yu daha da sola al */
    .main-menu .brand-logo {
        margin-left: -20px !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Main menu düzeni - logo ve sub_header arasında boşluk */
    .main-menu {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    /* Sub header düzeni - hamburger menü en sağda */
    .sub_header {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }
    
    /* Hamburger menü ikonu en sağda */
    .sub_header .toggle-nav {
        order: 999 !important;
        margin-left: 8px !important;
    }
    
    .sub_header ul {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        margin: 0 !important;
        padding: 0 !important;
        order: 1 !important;
    }
    
    /* Sosyal medya ikonlarını mobil görünümde göster */
    .header-social-links {
        display: block !important;
        margin: 0 !important;
    }
    
    .header-social-list {
        gap: 6px !important;
    }
    
    .header-social-link {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }
    
    .header-social-link i {
        font-size: 12px !important;
    }
    
    /* Arama butonunu küçült */
    .search-btn {
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .search-btn i {
        font-size: 16px !important;
    }
    
    /* Dil butonlarını mobil görünümde gizle */
    .lang-mobile {
        display: none !important;
    }
}

/* ============================================
   DRAWER MENÜ DARK MODE DÜZENLEMESİ
   ============================================ */
.dark .sm-horizontal,
.dark #main-nav-1,
.dark .nav-menu {
    background: #1a1a1a !important;
}

.dark .sm-horizontal .nav-menu li a,
.dark #main-nav-1 .nav-menu li a,
.dark .nav-menu li a {
    color: #e5e7eb !important;
}

.dark .sm-horizontal .nav-menu li a:hover,
.dark #main-nav-1 .nav-menu li a:hover,
.dark .nav-menu li a:hover {
    color: rgba(var(--theme-default), 1) !important;
}

.dark .mobile-back {
    color: #e5e7eb !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

