.pc-header {
    background-color: black;
    color: white;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
}

.pc-header-left-section {
    width: 210px;
}

@media (max-width: 800px) {
    .pc-header-left-section{
        width: unset;
    }
}

.header-link {
    display: inline-block;
    padding: -40px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: border 0.3s;
    margin-left: 10px;
}


.Storelogo {
    width: 150px;
    margin-top: 5px;
}

.StoreMobileLogo {
    display: none;
}

@media (max-width: 575px){
    .Storelogo {
        display: none;
    }

    .StoreMobileLogo {
        display: block;
        height: 75px;
        width: auto;
        margin-right: 3px;
    }
    .pc-header-right-section {
        width: 150px;
    }
}

.pc-header-middle-section {
    flex: 1;
    max-width: 850px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
}

.search-bar {
    flex: 1;
    height: 45px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
    font-size: 16px;
    padding-left: 20px;
    width: 0;
}

.search-bar:focus {
    outline: none;
}

.search-icon {
    width: 20px;
}

.search-button {
    background-color: rgb(254, 189, 105);
    height: 47px;
    width: 60px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border: none;
    cursor: pointer;
}

.pc-header-right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 180px;
    flex-shrink: 0;

}

.shopping-cart {
    width: 50px;
}

.Order-page {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.Return {
    display: block;
    font-size: 15px;
}

.Orders {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.checkout-page {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    position: relative;
}   

.cart {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
}

.shopping-cart {
    margin-right: 10px;
    width: 50px;
    align-items: center;
    display: flex;
}

.total {
    font-size: 15px;
    position: absolute;
    top: -10px;
    right: 25px;
    font-weight: 600;
}

.hamburger {
    display: none;
}

.mobile-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: black;
    text-decoration: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu a {
    display: flex;
    justify-content: center;
    padding: 15px;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.mobile-menu-visible {
    max-height: 500px;
}

.mobile-menu a:hover {
    background-color: rgb(54, 54, 54);
}

@media (max-width: 450px){
    .Return, .Orders, .shopping-cart, .total {
        display: none;
    }

    .pc-header-middle-section {
        max-width: 900px;
    }

    .pc-header-right-section {
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center; /* Center the hamburger without shifting search */
        padding-right: 0;
        
    }

    .hamburger {
        display: block;       /* Can be block or inline-block */
        width: 30px;
        cursor: pointer;
        margin-right: 25px;
    }
}













