/* Galaktik Bebek Fotoğrafçılığı - CSS Stilleri */
/* Mobile-First Responsive Design */

/* CSS Variables - Galaktik Tema */
:root {
    --ana-renk: #2563eb;
    --ikinci-renk: #f59e0b;
    --ana-beyaz: #ffffff;
    --ana-gri: #f8fafc;
    --koyu-gri: #374151;
    --yesil: #10b981;
    --kirmizi: #ef4444;
    --font-ailesi: 'Inter', sans-serif;
    --galaxy-font: 'Space Grotesk', sans-serif;
    
    /* Galaktik Renkler */
    --nebula-purple: #8b5cf6;
    --star-blue: #3b82f6;
    --cosmic-pink: #ec4899;
    --space-dark: #0f172a;
    --galaxy-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --cosmic-glow: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* Banner Button Mobile Spacing Fix */
@media (max-width: 768px) {
    .banner-btn {
        gap: 8px !important;
    }
    
    .banner-btn a.rts-btn + a.rts-btn {
        margin-top: 5px !important;
    }
}

/* Banner button specific styling */
.banner-btn a.btn-primary {
    color: #6206e4 !important;
}

/* Filter System - Tema Uyumlu Tasarım */
.cosmic-filter-wrapper {
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.1)),
        linear-gradient(45deg, rgba(255, 193, 7, 0.15) 0%, transparent 25%, rgba(139, 92, 246, 0.12) 50%, transparent 75%, rgba(255, 193, 7, 0.08) 100%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 92, 246, 0.15) 50%, transparent 70%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 25px 30px;
    margin: 0 auto 25px auto;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.25),
        0 0 25px rgba(255, 193, 7, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cosmic-filter-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.25), rgba(139, 92, 246, 0.1), transparent);
    animation: shimmer 4s infinite;
    z-index: 1;
}

.cosmic-filter-wrapper > * {
    position: relative;
    z-index: 2;
}

.filter-title {
    text-align: left;
    margin-bottom: 20px;
    padding-left: 5px;
}

.cosmic-filter-title {
    color: var(--koyu-gri);
    font-family: var(--galaxy-font);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    opacity: 0.9;
}

.cosmic-filter-section {
    margin-bottom: 20px;
    text-align: left;
    padding-left: 5px;
}

.cosmic-filter-section:last-child {
    margin-bottom: 0;
}

.filter-label-wrapper {
    margin-bottom: 12px;
}

.cosmic-filter-label {
    display: block;
    color: var(--koyu-gri);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.cosmic-select {
    width: 200px;
    max-width: 200px;
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(255, 255, 255, 0.98)),
        linear-gradient(45deg, rgba(255, 193, 7, 0.1) 0%, transparent 35%, rgba(139, 92, 246, 0.08) 65%, transparent 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--koyu-gri);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 8px rgba(139, 92, 246, 0.15),
        0 0 5px rgba(255, 193, 7, 0.1);
    position: relative;
    text-align: center;
    text-align-last: center;
}

.cosmic-select:hover {
    border-color: var(--nebula-purple);
    box-shadow: 
        0 4px 12px rgba(139, 92, 246, 0.3),
        0 0 12px rgba(255, 193, 7, 0.2);
    transform: translateY(-1px);
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 255, 255, 1)),
        linear-gradient(45deg, rgba(255, 193, 7, 0.15) 0%, transparent 30%, rgba(139, 92, 246, 0.12) 70%, transparent 100%);
}

.cosmic-select:focus {
    outline: none;
    border-color: var(--cosmic-pink);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
}

.cosmic-select option {
    text-align: left;
    padding: 8px 12px;
    background: var(--ana-beyaz);
    color: var(--koyu-gri);
}

/* Dropdown max height ve scrollbar stilleri */
.cosmic-select {
    scrollbar-width: thick;
    scrollbar-color: var(--nebula-purple) rgba(139, 92, 246, 0.1);
}

/* Option'lar için maksimum yükseklik - JavaScript ile çalışacak */
.cosmic-select option {
    padding: 10px 12px;
    line-height: 1.4;
}

/* Select element açıldığında maksimum yükseklik */
.cosmic-select:focus {
    max-height: 250px !important;
    overflow-y: auto !important;
}

/* Custom scrollbar - Çok belirgin mor tema */
.cosmic-select::-webkit-scrollbar {
    width: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

.cosmic-select::-webkit-scrollbar-track {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(139, 92, 246, 0.05));
    border-radius: 8px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: inset 0 0 6px rgba(139, 92, 246, 0.2);
    margin: 4px;
}

.cosmic-select::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        var(--nebula-purple), 
        var(--cosmic-pink));
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 2px 6px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    min-height: 40px;
}

