/*
Theme Name: Space Gym Premium
Theme URI: https://52medya.com/space-gym
Author: Gemini & 52 Medya
Description: Uzay konseptli, premium, animasyonlu ve WooCommerce uyumlu spor/supplement teması.
Version: 1.6
Text Domain: space-gym
*/

/* =========================================
   1. DEĞİŞKENLER (RENKLER & EFEKTLER)
   ========================================= */
:root {
    --bg-dark: #050505;
    /* Ana zemin koyu siyah */
    --bg-navy: #0a0b1e;
    /* Lacivert tonlar */
    --neon-blue: #00f2ff;
    /* Neon Mavisi */
    --neon-purple: #bc13fe;
    /* Neon Moru */
    --neon-green: #39ff14;
    /* Neon Yeşili */
    --text-white: #ffffff;
    /* Beyaz Yazı */
    --text-gray: #a0a0a0;
    /* Gri Yazı */
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    /* Yumuşak geçiş efekti */
    --glow-box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    /* Parlama efekti */
}

/* =========================================
   2. TEMEL AYARLAR (RESET & BODY)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: transparent;
    /* Arka plandaki yıldızların görünmesi için şeffaf */
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    /* Sağa taşmaları engelle */
    line-height: 1.6;
    padding-top: 80px;
    /* Header sabit (fixed) olduğu için içeriği aşağı itiyoruz */
}

/* =========================================
   3. ARKA PLAN UZAY ANİMASYONU
   ========================================= */
/* Nebula (Bulutsu) Efekti */
#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    /* En altta duracak */
    background:
        radial-gradient(circle at 20% 30%, rgba(188, 19, 254, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 242, 255, 0.15) 0%, transparent 50%),
        var(--bg-dark);
    background-size: 150% 150%;
    animation: nebula-move 15s ease infinite alternate;
}

@keyframes nebula-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Yıldızlar ve Kayan Yıldızlar */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

