/*
Theme Name: Kutuport Turkuaz-Siyah Tema
Theme URI: 
Author: Apus from https://lotusbeta.com
Author URI: https://lotusbeta.com
Description: Dev. Apus from https://lotusbeta.com
Version: 1.0
Requires at least: 5.0
Tested up to: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: modernkutu
*/

/* Ana Renkler ve Değişkenler */
:root {
    --primary-color: #00CED1; /* Turkuaz */
    --secondary-color: #121212; /* Siyah */
    --accent-color: #00E5E8; /* Parlak turkuaz */
    --text-light: #ffffff;
    --text-dark: #121212;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --box-shadow: 0 4px 20px rgba(0, 206, 209, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --woocommerce: #00CED1 !important;
    --wc-green: #00CED1 !important;
    --wc-red: #dc3545 !important;
    --wc-orange: #00CED1 !important;
    --wc-blue: #00CED1 !important;
    --wc-primary: #00CED1 !important;
    --wc-primary-text: white !important;
    --wc-secondary: #00CED1 !important;
    --wc-secondary-text: white !important;
    --wc-highlight: #00CED1 !important;
    --wc-highligh-text: white !important;
    --wc-content-bg: #fff !important;
    --wc-subtext: #767676 !important;
}

/* Kayan Yazı Stili */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    z-index: 1002;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
    overflow: hidden;
}

.announcement-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    height: 35px;
    overflow: hidden;
}

.announcement-slides {
    position: relative;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    display: none;
    white-space: nowrap;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
}

.announcement-slide.active {
    opacity: 1;
    transform: translateX(0);
    display: block;
}

/* Turkuaz arka plan için class */
.announcement-bar.turkuaz {
    background: var(--primary-color);
}

.announcement-bar.turkuaz .announcement-slide {
    color: #000;
}

/* Çıkış animasyonu için class */
.announcement-slide.exit {
    transform: translateX(-100%);
    opacity: 0;
}

.announcement-text {
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 25px;
}

.announcement-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff; /* Slide içindeki yazıyı da beyaz yap */
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.announcement-slide.active {
    opacity: 1;
    display: block;
}

.announcement-slide.prev {
    opacity: 0;
    transform: translateY(-100%);
}

/* Mağaza Logoları Slider */
.store-logos {
    padding: 20px 0;
    background: #fff;
    overflow: hidden;
    margin: 0;
}

.logo-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.logo-slider {
    display: flex;
    animation: slideLogos 20s linear infinite;
    gap: 40px; /* Logolar arası boşluk */
    padding: 10px 0;
}

/* Sürekli kayma animasyonu */
@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Logo stilleri */
.store-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: transparent;
    border: none;
    min-width: 250px; /* Genişliği artır */
}

.store-logo img {
    width: auto;
    height: 100px; /* Logo boyutunu artır */
    max-width: none;
    filter: grayscale(100%);
    opacity: 0.8; /* Opaklığı biraz artır */
    transition: all 0.3s ease;
}

.store-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .store-logo {
        min-width: 200px; /* Tablet için genişlik */
        padding: 10px;
    }
    
    .store-logo img {
        height: 80px; /* Tablet için logo boyutu */
    }
    
    .logo-slider {
        gap: 25px;
        animation: slideLogos 25s linear infinite; /* Animasyonu biraz yavaşlat */
    }
}

@media (max-width: 480px) {
    .store-logo {
        min-width: 160px; /* Mobil için genişlik */
    }
    
    .store-logo img {
        height: 70px; /* Mobil için logo boyutu */
    }
    
    .logo-slider {
        gap: 20px;
    }
}

/* Çok küçük ekranlar için ek düzenleme */
@media (max-width: 360px) {
    .store-logo {
        min-width: 140px;
    }
    
    .store-logo img {
        height: 60px;
    }
    
    .logo-slider {
        gap: 15px;
    }
}

/* Ürün Kartları Özel Stil */
.product-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 206, 209, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

/* Mağaza Logoları için Ek Stiller */
.store-logo {
    padding: 15px;
    text-align: center;
}

.store-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
    object-fit: contain;
}