.cosmic-select::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        var(--cosmic-pink), 
        var(--nebula-purple));
    box-shadow: 
        0 4px 12px rgba(139, 92, 246, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.cosmic-select::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, 
        rgba(139, 92, 246, 1), 
        rgba(236, 72, 153, 1));
    box-shadow: 
        0 2px 4px rgba(139, 92, 246, 0.9),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Scrollbar corner ve buttons */
.cosmic-select::-webkit-scrollbar-corner {
    background: rgba(139, 92, 246, 0.1);
}

/* Mobil için dropdown ve scrollbar ayarları */
@media (max-width: 767px) {
    .cosmic-select::-webkit-scrollbar {
        width: 14px;
    }
    
    .cosmic-select::-webkit-scrollbar-thumb {
        min-height: 35px;
    }
}

@media (max-width: 480px) {
    .cosmic-select::-webkit-scrollbar {
        width: 12px;
    }
    
    .cosmic-select::-webkit-scrollbar-thumb {
        min-height: 30px;
    }
}

.cosmic-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: flex-start;
}

.cosmic-gender-main-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.cosmic-gender-special-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cosmic-btn.hamile-btn {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(255, 255, 255, 0.95));
    border: 2px solid rgba(245, 158, 11, 0.5);
    color: #d97706;
    font-weight: 700;
}

.cosmic-btn.hamile-btn:hover {
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(255, 255, 255, 1));
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.cosmic-btn.hamile-btn.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
    color: #ffffff;
}

.cosmic-btn {
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.95)),
        linear-gradient(45deg, rgba(255, 193, 7, 0.12) 0%, transparent 30%, rgba(139, 92, 246, 0.1) 70%, transparent 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    padding: 5px 5px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--koyu-gri);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 
        0 2px 8px rgba(139, 92, 246, 0.15),
        0 0 5px rgba(255, 193, 7, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 80px;
    width: 80px;
    text-align: left;
}

.cosmic-btn:hover {
    border-color: var(--nebula-purple);
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(255, 255, 255, 1)),
        linear-gradient(45deg, rgba(255, 193, 7, 0.2) 0%, transparent 35%, rgba(139, 92, 246, 0.15) 65%, transparent 100%);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(139, 92, 246, 0.3),
        0 0 15px rgba(255, 193, 7, 0.2);
}

.cosmic-btn.active {
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-pink));
    border-color: var(--nebula-purple);
    color: var(--ana-beyaz);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
}

