
/* --- GLOBAL ALAP --- */
:root {
	--primary: #1B2036;		/* sötétkék */
	--secondary: #1D384C;
	--success: #7ac943;
	/* --bodyback: #ececec; */
	--light: #ececec;
	--blacky: #111111;
	
	--black: #000000;
	--white: #FFFFFF;
	--gray: #CCCCCC;
	--gray-light: #f4f4f4;
	--gray-dark: #333333;
	--red: #dc3545;
	--orange: #fd7e14;
	--yellow: #ffc107;	
}
@keyframes onAutoFillStart { from {} to {} }
input:-webkit-autofill {
    animation-name: onAutoFillStart;
}
/* Reset és alapok */
* {
	margin: 0; 
	padding: 0; 
	box-sizing: border-box; 

	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
}

.navbar * {
	filter: blur(0);
	-webkit-filter: blur(0);
	transform: translateZ(0);
	will-change: transform, color, opacity;
	perspective: 1000px;
}

html {
	scroll-behavior: smooth;
	height: 100%;
	margin: 0;
}

body {
	display: flex;
	flex-direction: column;
	/* height: 100%; */
	min-height: 100vh;
	margin: 0;
	font-family: 'INTER', sans-serif;
	background-color: #f4f4f4;
	color: #fff;
	
/*
    background-image: url(/../../config/img/);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
*/	
}
body > * {
	width: 100%;
}

.footer-spacer {
	flex: 1 0 auto;
}
footer {
	flex-shrink: 0;
}

.container {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	/* background-color: #fff; */
}

.debug-box {
	margin: 100px 0 0 0;
	color: #000;
}
/* Gombok */
.button {
	display: block;
	margin: 30px auto 10px auto;
	width: 50%;
	padding: 12px;
	border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #7ac943, 
					#3e7510, #7ac943, #000);
	background-size: 200% 100%;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
	transform: scale(1);
	transition: background-position 1.5s ease, transform 1.5s ease;
	
	white-space: normal;
	word-break: break-word;
}
.button:hover {
	background: linear-gradient(90deg, #000, 
					#7ac943, #3e7510, #7ac943);
	background-size: 200% 100%;
	background-position: right center;
	transform: scale(1.05);
}
.button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: #ccc;
    transform: scale(1);
}
.button:disabled:hover {
    background: #ccc;
    transform: scale(1);
}
/* ----- zee ----- */

#body-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(1px);
	z-index: 900;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.8s ease;
}

#body-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

/* --- NAVBAR --- */
.navbar {
	position: fixed;
	margin: 0 auto;
	width: 100%;
	height: 80px;
	padding: 20px 0;

	background-color: #333;
	
	z-index: 100;	
	/* border-bottom: 1px solid var(--success); */
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none;     /* IE 10 és Edge */
	user-select: none;

	border-bottom: 1px solid transparent;
}
.navbar:hover {
	/* border-bottom: 1px solid var(--yellow); */
	border-bottom: 1px solid #7ac943;
}
.navbar .nav-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* height: 100%; */
	max-width: 1280px;
	margin: 0 auto;
}
.nav-menu {
	position: relative;
	/* position: absolute; */
	display: flex;
	gap: 40px;
	align-items: center;
	/* height: 100%; */
}
.nav-menu a {
	color: #f4f4f4;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.8s ease;
	transform: scale(1);
	/* will-change: transform, color; */
	/* backface-visibility: hidden; */
	/* -webkit-font-smoothing: antialiased; */
}
.nav-menu a:hover {
	color: #7ac943;
	transform: scale(1.05);
}

