/**
Theme Name: BB-Vill
Author: zsiraiandras.com
Author URI: https://zsiraiandras.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bbvill
*/

/* 
  =====================================================
  NORMALIZE
  =====================================================
*/
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
	scroll-behavior: auto;
	font-size: 16px;
	scrollbar-gutter: stable;
	scroll-padding-top: var(--header-height);
}

html.stop-scrolling {
	overflow: hidden !important;
}
/**
* Remove the margin in all browsers.
*/

body {
	margin: 0;
	font-family: "Work Sans", sans-serif;
	font-weight: 400;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-family: "Work Sans", sans-serif;
	font-weight: 700;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

* {
	box-sizing: border-box;
}

/* 
  =====================================================
  CSS VARIABLES
  =====================================================
*/
:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-accent: #16a89c;

	--color-black-grey: #404040;
	--color-dark-grey: #808080;
	--color-medium-grey: #bbbbbb;
	--color-light-grey: #eaeaea;

	--header-height: 9rem;

	--shadow-box: rgba(20, 20, 20, 0.18) 0px 4px 20px;

	--transition: all 0.3s cubic-bezier(0.62, 0.16, 0.13, 1.01);
	--transition-ellastic: all 0.3s cubic-bezier(0.41, 1.07, 0.4, 1.39);
}

/* 
  =====================================================
  FONTS
  =====================================================
*/
@font-face {
	font-family: "IBM Plex Mono";
	src: url("/wp-content/themes/bb-vill/assets/fonts/IBMPlexMono-Regular.woff2") format("woff2"), url("/wp-content/themes/bb-vill/assets/fonts/IBMPlexMono-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "IBM Plex Mono";
	src: url("/wp-content/themes/bb-vill/assets/fonts/IBMPlexMono-Medium.woff2") format("woff2"), url("wp-content/themes/bb-vill/assets/fonts/IBMPlexMono-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "IBM Plex Mono";
	src: url("/wp-content/themes/bb-vill/assets/fonts/IBMPlexMono-Bold.woff2") format("woff2"), url("/wp-content/themes/bb-vill/assets/fonts/IBMPlexMono-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Work Sans";
	src: url("/wp-content/themes/bb-vill/assets/fonts/WorkSans-Regular.woff2") format("woff2"), url("/wp-content/themes/bb-vill/assets/fonts/WorkSans-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Work Sans";
	src: url("/wp-content/themes/bb-vill/assets/fonts/WorkSans-Medium.woff2") format("woff2"), url("/wp-content/themes/bb-vill/assets/fonts/WorkSans-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Work Sans";
	src: url("/wp-content/themes/bb-vill/assets/fonts/WorkSans-SemiBold.woff2") format("woff2"), url("/wp-content/themes/bb-vill/assets/fonts/WorkSans-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Work Sans";
	src: url("/wp-content/themes/bb-vill/assets/fonts/WorkSans-Bold.woff2") format("woff2"), url("/wp-content/themes/bb-vill/assets/fonts/WorkSans-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* 
  =====================================================
  WOOCOMMERCE RESET
  =====================================================
*/
.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
}

.woocommerce span.onsale {
	background-color: var(--color-accent);
}

.woocommerce ul.products li.product .button {
	display: inline-block;
	margin-top: 0;
}

/* Hide arrows */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.woocommerce .woocommerce-breadcrumb::after,
.woocommerce .woocommerce-breadcrumb::before {
	display: none;
}

/* 
  =====================================================
  GLOBAL
  =====================================================
*/

/*/
///  TYPOGRAPHY
/*/
::selection {
	background-color: var(--color-light-grey);
	color: var(--color-accent);
}

p {
	margin: 0 0 1em;
	font-size: 1rem;
	font-family: "Work Sans", sans-serif;
	font-weight: 400;
	line-height: 1.8em;
	color: var(--color-black-grey);
}
p:last-of-type:not(.subtitle, .product-title, .category-title),
header p {
	margin-bottom: 0;
}

.title-xl {
	margin: 0;
	margin-bottom: 2rem;
	font-size: 4.5rem;
	font-size: clamp(1.6rem, 3vw, 60px);
	font-weight: 700;
	line-height: 1em;
	color: var(--color-black-grey);
}

.title-l {
	margin: 0;
	margin-bottom: 3.8rem;
	font-size: 4.5rem;
	font-size: clamp(1.5rem, 2.65vw, 55px);
	line-height: 1em;
	color: var(--color-black);
}

.title-m {
	margin: 0;
	margin-bottom: 30px;
	font-size: 1.55rem;
	line-height: 1.2em;
	color: var(--color-black-grey);
}

.title-s {
	margin: 0;
	margin-bottom: 25px;
	font-size: 1.8rem;
	line-height: 1em;
	color: var(--color-black-grey);
}

.subtitle {
	margin: 0 0 1em;
	font-family: "IBM Plex Mono", serif;
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--color-accent);
	line-height: 1em;
	text-transform: lowercase;
}

.disabled {
	opacity: 0.6 !important;
	pointer-events: none !important;
}

.white {
	color: var(--color-white);
}

.center {
	text-align: center;
}

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: lowercase;
}

.quote {
	font-weight: 500;
	font-style: italic;
}

a {
	color: var(--color-black);
	font-family: "IBM Plex Mono", serif;
	font-weight: 500;
	word-wrap: break-word;
	text-decoration: none;
	transition: var(--transition);
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
	text-decoration: none;
}

a:focus {
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
.font-heading {
	font-family: "IBM Plex Mono", serif;
	font-weight: 500;
}

.page-title {
	margin: 2rem 0;
	font-size: clamp(1.75rem, 2.15vw, 45px);
	text-align: center;
}

/*/
///  LAYOUT
/*/
main#page {
	padding-top: var(--header-height);
}

.section {
	grid-column: 2 / -2;
	width: 100%;
	margin: 0;
	margin-bottom: 9rem;
	padding: 0;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.rounded {
	border-radius: 15px;
}

/*///// MAIN GRID - SUBGRID /////*/
.main-grid {
	--column-count: 7;
	--column-padding: 2rem;
	--grid-padding: calc(50px - var(--column-padding));

	min-height: 100vh;
	min-height: 100svh;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: var(--grid-padding) repeat(var(--column-count), minmax(0, 1fr)) var(--grid-padding);
	gap: 0 var(--column-padding);
}

.subgrid {
	grid-column: 1 / -1;

	display: grid;
	grid-template-columns: subgrid;
	grid-auto-rows: auto;
}

/* Subgrid - utility classes*/
.col-1-full {
	grid-column: 2 / -2;
}
.col-2-full {
	grid-column: 3 / -2;
}
.col-3-full {
	grid-column: 4 / -2;
}
.col-4-full {
	grid-column: 5 / -2;
}
.col-1 {
	grid-column: 2 / 3;
}
.col-2 {
	grid-column: 3 / 4;
}
.col-3 {
	grid-column: 4 / 5;
}
.col-4 {
	grid-column: 5 / 6;
}
.col-2-center {
	grid-column: 3 / -3;
}

@media screen and (max-width: 1000px) {
	.main-grid {
		--column-count: 7;
		--column-padding: 1.5rem;
		--grid-padding: calc(30px - var(--column-padding));
	}
}

/*/
///  IMAGES
/*/
.img-wrapper {
	overflow: hidden;
}

.img-wrapper > img,
.img-wrapper > picture,
.img-wrapper picture img,
picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

picture {
	display: inline-block;
}

/*/
///  LISTS
/*/
ul,
ol {
	margin: 0;
	padding: 0;
	padding-left: 0;
	list-style-type: none;
}

ul li,
ol li {
	margin-bottom: 1em;
	font-family: "Work Sans", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.8em;
	color: var(--color-accent);
	word-wrap: break-word;
}
ul li:last-child,
ol li:last-child {
	margin-bottom: 0;
}

ul.list {
	margin-top: 1em;
}

ul.list li::before {
	content: "";
	display: inline-block;
	margin-right: 10px;
	width: 2em;
	height: 1px;
	vertical-align: middle;
	background-color: var(--color-primary);
}

/*/
///  FORMS
/*/
#form-wrapper {
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	max-width: 650px;
	gap: 0.8em;
}

#form-wrapper label {
	display: inline-block;
	width: 100%;
	max-width: 100%;
	margin-bottom: 0;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--color-black);
}

.wpcf7-form-control-wrap {
	display: block;
	margin: 5px 0 25px;
}

#form-wrapper .form-row {
	margin: 0;
}

#form-wrapper .form-row.double {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--column-padding);
}

#form-wrapper select,
#form-wrapper input[type="text"],
#form-wrapper input[type="email"],
#form-wrapper input[type="search"],
#form-wrapper input[type="password"],
#form-wrapper input[type="number"],
#form-wrapper input[type="date"],
#form-wrapper input[type="tel"],
#form-wrapper textarea,
#form-wrapper .form-control {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1.3em 2em;
	font-family: "Work Sans", sans-serif;
	font-size: 13px;
	color: var(--color-black);
	background: var(--color-light-grey);
	border: 1px solid var(--color-medium-grey);
	outline: none !important;
	border-radius: 0.5em;
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#form-wrapper textarea {
	height: 100px;
	resize: vertical;
}