/* Responsive Design */
/* Desktop - Minimal ve kompakt tasarım */
@media (min-width: 1024px) {
    .cosmic-filter-wrapper {
        max-width: 700px;
        padding: 15px 20px;
        margin: 0 auto 15px auto;
        border-radius: 12px;
    }
    
    .filter-title {
        margin-bottom: 12px;
        padding-left: 0;
    }
    
    .cosmic-filter-title {
        font-size: 1.1rem;
        margin: 0;
    }
    
    .cosmic-filter-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        margin-bottom: 12px;
    }
    
    .cosmic-filter-section:last-child {
        margin-bottom: 0;
    }
    
    .filter-label-wrapper {
        margin-bottom: 0;
        min-width: 140px;
    }
    
    .cosmic-filter-label {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .cosmic-select {
        width: 200px;
        max-width: 200px;
        flex: 0 0 200px;
        padding: 8px 12px;
        font-size: 1.2rem;
        border-radius: 8px;
    }
    
    .cosmic-buttons-wrapper {
        flex-direction: column;
        gap: 8px;
        flex: 0 0 250px;
        align-items: stretch;
    }
    
    .cosmic-gender-main-buttons {
        justify-content: flex-end;
        gap: 8px;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .cosmic-gender-special-buttons {
        justify-content: center;
    }
    
    .cosmic-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
        min-width: 70px;
        width: 70px;
        text-align: center;
        flex-shrink: 0;
        white-space: nowrap;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Tablet responsive adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .cosmic-filter-wrapper {
        max-width: 600px;
        padding: 18px 25px;
        margin: 0 auto 18px auto;
        border-radius: 12px;
    }
    
    .filter-title {
        margin-bottom: 15px;
        padding-left: 0;
    }
    
    .cosmic-filter-title {
        font-size: 1.05rem;
    }
    
    .cosmic-filter-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
        padding: 0;
    }
    
    .cosmic-filter-section:last-child {
        margin-bottom: 0;
    }
    
    .filter-label-wrapper {
        margin-bottom: 0;
        min-width: 130px;
    }
    
    .cosmic-filter-label {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .cosmic-select {
        width: 180px;
        max-width: 180px;
        padding: 8px 12px;
        font-size: 1.2rem;
        border-radius: 8px;
    }
    
    .cosmic-buttons-wrapper {
        flex-direction: column;
        gap: 8px;
        flex: 0 0 220px;
        align-items: stretch;
    }
    
    .cosmic-gender-main-buttons {
        justify-content: flex-end;
        gap: 8px;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .cosmic-gender-special-buttons {
        justify-content: center;
    }
    
    .cosmic-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
        min-width: 65px;
        width: 65px;
        text-align: center;
        flex-shrink: 0;
        white-space: nowrap;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .cosmic-filter-wrapper {
        padding: 20px;
        margin: 0 10px 18px 0px;
        max-width: none;
    }
    
    .filter-title {
        text-align: center;
        margin-bottom: 20px;
        padding-left: 0;
    }
    
    .cosmic-filter-title {
        font-size: 1.1rem;
    }
    
    .cosmic-filter-section {
        text-align: center;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .filter-label-wrapper {
        margin-bottom: 12px;
    }
    
    .cosmic-filter-label {
        font-size: 0.9rem;
    }
    
    .cosmic-select {
        width: 200px;
        max-width: 200px;
        margin: 0 auto;
        font-size: 1.2rem;
        padding: 10px 14px;
    }
    
    .cosmic-buttons-wrapper {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .cosmic-gender-main-buttons {
        gap: 10px;
        justify-content: center;
    }
    
    .cosmic-gender-special-buttons {
        justify-content: center;
    }
    
    .cosmic-btn {
        font-size: 0.85rem;
        padding: 10px 12px;
        width: 75px;
        min-width: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .cosmic-filter-wrapper {
        padding: 18px;
        margin: 0 10px 18px 0px;
        max-width: none;
    }
    
    .filter-title {
        text-align: center;
        margin-bottom: 18px;
        padding-left: 0;
    }
    
    .cosmic-filter-title {
        font-size: 1rem;
    }
    
    .cosmic-filter-section {
        text-align: center;
        margin-bottom: 18px;
        padding: 0 5px;
    }
    
    .filter-label-wrapper {
        margin-bottom: 10px;
    }
    
    .cosmic-filter-label {
        font-size: 0.85rem;
    }
    
    .cosmic-select {
        width: 180px;
        max-width: 180px;
        margin: 0 auto;
        font-size: 1.2rem;
        padding: 10px 12px;
    }
    
    .cosmic-buttons-wrapper {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .cosmic-gender-main-buttons {
        gap: 8px;
        justify-content: center;
    }
    
    .cosmic-gender-special-buttons {
        justify-content: center;
    }
    
    .cosmic-btn {
        font-size: 0.8rem;
        padding: 9px 10px;
        width: 70px;
        min-width: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ailesi);
    line-height: 1.6;
    color: var(--koyu-gri);
    background: var(--space-dark);
    overflow-x: hidden;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--galaxy-font);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ana-beyaz);
}

.logo-icon {
    font-size: 1.5rem;
    animation: rotate 20s linear infinite;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--nebula-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--nebula-purple), var(--cosmic-pink));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--ana-beyaz);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);
    border-bottom-color: rgba(139, 92, 246, 0.3);
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.galaxy-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Galaktik Arka Plan */
.galaxy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 3s linear infinite;
}

.nebula {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(236, 72, 153, 0.05) 30%, 
        transparent 70%);
    animation: drift 20s ease-in-out infinite;
}

.planets {
    position: absolute;
    width: 100%;
    height: 100%;
}

.planet {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-pink));
    box-shadow: var(--cosmic-glow);
    animation: float 6s ease-in-out infinite;
}

.planet-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.planet-2 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.planet-3 {
    width: 30px;
    height: 30px;
    top: 60%;
    right: 25%;
    animation-delay: 4s;
}

/* About Section Animations */
@keyframes subtleFloat {
    0%, 100% {
        transform: rotate(-2deg) translateY(0px);
    }
    25% {
        transform: rotate(-4deg) translateY(-4px);
    }
    50% {
        transform: rotate(1deg) translateY(-8px);
    }
    75% {
        transform: rotate(-1deg) translateY(-4px);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
}

/* About Image Mobile Responsive */
@media (max-width: 768px) {
    .compact-image-container {
        width: 280px !important;
        height: 230px !important;
    }
    
    .square-container {
        width: 250px !important;
        height: 200px !important;
    }
    
    .accent-element {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
}

.shooting-stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shooting-star {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: shoot 3s linear infinite;
}

.shooting-star:nth-child(1) {
    top: 20%;
    left: 0;
    width: 100px;
    animation-delay: 0s;
}

.shooting-star:nth-child(2) {
    top: 50%;
    left: 0;
    width: 80px;
    animation-delay: 1s;
}

.shooting-star:nth-child(3) {
    top: 80%;
    left: 0;
    width: 120px;
    animation-delay: 2s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    color: var(--ana-beyaz);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--galaxy-font);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--galaxy-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nebula-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-pink));
    color: #6206e4;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ana-beyaz);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1rem;
}