/* NAVBar - MegaMenu */
.nav-item {
	position: static; /* Így "átlát" rajta a menü a konténerig */
	/* position: relative; */
	display: flex;
	align-items: center;
}
.smart-menu { 
	/* perspective: 1000px; */
	display: none; 
	position: fixed; 
	top: 85px;
	left: 0;
	left: auto;
	right: calc((100% - 1280px) / 2);
	max-width: 1280px;

	z-index: 100; 
	height: auto; /* Engedi tágulni a tartalommal */
	
	background: transparent;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%); /* Safari támogatás */	

    color: #fff;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6), 0px 1px 4px rgba(0, 0, 0, 0.4), 0px 2px 10px rgba(0, 0, 0, 0.2);

    border: 1px solid #3e7510;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);	
	z-index: 1000;
}
.menu-body { 
	position: relative;
	display: flex; 
	height: auto; 
	min-height: 25vh; 
	/* max-height: 50vh; */
	width: 100%;
	max-width: 1280px;
	/* margin: 0 auto; */
	overflow: hidden; 
}
.level-1 { 
	min-width: 300px; 
	max-width: 350px; 
	/* background: #f9f9f9;  */
	border-right: 1px solid #ccc; 
	overflow: none; 
	/* overflow-y: auto;  */
	flex-shrink: 0; 
}
.nav-row {
	display: block;
	position: relative;
	cursor: pointer;
	/* border-bottom: 1px solid rgba(255,255,255,0.05); /* Halvány elválasztó */ */
	/* A keretet alapból átlátszóra tesszük, hogy ne ugorjon meg a szöveg, amikor megjelenik */
	/* border-left: 5px solid transparent;  */
	/* transition: border-color 0.8s ease, background 0.8s ease; */
	/* transition: transform 0.8s ease, color 0.8s ease; */
	transition: all 0.8s ease;
}

.nav-row a {
	display: block; /* Kitölti a div-et */
	padding: 15px 25px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	
	/* Animációk */
	transform: scale(1);
	/* will-change: transform, color; */
	/* backface-visibility: hidden; */
	/* -webkit-font-smoothing: antialiased; */
	/* transition: transform 0.8s ease, color 0.8s ease; */
	transition: all 0.8s ease;
}

/* AKTÍV ÁLLAPOT (Amikor rámutatunk a listában) */
.nav-row.active {
	border-left: 5px solid #7ac943;
	/* background: rgba(255,255,255,0.05); /* Pici háttér, hogy látszódjon hol járunk */ */
}

.nav-row.active a {
	color: #7ac943;
	transform: scale(1.03);
}

/* HOVER (Ha külön az egérrel a link fölé mész az aktív sorban) */
.nav-row:hover a {
	color: #7ac943;
}

.level-content-wrapper { 
	flex: 1; 
	overflow-y: auto;
	/* background: #fff;  */
	padding: 30px; 
}
.level-content-panel { 
	display: none;
	width: 100%;
	/* grid-template-columns: repeat(3, 1fr); */
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 30px 20px; 
	align-items: flex-start;
}
/* Ha a JS megjeleníti, akkor rácsként viselkedjen */
.level-content-panel[style*="display: block"],
.level-content-panel[style*="display: grid"],
.level-content-panel[style*="display: flex"] {
	display: grid !important;
}
/* B BLOKK EGYSÉG */
.b-group {
	width: 100%;
	break-inside: avoid; /* Megelőzi a szétesést */
}
.b-header {
	/* background: #f4f4f4; */
	padding: 10px 15px;
	border-left: 4px solid #fff;
	margin-bottom: 15px;
	/* transition: transform 0.8s ease, color 0.8s ease; */
	transition: all 0.8s ease;
}
.b-header:hover {
	border-color: #7ac943;
	/* color: #7ac943; */
	transform: scale(1.03);
}
.b-header a {
	text-decoration: none;
	/* color: #000; */
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	/* text-transform: uppercase;  */
	display: block;
	
	transform: scale(1);
	/* will-change: transform, color; */
	/* backface-visibility: hidden; */
	/* -webkit-font-smoothing: antialiased; */
	/* transition: transform 0.8s ease, color 0.8s ease; */
	transition: all 0.8s ease;
}
.b-header:hover a {
	color: #7ac943;
	transform: scale(1.03);
}

