/* Header Search */
.site--header .actions .header-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0;
    z-index: 10001;
}

.site--header .actions .header-search .search-form {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: row-reverse;
}

.site--header .actions .header-search .search-input {
    width: 0;
    padding: 0;
    border: 2px solid #f0f3fa;
    border-radius: 20px;
    background: #fff;
    color: #304169;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    opacity: 0;
    height: 40px;
    box-sizing: border-box;
}

.site--header .actions .header-search .search-input:focus {
    border-color: #f78677;
}

.site--header .actions .header-search .search-input::placeholder {
    color: #999;
}

.site--header .actions .header-search.active .search-input {
    width: 200px;
    padding: 10px 15px;
    opacity: 1;
    margin-right: 10px;
}

.site--header .actions .header-search .search-toggle {
    position: relative;
    background: #f78677;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s, transform 0.2s;
    z-index: 10001;
}

.site--header .actions .header-search .search-toggle:hover {
    background: #e67566;
    transform: scale(1.05);
}

.site--header .actions .header-search.active .search-toggle {
    background: #304169;
}

.site--header .actions .header-search .search-toggle svg {
    width: 20px;
    height: 20px;
}

/* Mobile adjustments */
@media (max-width: 960px) {
    .site--header .actions .header-search.active .search-input {
        width: 150px;
        padding: 8px 12px;
    }

    .site--header .actions .header-search .search-toggle {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

@media (max-width: 768px) {
    .site--header .actions .header-search {
        margin-left: 0;
    }
}