/* Hero Gallery */
.hero-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gallery-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-item:nth-child(1) {
    top: 15%;
    left: 8%;
    transform: rotate(-15deg);
}

.gallery-item:nth-child(2) {
    top: 25%;
    right: 12%;
    transform: rotate(10deg);
}

.gallery-item:nth-child(3) {
    bottom: 35%;
    left: 5%;
    transform: rotate(8deg);
}

.gallery-item:nth-child(4) {
    bottom: 25%;
    right: 8%;
    transform: rotate(-12deg);
}

.gallery-item:nth-child(5) {
    top: 65%;
    left: 20%;
    transform: rotate(15deg);
}

.gallery-item:nth-child(6) {
    top: 70%;
    right: 25%;
    transform: rotate(-8deg);
}

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

.gallery-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    mix-blend-mode: overlay;
}

.floating {
    animation: floating 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--galaxy-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ana-beyaz);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.title-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
}

.steps-container {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-pink));
    border-radius: 50%;
    font-family: var(--galaxy-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ana-beyaz);
    position: relative;
    z-index: 2;
}

.step-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-pink));
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(15px);
    z-index: 1;
}

.step-title {
    font-family: var(--galaxy-font);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ana-beyaz);
    margin-bottom: 0.5rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Konseptler Section */
.konseptler-section {
    padding: 4rem 0;
    background: var(--space-dark);
}

.filter-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-label {
    display: block;
    color: var(--ana-beyaz);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-pink));
    border-color: transparent;
    color: var(--ana-beyaz);
    transform: translateY(-2px);
}

.arama-container {
    position: relative;
    margin-top: 1rem;
}

.arama-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ana-beyaz);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.arama-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.arama-ikon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* Konsept Cards */
.konseptler-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.konsept-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.konsept-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.konsept-card.selected {
    border-color: var(--nebula-purple);
    background: rgba(139, 92, 246, 0.1);
}

