﻿header .container {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1rem 2rem;
}

.header-search {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.header-search input {
    width: 100%;
    padding: 0.7rem 1.2rem 0.7rem 2.8rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-search input:focus {
    outline: none;
    border-color: var(--accent-end);
    box-shadow: 0 0 0 3px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.95);
}

.header-search::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.5;
}