.site-header {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.header-search form {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
}

.header-search input[type="text"] {
    border: none;
    padding: 5px 10px;
    outline: none;
}

.header-search button {
    background: #7a0c18;
    border: none;
    color: white;
    padding: 6px 10px;
    cursor: pointer;
}

.header-search button i {
    font-size: 14px;
}