@font-face {
    font-family: 'Poppins';
    src: url('src/Poppins.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*:not(p) {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}

p {
	font-family: 'Poppins', sans-serif;
}

.csupasz {
	margin: 0;
	padding: 0;
	height: 80px;
	width: 0;
}

.site {
	background-image: url(src/bg1.png) , url(src/bg2.png);
	background-color: #fdffff;
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    background-size: 100% auto, 100% auto;
	min-height: 60vw;
}

.header {
    background: linear-gradient(306deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    height: 80px;
    width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    z-index: 10;
}

.center {
	display: flex;
	flex-direction: row;
	width: 1000px;
	align-items: center;
}

.logo {
	margin-top: 20px;
	margin-bottom: 20px;
	height: 40px;
	width: auto;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.8));
	cursor: pointer;
}

.header_link {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.8;
    text-decoration: none;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.8));
	font-size: 14px;
}

.header_link:hover {
	background-color: rgba(255,255,255,0.1);
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.0));
}


.hello_p {
	width: 100%;
	text-align: center;
	margin-top: 40px;
}


.cart_button_holder {
	width: 100%;
	display: flex;
	justify-content: right;
}

.cart_button_holder button p {
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}

.cart_button_holder button {
    background-color: rgba(252, 185, 0, 1);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.added {
	background-color: green !important;
}

.cart_button_holder button:hover {
    background-color: rgba(255, 105, 0, 1);
    transform: translateY(-2px); /* Subtle lift effect */
}

.cart_button_holder button:focus {
    outline: 2px solid #ffc107; /* Highlight for keyboard users */
    outline-offset: 2px;
}

.cart_button_holder button:active {
    transform: translateY(0); /* Pressed down effect */
}

.cart_button_holder button svg {
    width: 18px;
    height: 18px;
    fill: white;
}



.go p {
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}

.go {
    background-color: rgba(252, 185, 0, 1);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.go:hover {
    background-color: rgba(255, 105, 0, 1);
    transform: translateY(-2px); /* Subtle lift effect */
}

.go:focus {
    outline: 2px solid #ffc107; /* Highlight for keyboard users */
    outline-offset: 2px;
}

.go:active {
    transform: translateY(0); /* Pressed down effect */
}

.go svg {
    width: 18px;
    height: 18px;
    fill: white;
}





.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.category-card {
    background: rgba(255,255,255,0.5);
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.category-card a {
	display: flex;
	flex-direction: row;
    color: inherit;
    text-decoration: none;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}

.category-image img {
    width: auto;
    height: 100px;
    object-fit: cover;
	margin: 30px;
}

.category-name p {
    margin: 10px 0;
    font-weight: bold;
    font-size: 1.1em;
	font-size: 16px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
	margin-bottom: 80px;
}

.card {
    background: rgba(255,255,255,0.5);
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card a {
	display: flex;
	flex-direction: column;
    padding: 10px;
    color: #000;
    text-decoration: none;
    text-decoration: none;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

.card h3 {
    margin: 10px 0 5px 0;
    font-size: 1.1em;
}

.card p {
    font-size: 0.9em;
    color: #666;
}

.cart_button {
	width: 14px;
	height: 14px;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
}

.cart {
	cursor: pointer;
	margin-left: 20px;
	background-image: url("src/cart.png");
	width: 25px;
	height: 25px;
	min-width: 25px;
	min-height: 25px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
	opacity: 0.8;
	display: flex;
	justify-content: right;
}

.bubble {
	top: 15px;
	left: 15px;
	position: fixed;
	background-color: rgba(255,255,255,0.8);
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}

.cart p {
	margin: 0;
	padding: 0;
}




.invalid {
	width: 100%;
	height: 100%;
	text-align: center;
	margin-top: 100px;
}