/* Sabit Yıldızlar */
.stars-static {
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow:
        10vw 10vh #fff, 20vw 40vh #fff, 30vw 80vh #fff,
        40vw 20vh #fff, 50vw 60vh #fff, 60vw 10vh #fff,
        70vw 90vh #fff, 80vw 30vh #fff, 90vw 50vh #fff,
        15vw 75vh #aaa, 35vw 25vh #aaa, 55vw 95vh #aaa,
        75vw 15vh #aaa, 95vw 45vh #aaa, 12vw 88vh #aaa;
    animation: twinkle 4s infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Kayan Yıldız Efekti */
.shooting-star {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 1);
    animation: shoot 3s linear infinite;
    opacity: 0;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

/* Kayan yıldızların zamanlaması */
.shooting-star:nth-child(1) {
    top: 0;
    left: 80%;
    animation-delay: 0s;
    animation-duration: 4s;
}

.shooting-star:nth-child(2) {
    top: 0;
    left: 40%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.shooting-star:nth-child(3) {
    top: 30%;
    left: 100%;
    animation-delay: 5s;
    animation-duration: 3s;
}

@keyframes shoot {
    0% {
        transform: rotate(315deg) translateX(0);
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: rotate(315deg) translateX(-1000px);
        opacity: 0;
    }
}

/* =========================================
   4. HEADER & MENÜ (MOBİL UYUMLU)
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    /* Her şeyin üstünde */
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

/* Masaüstü Menü */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

/* Hamburger İkonu (Mobilde Görünür) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    box-shadow: 0 0 5px var(--neon-blue);
}

/* Mobil Menü Mantığı */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        left: -100%;
        /* Ekran dışına it */
        top: 70px;
        gap: 0;
        flex-direction: column;
        background: rgba(10, 11, 30, 0.95);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid var(--neon-blue);
    }

    .nav-links {
        flex-direction: column;
        padding-top: 50px;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .main-nav.active {
        left: 0;
        /* Menüyü ekrana getir */
    }
}

/* =========================================
   5. TİPOGRAFİ, BUTONLAR VE KARTLAR
   ========================================= */
.futuristic {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-text-blue {
    text-shadow: 0 0 15px var(--neon-blue);
    color: var(--neon-blue);
}

.neon-text-purple {
    text-shadow: 0 0 15px var(--neon-purple);
    color: var(--neon-purple);
}

.neon-btn {
    padding: 14px 34px;
    border: 2px solid var(--neon-blue);
    background: transparent;
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.neon-btn:hover {
    background: var(--neon-blue);
    box-shadow: 0 0 30px var(--neon-blue);
    color: #000;
    transform: translateY(-3px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
}

.glass-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.split {
    transition: var(--transition);
    filter: grayscale(40%);
}

.split:hover {
    filter: grayscale(0%);
    background: rgba(255, 255, 255, 0.02);
}

/* =========================================
   6. FOOTER (SADELEŞTİRİLMİŞ VERSİYON)
   ========================================= */
.space-footer {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    position: relative;
    padding: 60px 0 30px 0;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-neon-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
    box-shadow: 0 0 15px var(--neon-blue);
}

.footer-container-simple {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.social-icons.centered-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 12px;
}

.social-link:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-3px);
}

.footer-simple-links {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-simple-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    opacity: 0.7;
}

.footer-simple-links a:hover {
    opacity: 1;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.footer-bottom-simple {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 12px;
    color: #555;
}

/* =========================================
   7. WOOCOMMERCE (MAĞAZA STİLLERİ) - GENİŞ VE FERAH VERSİYON
   ========================================= */

/* Ana Kapsayıcı */
.space-shop-container {
    padding-top: 50px;
    padding-bottom: 80px;
    max-width: 1300px;
    /* Genişliği 1200'den 1300'e çıkardık */
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding-left: 20px;
    padding-right: 20px;
}

/* Başlıklar */
.shop-header h1 {
    color: #fff;
    font-size: clamp(2rem, 6vw, 3.5rem);
    /* Responsive Font: Mobilde 2rem, PC'de 3.5rem */
    /* Başlık büyütüldü */
    text-shadow: 0 0 25px var(--neon-blue);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
    word-wrap: break-word;
    /* Uzun kelimeleri kır */
}

.shop-header p {
    color: #ccc;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
}

.woocommerce-info {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-top: 3px solid var(--neon-purple);
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
}

/* --- ÜRÜN IZGARASI (GRID) AYARLARI --- */
.woocommerce ul.products {
    display: grid;
    gap: 40px;
    /* Kartlar arası boşluğu açtık */
    padding: 0;
    list-style: none;

    /* YENİ SİSTEM: Varsayılan (Mobil) -> 1 Sütun */
    grid-template-columns: 1fr;
    justify-content: center;
}

/* Tablet: Yan yana 2 ürün */
@media (min-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Masaüstü: Yan yana 3 ürün (Standart Düzen) */
@media (min-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- ÜRÜN KARTI TASARIMI --- */
.woocommerce ul.products li.product {
    background: rgba(15, 15, 25, 0.7);
    /* Zemin rengi */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    /* İç boşluğu artırdık, ferahlasın */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    gap: 15px;
    /* Öğeler arasına eşit boşluk */

    /* Yeni Düzen Ayarları */
    width: 100% !important;
    /* Hücreyi tamamen doldur */
    max-width: 450px;
    /* Çok geniş ekranda devasa olmasın */
    margin: 0 auto;
    /* Ortala */
}

/* Hover Efekti */
.woocommerce ul.products li.product:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.25);
    /* Parlama artırıldı */
    transform: translateY(-7px);
    background: rgba(20, 20, 40, 0.9);
}

/* Ürün Resmi */
.woocommerce ul.products li.product img {
    width: 100%;
    height: 350px;
    /* Resim alanını yükselttik */
    object-fit: cover;
    /* Ürün resmini tam doldurur, boşluk kalmaz */
    margin-bottom: 0;
    /* Gap kullanıyoruz, margin'e gerek yok */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    /* Resme hafif gölge */
    transition: 0.4s;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
    /* Resim hafif büyüsün */
}

/* Ürün Başlığı */
.woocommerce-loop-product__title {
    color: #fff !important;
    font-size: 1.5rem;
    /* Font büyütüldü */
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 0px !important;
    /* Gap ile yönetiliyor */
    line-height: 1.4;
}

/* Fiyat */
.price {
    color: var(--neon-green) !important;
    /* Fiyatı yeşil neon yaptık, dikkat çeksin */
    font-size: 1.4rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0px !important;
    /* Gap ile yönetiliyor */
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

/* Sepete Ekle Butonu */
.button.add_to_cart_button {
    background: transparent !important;
    border: 2px solid var(--neon-purple) !important;
    color: #fff !important;
    width: 100%;
    padding: 15px 0;
    /* Butonu yükselttik */
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    white-space: nowrap !important;
    /* Yazıyı tek satıra zorla */
    padding: 15px 20px !important;
    /* İç boşluğu garantiye al */
}

.button.add_to_cart_button:hover {
    background: var(--neon-purple) !important;
    box-shadow: 0 0 25px var(--neon-purple);
    color: #fff !important;
}

/* İndirim Rozeti (Varsa) */
.onsale {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-green);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 0 10px var(--neon-green);
    z-index: 2;
}

/* =========================================
   8. GALERİ TASARIMI (ORTALANMIŞ & DÜZENLİ)
   ========================================= */
.gallery-section {
    width: 100%;
    text-align: center;
    /* Başlığı ve içeriği ortalar */
    padding: 60px 0;
}

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

.center-title {
    text-align: center;
    margin: 0 auto 40px auto;
    /* Başlığı tam ortaya sabitler */
    display: inline-block;
}

/* Grid Yapısı (Mobil Öncelikli) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    width: 100%;
}

/* Masaüstü için Flex (Daha düzgün ortalama sağlar) */
@media (min-width: 992px) {
    .gallery-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-item {
        width: 280px;
        height: 280px;
    }
}

/* Galeri Kutusu */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    /* Kare olmasını garanti eder */
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* Hover Efektleri */
.gallery-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Büyüteç Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i,
.gallery-overlay span {
    font-size: 30px;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-blue);
}

/* =========================================
   9. LIGHTBOX (AÇILIR PENCERE)
   ========================================= */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 30px var(--neon-purple);
    border-radius: 8px;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--neon-blue);
    transform: rotate(90deg);
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 20px;
    transition: 0.3s;
    user-select: none;
}