#form-wrapper input[type="submit"] {
	width: fit-content;
	margin: 0;
	padding: 1em 1.6em;
	font-family: "IBM Plex Mono", serif;
	font-weight: 500;
	font-size: 1.1rem;
	color: var(--color-white);
	border: none;
	border-radius: 10em;
	background-color: var(--color-accent);
	line-height: 1em;
	transition: var(--transition);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#form-wrapper input[type="submit"]:hover {
	color: var(--color-accent);
	background-color: var(--color-light-grey);
}

.required {
	color: #dc3232;
	margin-left: 4px;
}

#form-wrapper a {
	font-family: "Work Sans", sans-serif;
	color: #dc3232;
}

.wpcf7-list-item {
	display: inline-block;
	width: 100%;
	margin: 0 0 20px;
}

.wpcf7-not-valid-tip {
	position: absolute;
	top: calc(100% + 5px);
	display: block;
	font-size: 0.9em;
	font-weight: 600;
	color: #dc3232;
	letter-spacing: 1px;
}

.wpcf7-checkbox {
	display: block;
	margin-top: 1.2em;
}

select {
	height: 35px;
	padding: 0.1em 1.5em;
	font-family: "Work Sans", sans-serif;
	font-size: 0.8rem;
	border: none;
	background-color: var(--color-grey);
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button.btn[type="submit"] {
	color: var(--color-primary);
	background-color: transparent;
	transition: var(--transition);
}

button.btn[type="submit"]:hover {
	cursor: pointer;
}

/*/
///  BUTTON BTN
/*/
.btn-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0 2rem;
}

.btn-wrapper.center {
	justify-content: center;
}

.btn-wrapper.vertical {
	flex-direction: column;
}

button:not(.wc-block-components-quantity-selector__button),
.btn {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 0 0.8em;
	width: fit-content;
	margin: 0em 0 0;
	padding: 0.8em 0;
	font-family: "IBM Plex Mono", serif;
	font-weight: 500;
	font-size: 1.1rem;
	color: var(--color-black);
	border: none;
	line-height: 1em;
	transition: var(--transition);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);

	.arrow {
		width: 6px;
		height: 14px;
		fill: var(--color-accent);
		transition: var(--transition);
	}
}

.btn:not(.swiper-btn):hover {
	gap: 0 1.2em;

	.arrow {
		fill: var(--color-black);
	}
}

.btn__cta:not(.swiper-btn) {
	padding: 0.8em 2em;
	color: var(--color-white);
	background-color: var(--color-accent);
	border: 1px solid var(--color-accent);
	border-radius: 10em;

	.arrow {
		fill: var(--color-white);
	}
}

.btn__cta:not(.swiper-btn):hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
	background-color: var(--color-white);

	.arrow {
		fill: var(--color-accent);
	}
}

.btn:focus-visible {
	outline: 1px solid var(--color-accent);
}

button.btn:focus {
	outline: none;
}

/*/
///  Swiper JS
/*/

.slider .slide {
	width: 100%;
	height: 100%;
}

.slider .slide .img-wrapper {
	width: 100%;
	height: 100%;
}

.swiper-button {
	inset: unset;
	margin: 0;
	width: 30px;
	height: 50px;
}

.swiper-button-next {
	top: 50%;
	right: 0;
	transform: translate(100%, -50%);
}

.swiper-button-prev {
	top: 50%;
	left: 0;
	transform: translate(-100%, -50%);
}

.swiper-button-next::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.swiper-button-prev::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.swiper-button-next::after {
	background-image: url(/wp-content/uploads/2025/05/swiper-arrow-right.svg);
}
.swiper-button-prev::after {
	background-image: url(/wp-content/uploads/2025/05/swiper-arrow-left.svg);
}

/* Pagination */
.swiper-pagination.swiper-pagination-bullets {
	bottom: -30px;
}

.swiper-pagination .swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	background: var(--color-medium-grey);
	border: none;
	border-radius: 50%;
	opacity: 1;
	cursor: pointer;
}
.swiper-pagination .swiper-pagination-bullet-active {
	background: var(--color-accent);
}

@media screen and (min-width: 768px) {
	#akcio .swiper-pagination {
		display: none;
	}
}

/* Scrollbar */
.swiper-horizontal .swiper-scrollbar {
	top: auto;
	bottom: 0;
	height: 2px;
	margin: 0;
	background-color: var(--color-light-grey);

	.swiper-scrollbar-drag {
		background: var(--color-accent);
	}
}

/*/
///  Reveal animation start
/*/
.reveal {
	opacity: 0;
	transform: translateY(25px);
	transition: var(--transition-ellastic);
}

/*/
///  Parallax images
/*/
.parallax__img {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
}

/*/
///  Popup
/*/
#popup {
	width: 75%;
	max-width: 70ch;
	padding: 3rem 5rem;
	border: none;
	background-color: var(--color-accent);
	z-index: 999;

	span {
		line-height: 1.2em;
	}

	.popup-close {
		margin: 2rem auto 0;
		padding: 0.8em 2em;
		color: var(--color-white);
		background-color: var(--color-accent);
		border: 1px solid var(--color-white);
		border-radius: 10em;
	}
}

#popup::backdrop {
	background: rgb(0 0 0 / 0.4);
	backdrop-filter: blur(5px);
}

