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

.site-header {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 20px;

    background-color: white;
}

.site-header-logo {
    width: 70px;
    height: 70px;
}

.site-header-text {
    font-family: Verdana, sans-serif;
    color: rgb(16, 24, 32);
    font-size: 14px;
    text-decoration: none;
}

.site-header-text:hover {
    color: #0b5cab;
}

.site-header-search {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.site-header-search input {
    height: 36px;
    width: 120px;
    border: 1px solid #999;
    padding: 0 10px;
}

.site-header-search-icon {
    width: 40px;
    height: 40px;
}

.site-header-profile-icon {
    width: 40px;
    height: 40px;
}

.site-header-location-icon {
    width: 30px;
    height: 30px;
}

.site-header-cart-icon {
    width: 30px;
    height: 30px;
}