.header-widget {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.header-widget .search-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-widget .logo-section {
    width: calc((100% - 650px) / 2);
    line-height: 0;
    margin: 0;
}

.header-widget .search-section {
    width: 650px;
    padding: 0 70px;
}

.header-widget .search-section form input[type="text"] {
    border: 1px solid transparent;
    background-color: #302626;
    color: #bbbbbb;
    border-radius: 6px;
    transition: border 0.5s, color 0.3s;
}

.header-widget .search-section form input[type="text"]:hover {
    border: 1px solid #888888;
    color: #e0e0e0;
}

.header-widget .search-section form input[type="text"]:focus {
    border: 1px solid #cccccc;
    color: #ffffff;
    outline: none;
}

.header-widget .login-cart-section {
    width: calc((100% - 650px) / 2);
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.header-widget .login-cart-section .login {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    line-height: 0;
    color: #7A7A7A;
}

.header-widget .login-cart-section .login::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #7A7A7A;
    mask: url('./assets/user.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('./assets/user.svg') no-repeat center;
    -webkit-mask-size: contain;
    vertical-align: middle;
}

.header-widget .login-cart-section .cart {
    display: flex;
    align-items: center;
}

.header-widget .login-cart-section .cart::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #7A7A7A;
    mask: url('./assets/cart.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('./assets/cart.svg') no-repeat center;
    -webkit-mask-size: contain;
}

.header-widget .links-row {
    position: absolute;
    bottom: -40px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
}

.header-widget .links-row a.link {
    color: black;
    transition: 0.5s;
}
.header-widget .links-row a.link:hover {
    color: #EFA71B;
    transition: 0.5s;
}

.header-widget .links-row .discount-link {
    width: 90px;
}

.header-widget .links-row .discount-link img{
    position: absolute;
    width: 90px;
    height: 90px;
    top: -45px;
    transition: 0.5s;
}

.header-widget .links-row .discount-link img:hover {
    transform: translateY(5px);
    transition: 0.5s;
}