/* 
  =====================================================
  HEADER
  =====================================================
*/
#header {
	position: fixed;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 99;

	.header-inner {
		width: 100%;
		height: var(--header-height);
		padding: 0 50px;
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		gap: 2rem;
		background-color: #ffffff00;
		backdrop-filter: blur(20px);
	}

	.logo-wrapper {
		display: grid;
		place-items: center;
		width: 230px;
		height: auto;
		margin: 0;

		img {
			width: 100%;
			height: auto;
			object-fit: contain;
		}
	}

	.right {
		justify-self: end;

		width: fit-content;
		margin: 0;
		padding: 0;
		display: flex;
		align-items: center;
		gap: 2rem;
		list-style: none;
	}

	.right a {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 1rem 0;
	}

	.right .search_btn {
		padding: 1em 1.6em;
		border: 1px solid var(--color-light-grey);
		border-radius: 10em;
		background-color: var(--color-light-grey);
		transition: var(--transition);
	}
	.right .search_btn:hover {
		border: 1px solid var(--color-black);
	}

	.main-menu {
		width: fit-content;
		margin: 0;
		padding: 0;
		display: flex;
		gap: 2rem;
		list-style: none;
	}

	.main-menu li {
		position: relative;
		margin: 0;
		padding: 0;
		font-size: 1rem;

		a {
			display: inline-block;
			line-height: 2em;
		}
	}

	.main-menu li::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: calc(100% + 2rem);
		height: 120%;
		border-radius: 10em;
		transform-origin: 50% 50%;
		transform: translate(-1rem, -10%);
		transition: all 0.2s ease-in-out;
		background-color: var(--color-light-grey);
		scale: 0;
		z-index: -1;
	}

	.main-menu li:hover::before {
		scale: 1;
	}

	.main-menu li.menu-item-has-children::after {
		content: "";
		display: inline-block;
		margin-left: 1px;
		width: 0.4em;
		height: auto;
		aspect-ratio: 1 / 1;
		vertical-align: middle;
		background-color: var(--color-primary);
		clip-path: polygon(50% 100%, 0 0, 100% 0);
		transition: var(----transition);
	}

	/* Dropdown menus */
	.main-menu .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: auto;
		padding: 1.6em 2.5em;
		display: grid;
		grid-template-columns: max-content;
		justify-items: start;
		gap: 1em;
		transition: var(--transition-ellastic);
		background-color: hsl(60deg 12% 95.1% / 40%);
		backdrop-filter: blur(15px);
		box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
		opacity: 0;
		visibility: hidden;
	}
	.main-menu li:hover .sub-menu {
		opacity: 1;
		visibility: visible;
	}

	.main-menu .sub-menu > li {
		margin: 0;
	}

	.main-menu .sub-menu > li a {
		display: inline-block;
		font-size: 1.1rem;
		line-height: 2.5em;
	}
	.main-menu .sub-menu > li a:hover {
		color: var(--color-primary);
	}

	/* Dropdown widgets (fiók, koasár) */
	.dropdown-widget {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translate(-50%, 2rem);
		width: max-content;
		padding: 1em 1.6em;
		font-family: "IBM Plex Mono", serif;
		font-size: 1rem;
		font-weight: 500;
		line-height: 1em;
		border-radius: 10em;
		background-color: var(--color-light-grey);
		transition: var(--transition-ellastic);
		pointer-events: none;
		opacity: 0;
		visibility: hidden;

		p {
			color: var(--color-black);
			font-family: "IBM Plex Mono", serif;
			font-size: 1rem;
			font-weight: 500;
			line-height: 1em;
		}
	}

	.account:hover .dropdown-widget,
	.cart:hover .dropdown-widget {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 1rem);
	}
}

#search_widget {
	position: absolute;
	top: 100%;
	left: 50%;
	margin: 0;
	width: clamp(0px, 100%, 550px);
	height: auto;
	transition: var(--transition-ellastic);
	transform: translate(-50%, -20vh);
	opacity: 0;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);

	.content-wrapper {
		padding: 0.5rem;
	}
}
#search_widget.active {
	opacity: 1;
	transform: translate(-50%, 0);
}

#overlay {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	backdrop-filter: blur(20px);
	background-color: rgba(255, 255, 255, 0.7);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
#overlay.active {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
	cursor: pointer;
}

html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
	padding: 1rem 2rem 1rem 3.5rem;
	font-family: "IBM Plex Mono", serif;
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-black);
	background: var(--color-light-grey);
	border: 1px solid var(--color-black);
	box-shadow: var(--shadow-box);
}
.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
	left: 20px;
	top: 14px;
}

/*
 * Quick hamburger
 */
#hamburger {
	position: relative;
	display: grid;
	justify-items: center;
	align-content: center;
	margin: 0;
	padding: 0;
	width: 50px;
	aspect-ratio: 1 / 1;
	background-color: transparent;
	border-radius: 10em;
	border-width: 1px;
	border-style: solid;
	border-color: var(--color-black);
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	z-index: 2;
}
#hamburger .line {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto 5px;
	position: relative;
	background: var(--color-black);
	z-index: 1;
	transform-origin: center;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
#hamburger .line:last-of-type {
	margin: 0;
}

#hamburger input {
	display: block;
	margin: 0;
	position: absolute;
	inset: 0;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
	-webkit-touch-callout: none;
	width: 100%;
	height: 100%;
}

#hamburger input:checked ~ .line:nth-child(2) {
	opacity: 1;
	transform: translate(0px, 7px) rotateZ(45deg);
}
#hamburger input:checked ~ .line:nth-child(3) {
	opacity: 0;
	transform: scale(0.2, 0.2);
}
#hamburger input:checked ~ .line:nth-child(4) {
	opacity: 1;
	transform: translate(0px, -7px) rotateZ(-45deg);
}

.mobile_menu {
	position: absolute;
	top: 7rem;
	left: 0;
	width: 100vw;
	height: calc(100vh - 7rem);
	padding: 0;
	backdrop-filter: blur(20px);
	background-color: rgba(255, 255, 255, 0.7);
	transition: var(--transition);
	overflow: hidden;
	z-index: 999;

	opacity: 0;
	transform: translateX(-100%);
}

.mobile_menu__inner {
	height: 100%;
	margin: 0;
	padding: 2rem 2rem 1rem;
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;

	.menu-mobile-menu-container {
		margin: auto 0;
	}

	.mobile-menu {
		display: flex;
		flex-direction: column;
		gap: 3rem;
		align-items: center;

		li {
			width: fit-content;
			margin: 0;
		}

		a {
			display: block;
			width: fit-content;
			margin: 0;
			font-size: clamp(1.7rem, 3.5vw, 40px);
			line-height: 1.4em;
		}
	}

	.bottom {
		height: fit-content;
		border-top: 2px dashed var(--color-medium-grey);
		margin-top: auto;
		padding-top: 1rem;
		display: flex;
		justify-content: space-around;
	}

	.bottom a {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 1rem 0;
		font-size: 1.2rem;
		justify-content: center;
	}
}

.nav-open {
	opacity: 1;
	transform: translateX(0);
}

@media screen and (min-width: 1001px) {
	#hamburger {
		display: none;
	}
}

/* 
  =====================================================
  COMPONENTS
  =====================================================
*/