.lb-prev:hover,
.lb-next:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================
   10. GENEL RESPONSIVE AYARLARI
   ========================================= */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}

/* =========================================
   12. ÇEREZ (COOKIE) BANNER STİLLERİ
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    /* Başlangıçta gizli */
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(5, 5, 20, 0.95);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.neon-link {
    color: var(--neon-blue);
    text-decoration: none;
    border-bottom: 1px dashed var(--neon-blue);
}

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

.small-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.outline-btn {
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
}

.outline-btn:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

@media (max-width: 576px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   11. TEKİL ÜRÜN SAYFASI (SINGLE PRODUCT)
   ========================================= */

/* Ana Kapsayıcı Düzeni */
.single-product .product {
    display: flex;
    flex-wrap: wrap;
    /* Mobilde alt alta gelmesi için */
    gap: 50px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* 1. Sol Taraf: Ürün Görseli */
.woocommerce-product-gallery {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    /* Hafif mavi gölge */
    transition: 0.3s;
}

.woocommerce-product-gallery:hover {
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.2);
    /* Hoverda mor gölge */
    border-color: var(--neon-purple);
}

.woocommerce-product-gallery img {
    border-radius: 12px;
}

/* 2. Sağ Taraf: Ürün Bilgileri (Summary) */
.summary.entry-summary {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ürün Başlığı */
.single-product .product_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 15px var(--neon-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Fiyat */
.single-product .price {
    font-size: 2rem;
    color: var(--neon-green);
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    display: block;
}

/* Kısa Açıklama */
.woocommerce-product-details__short-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 40px;
    border-left: 3px solid var(--neon-purple);
    padding-left: 20px;
}

/* Adet Seçici ve Sepete Ekle Butonu Hizalaması */
.cart {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.quantity input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: #fff;
    padding: 10px;
    font-size: 1.2rem;
    width: 60px;
    text-align: center;
    border-radius: 4px;
}

/* Stok Durumu, Kategoriler vb. */
/* Varsayılan WooCommerce metalarını gizliyoruz, yerine kendi özel yapımızı ekledik */
.product_meta {
    display: none !important;
}

/* Kendi Eklediğimiz Özel Meta Alanı */
.custom-product-meta {
    font-size: 0.95rem;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
    line-height: 2;
}

.custom-product-meta span.posted_in,
.custom-product-meta span.sku_wrapper {
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.custom-product-meta a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    background: rgba(188, 19, 254, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(188, 19, 254, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.custom-product-meta a:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
    color: #fff;
}

/* 3. Alt Kısım: Sekmeler (Açıklama, Yorumlar) */
.woocommerce-tabs {
    width: 100%;
    margin-top: 80px;
    background: rgba(10, 11, 30, 0.6);
    /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 40px;
}

/* Sekme Başlıkları */
.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0 0 30px 0;
    list-style: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-tabs ul.tabs li {
    padding-bottom: 10px;
    cursor: pointer;
}

.woocommerce-tabs ul.tabs li a {
    color: #aaa;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li:hover a {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.woocommerce-tabs ul.tabs li.active {
    border-bottom: 2px solid var(--neon-purple);
    margin-bottom: -2px;
    /* Çizgi üstüne otursun */
}

/* Sekme İçeriği */
.woocommerce-Tabs-panel {
    color: #ddd;
    line-height: 1.8;
    font-size: 1rem;
}

.woocommerce-Tabs-panel h2 {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Responsive (Mobil) Düzenlemeler */
@media (max-width: 768px) {
    .single-product .product_title {
        font-size: 2rem;
        /* Başlık biraz küçülsün */
        text-align: center;
    }

    .single-product .price {
        text-align: center;
    }

    .woocommerce-product-details__short-description {
        text-align: center;
        border-left: none;
        /* Çizgiyi kaldır */
        padding-left: 0;
    }

    .cart {
        justify-content: center;
        /* Butonu ortala */
    }

    .woocommerce-tabs {
        padding: 20px;
        /* Kenar boşluğunu azalt */
    }

    .woocommerce-tabs ul.tabs {
        flex-direction: column;
        /* Sekmeleri alt alta diz */
        align-items: center;
        gap: 15px;
    }
}

/* =========================================
   12. WOOCOMMERCE SEPET (CART) SAYFASI
   ========================================= */

.woocommerce-cart .woocommerce {
    background: rgba(10, 11, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.woocommerce table.shop_table {
    border: none;
    border-collapse: collapse;
    width: 100%;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ddd;
}

.woocommerce table.shop_table th {
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.woocommerce table.shop_table td.product-name a {
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
}

.woocommerce table.shop_table td.product-name a:hover {
    color: var(--neon-purple);
}

/* Sepet Toplamları (Cart Totals) */
.cart-collaterals .cart_totals {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.05);
}

.cart_totals h2 {
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
}

/* Form Elemanları (Genel) */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
    background: #1a1a2e !important;
    /* Koyu arka plan eklendi */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    /* Yazılar beyaz */
    border-radius: 5px !important;
    padding: 12px 15px !important;
    height: auto !important;
    outline: none;
    transition: 0.3s;
}

/* Placeholder (İçindeki silik yazı) Rengi */
.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder {
    color: #888 !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    background: #0d0f24 !important;
    /* Odaklanınca biraz daha koyu */
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2) !important;
}

/* Form Etiketleri (Label) ve Yorum Girdileri */
.woocommerce form .form-row label {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

/* Select2 Dropdown için Karanlık Tema Fix */
.select2-dropdown {
    background: #111 !important;
    border: 1px solid var(--neon-blue) !important;
}

.select2-results__option {
    color: #ddd !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
    background-color: var(--neon-purple) !important;
    color: #fff !important;
}

/* =========================================
   13. WOOCOMMERCE ÖDEME (CHECKOUT) SAYFASI
   ========================================= */

.woocommerce-checkout #customer_details {
    margin-bottom: 40px;
}

.woocommerce-checkout h3 {
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.woocommerce-checkout-review-order {
    background: rgba(10, 11, 30, 0.8);
    border: 1px solid rgba(188, 19, 254, 0.2);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.05);
}

/* Ödeme Yöntemleri ve PayTR Alanı */
#payment {
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 0 !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px !important;
}

#payment ul.payment_methods li {
    color: #ddd;
}

#payment div.payment_box {
    background: rgba(0, 242, 255, 0.05) !important;
    border: 1px solid rgba(0, 242, 255, 0.1) !important;
    color: #ccc !important;
    border-radius: 5px !important;
    padding: 15px !important;
    margin-top: 15px !important;
}

#payment div.payment_box::before {
    border-bottom-color: rgba(0, 242, 255, 0.1) !important;
}

/* Siparişi Onayla Butonu */
#place_order {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    margin-top: 20px;
    text-shadow: 0 0 5px var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

#place_order:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 30px var(--neon-blue);
}