.c-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding-left: 25px;
	list-style: none;
	margin: 0;
}
.c-item a {
	text-decoration: none;
	/* color: #666; */
	color: #ccc;
	font-size: 13px;
	display: block;
	/* transition: 0.2s; */
	transform: scale(1);
	/* will-change: transform, color; */
	/* backface-visibility: hidden; */
	/* -webkit-font-smoothing: antialiased; */
	/* transition: transform 0.8s ease, color 0.8s ease; */
	transition: all 0.8s ease;
}
.c-item a:hover {
	color: #7ac943;
	/* padding-left: 5px; */
	transform: scale(1.03);
}
/* ----- zee ----- */

.logo {
	position: relative;
	display: inline-flex;
	overflow: hidden;
	white-space: nowrap;
	
	transform: scale(1);
	/* will-change: transform, color; */
	/* backface-visibility: hidden; */
	/* -webkit-font-smoothing: antialiased; */
	/* transition: transform 0.8s ease; */
	transition: all 0.8s ease;
}
.logo:hover{
	transform: scale(1.03);
}
.logo-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	overflow: hidden;
	
	font-size: 1.6rem;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 2px;
	color: #fff;
}
.logo img,
.logo svg {
	position: relative;
	height: 40px;
	width: auto;
	filter: brightness(1.1);
}

.nav-icons {
	position: relative;
	display: flex;
	gap: 20px;
	font-size: 20px;
	cursor: pointer;
	align-items: center;
	z-index: 2;
}

.nav-icon-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	width: 45px;
	transform: scale(1);
	/* will-change: transform, color; */
	/* backface-visibility: hidden; */
	/* -webkit-font-smoothing: antialiased; */
}
.nav-icons span {
	cursor: pointer;
	color: #ccc;
	transition: 0.8s;
	display: inline-flex;
	align-items: center;

	transform: scale(1);
	/* will-change: transform, color; */
	/* backface-visibility: hidden; */
	/* -webkit-font-smoothing: antialiased; */
}
.user-avatar-circle {
	width: 22px;
	height: 22px;
	background-color: transparent;
	color: #ccc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	margin: 0 auto;
	border: 1px solid #ccc;
	transition: all 0.8s ease;
	line-height: 1;
	transform: scale(1);
}
.user-avatar-circle.size-1 {
	font-size: 14px;
}
.user-avatar-circle.size-2 {
	font-size: 12px;
	letter-spacing: -0.5px;
}
.user-avatar-circle.size-3 {
	font-size: 10px;
	letter-spacing: -1px;
}

.nav-icon {
	width: 25px;
	height: 25px;
}
#nav-search-icon.hover .nav-icon, 
#nav-search-icon.hover .icon-label, 
.nav-icon-wrapper:hover .nav-icon,
.nav-icon-wrapper:hover .icon-label,
.nav-icon-wrapper:hover .badge,
.nav-icon-wrapper:hover .user-avatar-circle {
	color: #7ac943 !important;
	transform: scale(1.1);
	transition: all 0.8s ease;
	color: #7ac943 !important;
	border-color: #7ac943 !important;
	/* position: relative; */
	overflow: visible;
}
.user-avatar-circle.auto-logged-user:after {
	/* content: '•' */
	content: 'A';
	font-size: 0.6rem;
	position: absolute;
	top: -5px;
	right: -5px;
	z-index: 3;
	}
.user-avatar-circle.size-2.auto-logged-user:after,
.user-avatar-circle.size-3.auto-logged-user:after {
	right: -7px;
}

/* Cart count*/
/* #nav-cart-icon { */
    /* position: relative; */
/* } */
.badge {
	position: absolute;
	font-size: 0.6rem;
	width: 1.0rem;
	height: 1.0rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 0.2rem;
	z-index: 3;
	/* border: solid, 1px; */
}
.badge-types {
	top: -8px;
	left: -4px;
}
.badge-qty {
	top: -8px;
	right: -4px;
}
/* ----- zee ----- */