/*/
///  Sale products Wrapper
/*/
.sale__products {
	margin-top: 2.5rem;
	display: flex;
	gap: 4rem;
	overflow-x: clip;
	overflow-y: visible;

	.product-inner {
		width: calc(100% - 4rem);
		border: 1px solid var(--color-light-grey);
		overflow: clip;
		transition: var(--transition-ellastic);
	}
	.product-inner:hover {
		border: 1px solid var(--color-accent);
		box-shadow: var(--shadow-box);
	}

	.img-wrapper {
		display: block;
		border-bottom: 1px solid var(--color-light-grey);
		background-color: var(--color-light-grey);
	}

	.product-data {
		padding: 1rem 1.35rem;
	}

	.product-title {
		margin: 1rem 0 1.2rem;
		font-size: 1.25rem;
		font-weight: 500;
		line-height: 1.25em;
	}

	.price {
		margin: 0 0 0.8rem;
		font-size: 1rem;
		font-family: "Work Sans", sans-serif;
		font-weight: 400;
		line-height: 1.2em;

		span {
			font-family: "IBM Plex Mono";
			font-weight: 400;
			white-space: nowrap;
		}
	}

	.sale-price {
		margin: 0;
		font-size: 1rem;
		font-family: "Work Sans", sans-serif;
		font-weight: 700;
		color: var(--color-accent);

		span {
			font-family: "IBM Plex Mono";
			font-weight: 700;
		}
	}

	.btn-wrapper {
		margin-top: 1.5rem;
	}
}

/*/
///  Product categories Wrapper
/*/
.product__categories {
	--grid-max-col-count: 4;
	--grid-min-col-size: 215px;
	--grid-gap-column: 4rem;

	/* calculations, do not touch */
	--grid-col-size-calc: calc((100% - var(--grid-gap-column) * var(--grid-max-col-count)) / var(--grid-max-col-count));
	--grid-col-min-size-calc: min(100%, max(var(--grid-min-col-size), var(--grid-col-size-calc)));

	margin-top: 2.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--grid-col-min-size-calc), 1fr));
	gap: 6rem var(--grid-gap-column);

	.product-category:hover img {
		scale: 1.05;
	}

	.category-title {
		margin: 1rem 0 1.2rem;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.15em;
	}

	.category-number {
		font-family: "IBM Plex Mono";
		font-size: 1.2rem;
		font-weight: 400;
	}
}

/* 
  =====================================================
  HOME
  =====================================================
*/
#hero {
	min-height: 72vh;
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 5rem;

	.content-wrapper {
		padding: 3rem 0;
		align-self: center;
	}

	.lead {
		max-width: 560px;
		text-wrap: balance;
	}

	.btn-wrapper {
		margin-top: 3rem;
	}
}

#rolunk {
	padding: 80px 50px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4rem;
	background-color: var(--color-light-grey);
	overflow: hidden;

	.content-wrapper {
		margin: 0 auto;
		max-width: 1100px;
	}
}

#akcio {
	.sale-nav {
		grid-column: 1 / -1;

		margin-top: 4rem;

		.btn-wrapper .btn {
			position: static;
			transform: none;
			padding: 0.8em 2em;
			border-radius: 10em;
			color: var(--color-accent);
			background-color: var(--color-light-grey);
			opacity: 1;
			z-index: 1;
		}
		.btn.swiper-button-disabled {
			color: var(--color-medium-grey);

			.arrow {
				fill: var(--color-medium-grey);
			}
		}
		.btn-wrapper .btn::after {
			content: none;
		}
	}

	.sale-nav::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 50%;
		transform: translateY(50%);
		background-color: var(--color-accent);
		opacity: 0.07;
		z-index: -1;
		pointer-events: none;
	}

	.no-products {
		display: grid;
		place-content: center;
		width: 100%;
		min-width: fit-content;
		height: 200px;
		margin: 0 auto;
		background-color: var(--color-light-grey);
		font-family: "IBM Plex Mono", serif;
		font-size: 1.2rem;
		font-weight: 500;
	}
}

/* 
  =====================================================
  SHOP
  =====================================================
*/
/* WooCommerce ordering */
.woocommerce .woocommerce-ordering {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(calc(-100% - 2rem));
	margin: 0;
	padding: 0 10px;
	border: 1px solid var(--color-accent);
	border-radius: 0.6rem;
	box-shadow: var(--shadow-box);
	background-color: var(--color-white);

	::selection {
		background-color: var(--color-accent);
		color: var(--color-white);
	}
}

/* WooCommerce breadcrumb */
.woocommerce .woocommerce-breadcrumb {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.6em;
	word-wrap: break-word;
	word-break: break-word;

	a {
		color: var(--color-accent);
		word-wrap: normal;
		white-space: break-spaces;
	}
}

/* WooCommerce pagination */

#termekeink-wrapper .woocommerce-pagination {
	margin-top: 3em;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	overflow: visible !important;

	ul.page-numbers {
		margin: 0;
		padding: 0;
		display: flex;
		align-items: center;
		gap: 1em;
		list-style: none;
		text-align: center;
		text-decoration: none;
		border: none;
	}

	li {
		margin: 0;
		padding: 0;
		border: none;
		box-shadow: none;
		transition: var(--transition);
		float: none;

		.current,
		a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 40px;
			height: 40px;
			line-height: 1em;
			color: var(--color-black);
			text-decoration: none;
			border-radius: 10em;
			background: var(--color-light-grey);
		}

		.current {
			color: #fff;
			background-color: var(--color-accent);
		}

		a.next {
			width: auto;
			padding: 0 0.8rem;
			border: var(--color-accent);
		}
		a.prev {
			width: auto;
			padding: 0 0.8rem;
			background-color: transparent;
		}

		a:hover {
			color: #fff;
			background-color: var(--color-accent) !important;
		}
	}
}

/* WooCommerce notices */
.woocommerce-notices-wrapper {
	position: fixed;
	top: var(--header-height);
	right: 0;
	width: 90%;
	max-width: 550px;
	z-index: 999;

	.woocommerce-message {
		padding: 1em 2.8em;
		display: flex;
		align-items: center;
		border-top-color: var(--color-accent);
		box-shadow: var(--shadow-box);

		.button {
			font-family: "IBM Plex Mono", serif;
			font-weight: 500;
			font-size: 1rem;
		}

		.button.kosar {
			color: var(--color-white);
			background-color: var(--color-accent);
		}
	}

	.woocommerce-message::before {
		color: var(--color-accent);
		left: 12px;
	}

	.woocommerce-message:focus-visible {
		outline: none;
	}
}

/* WooCommerce products */
#termekeink-wrapper {
	padding-top: 50px;
	display: grid;
	grid-template-columns: minmax(230px, 20%) 1fr;
	gap: 4rem;
}

