/* Define color variables */
:root {
    --header-bg-start: #ff7e5f;
    --header-bg-end: #feb47b;
    --nav-link-color: #fff;
    --nav-link-hover-color: #fffa;
    --user-profile-color: #fff;
    --cart-notification-color: #fff;
    --search-bg-color: #fff;
    --search-btn-bg-color: #ff7e5f;
    --search-btn-text-color: #fff;
}

/* Header Styles */
.header_area {
    background: linear-gradient(to right, var(--header-bg-start), var(--header-bg-end));
    padding: 10px 0;
}

.navbar {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    color: var(--nav-link-color) !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--nav-link-hover-color);
}

.user-profile {
    color: var(--user-profile-color);
}

.user-profile a {
    color: var(--user-profile-color);
    margin-left: 10px;
    font-weight: 600;
}

.btn-link {
    color: var(--user-profile-color) !important;
}

#cart-notification a {
    color: var(--cart-notification-color);
    font-weight: 600;
}

.search_input {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--search-bg-color);
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
    z-index: 999;
}

.search_input input {
    border: none;
    box-shadow: none;
    padding: 5px 10px;
    border-radius: 5px;
    width: 80%;
}

.search_input button {
    background: var(--search-btn-bg-color);
    border: none;
    color: var(--search-btn-text-color);
    padding: 6px 10px;
    border-radius: 5px;
}

.search_input #close_search {
    font-size: 20px;
    cursor: pointer;
}







/* Header Styles */
.header_area {
    background: linear-gradient(to right, #36ba9c, #0b168a);
    padding: 10px 0;
}

.navbar {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    color: #10b349 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dfc335;
}

.user-profile {
    color: #a38a0e;
}

.user-profile a {
    color: #149e45;
    margin-left: 10px;
    font-weight: 600;
}

.btn-link {
    color: #167e8c !important;
}

#cart-notification a {
    color: #da0c0c;
    font-weight: 600;
}

.search_input {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #b2d1bd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
    z-index: 999;
}

.search_input input {
    border: none;
    box-shadow: none;
    padding: 5px 10px;
    border-radius: 5px;
    width: 80%;
}

.search_input button {
    background: #ff7e5f;
    border: none;
    color: #b3d3a7;
    padding: 6px 10px;
    border-radius: 5px;
}

.search_input #close_search {
    font-size: 20px;
    cursor: pointer;
}
