header#header {
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 0;
}

header#header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

header#header .navBottom {
    position: fixed;
    bottom: 0;
    padding: 10px;
    margin: 1.5rem 0;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f2c12b;
    border-radius: 60px;
    width: max-content;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

header#header .menuButton {
    display: flex;
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

header#header .menuButton .menu-symbol {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 10px;
    border-radius: 60px;
    transition: all 0.2s ease-in-out;
}

header#header .menuButton .menu-text {
    color: #fff;
    margin-left: 15px;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

header#header ul.navLinks-container {
    padding: 10px;
    list-style: none;
    display: none;
    flex-direction: column;
    width: 150px;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 10px;
}


header#header ul.navLinks-container .navlinks {
    width: 100%;
    text-align: center;
    transition: all ease-in-out 0.1s;
    border-radius: 30px;
    padding: 10px 0;
}

header#header ul.navLinks-container .navlinks:hover {
    background-color: #fff;
}

header#header ul.navLinks-container .navlinks:hover a.redirect_link {
    color: #f2c12b;
}

header#header ul.navLinks-container .navlinks a {
    font-size: 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}


header#header .topnav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1em auto 0 auto;
    width: 100%;
    max-width: 550px;
    background: #000000;
    border-radius: 70px;
    padding: 0px 10px;
    height: max-content;
    transition: opacity 1s ease-in-out;
}

header#header .search-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #f2c12b;
    padding: 5px;
    border-radius: 30px;
    cursor: pointer;
}

header#header .search-container img {
    filter: brightness(0) invert(1);
}

header#header .search-container .search-inputbox {
    padding: 5px;
    border: 0;
    outline: 0;
    width: 100%;
    max-width: 140px;
}


header#header .shop-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

header#header .pop-up-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    background: #000000e0;
    z-index: 20;
    display: none;
}

header#header input.search-inputbox {
    width: 100%;
    height: 5%;
    padding: 20px;
    transition: all 0.2s linear;
    background-color: #2c2c2c;
    border: none;
    color: #fff;
}

header#header input.search-inputbox:focus-visible {
    border: 1px solid #3f3f3f;
    outline: 1px solid #3f3f3f;
    border-radius: 8px;
    background-color: #3f3f3f;
}

header#header input.search-inputbox[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    width: 10px;
    background-size: 10px 10px;
    filter: brightness(0) invert(1);
    cursor: pointer;
}

header#header .search-box {
    margin: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 10px;
    width: 30%;
}

header#header .search-box .note-text {
    color: white;
    font-size: large;
    font-weight: 200;
}

header#header .cancel-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 15%;
    right: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    cursor: pointer;
}

header#header .cancel-btn .lines {
    width: unset;
    height: 1px;
    background: white;
}

header#header .cancel-btn .top-line {
    transform: rotate(45deg);
}

header#header .cancel-btn .bottom-line {
    transform: rotate(-45deg);
}

header#header #wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #f8f9fa;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1000;
}

header#header #wishlist-sidebar.active {
    right: 0;
}

header#header .wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000000;
    color: white;
}

header#header .wishlist-content {
    padding: 20px;
}

header#header .wishlist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

header#header .wishlist-item img {
    margin-right: 10px;
}

header#header .item-details {
    flex-grow: 1;
}

header#header .item-details h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

header#header .item-details p {
    margin: 0 0 10px 0;
}

header#header .item-details button {
    padding: 6px;
    margin-right: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

header#header .add-to-cart {
    background-color: transparent;
    color: #000000;
    outline: 0.5px solid;
}

header#header .remove-item {
    background-color: transparent;
    color: #dc3545;
    outline: 0.5px solid #dc3545;
}

header#header .wishlist-header h2 {
    font-weight: 100;
}

header#header .wishlist-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

header#header #cart-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #f8f9fa;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1000;
}

header#header #cart-sidebar.active {
    right: 0;
}

header#header .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000000;
    color: white;
}

header#header .cart-content {
    padding: 20px;
}

header#header .cart-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

header#header .cart-item img {
    margin-right: 10px;
}

header#header .item-details {
    flex-grow: 1;
}

header#header .item-details h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

header#header .item-details p {
    margin: 0 0 10px 0;
}

header#header .item-details button {
    padding: 6px;
    margin-right: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

header#header .view-details {
    background-color: transparent;
    color: #000000;
    outline: 0.5px solid;
}

header#header .remove-item {
    background-color: transparent;
    color: #dc3545;
    outline: 0.5px solid #dc3545;
}

header#header .cart-header h2 {
    font-weight: 100;
}

header#header .cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
@media(max-width:575px){
    header#header .shop-container{
        gap: 3px;
    }
    header#header .topnav-container{
        width: 95%;
    }
}