#termekeink-wrapper,
.products {
	.product {
		display: grid;

		.labels {
			position: absolute;
			top: 5px;
			left: 5px;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			gap: 0.5em;
		}

		.label {
			padding: 7px 12px;
			font-size: 11px;
			font-weight: 700;
			color: var(--color-accent);
			line-height: 1em;
			text-transform: uppercase;
			letter-spacing: 1px;
			border: 1px dashed var(--color-accent);
			border-radius: 10em;
			background-color: var(--color-white);
		}

		.label.onsale {
			position: absolute;
			top: 0;
			bottom: unset;
			left: unset;
			right: 0;
			min-width: unset;
			min-height: 36px;
			transform: translate(10px, -10px);
			display: grid;
			align-items: center;
			margin: 0;
			padding: 0.3em 1em;
			width: fit-content;
			height: auto;
			font-size: 12px;
			font-weight: 700;
			line-height: 0;
			color: var(--color-white);
			border: none;
			border-radius: 10em;
			background-color: var(--color-accent);

			box-shadow: var(--shadow-box);
		}
	}
	.product-inner {
		display: grid;
		grid-template-rows: auto;

		margin: 0;
		width: 100%;
		float: none;
		border: 1px solid var(--color-light-grey);
		overflow: clip;
		transition: var(--transition);
	}
	.product-inner:hover {
		border: 1px solid var(--color-accent);
		box-shadow: var(--shadow-box);
	}
	.product-data {
		padding: 1rem 1.35rem;
		display: grid;
		grid-row: span 3;
		grid-template-rows: subgrid;
		gap: 1.15rem 0;
	}

	.product-title {
		margin: 0 0 0.65em;
		font-size: 1.25rem;
		font-weight: 500;
		line-height: 1.25em;
	}

	.price {
		margin: 0 0 0.8rem;
		font-size: 1rem;
		font-family: "Work Sans", sans-serif;
		font-weight: 400;
		line-height: 1.2em;
		color: var(--color-black);

		span {
			font-family: "IBM Plex Mono";
			font-weight: 400;
		}
	}

	.sale-price {
		margin: 0;
		font-size: 1rem;
		font-family: "Work Sans", sans-serif;
		font-weight: 700;
		color: var(--color-accent);

		span {
			font-family: "IBM Plex Mono";
			font-weight: 700;
		}
	}

	.add_to_cart_button,
	button {
		height: fit-content;
		align-self: end;
	}
}

/*/
///  Products Grid
/*/
#termekeink-wrapper .products {
	--grid-max-col-count: 4;
	--grid-min-col-size: 215px;
	--grid-gap-column: 4rem;

	/* calculations, do not touch */
	--grid-col-size-calc: calc((100% - var(--grid-gap-column) * var(--grid-max-col-count)) / var(--grid-max-col-count));
	--grid-col-min-size-calc: min(100%, max(var(--grid-min-col-size), var(--grid-col-size-calc)));

	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(var(--grid-col-min-size-calc), 1fr));
	gap: 6rem var(--grid-gap-column);
}

#termekeink-wrapper .products::before,
#termekeink-wrapper .products::after {
	display: none;
}

#termekeink-wrapper .product img {
	width: 100%;
	height: auto;
	margin: 0;
	aspect-ratio: 1 / 1;
	border-bottom: 1px solid var(--color-light-grey);
}

/*/
///  SIDEBAR CATEGORY LIST
/*/
#termekeink-wrapper .sidebar {
	height: fit-content;
	padding: 2rem 0.5rem;
	background-color: var(--color-white);
	box-shadow: var(--shadow-box);
	border: 1px solid var(--color-accent);
	transition: var(--transition);
	z-index: 10;
}

.sidebar__inner {
	overflow: visible;
}

.sidebar .title-m {
	padding: 0 0.8rem;
}

.sidebar ul.product-categories {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.sidebar ul.product-categories li.parent-category {
	position: relative;
	margin: 0;
	padding: 0;
}

.sidebar li.parent-category > a {
	padding: 10px 0.8rem;
	display: flex;
	align-items: center;
	gap: 12px;
}

.sidebar li.parent-category .category__name {
	font-family: "Work Sans";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3em;
	color: inherit;

	color: var(--color-primary);
	transition: var(--transition);
}

.sidebar li.parent-category .category__image {
	max-width: 50px;
	margin: 0;
	border: none;
	transition: var(--transition);
}

/*/
///  Subcategory
/*/
.sidebar .sub-category {
	margin: 0;
	padding: 2.5rem 1.5rem;
	position: absolute;
	top: 0;
	left: 100%;
	width: max-content;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.sidebar li.parent-category .sub-category__name {
	display: inline-block;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3em;
	font-family: "Work Sans";
	color: inherit;

	color: var(--color-primary);
	transition: var(--transition);
}

.sidebar ul.sub-category li:hover .sub-category__name {
	color: var(--color-black);
}

.sidebar li.parent-category:hover .sub-category {
	opacity: 1;
	visibility: visible;
}

@media screen and (min-width: 1001px) {
	#sidebar_btn {
		display: none;
	}

	/* HOVER states */
	.sidebar ul.product-categories:hover .category__name {
		color: var(--color-medium-grey);
	}

	.sidebar li.parent-category:hover .category__name {
		color: var(--color-black);
	}

	/* Parent catgory arrow */
	.sidebar li.parent-category:has(.sub-category) > a::after {
		content: "";
		display: block;
		margin-left: auto;
		flex: 0 0 15px;
		align-self: center;
		width: 6px;
		height: 14px;
		background-image: url(/wp-content/uploads/2025/04/arrow-accent.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		transition: var(--transition);
	}

	.sidebar li.parent-category:hover > a::after {
		transform: rotate(90deg);
	}
}

/*/
///  Overlay for sidebar
/*/
#overlay__sidebar {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(20px);
	background-color: hsl(175.07deg 76.84% 37.25% / 30%);
	transition: var(--transition);
	z-index: 9;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
#overlay__sidebar.active {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
	cursor: pointer;
}

/*/
///  Dynamic categories - secondary
/*/
#termekeink-wrapper .dynamic-product-category-items {
	--grid-max-col-count: 4;
	--grid-min-col-size: 170px;
	--grid-gap-column: 2rem;
	--grid-col-size-calc: calc((100% - var(--grid-gap-column) * var(--grid-max-col-count)) / var(--grid-max-col-count));
	--grid-col-min-size-calc: min(100%, max(var(--grid-min-col-size), var(--grid-col-size-calc)));
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(var(--grid-col-min-size-calc), 1fr));
	gap: 2rem var(--grid-gap-column);

	margin: 0 0 3rem;

	li {
		margin: 0;
	}
}

@media (min-width: 1001px) {
	#termekeink-wrapper .dynamic-product-category-items {
		display: none;
	}
}