/*
.nav-icon-wrapper-search:hover:has(.search-box:hover) .nav-icon,
.nav-icon-wrapper-search:hover:has(.search-box:hover) .icon-label {
    color: #ccc;
    transform: none;
	transition: none;
}
*/
.nav-links {
    margin-left: auto;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.icon-label {
    font-size: 12px;
    margin-top: 4px;
    color: #333;
}

/* .nav-icon-wrapper-search .search-box,  */
/* .nav-icon-wrapper-search .search-input { */
#nav-search-box, 
.search-box { 
    position: relative;
    max-width: 300px;
    min-width: 25%;
	height: 45px;
    border: 1px solid;
    border-radius: 8px;
	z-index: 2;
	color: #ccc;
	
    pointer-events: none;
	opacity: 0;
	transform: scale(0);
	/* transform-origin: center center; */
	/* transition: transform 0.8s ease, opacity 0.8s ease; */
	transition: all 0.8s ease;
}

.search-input {
    position: absolute;
    background: transparent;
    border: none;
    outline: none;
	color: #ccc;
	left: 5px;
	top: 50%;
    transform: translateY(-50%);
	width: 85%;
    padding: 0 5px;
	font-size: 1rem;
    font-weight: 500;
	z-index: 3;
}

.search-input:focus {
    color: inherit;
}

.search-input::-webkit-search-cancel-button {
	display: none;
}

.search-submit {
    position: absolute;
    background: none;
	color: #ccc;
    border: none;
    cursor: pointer;
	pointer-events: auto;
	opacity: 1;
	z-index: 3;

	right: 8px;
	top: 50%;
    transform: translateY(-50%);
}

.search-submit:hover {
	color: #7ac943;
}



/* #nav-search-icon.hover { */
    /* color: var(--success); */
/* } */

/* Hover-re előugrik */
/*
.nav-icon-wrapper:hover .search-box,
.nav-icon-wrapper:focus-within .search-box,
.nav-icon-wrapper.active .search-box, 
.nav-icon-wrapper .search-box:focus-within {
	position: relative;

	opacity: 1;
    pointer-events: auto;
	
	transform-origin: right; 
	transform: translateX(-10%) scaleX(1) translateY(25%) scaleY(1);
	z-index: 3;
    align-items: center;
	box-sizing: border-box;
	height: 30px;
	
	display: flex;
	justify-content: space-between;
	align-items: center;

}
*/

/* .nav-icon-wrapper-search.active .search-box { */
    /* z-index: 3; */
/* } */

/* .nav-icon-wrapper-search .search-input .search-box { */
    /* position: relative; */
    /* width: 200px; */
	/* right: 20; */
	/* z-index: 1; */
/* } */

/* --- HERO – PIXEL PONTOS --- */.hero {
	width: 100%;
	height: 350px;
	margin-top: 80px;
	/* margin-bottom: 0.5rem; */
	display: flex;
	align-items: center;
	/* background-color: #f4f4f4; */
	/* background-color: #fff; */
	color: #7ac943;
	z-index: 2;
	/* padding: 4% 25% 1% 25%; */
	/* padding: 0 12rem; */

	background: radial-gradient(circle at 0% 0%, rgba(122,201,67,0.5) 0%, transparent 25%), 
		radial-gradient(circle at 100% 100%, rgba(122,201,67,0.3) 0%, transparent 25%)
		#fff;
	/* border-bottom: 1px solid #7ac943; */

	-webkit-user-select: none; /* Safari */
	-ms-user-select: none;     /* IE 10 és Edge */
	user-select: none;
	pointer-events: none;
	user-drag: none;
	-webkit-user-drag: none;
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 10;
	background: transparent;
	pointer-events: all;
}
.hero-inner {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	justify-content: space-between;
	padding: 0 4rem;
	height: 100%;
}
.hero-content {
	flex: 1 1 50%;
	align-items: left;
}
.hero-image {
	flex: 1 1 50%;
	/* align-items: right; */
	min-width: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 130%;
}
.hero-image img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	width: auto;
	display: block;
	object-fit: contain;
}
.hero h1 {
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 0.5rem;
	
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero p {
	font-size: 1.2rem;
	color: #333;
	/* margin-bottom: 40px; */
	padding-left: 1rem;
	margin-bottom: 0.5rem;
}
.hero-brands {
	display: flex;
	gap: 1.5rem;
	/* background: #7ac943; */
	margin: 0;
	/* margin-top: 1rem; */
	padding: 0;
	align-items: center;
	justify-content: center;
}
.hero-brands img {
	/* background: #ccc; */
}

.btn-primary {
	background: #7ac943;
	color: #fff;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
	margin-top: auto;	
}

.btn-secondary {
    border: 1px solid #333;
    padding: 16px 36px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
}


/* --- SECTION CÍMEK (KATEGÓRIA + TERMÉK) --- */

section h2 {
	font-size: 28px;
	font-weight: 800;
	/* margin-bottom: 40px; */
	margin: 20px 0;
	letter-spacing: 1px;
}

/* --- FEATURE STRIP --- */
.features {
	background: #fff;
	/* color: #7ac943; */
	color: #333;
	padding: 0.5rem 0;
	/* border-radius: 0 0 0.5rem 0.5rem; */
	/* border-radius: 0.5rem; */
	/* border-top: #7ac943; */
	/* width: 1280px; */

	/* position: relative; */
	/* z-index: 10; */
	/* bottom: 4rem; */
	/* opacity: 0.9; */
}
.features .container {
	display: flex;
	justify-content: space-between;
	padding: 0 5rem;
}
.feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
}
.feature-item::before {
	content: "✔";
	color: #7ac943;
	margin-right: 0.5rem;
	font-weight: bold;
}