/* Kupon vs. Uyarı Mesajları */
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    background: rgba(10, 11, 30, 0.8) !important;
    border-top: 3px solid var(--neon-blue) !important;
    color: #ddd !important;
}

.woocommerce-error {
    border-top-color: #ff003c !important;
    /* Kırmızı hata rengi */
}

.woocommerce-message::before {
    color: var(--neon-blue) !important;
}

/* =========================================
   14. WOOCOMMERCE MOBİL UYUMLULUK (RESPONSIVE)
   ========================================= */
@media (max-width: 768px) {

    /* Sepet Tablosu Responsive Yapısı */
    .woocommerce table.shop_table_responsive thead {
        display: none;
        /* Mobilde tablo başlıklarını gizle */
    }

    .woocommerce table.shop_table_responsive tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.2);
    }

    .woocommerce table.shop_table_responsive td {
        display: block;
        text-align: right;
        /* İçerik sağda */
        border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
        position: relative;
        padding-left: 50% !important;
        /* Başlıklar için sol boşluk */
    }

    .woocommerce table.shop_table_responsive td:last-child {
        border-bottom: none;
    }

    /* Mobilde Başlıkları Sola Ekleme */
    .woocommerce table.shop_table_responsive td::before {
        content: attr(data-title);
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: bold;
        color: var(--neon-blue);
        text-transform: uppercase;
        font-size: 0.8rem;
    }

    /* Sepet Toplamları Mobilde Tam Genişlik */
    .cart-collaterals .cart_totals {
        width: 100% !important;
        float: none !important;
        padding: 15px;
    }

    /* Ödeme Sayfası (Checkout) Mobilde Alt Alta Diziliş */
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .woocommerce-checkout-review-order {
        padding: 15px;
    }
}