/* 
  =====================================================
  SINGLE PRODUCT
  =====================================================
*/
#single-product-inner {
	margin-bottom: 10rem;
	min-height: calc(100% - var(--header-height));
	display: grid;
	grid-template-columns: 1fr 1.2fr;

	.product-left {
		padding: 0;
		overflow: hidden;
	}

	.product-left .product-slider {
		width: 100%;
		height: 100%;
		min-height: 50vh;
		max-height: calc(100vh - 2rem - var(--header-height));
		border: 1px solid var(--color-accent);
		overflow: hidden;

		.swiper-pagination {
			bottom: 0;
		}

		.swiper-button-prev {
			transform: translate(0%, -50%);
		}

		.swiper-button-next {
			transform: translate(0%, -50%);
		}
	}

	.product-left .slide {
		width: 100%;
		height: 100%;
		cursor: grab;
		background-color: var(--color-light-grey);
	}

	.product-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.product-right {
		height: 100%;
		display: grid;
	}

	.product-right .content-wrapper {
		margin: 0 auto;
		padding: 2rem 4rem;
		width: clamp(0px, 100%, 750px);
		height: 100%;
		min-height: calc(100% - var(--header-height));
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 2rem;
	}

	.woocommerce-breadcrumb {
		margin: 0 0 1.5rem;
		padding: 0;
		font-size: 0.85rem;
		color: var(--color-accent);
	}

	.product-title {
		margin: 0 0 2rem;
		font-size: clamp(18px, 2vw, 35px);
		line-height: 1.3em;
		color: var(--color-black);
	}

	.sku {
		margin-bottom: 1em;
		display: block;
		font-size: 0.85rem;
		line-height: 1.2em;
		color: var(--color-dark-grey);

		span {
			display: inline-block;
		}
	}

	.price-wrapper {
		margin-bottom: 1.5rem;

		.price {
			margin: 0 0 0.8rem;
			font-size: 1.1rem;
			font-family: "Work Sans", sans-serif;
			font-weight: 400;
			line-height: 1.2em;
			color: var(--color-black);

			span {
				font-family: "IBM Plex Mono";
				font-weight: 400;
			}
		}

		.sale-price {
			margin: 0;
			font-size: 1.25rem;
			font-family: "Work Sans", sans-serif;
			font-weight: 700;
			color: var(--color-accent);

			span {
				font-family: "IBM Plex Mono";
				font-weight: 700;
			}
		}
	}

	.description {
		margin: 0 0 1rem;
		font-size: 1rem;

		p {
			margin-bottom: 1rem;
		}
	}

	.product-data {
		padding: 1rem 0 0;
		border-top: 1px solid var(--color-light-grey);
	}

	.add-to-cart-wrapper {
		margin: 0;

		.stock {
			width: fit-content;
			margin: 0 0 1em;
			padding: 0.5em 0;
			font-family: "IBM Plex Mono";
			font-size: 1rem;
			font-weight: 700;
			line-height: 1em;
			color: var(--color-accent);
			border-radius: 10em;
		}

		.cart {
			display: flex;
			gap: 1rem 0;
			flex-wrap: wrap;
			margin: 0;
		}

		.quantity {
			margin-right: 1.5rem;
			display: flex;

			button {
				justify-content: center;
				margin: 0;
				padding: 10px 0;
				width: 30px;
				font-weight: 400;
				text-align: center;
				color: var(--color-black);
				background-color: var(--color-light-grey);
				transition: var(--transition);
			}

			input {
				width: 50px;
				border: none;
				background-color: var(--color-light-grey);
			}
		}

		.single_add_to_cart_button {
			padding: 0.5em 1.2em;
			font-family: "IBM Plex Mono", serif;
			font-weight: 500;
			font-size: 1.1rem;
			color: var(--color-white);
			background-color: var(--color-accent);
			border-radius: 0;
		}

		.variations {
			margin-bottom: 2rem;

			.label label {
				font-family: "IBM Plex Mono";
				font-weight: 500;
			}

			.value select {
				border: none;
				background-color: var(--color-light-grey);
			}
		}

		.woocommerce-variation-price .woocommerce-Price-amount {
			display: block;
			margin: 0 0 0.8rem;
			font-size: 1.1rem;
			font-family: "Work Sans", sans-serif;
			font-weight: 400;
			line-height: 1.2em;
			color: var(--color-black);
		}
	}
}
.related.products .products {
	--grid-max-col-count: 4;
	--grid-min-col-size: 215px;
	--grid-gap-column: 4rem;
	--grid-col-size-calc: calc((100% - var(--grid-gap-column) * var(--grid-max-col-count)) / var(--grid-max-col-count));
	--grid-col-min-size-calc: min(100%, max(var(--grid-min-col-size), var(--grid-col-size-calc)));
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--grid-col-min-size-calc), 1fr));
	gap: 6rem var(--grid-gap-column);
}

/* 
  =====================================================
  PAGES
  =====================================================
*/
#page-default {
	margin: 5rem 0;

	.page-title {
		margin: 0 0 3rem;
		text-align: center;
	}
	.content-wrapper {
		grid-column: 3 / -3;
	}
}

body.page-template-default {
	.wp-block-heading {
		margin: 5rem 0 2rem;
	}

	ol.wp-block-list {
		list-style-type: decimal;
		margin-block-start: 1em;
		margin-block-end: 1em;
		padding-inline-start: 50px;
		unicode-bidi: isolate;

		li {
			color: var(--color-black-grey);
		}
	}

	ul.wp-block-list {
		list-style-type: disc;
		margin-block-start: 1em;
		margin-block-end: 1em;
		padding-inline-start: 50px;
		unicode-bidi: isolate;

		li {
			color: var(--color-black-grey);
		}
	}
}

/* Rólunk */
#page-rolunk {
	margin: 5rem 0;

	.content-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}

	.page-title {
		margin: 1.5rem 0 3rem;
		text-align: left;
	}
}

/* Kapcsolat */
.main-grid.kapcsolat-page {
	min-height: 80vh;
}

#page-kapcsolat {
	margin: 5rem 0;

	.content-wrapper {
		grid-column: 3 / -3;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}

	.page-title {
		margin: 0 0 3rem;
		text-align: left;
	}

	.gyik-wrapper {
		margin: 0;
		padding: 0;
	}

	.accordion .title-s.kerdes {
		margin: 0;
		padding: 0;
		font-family: "Work Sans";
		font-size: 1rem;
		font-weight: 500;
		line-height: 1.3em;
	}

	.accordion .valasz {
		margin: 0;
		padding: 0;
		overflow: hidden;
	}

	.transition,
	ol li i:before,
	ol li i:after,
	p {
		transition: all 0.5s ease-in-out;
	}

	.no-select,
	h2 {
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	ol {
		perspective: 900;
		padding: 0;
		margin: 0;
	}

	ol li {
		position: relative;
		padding: 1.2rem 0;
		margin: 0;
		border-top: 2px dashed var(--color-light-grey);
	}

	ol li:last-child {
		border-bottom: 2px dashed var(--color-light-grey);
	}

	ol li::marker {
		margin: 0;
		padding: 0;
		font-size: 12px;
		font-weight: 500;
		color: var(--color-orange);
	}

	ol li .wrap {
		display: grid;
		grid-template-rows: max-content 1fr;
		overflow: hidden;
		transition: all 0.5s ease-in-out;
	}

	ol li .spacer {
		padding-top: 1rem;
	}

	ol li i {
		position: absolute;
		transform: translate(-6px, 0);
		margin-top: 9px;
		right: 0;
	}

	ol li i:before,
	ol li i:after {
		content: "";
		position: absolute;
		background-color: var(--color-accent);
		width: 3px;
		height: 9px;
	}

	ol li i:before {
		transform: translate(-2px, 0) rotate(45deg);
	}

	ol li i:after {
		transform: translate(2px, 0) rotate(-45deg);
	}

	ol li input[type="checkbox"] {
		position: absolute;
		width: 100%;
		height: 100%;
		inset: 0;
		cursor: pointer;
		z-index: 1;
		opacity: 0;
	}

	ol li input[type="checkbox"]:checked ~ .wrap {
		grid-template-rows: max-content 0fr;
	}

	ol li input[type="checkbox"]:checked ~ i:before {
		transform: translate(2px, 0) rotate(45deg);
	}

	ol li input[type="checkbox"]:checked ~ i:after {
		transform: translate(-2px, 0) rotate(-45deg);
	}

	input {
		outline: none;
	}

	.contact-wrapper {
		margin: 0;

		.contact {
			margin: 0 0 2rem;
			display: grid;
			grid-template-columns: auto 1fr;
			gap: 1rem;
			align-items: baseline;
		}

		p,
		a {
			margin: 0;
			font-size: 1.1rem;
			font-family: "Work Sans", sans-serif;
			font-weight: 500;
			line-height: 1.4em;
			color: var(--color-black-grey);
		}

		.contact-title {
			width: fit-content;
			margin: 0 0 0.35em;
			padding: 0.5em 1.2em;
			font-family: "IBM Plex Mono";
			font-size: 1rem;
			font-weight: 700;
			line-height: 1em;
			color: var(--color-white);
			border-radius: 10em;
			background-color: var(--color-accent);
		}
	}
}

