@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    overflow-x: hidden;
    background-color: #d1edfb;
}

/* PC */

.mobile-header-holder{
	display: none;
}

nav{
    display: none;
}

.pc-header-holder{
    color: #7450af;
    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: 20%;
}

.logo-holder img{
    width: 50%;
    height: auto;
}

.header-links{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    font-size: 20px;
}

.header-links a{
    text-decoration: none;
    color: #7450af;
    transition: all 0.3s ease-in-out;
}

.header-links a:hover{
    color: #e73c38;
}

.cart-holder{
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-holder a{
	display: flex;
	text-decoration: none;
}

/* 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;
	}

	.logo-holder img{
		width: 100%;
		height: auto;
	}

    .pc-header-holder{
        display: none;
    }
    
    nav{
        display: block;
        z-index: 9999999;

    }



a {
	text-decoration: none !important;
	color: #232323;
	transition: color 0.3s ease;
}

a:hover {
	color: #7450af;
}

#menuToggle {
	display: block;
    position: fixed;
	top: 15px;
	right: 15px;
	z-index: 1;
	-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: 2;
	-webkit-touch-callout: none;
}

#menuToggle span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;
	background: #7450af;
	border-radius: 3px;
	z-index: 1;
	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: #7450af;
}

#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: absolute;
	width: 300px;
	margin: -100px 0 0 0;
	padding: 50px;
	padding-top: 125px;
	right: -15px;
	background: #ededed;
	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);
}

#menu li {
	padding: 10px 0;
	font-size: 22px;
}

#menuToggle input:checked~ul {
	transform: scale(1.0, 1.0);
	opacity: 1;
	width: 300px;

}
}

