/* Modern Arama Kutusu Stilleri - ara.css */

.search-wrapper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 0 15px;
}

.modern-search-wrapper {
    position: relative;
    display: flex;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    height: 45px;
}

.modern-search-wrapper:focus-within {
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15), 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.modern-search-input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #2d3748;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modern-search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.modern-search-button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #e91e63, #ad1457);
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 60px;
}

.modern-search-button:hover {
    background: linear-gradient(135deg, #c2185b, #880e4f);
    transform: translateX(-1px);
}

.modern-search-button:active {
    transform: scale(0.98);
}

.modern-search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.modern-search-button:hover::before {
    left: 100%;
}

/* Focus Animation */
.modern-search-input:focus {
    background: rgba(233, 30, 99, 0.02);
}

/* Loading State */
.modern-search-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.modern-search-button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .search-wrapper-container {
        margin: 15px 0;
        padding: 0 10px;
    }
    
    .modern-search-wrapper {
        max-width: 100%;
        height: 42px;
    }
    
    .modern-search-input {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .modern-search-button {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 55px;
    }
}

@media (max-width: 480px) {
    .modern-search-wrapper {
        height: 40px;
        border-radius: 20px;
    }
    
    .modern-search-input {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .modern-search-button {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 50px;
    }
}