/* =========================================
   TOYS PAGE THEME (Pastel Bulutlar)
   ========================================= */

body.toys-theme {
    /* Hareketli Pastel Gökkuşağı (Rainbow) Arka Planı */
    background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1, #a1c4fd, #c2e9fb, #d4fc79, #84fab0);
    background-size: 600% 600%;
    animation: gradientBG 20s ease infinite;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Başlık Stili - Beyaz ve Kabarık */
.toys-theme h1.text-center {
    color: #fff;
    font-weight: 900;
    font-size: 3.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1), 0 0 20px rgba(255,255,255,0.5);
    margin-bottom: 2rem !important;
    letter-spacing: 2px;
}

/* Cam Efekti (Glassmorphism) - Genel Sınıf */
.glass-panel {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Filtre Alanı */
.toys-theme .filter-sidebar {
    background: rgba(255, 255, 255, 0.4); /* Daha opak */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2rem !important;
}

.toys-theme .filter-sidebar h5 {
    color: #636e72; /* Daha koyu gri */
    text-shadow: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toys-theme .form-select, 
.toys-theme .form-control {
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.8);
    color: #555;
    transition: all 0.3s ease;
}

.toys-theme .form-select:focus, 
.toys-theme .form-control:focus {
    background-color: #fff;
    border-color: #a1c4fd;
    box-shadow: 0 0 15px rgba(161, 196, 253, 0.4);
}

/* Ürün Kartları - Uçuşan Kartlar */
.toys-theme .product-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.toys-theme .product-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 30px rgba(161, 196, 253, 0.4);
}

.toys-theme .product-card img {
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.toys-theme .product-card .card-body {
    text-align: center;
}

.toys-theme .product-card .card-title {
    font-weight: 800;
    color: #636e72;
}

.toys-theme .product-card .card-subtitle {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff7675 !important; /* Yumuşak kırmızı */
    text-shadow: 1px 1px 0 #fff;
}

/* Butonlar - Pastel Gradient */
.toys-theme .btn-primary {
    background: linear-gradient(45deg, #a1c4fd, #c2e9fb);
    border: none;
    color: #535c68;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(161, 196, 253, 0.4);
    transition: all 0.3s ease;
}

.toys-theme .btn-primary:hover {
    background: linear-gradient(45deg, #ff9ff3, #a29bfe);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 159, 243, 0.4);
}

/* Navbar Ayarı - Tamamen Şeffaf */
.toys-theme .navbar {
    background-color: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.toys-theme .nav-link {
    color: #636e72 !important;
    font-weight: 600;
}

.toys-theme .nav-link:hover, .toys-theme .nav-link.active {
    color: #ff7675 !important;
}

.toys-theme .navbar-brand span {
    color: #636e72;
}