/* Mobil optimized title selection - CSS transforms instead of inline styles */
.konsept-title.selected-title {
    background: linear-gradient(135deg, var(--color-primary-2) 0%, var(--color-primary) 50%, var(--color-primary-2) 100%) !important;
    transform: scale(1.05) translateY(-2px);
    border-color: var(--color-primary);
    font-weight: 900;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 0 6px 20px rgba(119, 99, 229, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

/* Badge optimizations */
.konsept-title span:last-child {
    transition: all 0.2s ease;
}

.selected-title span:last-child {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border-color: #10b981 !important;
    animation: pulse 1.5s infinite;
    font-size: 12px !important;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

/* Mobil cihazlarda animasyonları azalt */
@media (max-width: 768px) {
    .konsept-title.selected-title {
        transform: scale(1.02) translateY(-1px);
        transition: all 0.15s ease;
    }
    
    .konsept-card.bounce {
        animation: none; /* Mobilde bounce animasyonunu kapat */
    }
    
    /* Hover efektlerini mobilde kapat */
    .konsept-card:hover {
        transform: none;
    }
    
    /* Mobilde pulse animasyonunu azalt */
    .selected-title span:last-child {
        animation: none;
    }
    
    /* Mobilde daha az efekt */
    .konsept-title span:last-child {
        transition: all 0.1s ease;
    }
}

.konsept-rozetler {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.konsept-rozet {
    background: rgba(59, 130, 246, 0.2);
    color: var(--star-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.konsept-rozet-cinsiyet {
    background: rgba(236, 72, 153, 0.2);
    color: var(--cosmic-pink);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.konsept-img-wrap {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.konsept-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.konsept-card:hover .konsept-img {
    transform: scale(1.05);
}

.konsept-zoom-ikon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--ana-beyaz);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.konsept-zoom-ikon:hover {
    background: var(--nebula-purple);
    transform: scale(1.1);
}

.konsept-info {
    text-align: center;
}

.konsept-ad {
    font-family: var(--galaxy-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ana-beyaz);
    margin-bottom: 0.5rem;
}

.konsept-fiyat {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yesil);
    margin-bottom: 1rem;
}

.konsept-sec-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--star-blue), var(--nebula-purple));
    color: var(--ana-beyaz);
    border: none;
    padding: 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.konsept-sec-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.konsept-card.selected .konsept-sec-btn {
    background: linear-gradient(135deg, var(--yesil), #16a34a);
}

/* İndirim Sistemi */
.konsept-fiyat-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 12px;
    border-radius: 12px;
}

.konsept-fiyat-container.indirimli {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border: 2px solid #f9a8d4;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15);
}

.konsept-fiyat-eski {
    font-size: 1.1em;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 600;
    text-decoration-thickness: 3px;
    text-decoration-color: #ec4899;
    position: relative;
}

.konsept-fiyat-yeni {
    font-size: 1.8em;
    font-weight: 800;
    color: #ec4899;
    text-shadow: 0 2px 4px rgba(236, 72, 153, 0.3);
    margin: 4px 0;
    position: relative;
}

.konsept-fiyat.normal {
    font-size: 1.3em;
    font-weight: 600;
    color: #059669;
}

.indirim-etiketi {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #f472b6 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 15px rgba(236, 72, 153, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    position: relative;
    animation: pulse 2.5s infinite;
    transform: translateY(-2px);
}

.indirim-etiketi.indirim-animasyon {
    animation: bounceInDiscount 0.8s ease, pulse 2.5s infinite 0.8s;
}

/* İndirimli kartlarda özel efekt */
.indirimli-kart {
    border: 3px solid #f9a8d4 !important;
    background: linear-gradient(135deg, #ffffff 0%, #fdf2f8 100%) !important;
    box-shadow: 
        0 8px 32px rgba(236, 72, 153, 0.15),
        0 0 0 1px rgba(236, 72, 153, 0.1) !important;
    transform: scale(1.02);
    position: relative;
}


/* Seçim Bar */
.secim-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.secim-bar.show {
    transform: translateY(0);
}

.secim-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.secim-info {
    color: var(--ana-beyaz);
}

.secim-count {
    font-weight: 600;
    margin-right: 1rem;
}

.secim-price {
    font-family: var(--galaxy-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yesil);
}

.secim-btn {
    background: linear-gradient(135deg, #16a34a, var(--yesil));
    color: var(--ana-beyaz);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.02));
}

/* Contact Form */
.contact-form-container {
    margin: 3rem 0;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.contact-form-card h3 {
    color: var(--ana-beyaz);
    font-family: var(--galaxy-font);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-form-card > p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--ana-beyaz);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--ana-beyaz);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--nebula-purple);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: var(--space-dark);
    color: var(--ana-beyaz);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Form Result Messages */
.form-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.form-result.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-result.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Form Animation */
@keyframes formSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.contact-form-card.success {
    animation: formSuccess 0.6s ease;
}

.contact-content {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--ana-beyaz);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-link {
    color: var(--nebula-purple);
    text-decoration: none;
    font-weight: 600;
}

.contact-cta {
    text-align: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cta-card h3 {
    color: var(--ana-beyaz);
    font-family: var(--galaxy-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--space-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--galaxy-font);
    font-weight: 700;
    color: var(--ana-beyaz);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--nebula-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Modal */
.modal-arkaplan {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-arkaplan.active {
    display: block;
    z-index: 99999;
}

.modal-icerik {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
}

.modal-arkaplan.active { display:block; }

.modal-buyuk-gorsel {
    width: 100%;
    height: auto;
    display: block;
}

.modal-kapat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--ana-beyaz);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-kapat:hover {
    background: var(--kirmizi);
    transform: scale(1.1);
}

/* Loading */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--ana-beyaz);
}

.loading-spinner {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spinner-ring {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-top-color: var(--nebula-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) { animation-delay: 0.1s; }
.spinner-ring:nth-child(3) { animation-delay: 0.2s; }
.spinner-ring:nth-child(4) { animation-delay: 0.3s; }

/* Keyframes */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}
@keyframes gentlePulse {
    0%, 100% { transform: scale(1) rotate(-2deg); opacity: 1; }
    50% { transform: scale(1.02) rotate(-1deg); opacity: 0.95; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes shoot {
    0% { transform: translateX(-100px) translateY(0px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(100vw) translateY(-200px); opacity: 0; }
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(var(--rotate, 0deg)); }
    50% { transform: translateY(-15px) rotate(var(--rotate, 0deg)); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
    50% { text-shadow: 0 0 30px rgba(236, 72, 153, 0.8), 0 0 40px rgba(139, 92, 246, 0.3); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes bounceInDiscount {
    0% {
        opacity: 0;
        transform: scale(0.2) translateY(-2px);
    }
    30% {
        opacity: 1;
        transform: scale(1.2) translateY(-2px);
    }
    60% {
        transform: scale(0.9) translateY(-2px);
    }
    80% {
        transform: scale(1.05) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(-2px);
    }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes slideInRight {
    0% { transform: translateX(20px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Badge responsive iyileştirmeleri - Tablet büyütme */
@media (max-width: 768px) {
    .konsept-age-badge, .konsept-gender-badge {
        padding: 8px 14px !important;
        height: 38px !important;
        border-radius: 22px !important;
        gap: 6px !important;
        border: 2.5px solid rgba(255,255,255,0.9) !important;
        min-width: fit-content !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }
    
    .konsept-age-badge span:last-child, .konsept-gender-badge span:last-child {
        font-size: 15px !important;
        letter-spacing: 0px !important;
        white-space: nowrap !important;
    }
    
    .konsept-age-badge span:first-child, .konsept-gender-badge span:first-child {
        font-size: 15px !important;
    }
    
    .konsept-meta {
        height: 42px !important;
        margin-bottom: 12px !important;
        gap: 5px !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }
}

@media (max-width: 480px) {
    .konsept-age-badge, .konsept-gender-badge {
        padding: 12px 16px !important;
        height: 44px !important;
        border-radius: 25px !important;
        gap: 8px !important;
        min-width: fit-content !important;
        width: auto !important;
        flex-shrink: 0 !important;
        border: 3px solid rgba(255,255,255,0.9) !important;
        box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important;
    }
    
    .konsept-age-badge span:last-child, .konsept-gender-badge span:last-child {
        font-size: 16px !important;
        letter-spacing: 0px !important;
        white-space: nowrap !important;
        font-weight: 800 !important;
    }
    
    .konsept-meta {
        height: 48px !important;
        margin-bottom: 12px !important;
        gap: 6px !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }
    
    /* Mobilde ikon boyutları BÜYÜK */
    .konsept-age-badge span:first-child, 
    .konsept-gender-badge span:first-child {
        font-size: 18px !important;
    }
}

/* Çok küçük mobil ekranlar için EKSTRA büyütme */
@media (max-width: 360px) {
    .konsept-age-badge, .konsept-gender-badge {
        padding: 14px 18px !important;
        height: 48px !important;
        border-radius: 28px !important;
        gap: 10px !important;
        border: 4px solid rgba(255,255,255,0.95) !important;
    }
    
    .konsept-age-badge span:last-child, .konsept-gender-badge span:last-child {
        font-size: 18px !important;
        font-weight: 900 !important;
    }
    
    .konsept-age-badge span:first-child, 
    .konsept-gender-badge span:first-child {
        font-size: 20px !important;
    }
    
    .konsept-meta {
        height: 52px !important;
        gap: 8px !important;
    }
}

/* Sticky Fiyat Bölümü - Responsive */
.fixed-price-section {
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
}

/* Görünür olduğunda kesinlikle göster */
#fixedPriceSection[style*="display: block"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Body class ile ekstra güvence */
body.fixed-price-active #fixedPriceSection {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Tablet responsive fiyat - Süper Büyütülmüş */
@media (max-width: 768px) {
    .fixed-price-section {
        padding: 14px 0 !important;
    }
    
    .selection-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .selection-icon i {
        font-size: 14px !important;
    }
    
    .selection-count {
        font-size: 17px !important;
        margin-bottom: 4px !important;
    }
    
    #selectedCountText {
        font-size: 17px !important;
        font-weight: 900 !important;
    }
    
    .price-info {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    
    #currentPrice {
        font-size: 16px !important;
        margin-right: 6px !important;
    }
    
    #priceBreakdownText {
        font-size: 14px !important;
    }
    
    .rts-btn {
        padding: 12px 16px !important;
        font-size: 15px !important;
    }
}

/* Mobil responsive fiyat - SÜPER Büyütülmüş */
@media (max-width: 480px) {
    .fixed-price-section {
        padding: 12px 0 !important;
    }
    
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .selection-icon {
        width: 32px !important;
        height: 32px !important;
        margin-right: 10px !important;
    }
    
    .selection-icon i {
        font-size: 13px !important;
    }
    
    .selection-count {
        font-size: 16px !important;
        margin-bottom: 3px !important;
        font-weight: 900 !important;
    }
    
    #selectedCountText {
        font-size: 16px !important;
        font-weight: 900 !important;
    }
    
    .price-info {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }
    
    #currentPrice {
        font-size: 15px !important;
        margin-right: 5px !important;
        font-weight: 900 !important;
    }
    
    #priceBreakdownText {
        font-size: 13px !important;
        font-weight: 600 !important;
    }
    
    .rts-btn {
        padding: 10px 14px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        font-weight: 900 !important;
    }
}

/* Küçük mobil ekranlar için EKSTRA büyütme */
@media (max-width: 360px) {
    .fixed-price-section {
        padding: 14px 0 !important;
    }
    
    .selection-count {
        font-size: 18px !important;
        margin-bottom: 4px !important;
    }
    
    #selectedCountText {
        font-size: 18px !important;
        font-weight: 900 !important;
    }
    
    .price-info {
        font-size: 14px !important;
    }
    
    #currentPrice {
        font-size: 16px !important;
        font-weight: 900 !important;
    }
    
    #priceBreakdownText {
        font-size: 14px !important;
        font-weight: 700 !important;
    }
    
    .rts-btn {
        padding: 12px 16px !important;
        font-size: 15px !important;
        font-weight: 900 !important;
    }
}


/* Responsive Design - Mobile First */

/* Tablet (768px ve üzeri) */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .konseptler-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery-item {
        width: 120px;
        height: 120px;
    }
    
    .planet-1 {
        width: 80px;
        height: 80px;
    }
    
    .planet-2 {
        width: 60px;
        height: 60px;
    }
    
    .planet-3 {
        width: 40px;
        height: 40px;
    }
    
    /* Tablet Contact Layout */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-info .contact-item:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .secim-content {
        flex-wrap: nowrap;
    }
}

/* Desktop (1024px ve üzeri) */
@media (min-width: 1024px) {
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .container {
		padding: 0px;
        /**padding: 3rem 2rem;**/
    }
    
    .filter-bar {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .filter-group {
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .filter-label {
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .arama-container {
        margin-top: 0;
        max-width: 300px;
        margin-left: auto;
    }
    
    .konseptler-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    
    /* Contact Layout Düzeltmesi */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .contact-form-container {
        margin: 2rem 0;
    }
    
    .contact-form-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-cta {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Large Desktop (1200px ve üzeri) */
@media (min-width: 1200px) {
    .konseptler-grid {
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    }
    
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* New Progress Animations */
@keyframes progressGlow {
    0% { box-shadow: 0 0 20px rgba(var(--color-primary-3-rgb), 0.4), inset 0 1px 0 rgba(255,255,255,0.3); }
    100% { box-shadow: 0 0 30px rgba(var(--color-primary-3-rgb), 0.7), inset 0 1px 0 rgba(255,255,255,0.5); }
}

@keyframes progressShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}


/* Progress Indicator Responsive Styles */
@media (max-width: 768px) {
    #priceBreakdownText {
        min-height: 32px;
    }
    
    #priceBreakdownText span {
        font-size: 11px !important;
    }
    
    #priceBreakdownText .progress-bar,
    #priceBreakdownText > div > div:nth-child(2) {
        height: 12px !important;
    }
    
    /* Main action button - smaller */
    #priceBreakdownText > div > div:nth-child(1) > div:nth-child(1) {
        padding: 4px 10px !important;
    }
    
    #priceBreakdownText > div > div:nth-child(1) > div:nth-child(1) > span {
        font-size: 11px !important;
        font-weight: 700 !important;
    }
    
    /* Price bigger */
    #currentPrice {
        font-size: 32px !important;
        font-weight: 900 !important;
    }
    
    /* Success state responsive */
    #priceBreakdownText .success-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    #priceBreakdownText .success-icon span {
        font-size: 10px !important;
    }
    
    #priceBreakdownText .success-text {
        font-size: 12px !important;
        font-weight: 700 !important;
    }
    
    #priceBreakdownText > div > div:nth-child(2) {
        font-size: 10px !important;
        padding: 3px 6px !important;
    }
}