/* Fiokom */
.fiokom-page {
	margin: 0;
	min-height: 80vh;
	min-height: 80svh;

	.woocommerce {
		grid-column: 3 / -3;
		margin: 0;
	}

	.woocommerce-MyAccount-navigation {
		float: unset;
		width: 100%;
		margin: 1rem 0 5rem;

		ul {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			gap: 1em;
		}

		.woocommerce-MyAccount-navigation-link {
			width: fit-content;
			margin: 0;
			border: 1px solid var(--color-light-grey);
			border-radius: 10em;

			a {
				display: block;
				margin: 0;
				padding: 1em 1.6em;
				font-size: 1rem;
				color: var(--color-black);
			}

			&:hover {
				background-color: var(--color-light-grey);
			}
		}

		.woocommerce-MyAccount-navigation-link.is-active {
			border: 1px solid var(--color-accent);
		}
	}

	.woocommerce-MyAccount-content {
		float: unset;
		width: 100%;
	}
}

/* Adatvedelem */
/* .adatvedelem-page {
	.wp-block-heading {
		margin: 5rem 0 2rem;
	}

	ol.wp-block-list {
		list-style-type: decimal;
		margin-block-start: 1em;
		margin-block-end: 1em;
		padding-inline-start: 50px;
		unicode-bidi: isolate;

		li {
			color: var(--color-black-grey);
		}
	}

	ul.wp-block-list {
		list-style-type: disc;
		margin-block-start: 1em;
		margin-block-end: 1em;
		padding-inline-start: 50px;
		unicode-bidi: isolate;

		li {
			color: var(--color-black-grey);
		}
	}
} */

/* Kosár */
#page-kosar {
	margin: 5rem 0;

	.wc-block-cart__submit-button {
		padding: 0.8em 2em;
		color: var(--color-white);
		background-color: var(--color-accent);
		border: 1px solid var(--color-accent);
		border-radius: 10em;
	}
}

/* Pénztár */
#page-penztar {
	margin: 5rem 0;
}

.wc-block-checkout__terms a {
	color: var(--color-accent);
}

/* Fiokom */
#page-viszonteladok {
	.viszontelado-form {
		margin-top: 5rem;
	}
}

/* 
  =====================================================
  FOOTER
  =====================================================
*/
footer.main-grid {
	min-height: auto;

	.copywright {
		grid-column: 2 / -2;

		padding: 1em 0;
		text-align: center;

		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;

		.barion-logo {
			width: 100%;
			max-width: 250px;
		}

		.stilldesign-logo img {
			width: 100%;
			max-width: 130px;
		}
	}
}

.footer-inner {
	grid-column: 2 / -2;
	margin: 0;
	padding: 6rem 50px 3rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
	gap: 3rem 0;
	border-block-start: 1px solid var(--color-black);
}

/* 
  =====================================================
  MEDIA QUERIES
  =====================================================
*/
@media screen and (max-width: 1400px) {
	/* Header */
	#header {
		.logo-wrapper {
			width: 200px;
		}
	}

	/* Components */
	.sale__products {
		gap: 2rem;

		.product-inner {
			width: calc(100% - 2rem);
		}
		.product-title {
			margin: 1rem 0 1.2rem;
			font-size: 1.3rem;
			font-weight: 500;
			line-height: 1em;
		}
	}

	/* Hero */
	#hero {
		grid-template-columns: 1fr 1.2fr;
		gap: 3rem;
	}

	/* Product categories */
	.product__categories {
		.category-title {
			margin: 1rem 0 1.2rem;
			font-size: 1.3rem;
		}
	}
}

@media screen and (max-width: 1200px) {
	/* Header */
	#header .search_btn span {
		display: none;
	}

	/* Pages */
	.col-2-center {
		grid-column: 2 / -2;
	}

	#page-kapcsolat {
		.content-wrapper {
			grid-column: 2 / -2;
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 5rem;
		}
	}
}

@media screen and (max-width: 1000px) {
	/* Header */
	#header {
		.right .account,
		.menu-main-menu-container {
			display: none;
		}

		.header-inner {
			padding: 0 30px;
		}
	}

	/* Pages */
	#page-rolunk {
		margin: 0 0 5rem;

		.content-wrapper {
			grid-template-columns: 1fr;
			gap: 3rem;
		}

		.featured-img {
			height: 400px;
		}
	}

	#page-kapcsolat {
		margin: 0 0 5rem;

		.content-wrapper {
			grid-template-columns: 1fr;
			gap: 3rem;
		}
	}

	/* Webshop */

	#shop .page-title {
		margin: 2.5rem 0 3rem;
		font-size: clamp(1.75rem, 2.15vw, 45px);
		text-align: center;
	}

	.woocommerce .woocommerce-breadcrumb {
		width: 100%;
		margin: 0 auto;
		padding: 0 0 0 3rem;
	}

	/* WooCommerce ordering */
	.woocommerce .woocommerce-ordering {
		position: static;
		transform: none;
		margin: 0 0 3rem;
	}

	#termekeink-wrapper {
		display: block;
		padding-top: 0;

		.products {
			--grid-max-col-count: 4;
			--grid-min-col-size: 170px;
			--grid-gap-column: 2rem;
			gap: 5rem var(--grid-gap-column);

			.product-data {
				padding: 1rem;
				display: grid;
				grid-row: span 3;
				grid-template-rows: subgrid;
				gap: 1rem 0;
			}

			.product-title {
				font-size: 1.1rem;
			}
		}

		.sidebar {
			position: fixed;
			top: var(--header-height);
			left: 0px;
			bottom: 20px;
			width: 50%;
			min-width: fit-content;
			height: calc(100% - var(--header-height) - 1rem);
			margin-right: 75px;
			border: none;
			border-radius: 0;
			background-color: var(--color-white);
			transform: translateX(-100%);
		}

		.sidebar__inner {
			height: 100%;
			overflow-y: auto;
		}

		.sidebar li.parent-category > a {
			padding: 10px 1rem;
		}

		.sidebar li.parent-category .category__name {
			font-weight: 500;
			line-height: 1.3em;
		}

		.sidebar li.parent-category .category__image {
			max-width: 35px;
		}

		.sidebar .sub-category {
			position: static;
			width: auto;
			margin: 0;
			padding: 1rem 1.5rem 2.5rem;
			backdrop-filter: none;
			opacity: 1;
			visibility: visible;
			transition: var(--transition);
			display: flex;
			flex-direction: column;
			gap: 1.5rem;

			.sub-category__name {
				display: inline-block;
				font-size: 1rem;
				font-weight: 400;
				line-height: 1.3em;
				font-family: "Work Sans";

				color: var(--color-black-grey);
			}
		}

		.sidebar .sub-category li {
			margin: 0;
			display: flex;
			flex-wrap: nowrap;
			align-items: center;
		}

		.sidebar .sub-category li::before {
			content: "";
			display: inline-block;
			width: 1rem;
			height: 2px;
			margin: 0;
			margin-right: 5px;
			background-color: var(--color-accent);
		}

		#sidebar_btn {
			display: grid;
			place-content: center;
			position: absolute;
			top: 0px;
			right: 0px;
			width: 40px;
			height: 40px;
			margin: 0;
			background-color: var(--color-accent);
			transform: translateX(100%);
			box-shadow: var(--shadow-box);
			border-top-right-radius: 10px;
			border-bottom-right-radius: 10px;
			cursor: pointer;
			z-index: 99;

			svg {
				fill: var(--color-white);
				width: 20px;
				height: auto;
			}
		}

		.sidebar.active {
			transform: translateX(0);
			box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
		}
	}

	/* Single product */
	#single-product-inner {
		margin-bottom: 6rem;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;

		.product-left {
			height: fit-content;

			.product-slider {
				width: 100%;
				height: clamp(320px, 45svh, 500px);
				min-height: unset;
				max-height: unset;
				border: 1px solid var(--color-accent);
				overflow: hidden;
			}

			.slide {
				width: 100%;
				height: auto;
			}

			.product-img {
				object-fit: contain;
			}
		}

		.product-right .content-wrapper {
			margin: 0 auto;
			padding: 2rem 0;
			width: 100%;
			height: auto;
			min-height: auto;
		}
	}

	.related.products .products {
		--grid-max-col-count: 4;
		--grid-min-col-size: 150px;
		--grid-gap-column: 2rem;
	}
}