/* --- CATEGORY GRID --- */
.categories {
	color: #333;
	margin-top: 2.0rem;
	/* margin-bottom: 1rem; */
}
.category-grid {
	display: grid;
	width: 100%;
	/* grid-template-columns: repeat(3, 1fr); */
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}
.category-card {
	/* display: block; */
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
	cursor: pointer;
	/* background: #fff; */
	background: transparent;

	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	user-drag: none;
	-webkit-user-drag: none;}
.category-card > * {
	position: relative;
	z-index: 2;
}
.category-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 10;
	background: transparent;
	pointer-events: all;
}

.category-card img {
	width: 100%;
	/* height: 100%; */
	height: 200px;
	object-fit: cover;
	/* margin: 0; */
	/* display: block; */
	transition: transform 0.8s ease;

	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateZ(0); /* Kényszerített GPU gyorsítás */
	will-change: transform;
}
.category-card:hover img {
	transform: scale(1.05);
}

.category-card :is(h3, p, span) {
	position: absolute;
	color: #333;
	color: #7ac943;
	color: #fff;
	/* text-shadow: */
		/* 0 1px 2px rgba(255,255,255,0.5), */
		/* 0 -1px 2px rgba(255,255,255,0.5), */
		/* 1px 0 2px rgba(255,255,255,0.5), */
		/* -1px 0 2px rgba(255,255,255,0.5); */
	text-shadow:
		0 1px 2px rgba(0,0,0,0.7),
		0 -1px 2px rgba(0,0,0,0.7),
		1px 0 2px rgba(0,0,0,0.7),
		-1px 0 2px rgba(0,0,0,0.7);
	/* z-index: 2; */
}
.category-card h3 {
	top: 1rem;
	left: 1rem;
	font-weight: 700;
	font-size: 1.6rem;
}
.category-card p {
	top: 3rem;
	margin: 0 1.5rem;
	font-size: 1.1rem;
	opacity: 0;
	transition: opacity 0.8s ease;
}
.category-card span {
	bottom: 1rem;
	right: 1rem;
	font-weight: 700;
	font-size: 1.4rem;
	transition: color 0.8s ease;
}
.category-card span::after {
	content: "➜";
	/* color: #7ac943; */
	margin-left: 0.5rem;
	font-weight: bold;
}
.category-card:hover span {
	color: #7ac943;
}
.category-card:hover p {
	opacity: 1;
}