@media (max-width: 480px) {
    #priceBreakdownText {
        min-height: 30px;
    }
    
    #priceBreakdownText span {
        font-size: 12px !important;
    }
    
    #priceBreakdownText .progress-bar,
    #priceBreakdownText > div > div:nth-child(2) {
        height: 14px !important;
    }
    
    /* Main action button - smaller */
    #priceBreakdownText > div > div:nth-child(1) > div:nth-child(1) {
        padding: 5px 12px !important;
    }
    
    #priceBreakdownText > div > div:nth-child(1) > div:nth-child(1) > span {
        font-size: 12px !important;
        font-weight: 700 !important;
    }
    
    /* Price bigger */
    #currentPrice {
        font-size: 36px !important;
        font-weight: 900 !important;
    }
    
    /* Success state responsive */
    #priceBreakdownText .success-icon {
        width: 14px !important;
        height: 14px !important;
    }
    
    #priceBreakdownText .success-icon span {
        font-size: 9px !important;
    }
    
    #priceBreakdownText .success-text {
        font-size: 11px !important;
        font-weight: 700 !important;
    }
    
    #priceBreakdownText > div > div:nth-child(2) {
        font-size: 9px !important;
        padding: 2px 5px !important;
    }
}

@media (max-width: 360px) {
    #priceBreakdownText {
        min-height: 28px;
    }
    
    #priceBreakdownText span {
        font-size: 13px !important;
        font-weight: 700 !important;
    }
    
    #priceBreakdownText .progress-bar,
    #priceBreakdownText > div > div:nth-child(2) {
        height: 16px !important;
    }
    
    /* Main action button - smaller */
    #priceBreakdownText > div > div:nth-child(1) > div:nth-child(1) {
        padding: 6px 14px !important;
    }
    
    #priceBreakdownText > div > div:nth-child(1) > div:nth-child(1) > span {
        font-size: 13px !important;
        font-weight: 700 !important;
    }
    
    /* Price bigger */
    #currentPrice {
        font-size: 40px !important;
        font-weight: 900 !important;
    }
    
    /* Success state responsive */
    #priceBreakdownText .success-icon {
        width: 13px !important;
        height: 13px !important;
    }
    
    #priceBreakdownText .success-icon span {
        font-size: 8px !important;
    }
    
    #priceBreakdownText .success-text {
        font-size: 10px !important;
        font-weight: 700 !important;
    }
    
    #priceBreakdownText > div > div:nth-child(2) {
        font-size: 8px !important;
        padding: 2px 4px !important;
    }
}