@media screen and (max-width: 768px) {
	/* Global */
	:root {
		--header-height: 7rem;
	}

	.section {
		margin-bottom: 6rem;
	}

	.title-xl {
		margin: 0;
		margin-bottom: 2rem;
		font-size: 4.5rem;
		font-size: clamp(1.75rem, 4.25vw, 40px);
	}
	.title-l {
		margin-bottom: 2rem;
		font-size: 4.5rem;
		font-size: clamp(1.6rem, 4.25vw, 35px);
	}

	button,
	.btn {
		font-size: 1rem;
	}

	/* Header */
	#header {
		.right .cart {
			display: none;
		}

		.header-inner {
			padding: 0 30px;
		}
	}

	/* Hero */
	#hero {
		grid-template-columns: 1fr;
		gap: 0;

		.img-wrapper {
			height: 280px;
		}
	}

	/* Akcio */
	#akcio {
		.col-2-full {
			grid-column: 2 / -2;
		}
	}

	.sale__products {
		.product-inner {
			width: 100%;
		}
	}

	/* Product categories */
	#kategoriak {
		.col-2-full {
			grid-column: 2 / -2;
		}

		.product__categories {
			--grid-gap-column: 30px;
			gap: 4rem var(--grid-gap-column);
		}
	}

	/* Termékek */
	#termekeink-wrapper .products {
		--grid-gap-column: 2.5rem;
		gap: 5rem var(--grid-gap-column);
	}

	/* Rolunk */
	#rolunk {
		padding: 3rem 1rem;
		grid-template-columns: 1fr;
		gap: 3rem;

		.title-l {
			margin: 0;
		}
	}

	/* Pages */
	#page-default {
		.content-wrapper {
			grid-column: 2 / -2;
		}
	}

	/* Footer */
	footer.main-grid {
		.copywright {
			grid-template-columns: 1fr;
			justify-items: center;
			gap: 2rem;
		}
	}
}

@media screen and (max-width: 500px) {
	/* HTML */
	html {
		font-size: 14px;
	}

	/* Global */
	.main-grid {
		--column-count: 3;
		--column-padding: 10px;
		--grid-padding: calc(1rem - var(--column-padding));
	}

	.btn-wrapper {
		gap: 0 1rem;
	}

	button,
	.btn {
		align-items: center;

		.arrow {
			width: 5px;
			height: 12px;
		}
	}

	.rounded {
		border-radius: 10px;
	}

	/* Header */
	#header {
		.header-inner {
			padding: 0 15px;
			gap: 1rem;
		}

		#hamburger {
			width: 45px;

			.line {
				width: 16px;
			}
		}

		.logo-wrapper {
			width: 160px;
		}

		.right .search_btn {
			padding: 0.85em;
		}
	}

	.mobile_menu {
		height: calc(100dvh - 7rem);
	}

	/* Akcio */
	#akcio {
		.sale__products {
			.product-data {
				padding: 1rem 0.85rem;
			}

			.product-title {
				margin: 0.6rem 0 1rem;
				font-size: 1rem;
			}

			.price {
				margin: 0 0 0.8rem;
				font-size: 1rem;
				line-height: 1.2em;
			}
		}

		.no-products {
			font-size: 1rem;
		}

		& .sale-nav {
			.btn-wrapper .btn {
				padding: 0.8em 1.5em;
				font-size: 0.85rem;
			}
		}
	}

	/* Product categories */
	#kategoriak {
		.product__categories {
			--grid-max-col-count: 2;
			--grid-min-col-size: 130px;
			--grid-gap-column: 15px;
			gap: 2.5rem var(--grid-gap-column);

			.category-number {
				font-size: 1rem;
			}

			.category-title {
				margin: 0.6rem 0 1rem;
				font-size: 1rem;
			}
		}
	}

	/* Shop */
	.woocommerce .woocommerce-ordering {
		margin: 0 0 2rem;
		padding: 0 10px;
		border: 1px solid var(--color-accent);
		border-radius: 0.6rem;
		box-shadow: var(--shadow-box);
		background-color: var(--color-white);

		select {
			height: 28px;
			padding: 0;
		}
	}

	#termekeink-wrapper {
		.products {
			--grid-max-col-count: 2;
			--grid-min-col-size: 140px;
			--grid-gap-column: 10px;
			gap: 2.5rem var(--grid-gap-column);

			.product-title {
				font-size: 1rem;
			}

			.product-data {
				padding: 1rem 0.6rem;
				display: grid;
				grid-row: span 3;
				grid-template-rows: subgrid;
				gap: 0.75rem 0;
			}

			.label.onsale {
				min-height: 30px;
				transform: translate(5px, -5px);
				font-size: 10px;
			}
			.label {
				padding: 6px 10px;
				font-size: 10px;
			}
		}

		.dynamic-product-category-items {
			--grid-max-col-count: 2;
			--grid-min-col-size: 140px;
			--grid-gap-column: 10px;
		}
	}

	/* Footer */
	.footer-inner {
		padding: 6rem 0 3rem;

		.logo-wrapper img {
			width: 160px;
		}
	}
}