/* ----- zee ----- */

/* --- MOST POPULAR PRODUCTS SECTION --- */
.most-products-section {
	/* padding: 0 0 2.5rem 0; */
	/* background: #111; */
	/* background: #ccc; */
	/* margin: 0; */
	margin: 2rem 0 0 0;

}
.most-product-grid {
	display: grid;
	width: 100%;
	/* grid-template-columns: repeat(2, 1fr); */
	grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
	/* grid-template-columns: repeat(auto-fit, minmax(0px, 1fr)); */
	gap: 1.5rem;
	/* align-items: start; */
}
/* Animálte keret  */
.most-product-card {
	position: relative;
	background: #fff;
	color: #ccc;
	padding: 1rem;
	border-radius: 0.5rem;
	text-align: center;
	overflow: hidden;
	border: 1px solid transparent;
	transition: border 0.1s 1s; /* A végén fixáljuk a keretet, ha kell */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* align-items: center; */
	align-items: stretch;
	height: 100%; /* Kitölti a grid magasságát */
	/* max-height: 400px; */
	min-width: 0px;
	cursor: pointer;
}
/* Az animált keret rétege */
.most-product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 200%; /* Nagyobbra vesszük, hogy a forgás takarjon */
	height: 200%;
	background: conic-gradient(
		transparent 0%, 
		transparent 75%, 
		transparent 95%, 
		#7ac943 95%, 
		#7ac943 100%
	);
	transform: translate(-25%, -25%) rotate(0deg);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
	z-index: 1;
}
/* A tartalom védelme, hogy a keret ne takarja el */
.most-product-card > * {
	position: relative;
	z-index: 2;
}
/* Belső fehér maszk, hogy csak a széle látsszon (mint egy keret) */
.most-product-card::after {
	content: '';
	position: absolute;
	inset: 2px;
	pointer-events: none;
	background: #fff;
	border-radius: 0.5rem;
	z-index: 1;
	opacity: 0;
}
/* HOVER ANIMÁCIÓ */
.most-product-card:hover::before, 
.most-product-card:hover::after {
	opacity: 1;
}
.most-product-card:hover::before {
	animation: most-borderFollow 1.5s ease 1 forwards;
}
@keyframes most-borderFollow {
	0% { transform: translate(-25%, -25%) rotate(0deg); }
	60% { opacity: 1; }
	100% { transform: translate(-25%, -25%) rotate(360deg); opacity: 0; }
}
/* Animálte keret --- VÉGE */
.most-products-section h2 {
	color: #333;
	margin: 0 0 1rem 0;
}
.most-product-card h3 {
	/* margin: 0 0 0.5rem 0; */
	margin: 0;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	/* white-space: normal; */
	/* word-break: break-word; */
	/* overflow-wrap: break-word; */
	/* min-width: 0; */
	/* overflow-wrap: anywhere; */
	text-align: center;
	width: 100%;
}
.most-product-card p {
	background: #fff;
	color: #333;
	/* padding: 2rem; */
	/* margin: 0 0 0.5rem 0; */
	margin: 1rem 0;
	border-radius: 0.5rem;
	text-align: center;
	font-size: 1.1rem;
}
.most-product-card img {
	width: 100%;
	height: 180px;
	object-fit: contain;
	/* margin-bottom: 1.2rem; */
	margin-bottom: 1.0rem;
	transition: transform 0.8s ease;
}
.most-product-card:hover img {
	transform: scale(1.05);
}
.most-product-card-cart-btn {
	margin: 0 auto;
	width: 100%;
	padding: 0.9rem 4.5rem;
}
/* ----- zee ----- */