/* Image Modal Responsive Styles */
.modal-close-btn:hover {
    background: var(--color-primary-3) !important;
    color: var(--color-white) !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .image-modal-overlay {
        padding: 10px !important;
    }
    
    .modal-close-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 26px !important;
        top: 10px !important;
        right: 10px !important;
        border: 3px solid var(--color-primary-3) !important;
    }
    
    #modalGorsel {
        max-height: 75vh !important;
    }
    
    .mobile-close-hint {
        display: block !important;
        font-size: 11px !important;
        bottom: -40px !important;
    }
}

@media (max-width: 480px) {
    .image-modal-overlay {
        padding: 5px !important;
    }
    
    .modal-close-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
        top: 10px !important;
        right: 10px !important;
        border: 3px solid var(--color-primary-3) !important;
    }
    
    #modalGorsel {
        max-height: 70vh !important;
    }
    
    .image-wrapper {
        padding: 5px !important;
        border-radius: 8px !important;
    }
}

/* Galactic Filter Styles */
.galactic-gender-btn:hover {
    background: var(--color-primary-3) !important;
    color: var(--color-white) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(var(--color-primary-3-rgb), 0.4);
}

.galactic-gender-btn.active {
    background: var(--color-primary-3) !important;
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

/* Dynamic Age Select Animations */
.dynamic-age-select:hover {
    border-color: var(--color-primary-2) !important;
    box-shadow: 0 6px 20px rgba(var(--color-primary-3-rgb), 0.4) !important;
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #ffffff, #f0f4ff) !important;
}

.dynamic-age-select:focus {
    outline: none;
    border-color: var(--color-primary-2) !important;
    box-shadow: 0 0 0 4px rgba(var(--color-primary-3-rgb), 0.3) !important;
    transform: translateY(-1px) scale(1.02);
    background: linear-gradient(135deg, #ffffff, #e8f0ff) !important;
}

.dynamic-age-select:active {
    transform: translateY(0) scale(1);
}

/* Age select animation on change */
.dynamic-age-select.changing {
    animation: ageSelectPulse 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes ageSelectPulse {
    0% { 
        transform: scale(1); 
        box-shadow: 0 4px 12px rgba(var(--color-primary-3-rgb), 0.3); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 8px 24px rgba(var(--color-primary-3-rgb), 0.5);
        border-color: var(--color-primary-2);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 4px 12px rgba(var(--color-primary-3-rgb), 0.3); 
    }
}

/* Responsive Filter Styles */
@media (max-width: 768px) {
    .galactic-filter-container {
        padding: 15px !important;
        border-radius: 15px !important;
    }
    
    .filter-row {
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .filter-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
    }
    
    .filter-item span {
        min-width: auto !important;
    }
    
    .galactic-select {
        min-width: 200px !important;
        font-size: 14px !important;
        padding: 10px 15px !important;
    }
    
    .gender-buttons {
        justify-content: center !important;
    }
    
    .galactic-gender-btn {
        min-width: 60px !important;
        font-size: 13px !important;
        padding: 8px 15px !important;
    }
}

@media (max-width: 480px) {
    .galactic-filter-container {
        padding: 12px !important;
        margin: 0 5px !important;
    }
    
    .galactic-select {
        min-width: 180px !important;
        font-size: 13px !important;
    }
    
    .galactic-gender-btn {
        min-width: 55px !important;
        font-size: 12px !important;
        padding: 7px 12px !important;
    }
    
    .galactic-search input {
        font-size: 13px !important;
        padding: 8px 40px 8px 15px !important;
    }
}