.store-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Logo Slider Responsive Ayarları */
@media (max-width: 768px) {
    .store-logo img {
        max-width: 100px;
    }
    
    .store-logo {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .store-logo img {
        max-width: 80px;
    }
}

/* Logo Slider Container */
.logo-slider {
    background: white;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Kayan Yazı Animasyonu */
@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.announcement-text {
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
}

/* Sabit Navbar Stili */
.site-header {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1001;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    height: 100%;
    max-width: 1400px; /* Container genişliğini artırdık */
    margin: 0 auto;
    padding: 0 30px; /* Yanlardaki boşluğu artırdık */
    display: flex;
    align-items: center;
}

/* Logo Stili */
.site-logo {
    display: flex;
    align-items: center;
    padding: 8px 0; /* Logo için üst ve alt padding */
}

.custom-logo-link {
    display: block;
    width: 85px; /* Logo boyutunu artırdık */
    height: 85px; /* Logo boyutunu artırdık */
    transition: transform 0.3s ease;
}

.custom-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%; /* Yuvarlak logo için */
}

/* Hover efekti */
.custom-logo-link:hover {
    transform: scale(1.05);
}

/* Responsive logo boyutları */
@media (max-width: 992px) {
    .custom-logo-link {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 576px) {
    .custom-logo-link {
        width: 65px;
        height: 65px;
    }
    
    .site-header {
        height: 70px;
    }
    
    .header-container {
        padding: 0 20px;
    }
}

/* Ana Menü Stili */
.main-navigation {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 30px; /* Logo ile menü arası boşluk */
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.user-account a,
.cart-icon {
    font-size: 24px;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
}

.user-account a:hover,
.cart-icon:hover {
    color: var(--primary-color);
}

.search-box {
    position: relative;
}

.search-box input {
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 8px 15px;
    padding-right: 35px;
    color: var(--text-dark);
    width: 180px;
    height: 36px;
}

.search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0;
}

.search-submit i {
    font-size: 16px;
}

/* Hesabım İkonu */
.user-account a {
    color: var(--text-dark); /* Siyah renk */
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-account svg {
    width: 24px;
    height: 24px;
}

.user-account a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Sepet İkonu */
.cart-icon {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 24px; /* Sepet ikonu boyutu */
}

.cart-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 2px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .search-box input {
        width: 100px;
    }
}

/* Sayfa İçeriğini Navbar'ın Altına Kaydırma */
body {
    padding-top: 135px; /* header + announcement yüksekliği (100px + 35px) */
    background: #fbfaff; /* Çok hafif lilamsi bir ton */
}

/* Yeni Slider Stili */
.main-slider {
    position: relative;
    overflow: hidden;
    height: 600px;
    margin-top: 100px; /* Header yüksekliğine göre ayarlayın */
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Başlangıçta tüm slide'ları gizle */
}

.slide.active {
    display: block; /* Aktif slide'ı göster */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Kontrolleri */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Slider Okları */
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Slider Responsive */
@media (max-width: 768px) {
    .main-slider {
        margin-top: 85px;
    }
    
    .slider-nav {
        bottom: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
} 

/* Navbar scroll class'ı */
.site-header.sticky {
    top: 25px; /* Her zaman kayan yazının altında */
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} 

/* Responsive düzeltmeler */
@media (max-width: 768px) {
    .main-slider {
        margin-top: 85px;
    }
    
    body {
        padding-top: 105px; /* mobil header + announcement yüksekliği (70px + 35px) */
    }
} 

/* Slider Okları */
.slider-arrow i {
    font-size: 24px;
}

.slider-arrow.prev i {
    margin-right: 2px;
}

.slider-arrow.next i {
    margin-left: 2px;
} 

/* Popüler Ürünler Bölümü */
.popular-products {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.popular-products-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Masaüstünde grid görünümü */
.products-slider {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.products-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-slide {
    width: 100%;
}

/* Slider navigasyon butonlarını masaüstünde gizle */
@media (min-width: 769px) {
    .products-slider .slider-nav {
        display: none;
    }
}

/* Tablet ve mobil görünümü */
@media (max-width: 768px) {
    .products-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 10px 0;
        overflow-x: visible; /* Yatay kaydırmayı kaldır */
    }
    
    .product-slide {
        flex: 0 0 calc(50% - 8px); /* 2 ürün görünsün */
        scroll-snap-align: start;
        min-width: calc(50% - 8px);
    }
    
    .products-slider {
        padding: 20px;
        position: relative;
    }
    
    /* Mobilde slider navigasyon butonları */
    .products-slider .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 100;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .products-slider .slider-prev {
        left: 5px;
    }
    
    .products-slider .slider-next {
        right: 5px;
    }
}

/* Küçük mobil ekranlar için */
@media (max-width: 480px) {
    .product-slide {
        flex: 0 0 calc(100% - 30px); /* Tek ürün görünsün */
        min-width: calc(100% - 30px);
    }
    
    .products-slider {
        padding: 15px;
    }
}

/* Scrollbar'ı gizle ama fonksiyonelliği kalsın */
.products-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.products-track::-webkit-scrollbar {
    display: none;
}

/* Arka plan dekoratif elementi */
.popular-products:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #f0f2f5;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.5);
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Slider container geliştirmeleri */
.products-slider {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Ürün kartı geliştirmeleri */
.product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-title {
    font-size: 32px;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    flex: 1;
    min-width: 200px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.price-label {
    background: #f8f9fa;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.product-price del {
    color: #999;
    font-size: 16px;
    margin-right: 8px;
}

.product-button {
    margin-top: auto;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.product-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.product-bulk-discount {
    background: linear-gradient(135deg, #fff8e5 0%, #fff5d6 100%);
    color: #b88a00;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(255,193,7,0.1);
}

.product-bulk-discount i {
    font-size: 15px;
    color: #ffc107;
}

/* Responsive Ayarları */
@media (max-width: 1024px) {
    .product-slide {
        min-width: calc(33.333% - 17px);
        flex: 0 0 calc(33.333% - 17px);
    }
}

@media (max-width: 768px) {
    .product-slide {
        min-width: calc(50% - 13px);
        flex: 0 0 calc(50% - 13px);
    }
    .products-slider {
        padding: 0 40px;
    }
    .price-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .product-slide {
        min-width: 100%;
        flex: 0 0 100%;
    }
    .products-slider {
        padding: 0 30px;
    }
} 

.product-image {
    position: relative;
    padding-top: 100%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
} 

/* Slider navigasyon butonları düzeltmesi */
.products-slider .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    color: white;
}

.products-slider .slider-nav:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.products-slider .slider-nav i {
    font-size: 18px;
    color: white;
}

.products-slider .slider-prev {
    left: 10px;
}

.products-slider .slider-next {
    right: 10px;
}

/* Ürünü İncele butonu düzeltmesi */
.product-button {
    margin-top: auto;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.product-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Slider track düzeltmesi */
.products-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.product-slide {
    min-width: calc(25% - 15px);
    flex: 0 0 calc(25% - 15px);
}

/* Responsive düzeltmeler */
@media (max-width: 768px) {
    .products-slider .slider-nav {
        width: 32px;
        height: 32px;
    }
    
    .products-slider .slider-nav i {
        font-size: 16px;
    }
    
    .product-button {
        padding: 7px 12px;
        font-size: 12px;
        width: 85%;
    }
} 

/* Kategori Kutuları Stili */
.category-boxes {
    padding: 40px 0;
    background: #fff;
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-box:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    height: auto;
    display: block;
}

.category-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
    .category-boxes {
        padding: 10px 0;
        margin-top: -10px; /* Banner ile arasındaki boşluğu azalt */
    }
    
    .category-container {
        padding: 0;
    }
    
    .category-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 0;
    }
    
    .category-box {
        border-radius: 0;
    }
    
    .category-image img {
        border-radius: 0;
    }
}

/* E-ticaret Kutuları Stili */
.ecommerce-boxes {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.ecommerce-boxes:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #f0f2f5;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.5);
    z-index: 0;
}

.ecommerce-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-box {
    width: 100%;
}

.product-box .product-card {
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-box .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive Ayarları */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .ecommerce-boxes {
        padding: 40px 0;
    }
} 

/* Geniş Banner Stili */
.wide-banner {
    padding: 40px 0;
    background: #f8f9fa;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.banner-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.banner-container:hover img {
    transform: scale(1.02);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.banner-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.banner-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Tüm Ürünler Bölümü */
.all-products {
    padding: 60px 0;
    background: #ffffff;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.view-all-button {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-view-all:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive Ayarları */
@media (max-width: 768px) {
    .banner-content {
        left: 30px;
        right: 30px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .banner-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-content {
        left: 20px;
        right: 20px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
    
    .btn-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
} 

/* SEO Text ve İletişim Alanı */
.seo-contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.seo-contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SEO Metin Alanı */
.seo-text {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.seo-text p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
}

/* Sosyal Medya */
.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #000000;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.whatsapp {
    background: #25d366;
}

/* Adres Bilgileri */
.address-info {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.address {
    padding: 30px;
    text-align: center;
}

.address h3 {
    color: var(--text-dark);
    font-size: 24px;
    margin-bottom: 15px;
}

.address p {
    color: #666;
    line-height: 1.6;
}

.map {
    height: 300px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Ayarları */
@media (max-width: 768px) {
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .address h3 {
        font-size: 20px;
    }
    
    .seo-text {
        padding: 20px;
    }
    
    .seo-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-media {
        gap: 15px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
} 

/* Footer Stili */
.site-footer {
    background: #f8f9fa;
    padding: 60px 0 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-column h3 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Alt Footer */
.footer-bottom {
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Ödeme ve Güvenlik Görseli */
.payment-security {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.payment-security img {
    max-width: 800px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.payment-security img:hover {
    filter: grayscale(0%);
}

/* Telif Hakkı */
.copyright {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
    padding-bottom: 20px;
}

/* Responsive Ayarları */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .payment-security img {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payment-methods img {
        height: 25px;
    }
    
    .security-badges img {
        height: 35px;
    }
} 

/* Online Satış Mağazaları */
.online-stores {
    padding: 40px 0;
    background: #fff;
}

.store-logos-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 0;
    width: 100%;
}

.logo-slide {
    flex: 0 0 200px;
    margin: 0 30px; /* Logolar arası mesafeyi artır */
    animation: slideLogos 20s linear infinite;
}

/* Logo slider animasyonu */
@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Sonsuz döngü için logo kopyaları */
.store-logos-slider::before,
.store-logos-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 50px;
    z-index: 2;
}

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

.store-logos-slider::before {
    left: 0;
    top: 0;
}

/* Logo grubunu kopyala */
.logo-group {
    display: flex;
    gap: 30px; /* Logo grupları arası mesafe */
    animation: scroll 20s linear infinite;
}

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

.logo-slide img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .online-stores {
        padding: 10px 0;
        margin-top: -10px;
    }

    .section-title h2 {
        font-size: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 5px; /* Mobilde başlık ile logolar arası mesafeyi daha da azalt */
    }

    .logo-slide {
        flex: 0 0 100px;
        margin: 0 20px; /* Mobilde logolar arası mesafeyi artır */
    }

    .logo-group {
        gap: 20px; /* Mobilde logo grupları arası mesafe */
    }
}

/* Daha küçük mobil ekranlar için ek düzenleme */
@media (max-width: 480px) {
    .logo-slide {
        flex: 0 0 80px;
        margin: 0 15px; /* En küçük ekranlarda logolar arası mesafe */
    }
    
    .logo-group {
        gap: 15px; /* En küçük ekranlarda logo grupları arası mesafe */
    }
}

/* Başlık stili */
.section-title {
    text-align: center;
    margin-bottom: 15px; /* Başlık ile logolar arası mesafeyi azalt */
}

.section-title h2 {
    font-size: 32px;
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .online-stores {
        padding: 10px 0;
        margin-top: -10px;
    }

    .section-title h2 {
        font-size: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 5px; /* Mobilde başlık ile logolar arası mesafeyi daha da azalt */
    }

    .logo-slide {
        flex: 0 0 100px;
        margin: 0 20px; /* Mobilde logolar arası mesafeyi artır */
    }

    .logo-group {
        gap: 20px; /* Mobilde logo grupları arası mesafe */
    }
}

/* Mobil görünümde grid yapısını düzelt */
@media (max-width: 768px) {
    .products-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 10px 0;
        overflow-x: visible; /* Yatay kaydırmayı kaldır */
    }
}

@media (max-width: 480px) {
    .products-track {
        grid-template-columns: 1fr;
    }
} 

/* Sayfalama Stili */
.pagination {
    width: 100%;
    text-align: center;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
}

.pagination .page-numbers:hover {
    background: var(--primary-color);
    color: #fff;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 15px;
} 

/* WooCommerce Shop Sayfası Stilleri */
.woocommerce-products-header {
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
}

.woocommerce-products-header__title {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.woocommerce-products-header__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Ürün Grid Düzeni */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .ecommerce-boxes {
        padding: 40px 0;
    }
} 

/* Sayfalama Stilleri */
.woocommerce-pagination {
    text-align: center;
    margin: 40px 0;
}

.woocommerce-pagination ul {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.woocommerce-pagination ul li {
    margin: 0;
}

.woocommerce-pagination ul li .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.woocommerce-pagination ul li .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
}

.woocommerce-pagination ul li .page-numbers:hover {
    background: var(--primary-color);
    color: #fff;
} 

/* Filtreleme Alanı Stilleri */
.product-filters {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    min-width: 200px;
}

.filter-group h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.filter-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:hover {
    border-color: var(--primary-color);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 206, 209, 0.1);
}

/* WooCommerce varsayılan sıralama seçicisini özelleştirme */
.woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce-ordering select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-ordering select:hover {
    border-color: var(--primary-color);
}

/* Responsive Ayarları */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        width: 100%;
    }
} 

.whatsapp-contact {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #eee;
}

.whatsapp-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.whatsapp-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.whatsapp-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-button i {
    font-size: 20px;
    margin-right: 8px;
} 

/* Ürün Detay Sayfası */
.product-detail-container {
    padding: 40px 25px;
    background: #fff;
}

.product-detail-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.product-detail-content {
    display: grid;
    grid-template-columns: minmax(500px, 1fr) 1fr;
    gap: 60px;
    padding: 40px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Ürün Başlığı ve Stok Durumu */
.product-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-title {
    font-size: 32px;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    flex: 1;
    min-width: 200px;
}

/* Stok Durumu */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* SKU Stili */
.product-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    margin: 15px 0;
}

/* Toplu Alım Banner */
.bulk-discount-banner {
    background: #fff;
    border: 2px solid var(#00CED1);
    padding: 15px 20px;
    border-radius: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.discount-icon {
    color: #00CED1;
    font-size: 24px;
}

.discount-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.discount-info strong {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.discount-info span {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Paket Seçenekleri */
.package-options {
    margin-top: 30px;
}

.package-options h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

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

/* Paket Seçenek Kutuları */
.option-box {
    position: relative;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    padding: 20px 15px;
}

/* Radio butonunu gizle */
.variation-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Seçili kutu stili */
.option-box.selected {
    border-color: var(--primary-color);
    background: rgba(0, 206, 209, 0.02);
}

/* Paket içeriği */
.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Paket adedi */
.package-quantity {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ADET yazısı */
.package-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fiyat stili */
.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* Ana fiyat */
.package-price .amount {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

/* KDV yazısı */
.package-price .kdv {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: -2px;
}

/* İletişim Kutusu */
.option-box.contact-option {
    grid-column: 1 / -1;
    background: #f8f9fa;
    border: 2px dashed var(--primary-color);
    margin-top: 15px;
}

.contact-option .option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-text {
    text-align: left;
}

.contact-text strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 4px;
}

.contact-text span {
    color: #666;
    font-size: 14px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Sepete Ekle Butonu */
.single_add_to_cart_button {
    width: 100%;
    padding: 16px 30px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.single_add_to_cart_button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.2);
}

/* Ürün Galerisi */
.product-gallery {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Ana Görsel Alanı */
.main-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    background: #fff;
    overflow: hidden;
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.main-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Gezinme Okları */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-nav.prev { 
    left: 20px; 
}

.gallery-nav.next { 
    right: 20px; 
}

.gallery-nav i {
    font-size: 30px;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .thumbnails-track {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .thumbnails-track {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .thumbnails-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-image-wrapper:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Thumbnails */
.thumbnails-wrapper {
    padding: 15px;
    background: #f8f9fa;
}

.thumbnails-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 görsel yan yana */
    gap: 10px;
    padding-bottom: 5px;
}

.thumbnail-item {
    aspect-ratio: 1/1; /* Kare görsel */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.thumbnail-item.active {
    border-color: var(--primary-color);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
        opacity: 1;
    }

    .thumbnail-item {
        flex: 0 0 60px;
        height: 60px;
    }
}

/* Ürün Detay Sağ Kısım */
.single-product div.product .summary {
    width: 48% !important;
    float: right;
    margin-bottom: 30px;
    padding-left: 20px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .single-product div.product .woocommerce-product-gallery,
    .single-product div.product .summary {
        width: 100% !important;
        float: none;
        padding-left: 0;
    }

    .woocommerce-product-gallery__image img {
        max-height: 400px;
        padding: 15px;
    }

    .flex-control-thumbs li {
        width: calc(20% - 8px) !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-product-gallery__image img {
        max-height: 300px;
        padding: 10px;
    }

    .flex-control-thumbs li {
        width: calc(25% - 8px) !important;
    }
}

/* WooCommerce Zoom ve Lightbox Düzeltmeleri */
.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #eee;
}

.woocommerce-product-gallery__trigger img {
    display: none !important;
}

.woocommerce-product-gallery__trigger::before {
    content: "🔍";
}

/* Görsel Geçiş Efektleri */
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

/* Ürün Detay Sayfası - Yeni Tasarım */
.single-product div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 30px auto;
    max-width: 1400px;
}

/* Görsel Bölümü */
.single-product div.product .woocommerce-product-gallery {
    width: calc(50% - 20px) !important;
    float: none;
    margin: 0;
    position: relative;
}

/* Ana Görsel Container */
.woocommerce-product-gallery__wrapper {
    margin: 0 !important;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

/* Ana Görsel */
.woocommerce-product-gallery__image {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}

.woocommerce-product-gallery__image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.woocommerce-product-gallery__image img {
    max-width: 90% !important;
    max-height: 90% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Zoom Efekti */
.woocommerce-product-gallery__image a:hover img {
    transform: scale(1.1);
}

/* Küçük Görseller */
.flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px !important;
    padding: 0 !important;
    list-style: none;
    width: 100%;
}

.flex-control-thumbs li {
    width: calc(20% - 8px) !important;
    margin: 0 !important;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.flex-control-thumbs img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    padding: 5px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.flex-control-thumbs img:hover,
.flex-control-thumbs img.flex-active {
    opacity: 1;
    border-color: var(--primary-color);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .woocommerce-product-gallery__image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1;
    }
    
    .flex-control-nav {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .flex-control-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1440px) {
    .product-detail-content {
        gap: 40px;
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .product-gallery {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-detail-container {
        padding: 20px 15px;
    }
    
    .product-detail-content {
        padding: 20px;
    }
} 

/* Sepet Sayfası Stilleri */
.cart-page-container {
    padding: 40px 20px;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
    margin-top: 125px; /* Header yüksekliği kadar margin */
}

.cart-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Boş Sepet */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 20px;
}

/* Sepet Ürünleri */
.cart-items {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-items h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Sepet Ürün Kartı */
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 120px 120px 40px;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cart-item-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.cart-item-meta {
    font-size: 14px;
    color: #666;
}

/* Adet Kontrolü */
.cart-item-quantity input {
    width: 70px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

/* Fiyat */
.cart-item-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

/* Kaldır Butonu */
.cart-item-remove a {
    color: #dc3545;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-item-remove a:hover {
    background: #fff1f1;
}

/* Sepet Aksiyonları */
.cart-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.update-cart {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.update-cart:hover {
    background: #f8f9fa;
}

/* Sepet Özeti Geliştirmeleri */
.cart-totals {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.cart-totals h2 {
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    color: #2c3e50;
}

/* Ara toplam satırı */
.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 15px;
    color: #2c3e50;
}

/* Kargo satırı */
.totals-row.shipping {
    background: #e3f2fd;
    margin: 15px -30px;
    padding: 20px 30px;
    border-left: 4px solid #2196f3;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.totals-row.shipping span:first-child {
    font-weight: 600;
    color: #1976d2;
}

.shipping-info {
    font-size: 13px;
    color: #546e7a;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.shipping-info i {
    color: #1976d2;
}

/* Toplam satırı */
.totals-row.total {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    color: #2c3e50;
}

/* Kargo uyarı kutusu */
.cart-notice {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 14px;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-notice i {
    font-size: 18px;
    color: #ffc107;
}

/* Ödemeye Geç butonu */
.checkout-button {
    width: 85%;
    background: var(--primary-color);
    color: #fff;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.checkout-button i {
    font-size: 22px;
}

.checkout-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .cart-page-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr 100px 40px;
    }
    
    .cart-item-price {
        display: none;
    }
    
    .cart-totals {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .cart-page-container {
        padding: 20px 15px;
    }
    
    .cart-item {
        grid-template-columns: 70px 1fr 40px;
        gap: 15px;
    }
    
    .cart-item-quantity {
        grid-column: 2;
        grid-row: 2;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .button {
        width: 100%;
        justify-content: center;
    }
} 

/* Mini Sepet Stili */
.cart-wrapper {
    position: relative;
}

.mini-cart {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
    z-index: 1000;
    margin-top: 10px;
}

.cart-wrapper:hover .mini-cart {
    display: block;
}

.mini-cart-header {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.mini-cart-header h4 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.mini-cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.mini-cart-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.item-image {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.item-details {
    flex: 1;
}

.item-title {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.item-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.item-quantity {
    font-size: 12px;
    color: #666;
}

.mini-cart-footer {
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.total-label {
    font-weight: 600;
    color: var(--text-dark);
}

.total-amount {
    font-weight: 600;
    color: var(--primary-color);
}

.mini-cart-buttons {
    display: flex;
    gap: 10px;
}

.cart-button {
    flex: 1;
    padding: 8px 15px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-cart {
    background: #f5f5f5;
    color: var(--text-dark);
}



.view-cart:hover {
    background: #eee;
}


/* Sepetteki ürün sayısı badge'i */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Alt Menü Mobil Stilleri */
.bottom-nav {
    display: none; /* Varsayılan olarak gizli */
}

/* Sadece mobil cihazlarda göster */
@media screen and (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 12px 0 8px 0;
        justify-content: space-around;
        align-items: center;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #666;
        font-size: 11px;
        gap: 5px;
        padding: 5px 0;
        width: 25%;
        text-align: center;
        transition: all 0.3s ease;
    }

    .bottom-nav-item i {
        font-size: 22px;
        margin-bottom: 2px;
    }

    /* Aktif menü öğesi */
    .bottom-nav-item.active {
        color: var(--primary-color);
        font-weight: 500;
    }

    .bottom-nav-item.active i {
        color: var(--primary-color);
        transform: translateY(-2px);
    }

    /* İkonlar için özel stiller */
    .bottom-nav-item i.bi-house-door-fill {
        font-size: 24px;
    }

    .bottom-nav-item i.bi-grid-fill {
        font-size: 20px;
    }

    .bottom-nav-item i.bi-cart-fill {
        font-size: 22px;
    }

    .bottom-nav-item i.bi-person-fill {
        font-size: 24px;
    }

    /* Hover efekti */
    .bottom-nav-item:hover {
        color: var(--primary-color);
    }

    .bottom-nav-item:hover i {
        color: var(--primary-color);
        transform: translateY(-2px);
    }

    /* Sayfa içeriğinin alt menünün arkasında kalmaması için */
    body {
        padding-bottom: 75px;
    }
}

/* Masaüstünde bottom-nav'ı tamamen gizle */
@media screen and (min-width: 769px) {
    .bottom-nav {
        display: none !important;
    }
    
    body {
        padding-bottom: 0;
    }
}



/* Form Başlıkları */
.form-section-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Form Grupları */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

/* Fatura Tipi Seçimi */
.billing-type-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.billing-type-option {
    flex: 1;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.billing-type-option.active {
    border-color: var(--primary-color);
    background: #f8f9fa;
}

/* Farklı Fatura Adresi Checkbox */
.different-billing {
    margin: 20px 0;
    padding: 12px;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 3px solid #2196f3;
}

/* Sipariş Özeti */
.order-summary {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.order-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.item-name {
    font-size: 14px;
    color: #333;
}

.item-quantity {
    color: #666;
    font-size: 13px;
    margin-left: 5px;
}

.item-total {
    font-weight: 500;
    color: #2c3e50;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
}

.total-row.shipping {
    background: #f8f9fa;
    margin: 10px -25px;
    padding: 15px 25px;
    border-left: 3px solid var(--primary-color);
}

.total-row.total {
    font-size: 18px;
    font-weight: 600;
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 15px;
}



@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Form Grupları İyileştirmeleri */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
    outline: none;
}

/* Ödeme Yöntemleri */
.payment-methods {
    margin: 20px 0;
}

.payment-method {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
}

.payment-method label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.payment-method small {
    color: #666;
    font-size: 13px;
}

/* Ödeme Yap Butonu */
.submit-order-button {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.submit-order-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.2);
}

/* Sipariş Özeti İyileştirmeleri */
.order-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.item-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ödeme Yöntemleri Yeni Stil */
.payment-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.payment-methods {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.payment-method small {
    display: block;
    margin-top: 5px;
    color: #666;
}

/* Ödeme Butonu ve Kargo Notu */
.payment-footer {
    margin-top: 20px;
}

.cart-notice {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    font-size: 14px;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-order-button {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.banner-container a {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.banner-container a:hover {
    opacity: 0.9;
}

/* Hakkımızda Sayfası Stilleri */
.about-page {
    padding-top: 0;
    background: #fbfaff;
    margin-top: 0;
}

.about-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    margin-bottom: 60px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.15);
    margin-top: 100px; /* Header yüksekliği kadar (announcement bar hariç) */
}

/* Announcement bar için ek düzenleme */
.announcement-bar + .about-header {
    margin-top: 125px; /* Header + announcement bar yüksekliği */
}

/* Responsive için düzenleme */
@media (max-width: 768px) {
    .about-header {
        margin-top: 70px; /* Mobil header yüksekliği */
    }
    
    .announcement-bar + .about-header {
        margin-top: 95px; /* Mobil header + announcement bar */
    }
}

.about-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-header .lead {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bölüm Stilleri */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse .section-content {
    direction: ltr;
}

.section-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.section-image:hover img {
    transform: scale(1.05);
}

.section-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Misyon Listesi */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #2c3e50;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.mission-list li:hover {
    transform: translateX(10px);
    background: #f0f7f7;
}

.mission-list li i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Neden Biz Bölümü */
.why-us-section {
    text-align: center;
    padding: 60px 0;
    background: #fff;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-us-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.why-us-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 30px;
}

.feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.feature-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.2);
}

.feature-box h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* İletişim CTA */
.contact-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    margin: 60px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-cta h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-cta p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.whatsapp-button {
    background: #25D366;
}

.call-button {
    background: var(--primary-color);
}

.whatsapp-button:hover,
.call-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .about-page {
        margin-top: 95px;
    }

    .about-header {
        padding: 40px 20px;
    }

    .about-header h1 {
        font-size: 32px;
    }

    .section-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }

    .about-section {
        margin: 20px;
        padding: 20px;
    }

    .mission-list li {
        padding: 12px;
    }

    .contact-cta {
        padding: 40px 20px;
        margin: 40px 20px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section {
        padding: 15px;
        margin: 15px;
    }

    .about-header h1 {
        font-size: 28px;
    }

    .about-header .lead {
        font-size: 16px;
    }
}

/* Yasal Sayfalar Stili */
.legal-page {
    background: #fbfaff;
}

.legal-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    margin-top: 125px;
}

.legal-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.legal-content {
    padding: 60px 0;
}

.legal-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.legal-section ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header {
        margin-top: 95px;
        padding: 30px 0;
    }

    .legal-header h1 {
        font-size: 28px;
    }

    .legal-content {
        padding: 30px 0;
    }

    .legal-section {
        padding: 25px;
    }
}

/* Sözleşme Onay Kutuları */
.agreements-section {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eee;
}

.agreement-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.agreement-check:last-child {
    margin-bottom: 0;
}

.agreement-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.agreement-check label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.agreement-check a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.agreement-check a:hover {
    text-decoration: underline;
}

/* Ödeme butonu için kontrol */
.submit-order-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* İletişim Sayfası Stilleri */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.info-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-section h2 i {
    font-size: 24px;
}

.info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section ul li {
    margin-bottom: 10px;
    color: #666;
}

.info-section ul li:last-child {
    margin-bottom: 0;
}

.info-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-section a:hover {
    color: var(--accent-color);
}

.social-media-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-media-links .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.social-media-links .social-link:hover {
    transform: translateY(-3px);
}

.social-media-links .facebook:hover { background: #1877f2; color: #fff; }
.social-media-links .twitter:hover { background: #000; color: #fff; }
.social-media-links .instagram:hover { background: #e4405f; color: #fff; }
.social-media-links .youtube:hover { background: #ff0000; color: #fff; }
.social-media-links .whatsapp:hover { background: #25D366; color: #fff; }

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-map iframe {
    display: block;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 20px;
    }

    .info-section h2 {
        font-size: 18px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* Online Satış Mağazaları Başlık Stili */
.marketplace-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.marketplace-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Mağaza Logoları Bölümü */
.store-logos {
    padding: 20px 0;
    background: #fff;
    overflow: hidden;
    margin: 0;
}

.logo-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.logo-slider {
    display: flex;
    animation: slideLogos 20s linear infinite;
    gap: 40px; /* Logolar arası boşluk */
    padding: 10px 0;
}

/* Sürekli kayma animasyonu */
@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Logo stilleri */
.store-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: transparent;
    border: none;
    min-width: 250px; /* Genişliği artır */
}

.store-logo img {
    width: auto;
    height: 100px; /* Logo boyutunu artır */
    max-width: none;
    filter: grayscale(100%);
    opacity: 0.8; /* Opaklığı biraz artır */
    transition: all 0.3s ease;
}

.store-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .store-logo {
        min-width: 200px; /* Tablet için genişlik */
        padding: 10px;
    }
    
    .store-logo img {
        height: 80px; /* Tablet için logo boyutu */
    }
    
    .logo-slider {
        gap: 25px;
        animation: slideLogos 25s linear infinite; /* Animasyonu biraz yavaşlat */
    }
}

@media (max-width: 480px) {
    .store-logo {
        min-width: 160px; /* Mobil için genişlik */
    }
    
    .store-logo img {
        height: 70px; /* Mobil için logo boyutu */
    }
    
    .logo-slider {
        gap: 20px;
    }
}

/* Çok küçük ekranlar için ek düzenleme */
@media (max-width: 360px) {
    .store-logo {
        min-width: 140px;
    }
    
    .store-logo img {
        height: 60px;
    }
    
    .logo-slider {
        gap: 15px;
    }
}

.store-logo:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.store-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Kaydırma Okları */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent-color);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

.slider-arrow i {
    font-size: 18px;
}

/* Mobil için responsive ayarlar */
@media (max-width: 768px) {
    .store-logo img {
        height: 70px;
        max-width: 95px;
    }
}

@media (max-width: 480px) {
    .store-logo img {
        height: 60px;
        max-width: 85px;
    }
}

/* Ürün Kartı Stilleri */
.woocommerce ul.products li.product {
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* Ürün Başlığı */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px !important;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 5px;
    margin: 0;
    height: 60px; /* Sabit yükseklik */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ürün Fiyatı */
.woocommerce ul.products li.product .price {
    color: var(--primary-color) !important;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}

/* Ürün Görseli */
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin: 0;
    padding: 10px;
}

/* İndirim Etiketi */
.woocommerce span.onsale {
    background-color: var(--primary-color);
    min-height: auto;
    min-width: auto;
    padding: 5px 10px;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
}

/* Ürün Detay Sayfası */
.single-product div.product {
    margin-top: 30px;
    overflow: hidden;
    clear: both;
}

/* Ürün Detay Görseli Container */
.woocommerce-product-gallery {
    width: 48% !important;
    float: left !important;
    margin-bottom: 30px;
    position: relative;
}

/* Ana Görsel Container */
.woocommerce-product-gallery__image {
    width: 100% !important;
    height: 500px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 10px;
}

/* Ana Görsel */
.woocommerce-product-gallery__image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

/* Küçük Görseller Container */
.flex-control-nav.flex-control-thumbs {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
    background: #f8f9fa;
}

/* Küçük Görseller */
.flex-control-thumbs li {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    aspect-ratio: 1/1;
}

.flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 5px;
    border: 1px solid #eee;
    background: #fff;
}

.flex-control-thumbs li img:hover,
.flex-control-thumbs li img.flex-active {
    opacity: 1;
    border-color: var(--primary-color);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .woocommerce-product-gallery {
        width: 100% !important;
        float: none !important;
    }
    
    .woocommerce-product-gallery__image {
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-product-gallery__image {
        height: 300px !important;
    }
}

/* Ürün Detay Sağ Kısım */
.single-product div.product .summary {
    width: 48% !important;
    float: right;
    margin-bottom: 30px;
    padding-left: 20px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .single-product div.product .woocommerce-product-gallery,
    .single-product div.product .summary {
        width: 100% !important;
        float: none;
        padding-left: 0;
    }

    .woocommerce-product-gallery__image img {
        max-height: 400px;
        padding: 15px;
    }

    .flex-control-thumbs li {
        width: calc(20% - 8px) !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-product-gallery__image img {
        max-height: 300px;
        padding: 10px;
    }

    .flex-control-thumbs li {
        width: calc(25% - 8px) !important;
    }
}

/* WooCommerce Zoom ve Lightbox Düzeltmeleri */
.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #eee;
}

.woocommerce-product-gallery__trigger img {
    display: none !important;
}

.woocommerce-product-gallery__trigger::before {
    content: "🔍";
}

/* Görsel Geçiş Efektleri */
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

/* Ürün Detay Sayfası - Yeni Tasarım */
.single-product div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 30px auto;
    max-width: 1400px;
}

/* Görsel Bölümü */
.single-product div.product .woocommerce-product-gallery {
    width: calc(50% - 20px) !important;
    float: none;
    margin: 0;
    position: relative;
}

/* Ana Görsel Container */
.woocommerce-product-gallery__wrapper {
    margin: 0 !important;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

/* Ana Görsel */
.woocommerce-product-gallery__image {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}

.woocommerce-product-gallery__image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.woocommerce-product-gallery__image img {
    max-width: 90% !important;
    max-height: 90% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Zoom Efekti */
.woocommerce-product-gallery__image a:hover img {
    transform: scale(1.1);
}

/* Küçük Görseller */
.flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px !important;
    padding: 0 !important;
    list-style: none;
    width: 100%;
}

.flex-control-thumbs li {
    width: calc(20% - 8px) !important;
    margin: 0 !important;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.flex-control-thumbs img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    padding: 5px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.flex-control-thumbs img.flex-active,
.flex-control-thumbs img:hover {
    opacity: 1;
    border-color: var(--primary-color);
}

/* Zoom İkonu */
.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    z-index: 99;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.woocommerce-product-gallery__trigger:hover {
    background: #fff !important;
    transform: scale(1.1);
}

.woocommerce-product-gallery__trigger::before {
    content: "🔍";
    font-size: 18px;
}

.woocommerce-product-gallery__trigger img {
    display: none !important;
}

/* Ürün Detay Sağ Kısım */
.single-product div.product .summary {
    width: calc(50% - 20px) !important;
    float: none;
    margin: 0 !important;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .single-product div.product {
        padding: 20px;
        gap: 30px;
    }

    .single-product div.product .woocommerce-product-gallery,
    .single-product div.product .summary {
        width: 100% !important;
    }

    .woocommerce-product-gallery__wrapper {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .single-product div.product {
        padding: 15px;
        gap: 20px;
    }

    .flex-control-thumbs li {
        width: calc(16.666% - 8px) !important;
    }

    .woocommerce-product-gallery__trigger {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

@media (max-width: 480px) {
    .single-product div.product {
        padding: 10px;
        gap: 15px;
    }

    .woocommerce-product-gallery__image a {
        padding: 10px;
    }

    .flex-control-thumbs {
        gap: 5px;
    }

    .flex-control-thumbs li {
        width: calc(20% - 4px) !important;
    }
}
/* Lightbox Geliştirmeleri */
.pswp__bg {
    background: rgba(0,0,0,0.9) !important;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background-color: var(--primary-color) !important;
}

.pswp__top-bar {
    background: transparent !important;
}

/* PhotoSwipe Lightbox Stilleri */
.pswp {
    z-index: 999999;
}

.pswp__bg {
    background: rgba(0, 0, 0, 0.9);
}

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Galeri Görsel Stilleri */
.woocommerce-product-gallery {
    opacity: 1 !important;
}

.woocommerce-product-gallery .flex-viewport {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}

.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #eee;
}

.woocommerce-product-gallery__trigger::before {
    content: "🔍";
}

.woocommerce-product-gallery__trigger img {
    display: none !important;
}

/* Varyasyon Fiyat Stilleri */
.variation-prices-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.variation-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    text-align: center;
}

.variation-price-item:hover,
.variation-price-item.selected {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background: rgba(0, 206, 209, 0.05);
}

.variation-name {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.variation-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.kdv-info {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .variation-prices-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .variation-price-item {
        padding: 12px;
    }
    
    .variation-price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .variation-prices-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .variation-name {
        font-size: 13px;
    }
    
    .variation-price {
        font-size: 16px;
    }
}

/* Ürün Galerisi Stilleri */
.product-gallery {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #eee;
    aspect-ratio: 1/1; /* Kare görünüm için */
}

.main-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Görsel oranını koru */
    padding: 20px;
    transition: transform 0.5s ease;
}

/* Thumbnail Stilleri */
.thumbnail-slider {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail-item {
    flex: 0 0 80px;
    height: 80px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative; /* Eklendi */
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    pointer-events: none; /* Eklendi - img'ye tıklamayı engeller */
}

/* Lightbox Düzeltmeleri */
.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    margin: auto;
}

/* Ana menü aktif sayfa stilleri */
.main-menu .menu-item.current-menu-item > a,
.main-menu .menu-item.current-page-ancestor > a,
.main-menu .menu-item.current-post-ancestor > a,
.main-menu .menu-item.current-product-ancestor > a,
.main-menu .menu-item.current-product-parent > a {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

/* Aktif menü öğesi altındaki çizgi */
.main-menu .menu-item.current-menu-item > a::after,
.main-menu .menu-item.current-page-ancestor > a::after,
.main-menu .menu-item.current-post-ancestor > a::after,
.main-menu .menu-item.current-product-ancestor > a::after,
.main-menu .menu-item.current-product-parent > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

/* Hover efekti */
.main-menu .menu-item > a:hover {
    color: var(--primary-color);
}

.main-menu .menu-item > a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(1);
}

/* Mobil menü aktif sayfa stilleri */
@media (max-width: 768px) {
    .mobile-menu .menu-item.current-menu-item > a,
    .mobile-menu .menu-item.current-page-ancestor > a,
    .mobile-menu .menu-item.current-post-ancestor > a,
    .mobile-menu .menu-item.current-product-ancestor > a,
    .mobile-menu .menu-item.current-product-parent > a {
        color: var(--primary-color);
        background-color: rgba(0, 206, 209, 0.1);
    }
}

/* WooCommerce checkout formunu izole et */
.woocommerce-checkout-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* WooCommerce varsayılan stillerini korumak için reset */
.woocommerce-checkout-wrapper .woocommerce {
    all: revert;
    font-family: inherit;
}

/* Sadece gerekli WooCommerce stillerini geri yükle */
.woocommerce-checkout-wrapper .woocommerce form .form-row {
    all: revert;
}

.woocommerce-checkout-wrapper .woocommerce form .form-row input.input-text,
.woocommerce-checkout-wrapper .woocommerce form .form-row textarea {
    all: revert;
}

/* Ödeme sayfası container'ı */
.checkout-page-container {
    background: #f8f9fa;
    min-height: 500px;
    padding: 40px 0;
}

.checkout-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Ürün Açıklamaları */
.product-short-description {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Ürün Detay Sekmeleri */
.product-tabs {
    margin-top: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.tab-button {
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active:after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    padding: 30px;
    line-height: 1.8;
    color: #444;
}

.tab-content.active {
    display: block;
}

.tab-content h2, 
.tab-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.tab-content p {
    margin-bottom: 15px;
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .tab-button:after {
        height: 100%;
        width: 3px;
        top: 0;
        transform: scaleY(0);
    }
    
    .tab-button.active:after {
        transform: scaleY(1);
    }
    
    .tab-content {
        padding: 20px;
    }
}

/* Lightbox Navigasyon Butonları */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: #fff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #fff;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tab-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .tab-content {
        padding: 15px;
    }
}

/* Ürün Kısa Açıklama Kutusu */
.product-short-description-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid var(--primary-color);
    position: relative;
}

.product-short-description-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.product-short-description-title i {
    color: var(--primary-color);
    font-size: 24px;
}

.product-short-description {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .product-short-description-wrapper {
        padding: 20px;
        margin: 20px 0;
    }
    
    .product-short-description-title {
        font-size: 18px;
    }
}

/* Benzer Ürünler Bölümü */
.related-products {
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.related-products .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.related-products .section-title h2 {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.related-products .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .related-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .related-products {
        padding: 30px 20px;
    }
    
    .related-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .related-products .products-grid {
        grid-template-columns: 1fr;
    }
    
    .related-products .section-title h2 {
        font-size: 24px;
    }
}

/* Lightbox Stilleri */
.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* Mobil görünümde banner ve boşluk düzenlemeleri */
@media (max-width: 768px) {
    /* Body padding düzenlemesi */
    body {
        padding-top: 105px; /* Navbar yüksekliğini azalt */
    }

    /* Site header düzenlemesi */
    .site-header {
        height: 70px; /* Header yüksekliğini azalt */
    }

    /* Banner alanı düzenlemesi */
    .wide-banner {
        padding: 0; /* Tüm padding'i kaldır */
        margin-top: -15px; /* Banner'ı yukarı çek */
    }
    
    .banner-container {
        border-radius: 0;
        box-shadow: none;
        margin: 0;
    }

    /* Kategori kutuları düzenlemesi */
    .category-boxes {
        padding: 0;
        margin: 0;
    }
    
    /* Online mağazalar bölümü düzenlemesi */
    .store-logos {
        padding: 20px 0;
        margin-top: 5px;
        background: #fff;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    }

    .marketplace-title {
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 15px 0;
        text-align: center;
    }

    .logo-slider {
        padding: 0 10px;
    }

    .store-logo {
        border: 1px solid rgba(0, 206, 209, 0.1);
        background: #fff;
        padding: 10px;
        border-radius: 8px;
    }
}

/* Daha küçük mobil ekranlar için ek düzenlemeler */
@media (max-width: 480px) {
    body {
        padding-top: 95px;
    }

    .wide-banner {
        margin-top: -10px;
    }

    .store-logos {
        padding: 15px 0;
    }

    .marketplace-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* Paket Seçenekleri Stil Düzenlemeleri */
.variation-prices-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.variation-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    text-align: center;
    min-height: 80px;
}

.variation-name {
    font-size: clamp(12px, 3vw, 14px); /* Responsive font size */
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.2;
    width: 100%;
    word-break: break-word;
}

.variation-price {
    font-size: clamp(14px, 3.5vw, 18px); /* Responsive font size */
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.kdv-info {
    font-size: clamp(10px, 2.5vw, 12px); /* Responsive font size */
    color: #999;
    margin-top: 2px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 768px) {
    .variation-prices-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    
    .variation-price-item {
        padding: 8px 4px;
        min-height: 70px;
    }
}

/* Daha küçük ekranlar için düzenlemeler */
@media (max-width: 480px) {
    .variation-prices-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .variation-price-item {
        padding: 6px 3px;
        min-height: 65px;
    }
}

/* Seçili durum için stil */
.variation-price-item.selected {
    border-color: var(--primary-color);
    background: rgba(0, 206, 209, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Ürün Detay Sayfası - Görsel Pozisyonu Düzeltme */
.woocommerce-product-gallery {
    margin-top: -30px !important; /* Görseli yukarı çek */
}

.woocommerce div.product div.images {
    margin-bottom: 1em;
}

/* Benzer Ürünler Grid Düzeni */
.related. products {
    margin-top: 40px;
}

.related. products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 !important;
    padding: 0 !important;
}

.related. products ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 15px !important;
    float: none !important;
    clear: none !important;
}

/* Tablet Görünümü */
@media (max-width: 991px) {
    .related. products ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .related. products ul.products {
        grid-template-columns: repeat(2, 1fr) !important; /* 2'li grid */
        gap: 10px;
    }

    .related. products ul.products li.product {
        padding: 10px !important;
    }
    
    /* Ürün görselini daha yukarı çek */
    .woocommerce-product-gallery {
        margin-top: -20px !important;
    }
}

/* Küçük Mobil Ekranlar */
@media (max-width: 480px) {
    .related. products ul.products {
        gap: 8px;
    }

    .related. products ul.products li.product {
        padding: 8px !important;
    }
}

/* Ürün Galerisi Ana Container */
.woocommerce-product-gallery {
    position: relative;
    margin-top: 0 !important;
}

/* Ana Görsel Container */
.woocommerce-product-gallery__wrapper {
    position: relative;
    z-index: 1; /* Z-index'i düşür */
}

/* Ok İşaretleri */
.flex-direction-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2; /* Ok işaretlerini öne çıkar */
    pointer-events: none; /* Ok dışındaki alana tıklamayı engelle */
}

.flex-direction-nav a {
    pointer-events: auto; /* Sadece ok işaretlerine tıklamaya izin ver */
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
    opacity: 1 !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.flex-direction-nav .flex-prev {
    left: 10px !important;
}

.flex-direction-nav .flex-next {
    right: 10px !important;
}

/* Ok İşaretleri Hover Efekti */
.flex-direction-nav a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .flex-direction-nav a {
        width: 35px;
        height: 35px;
    }
    
    .flex-direction-nav .flex-prev {
        left: 5px !important;
    }
    
    .flex-direction-nav .flex-next {
        right: 5px !important;
    }
}

