/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Questrial', sans-serif; /* Apply Questrial to all elements */
}

body {
    font-family: 'Questrial', sans-serif;
    background-color: #d1edfb;
}

/* PC */

.mobile-header-holder{
    display: none;
}

nav{
    display: none;
}

.pc-header-holder{
    color: #2a7a62;
    width: 100%;
    /* margin-top: 30px; */
    position: fixed;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.pc-header-bottom{
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.logo-holder{
    width: 30%;
    display: flex;
    align-items: center;
}

.logo-holder img{
    width: 20%;
    height: auto;
}

.header-links{
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    gap: 20px;
    font-size: 20px;
    padding-right: 20px;
    font-family: 'Questrial', sans-serif;
}

.header-links a{
    text-decoration: none;
    color: #2a7a62;
    transition: all 0.3s ease-in-out;
    font-weight: 500 !important;
    font-family: 'Questrial', sans-serif;
}

.header-links a:hover{
    color: #e73c38;
}

.cart-holder{
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .mobile-header-holder{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .cart-holder{
        margin-right: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-holder img{
        width: 40%;
        height: auto;
    }

    .pc-header-holder{
        display: none;
    }
    
    nav{
        display: block;
        z-index: 9999999;
    }

a {
    text-decoration: none !important;
    color: #2a7a62;
    transition: color 0.3s ease;
    font-weight: 500 !important;
    font-family: 'Questrial', sans-serif;
}

a:hover {
    color: #2a7a62;
}

#menuToggle {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 10000;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 10001;
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #2a7a62;
    border-radius: 3px;
    z-index: 10000;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #2a7a62;
}

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
    opacity: 1;
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 80px 50px 50px 50px;
    background: #ffffff;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#menu li {
    padding: 20px 0;
    font-size: 28px;
    text-align: center;
    width: 100%;
    font-family: 'Questrial', sans-serif;
}

#menuToggle input:checked~ul {
    transform: translate(0, 0);
    opacity: 1;
}

#menu img{
    width: 90%;
    height: auto;
    margin-bottom: 20px;
}

}