/* --- NEWSLETTER --- */

.newsletter {
    background: var(--gray-light);
    padding: 80px 0;
    text-align: center;
}

.newsletter form {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.newsletter input {
    padding: 15px;
    width: 300px;
    border: none;
    border-radius: 4px;
}

/* --- FOOTER --- */
.footer {
	padding: 50px 0;

	background: radial-gradient(circle at 0% 0%, rgba(122,201,67,0.5) 0%, transparent 15%), 
		radial-gradient(circle at 100% 100%, rgba(122,201,67,0.3) 0%, transparent 15%)
		#333;

	-webkit-user-select: none; /* Safari */
	-ms-user-select: none;     /* IE 10 és Edge */
	user-select: none;
}

/*
.footer-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
	padding: 0 30px;
	margin: auto;
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;	
    background-color: var(--light);
}
*/
.footer-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

	/* display: flex; */
	/* justify-content: space-between; */
	
    padding: 0 30px;
    margin-bottom: 30px;
}

.footer-inner p {
    font-size: 1.1rem;
    /* text-decoration: none; */
    font-weight: 600;
    letter-spacing: 2px;
    /* color: var(--white); */
    color: var(--gray);
	white-space: nowrap;
}

.footer-inner ul {
	list-style: none;
    padding: 20px 0 0 20px;
    margin-bottom: 10px;
}

.footer-inner li {
	display: flex;
    align-items: center;
	margin-bottom: 10px;
	justify-content: flex-start;
	gap: 10px;
}

.footer-inner li span {
    display: flex;
    align-items: center;
	/* margin-right: 8px; */
    width: 24px;
	justify-content: flex-start;
    /* justify-content: center; */
    /* justify-content: left; */
	/* background-color: var(--light); */
}

.footer-inner div {
    /* color: #aaa; */
}

.footer-inner a {
    color: var(--grey);
    text-decoration: none;
    transition: 0.8s;
}

.footer-inner a:hover {
	color: #7ac943;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 14px;
}
.tooltip {
  position: relative; /* a tooltip pozícióhoz */
  display: inline-block;
  cursor: help;
}
.tooltip:hover {
  /* color: #fff; */
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 150%;
  /* background-color: #000; */
  /* color: #7ac943; */
  text-align: center;
  padding: 6px 10px;
  border-radius: 8px;
  
  position: absolute;
  z-index: 1;
  bottom: -150%;
  left: 50%;
  transform: translateX(-50%);
  
  opacity: 0;
  transition: opacity 0.8s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ul.profile-menu-list li, */
/* ul.profile-menu-list li::before, */
/* ul.profile-menu-list li::after { */
    /* list-style: none !important; */
    /* list-style-type: none !important; */
    /* content: none !important; */
    /* background: none !important; */
    /* padding: 0 !important; */
    /* margin: 0 !important; */
/* } */
/*
.profile-menu-list li a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: all 0.8s ease;
}
*/
/* Az SVG ikonok stílusa a listában */
/*.profile-menu-list li a svg {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    stroke: currentColor;
    flex-shrink: 0;
}*/
/* Hover állapot */
/* .profile-menu-list li a:hover { */
    /* background-color: rgba(var(--success-rgb), 0.05); */
    /* color: var(--success); */
/* } */
/* .profile-menu-list li a:hover svg { */
    /* stroke: var(--success); */
    /* transform: scale(1.1); */
/* } */
/* .profile-menu-list ul { */
	/* list-style: none; */
    /* padding: 20px 0 0 20px; */
    /* margin-bottom: 10px; */
/* } */
/* Külön a logout pirosítása */
/* .logout-link:hover { */
    /* color: #d9534f !important; */
    /* background-color: #fff5f5 !important; */
/* } */
/*
.logout-link:hover svg {
    stroke: #d9534f !important;
}
*/