:root {
	--main: #232323;
	--sec: #e7b903;
	--green: #76a53a;
	--bg-light: #f8fafc;
	--card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
	--border-light: rgba(70, 35, 101, 0.08);
	--text-main: #232323;
	--text-muted: #64748b;
}

html {
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
	scroll-padding-top: 80px;
}

body {
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-weight: normal;
	background: #fafafa;
}

.wrapper {
	width: 94%;
	max-width: 1174px;
	margin: 0 auto;
	position: relative;
}

.none {
	display: none !important;
}

.mt0 {
	margin-top: 0 !important;
}

.mr0 {
	margin-right: 0 !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt-100 {
	margin-top: 100px !important;
}

.mt-50 {
	margin-top: 50px !important;
}

.mb0,
.mb-0 {
	margin-bottom: 0 !important;
}

.mb-50 {
	margin-bottom: 50px !important;
}

.mb-100 {
	margin-bottom: 100px !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.h2-mt0 h2 {
	margin-top: 0 !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pl-0 {
	padding-left: 0 !important;
}

.max-100p {
	max-width: 100% !important;
}

h1,
h2,
h3 {
	font-family: "Nunito", sans-serif;
}

.message {
	position: relative;
	padding: .75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: .25rem;
	color: #41464b;
	background-color: #e2e3e5;
	border-color: #d3d6d8;
}

.message.ok {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.message.error {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

header {
	width: 100%;
	float: left;
	padding: 20px 0;
	background: var(--main);
	border-bottom: 1px solid var(--sec);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
}

.logo {
	text-decoration: none;
	background: url('../img/logo.png') no-repeat left center;
	background-size: contain;
	width: 120px;
	height: 25px;
	font-size: 36px;
	line-height: 1;
	float: left;
	margin-right: auto;
}

.menu-holder {
	float: left;
	width: 80%;
}

nav {
	float: left;
	margin-left: 10px;
	display: flex;
	gap: 5px;
	position: absolute;
	left: 50%;
	align-items: center;
	transform: translateX(-50%);
}

nav a {
	text-decoration: none;
	transition: .35s all;
	line-height: 27px;
	font-size: 14px;
	font-weight: 500;
	padding: 6px 16px;
	color: #fff;
	position: relative;
	border-radius: 20px;
	z-index: 1;
}

nav a:hover,
nav a.active {
	background: var(--green);
	color: var(--main);
}

.wrapper-header {
	display: flex;
	align-items: center;
	position: relative;
}

@media (max-width: 768px) {
	nav.menu {
		position: static;
		transform: none;
		gap: 0;
	}

	.wrapper-header {
		display: block;
	}
}

.delivery-detail {
	width: 100%;
	padding: 12px;
	box-sizing: border-box;
	background: rgba(238, 238, 238, 1);
	clear: both;
	text-align: center;
	border-radius: 15px;
	font-size: 14px;
	padding-left: 0px;
	padding-right: 0;
	padding: 15px 25px;
	margin: 20px 0;
	float: left;
	padding-bottom: 5px;
	font-size: 13px !important;
}

.delivery-detail p {
	font-size: 14px !important;
	margin-top: 0 !important;
}

.basket {
	border-radius: 40px;
	font-size: 13px;
	color: #fff;
	padding: 11px 13px;
	min-height: 20px;
	line-height: 1;
	min-width: 130px;
	background: var(--sec);
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-decoration: none;
	transition: .3s all;
	position: absolute;
	right: 0;
	top: -5px;
	box-sizing: border-box;
	z-index: 1000;
	margin-left: auto;
}

.basket .right {
	transition: .3s all;
	color: #fff;
	float: right;
	margin-left: 15px;
}

.basket span {
	color: #fff;
}

.icon-basket-arrow {
	opacity: 0;
	background: url('../img/arrow-right.svg') no-repeat right center;
	transition: .3s all;
	position: absolute;
	width: 15px;
	height: 15px;
	transform: scale(0);
	transition: .3s all;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.basket::after {
	content: '';
	width: 100%;
	height: 50px;
	bottom: -50px;
	background: transparent;
	position: absolute;
	left: 0;
	display: none;
}

.basket:hover {
	background: var(--green);
	border: 1px solid var(--green);
}

.basket:hover span {
	color: #000;
}

.basket:hover .right {
	opacity: 0;
}

.basket:hover::after {
	display: block;
}

.basket:hover .icon-basket-arrow {
	opacity: 1;
	transform: scale(1);
}

.banner {
	width: 100%;
	height: 80vh;
	float: left;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	padding: 150px 0;
	display: table;
	margin-top: 65px;
}

.banner video {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	z-index: -1;
}

.gap50 {
	gap: 50px;
}

.center {
	display: table-cell;
	vertical-align: middle;
}

.center .wrapper {
	max-width: 790px;
}

.banner::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 0;
}

.banner h1 {
	color: #fff;
	font-size: 32px;
	text-align: center;
	margin-bottom: 0;
}

.section-about {
	width: 100%;
}

.section-about p {
	line-height: 1.7;
	opacity: .5;
}

.sec-right .box {
	padding-right: 25px;
}

.sec-left .box {
	padding-left: 25px;
}

.sec-image {
	width: 50%;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	aspect-ratio: 4/3;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0;
}

p {
	font-size: 16px;
	line-height: 1.4;
}

p a {
	color: rgba(185, 157, 107, 1);
}

h2 {
	font-size: 24px;
}

.drobeckova {
	float: left;
	height: 30px;
	margin-top: 10px;
	overflow: hidden;
	line-height: 30px;
	display: none;
	font-size: 14px;
	color: #a2a2a2;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;

	a {
		font: inherit;
		color: #a2a2a2;
		text-decoration: none;
		position: relative;
		transition: 0.3s all ease-in-out;

		&:after {
			content: '';
			width: 100%;
			height: 1px;
			position: absolute;
			left: 0;
			bottom: -1px;
			background: #a2a2a2;
			z-index: 999;
			transition: 0.25s all ease-in-out;
		}

		&:before {
			content: '';
			width: 0%;
			height: 1px;
			position: absolute;
			right: 0;
			bottom: -1px;
			background: var(--main);
			z-index: 999;
			transition: 0.5s all ease-in-out;
		}

		&:hover {
			color: var(--main);

			&:after {
				width: 0%;
			}

			&:before {
				width: 100%;
			}
		}
	}

	strong {
		font-size: inherit;
		font-weight: 600;
		color: var(--main);
	}

	span {
		font-family: 'awesome';
		margin: 0 4px;
		color: inherit;
	}
}

.sec-left img,
.sec-right img {
	width: 100%;
}

.sec-right,
.sec-left {
	width: 50%;
	display: inline-block;
	box-sizing: border-box;
	padding-left: 50px;
	vertical-align: top;
}

.section-about {
	background: #fff;
	overflow: hidden;
	border-radius: 25px;
	border: 1px solid rgba(0, 0, 0, .07);
	box-shadow: 0px 12px 16px -4px #00000014;
}

@media (min-width: 765px) {
	.sec-left:not(.sec-image) {
		padding: 30px;
		text-align: left;
	}

	.sec-left:not(.sec-image) .box {
		float: right;
		padding-right: 0px;
	}
}

.box {
	max-width: 600px;
}

.box ul {
	padding-left: 13px;
}

.box ul li {
	margin-bottom: 10px;
	color: #7c7c7c;
	list-style: none;
	position: relative;
}

.box ul li:before {
	width: 8px;
	height: 8px;
	position: absolute;
	left: -15px;
	top: 8px;
	content: '';
	background: rgba(185, 157, 107, 1);
	border-radius: 100%;
}

u {
	text-decoration: none;
	color: rgba(185, 157, 107, 1);
	border-bottom: 1.5px solid rgba(185, 157, 107, 1);
}

.banner p {
	color: #fff;
	font-size: 17px;
	text-align: center;
	margin-top: 10px;
	font-weight: 300;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left !important;
}

.text-justify {
	text-align: justify;
}

.button {
	color: #fff;
	padding: 12px 25px;
	font-size: 16px;
	border-radius: 24px;
	text-decoration: none;
	transition: .35s all;
	color: var(--main);
	font-family: "Nunito", sans-serif;
	display: inline-block;
	cursor: pointer;
	border: 0;
	transition: .3s all;
	font-weight: bold;
	background: var(--green);
}

.button::after {
	content: "✓";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	font-size: 20px;
	color: white;
	transition: opacity 0.3s ease;
}

.button.success::after {
	opacity: 1;
}

.button:hover {
	background: var(--sec);
	color: #fff;
}

.detail ul {
	padding-left: 20px;
}

.detail ul li {
	list-style: none;
	padding-left: 0px;
}

.detail ul li:before {
	width: 10px;
	height: 4px;
	background: var(--green);
	border-radius: 10px;
	display: inline-block;
	content: '';
	position: relative;
	left: -10px;
	top: -2px;
}

.detail .button {
	width: 100%;
	font-weight: bold;
	font-family: "Nunito", sans-serif;
	font-size: 15px;
	color: var(--main);
}

.detail .button:hover {
	background: var(--green) !important;
	box-shadow: 0 10px 20px rgba(175, 209, 54, 0.3);
}

.button.disabled {
	opacity: .5;
	pointer-events: none;
}

.detail .button.add-cart.loading {
	background-color: rgba(27, 197, 0, 1);
	border-color: rgba(27, 197, 0, 1);
	font-family: "Poppins", serif !important;
	pointer-events: none;
	height: 45px;
	box-shadow: none !important;
}

.detail .desc {
	width: 35%;
	float: right;
}

.detail table {
	border-collapse: collapse;
	text-align: left;
	border-top: 1px solid #e5e5e5;
	width: 100%;
	margin-top: 20px;
	background: none !important;
	box-shadow: none !important;
	border: 0 !important;
}

.detail table th {
	width: 150px;
	color: #4b4b4b;
	font-size: 15px;
	background: none !important;
	padding-left: 0 !important;
	font-family: "Nunito", sans-serif;
	padding: 8px 0;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: middle;
}

.detail table tr {
	background: none !important;
}

.detail table td {
	color: #686868;
	background: none !important;
	padding: 8px 0;
	font-size: 15px;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: middle;
}

.detail table tr:last-child td,
.detail table tr:last-child th {
	border-bottom: 0;
}

.lg-toolbar {
	z-index: 108200 !important;
}

.lg-backdrop {
	z-index: 10400 !important;
}

.lg-outer {
	z-index: 10500 !important;
}

.main {
	width: 100%;
	float: left;
	margin: 0 0;
}

.column {
	float: left;
	width: 100%;
	flex: 0 0 calc(33.333% - 15px);
	box-sizing: border-box;
	padding: 0px;
	position: relative;
	z-index: 100;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

.row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.category {
	width: 100%;
	float: left;
	background: #fff;
	background-size: 30px;
	border-top-left-radius: 20px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 20px;

	box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, .08);
	margin-top: -20vh;
	cursor: pointer;
	transition: .35s all;
	position: relative;
	z-index: 1000;
	text-align: center;
}

.animate__delay-35s {
	animation-delay: .35s !important;
}

.animate__delay-55s {
	animation-delay: .55s !important;
}

.category a {
	text-decoration: none;
}

.category h2 {
	font-size: 19px;
	color: #000;
	text-decoration: none;
}

.category:hover {
	text-decoration: none;
	box-shadow: 8px 8px 32px 0 rgba(0, 0, 0, .12);
	transform: translateY(-3px);
}

.category .image {
	width: 100%;
	height: 200px;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.link {
	color: rgba(185, 157, 107, 1);
	margin-left: 15px;
}

.flex-name {
	display: flex;
}

.flex-name h1 {
	font-size: 28px;
	line-height: 1;
	text-align: center;
}

.preparing {
	width: 100%;
	float: left;
	margin-top: 10px;
}

.image-holder {
	width: 60%;
	float: left;
	position: relative;
}

.image-holder .images {
	width: 100%;
	float: left;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.image-holder .images .image {
	width: 50%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 25px;
	cursor: zoom-in;
	flex-basis: calc(30% - 7.5px);
}

.image-holder .images .image:first-child {
	width: 100%;
	min-width: 100%;
	height: 400px;
}

.image-holder .images .image:not(:first-child) {
	border-radius: 40px;
	background-size: cover;
	flex: 0 0 calc((100% - 45px) / 4);
}

.image-holder .image::before {
	content: '';
	padding-top: 100%;
	display: block;
}

.main-image {
	width: 100%;
	height: 550px;
	background-size: 70% auto;
	background-position: center center;
	background-color: #fff;
	background-repeat: no-repeat;
	position: relative;
	border-radius: 25px 5px 25px 5px;
	margin-bottom: 0px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	flex-basis: 100%;
	cursor: zoom-in;
}

.detail .price {
	float: left;
	font-size: 48px;
	text-align: center;
	width: 100%;
	white-space: nowrap;
	font-weight: bold;
	color: var(--green);
	font-family: "Nunito", sans-serif;
}

.detail {
	width: 100%;
	float: left;
	margin: 30px 0;
}

.desc h1 {
	margin-top: 0;
}

.desc p {
	font-size: 15px;
	line-height: 1.6;
	opacity: .8;
	font-weight: 400;
	clear: both;
}

.desc {
	position: sticky;
	top: 100px;
	box-sizing: border-box;
	padding: 25px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0px 12px 16px -4px #00000014;
}

.lg-close {
	position: absolute;
	right: 10%;
	top: 90px;
}

.hp-products {
	width: 100%;
	float: left;
}

.hp-products h2 {
	font-size: 39px;
}

.hp-products h2 span {
	position: relative;
	display: block;
	opacity: .4;
	font-size: 27px;
}

.tags {
	display: flex;
	gap: 8px;
	align-content: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.form-detail {
	width: 100%;
	float: left;
	clear: both;
	gap: 20px;
	margin: 30px 0;
	box-sizing: border-box;
	justify-content: center;
	padding: 7px 7px;
	border-radius: 85px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0px 12px 16px -4px #00000014;
}

#qty {
	width: 30px;
	height: 30px;
	padding: 0;
	margin-bottom: 0;
	text-align: center;
	box-sizing: border-box;
	outline: none !important;
	border-radius: 5px;
	border: transparent;
	background: transparent;
}

#qty:focus {
	outline: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0;
	/* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
	-moz-appearance: textfield;
	/* Firefox */
}

.tag {
	flex: 1 1 auto;
	letter-spacing: 0.1em;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	position: relative;
	display: flex;
	line-height: 1.4;
	align-content: center;
	align-items: center;
	background: rgba(70, 35, 101, 0.06);
	text-align: center;
	color: var(--color-primary, #462365);
	border: 1px solid rgba(70, 35, 101, 0.1);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	backdrop-filter: blur(5px);
}

.tag--green {
	background: var(--color-accent, #afd136);
	color: var(--color-primary, #462365);
	border: none;
}

.tag--red {
	background: #e74c3c;
	color: #fff;
	border: none;
}

.tags .tag:nth-child(1) {
	animation-delay: 1s;
}

.tags .tag:nth-child(2) {
	animation-delay: 2s;
}

.tags .tag:nth-child(3) {
	animation-delay: 3s;
}

.tag--preparing {
	background: #f2b7c9;
	color: #C30E59;
	text-decoration: none;
	position: absolute;
	right: 10px;
	top: 10px;
}

.tag span {
	width: 100%;
	text-align: center;
	display: block;
}

@keyframes tagAnim {
	0% {
		background: #e5e5e5;
		color: #6b6b6b;
		box-shadow: 0 0 25px rgba(185, 157, 107, 0);
	}

	50% {
		background: rgba(185, 157, 107, 1);
		color: #fff;
		box-shadow: 0 0 25px rgba(185, 157, 107, 0.6);
	}

	100% {
		background: #e5e5e5;
		color: #6b6b6b;
		box-shadow: 0 0 25px rgba(185, 157, 107, 0);
	}
}

.product {
	width: 100%;
	min-height: 100px;
	float: left;
	transition: .35s all;
	box-sizing: border-box;
	position: relative;
	text-align: left;
	background: #fff;
	box-shadow: 0px 12px 16px -4px #00000014;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid transparent;
}

.product a {
	text-decoration: none;
}

.product p,
.product h2 {
	clear: both;
	box-sizing: border-box;
	font-weight: bold;
}

.product-bottom {
	width: 100%;
	padding: 0 15px;
	clear: both;
	border-radius: 15px;
	float: left;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	z-index: 10;
}

.product:hover {
	text-decoration: none;
	transform: translateY(0);
	box-shadow: 0px 1px 1px 0px #00000014;
}

.product .price {
	color: var(--green);
	font-family: "Nunito", sans-serif;
	font-size: 19px;
	font-weight: bold;
	margin-bottom: 15px;
}

.product p {
	color: rgba(0, 0, 0, 0.5);
	line-height: 1.6;
	font-size: 14px;
	font-weight: 400;
}

.product .image {
	width: 100%;
	height: 240px;
	float: left;
	margin-bottom: 15px;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	position: relative;
	transition: .5s all ease-in-out;
}

.product .image:after {
	width: 100%;
	height: 20px;
	background: #000;
	border-radius: 100%;
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	opacity: .3;
	filter: blur(13px);
	transition: .5s all ease-in-out;
}

.product:hover .image:after {
	transform: scale(.9) translateY(10px);
}

.product:hover .image {
	transform: translateY(-10px);
}

.product h2 {
	color: #000;
	font-size: 21px;
	margin-bottom: 5px;
}

.product h2 a {
	color: inherit;
	text-decoration: none;
	font-weight: 800;
}

.triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 200px 200px 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent var(--main) transparent;
	right: 0;
	pointer-events: none;
}

footer {
	width: 100%;
	background: var(--main);
	float: left;
	text-align: center;
	padding: 50px 0 25px;
	position: relative;
}

footer ul {
	list-style: none;
	padding: 0;
	display: inline-block;
	vertical-align: top;
	margin: 0 50px;
}

footer li {
	line-height: 25px;
}

footer li.title {
	font-family: "Nunito", sans-serif;
	color: #fff;
	font-size: 21px;
	margin-bottom: 20px;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer ul:not(.social-list) li a {
	border-bottom: 1px solid rgba(255, 255, 255, .6);
}

footer p {
	font-size: 13px;
	width: 100%;
	float: left;
	display: block;
	margin-bottom: 0;
	margin-top: 40px;
	color: #fff;
}

footer .social-list li a {
	font-family: 'awesome';
	text-decoration: none;
	font-size: 30px;
}

footer li:not(.title) {
	opacity: .6;
	transition: .3s all;
}

footer li:hover {
	opacity: 1;
}

footer .social-list li:not(.title) {
	display: inline-block;
	margin-right: 10px;
}

strong.label {
	display: inline-block;
	width: 170px;
}

table {
	width: 100%;
	border-collapse: collapse;

	thead {
		tr {
			background: rgba(0, 0, 0, 0.1);
			border: 1px solid rgba(0, 0, 0, 0.1);

			th {
				padding: 14px 16px;
				text-align: left;
			}
		}
	}
}

table.table {
	margin: 40px 0;
	background: #fff !important;
	color: #000 !important;
	border: 1px solid #e1e6ea !important;
	border-bottom-color: rgb(225, 230, 234);
	border-bottom-color: #d4dbe1;
	box-shadow: 0 3px 2px -2px #e1e6ea, 0 2px 1px -1px #f8fafb !important;
}

table.table th,
table.table td {
	border-bottom: 0.1rem solid #e1e1e1;
	padding: 1.2rem 1.5rem;
	text-align: left;
}

table.table th a {
	color: #000;
}

table td {
	vertical-align: middle;
}

table small {
	display: block;
	margin-top: 5px;
}

table td:first-child,
table th:first-child {
	padding-left: 15px;
}

tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.025);
}

table td a {
	color: var(--main);
	text-decoration: underline;
	text-underline-offset: 2px;
}

table td a:hover {
	color: var(--main);
	text-decoration: none;
	text-underline-offset: 2px;
}

table .dblclick {
	cursor: pointer;
	transition: .3s all;
}

table .dblclick:hover {
	background: rgba(106, 227, 195, 0.065);
}

.delivery {
	width: 100%;
	float: left;
	margin-top: 25px;
	position: relative;
}

.delivery label {
	margin-top: 7.5px;
}

.delivery h2 {
	margin: 0;
	margin-bottom: 10px;
}

.basket-items .button {
	width: 100%;
	margin-top: 25px;
	border-radius: 15px;
}

.basket-items label {
	width: 100%;
	float: left;
	padding-top: 3px;
	margin-top: 10px;
	box-sizing: border-box;
}

h2 small {
	display: block;
	font-size: 60%;
	opacity: .35;
}

#hidden-section {
	transition: .3s all ease-in-out;
	height: 0;
	overflow: hidden;
}

#hidden-section.active {
	height: 380px;
	transform-origin: top;
	overflow: auto;
}

.pd-image {
	width: 100%;
	border-radius: 25px 5px 25px 5px;
	padding: 30px 15px;
	box-sizing: border-box;
	margin-top: 25px;
	/*background: url('../uploads/banner.jpg') no-repeat center center;
	background-size: cover;*/
	background-color: #e5e5e5;
	position: relative;
	z-index: 1;
	text-align: center;
}

.pd-image p {
	font-family: "Nunito", sans-serif;
	opacity: .5;
}

/*
.pd-image::before {
	width: 100%;
	height: 100%;
	border-radius: 25px 5px 25px 5px;
	position: absolute;
	left: 0;
	top: 0;
	-moz-backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	content: '';
	background: rgba(255,255,255,.8);
	z-index: -1;
	box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}
*/

.col {
	width: 50%;
	float: left;
	box-sizing: border-box;
}

.col-l {
	padding-left: 20px;
}

.col-r {
	padding-right: 20px;
}

.basket-items {
	width: 35%;
	float: right;
	min-height: 50px;
	background: #fff;
	border-radius: 15px 5px 15px 5px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	padding: 15px;
	box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, .05);
}

.basket-items .item {
	width: 100%;
	line-height: 1;
	float: left;
	padding: 12px 0;
	border-bottom: 1px solid #e8e8e8;
}

.basket-items .col-left {
	width: 65%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: clip;
	overflow-clip-margin: 5px;
	float: left;
}

.basket-items .col-left small {
	opacity: .5;
	font-size: 12px;
	margin-left: 5px;
}

.basket-items .col-right {
	width: 35%;
	text-align: right;
	float: right;
	box-sizing: border-box;
	padding-right: 25px;
	position: relative;
}

.basket-items .delete {
	width: 25px;
	height: 16px;
	display: inline-block;
	text-decoration: none;
	position: absolute;
	top: 0px;
	right: 0;
	background: url('../img/delete.svg') no-repeat right center;
	transition: all 0.3s;
}

.col1 {
	max-width: 300px;
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
}

.clear {
	clear: both;
}

.basket-order {
	width: 100%;
	float: left;
	background: #fff;
	padding: 30px;
	border-radius: 24px;
	box-shadow: var(--card-shadow);
	border: 1px solid var(--border-light);
	box-sizing: border-box;

	h2 {
		font-size: 1.25rem;
		font-weight: 700;
		color: var(--main);
		margin-bottom: 25px;
		display: flex;
		align-items: center;
		gap: 10px;

		&::before {
			content: '';
			width: 4px;
			height: 20px;
			background: var(--green);
			border-radius: 2px;
		}
	}

	label {
		width: 100%;
		margin-bottom: 8px;
		display: block;
		font-size: 0.875rem;
		font-weight: 600;
		color: var(--text-muted);
	}
}

.checkout-steps {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	position: relative;
	padding: 0 20px;
	margin-top: 100px;

	&::before {
		content: '';
		position: absolute;
		top: 15px;
		left: 40px;
		right: 40px;
		height: 5px;
		background: #e2e8f0;
		z-index: 1;
		border-radius: 10px;
	}
}

.checkout-step {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex: 1;

	.step-icon {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: #fff;
		border: 2px solid #e2e8f0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		font-weight: 700;
		color: var(--text-muted);
		transition: all 0.3s ease;
	}

	.step-label {
		font-size: 12px;
		font-weight: 600;
		color: var(--text-muted);
		transition: all 0.3s ease;
	}

	&.active {
		.step-icon {
			border-color: var(--main);
			background: var(--main);
			color: #fff;
			box-shadow: 0 0 0 4px rgba(70, 35, 101, 0.1);
		}

		.step-label {
			color: var(--main);
		}
	}

	&.completed {
		.step-icon {
			border-color: var(--green);
			background: var(--green);
			color: var(--main);
		}

		.step-label {
			color: var(--text-main);
		}
	}
}

.checkout-section {
	width: 100%;
}

.basket-summary-card {
	width: 35%;
	float: right;
	position: sticky;
	top: 100px;
	background: #fff;
	padding: 30px;
	border-radius: 24px;
	box-shadow: var(--card-shadow);
	border: 1px solid var(--border-light);
	box-sizing: border-box;

	h2 {
		margin-top: 0;
		font-size: 1.25rem;
		margin-bottom: 20px;
	}

	.summary-item {
		display: flex;
		justify-content: space-between;
		margin-bottom: 15px;
		font-size: 14px;
		color: var(--text-muted);

		&.total {
			border-top: 1px dashed #e2e8f0;
			padding-top: 15px;
			margin-top: 15px;
			font-size: 1.125rem;
			font-weight: 700;
			color: var(--text-main);
		}
	}
}

.modern-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	margin: 20px 0;

	input {
		width: 20px;
		height: 20px;
		margin: 0;
		flex-shrink: 0;
	}

	label {
		font-size: 14px;
		line-height: 1.4;
		color: var(--text-muted);
		margin: 0 !important;
	}
}

input,
textarea {
	width: 100%;
	background: #fff;
	border-radius: 3px;
	height: 35px;
	line-height: 35px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	outline: none !important;
	padding: 0 10px;
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	transition: .3s all;
	margin-bottom: 20px;

	&:focus {
		border-color: rgba(185, 157, 107, 1);
		outline: 0;
		box-shadow: 0 0 0 0.2rem rgba(@darkGreen, 0.25);
	}
}

textarea {
	height: 65px;
}

.fs15 {
	font-size: 15px;
	line-height: 32.5px;
}

.float-right {
	float: right;

	.col {
		float: right;
	}

	input[type="text"] {
		height: 42px !important;
		line-height: 42px !important;
	}

	.button {
		padding: 0;
	}
}

.input label {
	width: 100%;
	margin-bottom: 3px;
	display: block;
}

.input input,
.input textarea,
.input select {
	width: 100%;
	background: #fff;
	border-radius: 3px;
	height: 40px;
	line-height: 40px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	outline: none !important;
	padding: 0 10px;
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	transition: .3s all;
	margin-bottom: 20px;
	box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, .05);
}

.input input:focus {
	border-color: var(--main);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(@darkGreen, 0.25);
}

.input select {
	appearance: none;
	background: #fff url('../img/arrow-down.svg') no-repeat center right 15px !important;
	background-size: 15px !important;
}

.col {
	width: 50%;
	float: left;
}

.col--left {
	box-sizing: border-box;
	padding-right: 7.5px;
}

.col--right {
	box-sizing: border-box;
	padding-left: 7.5px;
}

.col-3 {
	width: 33.333%;
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
}

.col--w100p {
	width: 100%;
}

.col--w100p .input {
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
}

.col--w100p .input:nth-child(1) {
	width: 40%;
}

.col--w100p .input:nth-child(2) {
	width: 35%;
}

.col--w100p .input:nth-child(3) {
	width: 25%;
	padding-right: 0;
}

.pr-0 {
	padding-right: 0 !important;
}

input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
	position: absolute;
	left: 40px;
	opacity: 0;
}

input[type="checkbox"]:not(:checked)+label,
input[type="checkbox"]:checked+label {
	position: relative;
	padding-top: 0 !important;
	padding-left: 1.95em;
	cursor: pointer;
}

/* checkbox aspect */
input[type="checkbox"]:not(:checked)+label:before,
input[type="checkbox"]:checked+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.25em;
	height: 1.25em;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: #fff;
	border-radius: 3px;
}

/* checked mark aspect */
input[type="checkbox"]:not(:checked)+label:after,
input[type="checkbox"]:checked+label:after {
	content: '\f00c';
	font-family: 'awesome';
	position: absolute;
	top: 2px;
	left: 2px;
	margin: auto;
	font-size: 12px;
	line-height: 0.8;
	background: var(--main);
	color: #fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	text-align: center;
	line-height: 17px;
	width: 18px;
	height: 18px;
	border-radius: 3px;
	transition: all .2s;
}

/* checked mark aspect changes */
input[type="checkbox"]:not(:checked)+label:after {
	opacity: 0;
	transform: scale(0);
}

input[type="checkbox"]:checked+label:after {
	opacity: 1;
	transform: scale(1);
}

/* disabled checkbox */
input[type="checkbox"]:disabled:not(:checked)+label:before,
input[type="checkbox"]:disabled:checked+label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

input[type="checkbox"]:disabled:checked+label:after {
	color: #999;
}

input[type="checkbox"]:disabled+label {
	color: #aaa;
}

input[type="radio"]:not(:checked),
input[type="radio"]:checked {
	position: absolute;
	left: -4000px;
	opacity: 0;
}

input[type="radio"]:not(:checked)+label,
input[type="radio"]:checked+label {
	position: relative;
	padding-top: 0;
	padding-left: 1.95em;
	cursor: pointer;
}

/* checkbox aspect */
input[type="radio"]:not(:checked)+label:before,
input[type="radio"]:checked+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.25em;
	height: 1.25em;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: #fff;
	border-radius: 100%;
}

/* checked mark aspect */
input[type="radio"]:not(:checked)+label:after,
input[type="radio"]:checked+label:after {
	content: '';
	font-family: 'awesome';
	position: absolute;
	top: 3px;
	left: 3px;
	margin: auto;
	font-size: 12px;
	line-height: 0.8;
	background: var(--main);
	width: 16px;
	height: 16px;
	border-radius: 100%;
	transition: all .2s;
}

/* checked mark aspect changes */
input[type="radio"]:not(:checked)+label:after {
	opacity: 0;
	transform: scale(0);
}

input[type="radio"]:checked+label:after {
	opacity: 1;
	transform: scale(1);
}

/* disabled checkbox */
input[type="radio"]:disabled:not(:checked)+label:before,
input[type="radio"]:disabled:checked+label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

input[type="radio"]:disabled:checked+label:after {
	color: #999;
}

input[type="radio"]:disabled+label {
	color: #aaa;
}

table small {
	display: block;
	margin-top: 5px;
}

table td:first-child,
table th:first-child {
	padding-left: 15px;
}

tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.025);
}

table .dblclick {
	cursor: pointer;
	transition: .3s all;
}

table .dblclick:hover {
	background: rgba(106, 227, 195, 0.065);
}

.relative {
	position: relative;
	float: left;
}

table .view a,
table .delete a,
table .status a,
table .inf a,
table .month-1 a,
table .month-2 a,
table .month-3 a,
table .users_actions a,
table .pdf a {
	display: inline-block;
	width: 30px;
	height: 20px;
	text-decoration: none;
	opacity: 0.5;
	transition: 0.3s all;
}

table .pdf a {
	width: 25px;
}

table .view a:hover,
table .pdf a:hover,
table .month-1 a:hover,
table .month-2 a:hover,
table .month-3 a:hover,
table .inf a:hover,
table .users_actions a:hover,
table .delete a:hover,
table .status a:hover {
	opacity: 1;
}

table .view a {
	background: url('../img/pencil.svg') no-repeat center left;
	background-size: contain;
}

table .delete a {
	background: url('../img/trash.svg') no-repeat center left;
	background-size: contain;
}

table .status a {
	background: url('../img/check.svg') no-repeat center left;
	background-size: contain;
}

table .status.deactive a {
	background: url('../img/ban.svg') no-repeat center left;
	background-size: contain;
}

#notify {
	background: #fff;
	position: absolute;
	right: 180px;
	z-index: 100000;
	line-height: 16.5px;
	top: -4px;
	box-sizing: border-box;
	padding: 10px 15px;
	box-shadow: 0 .188rem .375rem rgba(0, 0, 0, .16);
	border-radius: 3px;
	font-size: 13px;
	pointer-events: none;
	opacity: 0;
	transform: translateX(-30px);
	transition: .3s all ease-in-out;
}

#notify i {
	font-style: normal;
}

#notify::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	right: -5px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
}

#notify.active {
	opacity: 1;
	transform: translateX(0);
}

.total_basket_price {
	margin-top: 20px;
	margin-bottom: 10px;
	width: 100%;
	float: left;
	border-top: 1px solid #e8e8e8;
	padding: 15px 0;
	font-weight: bold;
	border-bottom: 1px solid #e8e8e8;
}

.total_basket_price strong {
	float: right;
	font-weight: normal;
}

.total_basket_price var {
	font-style: normal;
	float: right;
}

/*
.add-doprava span,
.add-platba span {
	color: #000;
	font-weight: bold;
	padding: 3px 5px;
	border-radius: 4px;
	margin-left: 5px;
	position: relative;
	top: -2px;
	float: right;
}
*/

.row.no-flex {
	display: block;
}

.checkbox-for-fields {
	padding-left: 40px;
	position: relative;
	cursor: pointer;
}

.checkbox-for-fields:before {
	content: '';
	width: 20px;
	height: 20px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	top: 10px;
}

.checkbox-for-fields.active:before {
	background: var(--main);
	border: 2px solid #fff;
	outline: 1px solid rgba(0, 0, 0, 0.15);
}

.slider-indicators,
.swipe-hint {
	display: none;
}

@media (max-width: 768px) {
	.menu {
		margin-left: 0;
		white-space: nowrap;
		overflow-x: scroll;
		overflow-y: hidden;
		width: 100%;
		margin-top: 15px;
		margin-bottom: 7px;
	}

	.social-container {
		margin-top: 30px;
	}

	.comma {
		font-size: 36px !important;
	}

	.detail .images {
		white-space: nowrap;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		height: 230px;
		scroll-snap-type: x mandatory;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.detail .images::-webkit-scrollbar {
		display: none;
	}

	.mobile-slider-wrapper {
		position: relative;
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.slider-indicators {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 6px;
		margin-top: 25px;
		margin-bottom: 0px;
	}

	.slider-indicators .indicator {
		width: 8px;
		height: 8px;
		background: #e5e5e5;
		border-radius: 4px;
		transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	}

	.slider-indicators .indicator.active {
		width: 24px;
		background: var(--main);
	}

	.swipe-hint {
		position: absolute;
		right: 15px;
		bottom: 50px;
		display: flex;
		align-items: center;
		gap: 5px;
		background: rgba(255, 255, 255, 0.85);
		padding: 5px 12px;
		border-radius: 20px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		pointer-events: none;
		transition: opacity 0.5s ease;
		z-index: 10;
		animation: swipeHintAnim 2s infinite ease-in-out;
		color: var(--main);
		font-family: "Nunito", sans-serif;
	}

	.swipe-hint.hidden {
		opacity: 0;
	}

	.swipe-hint span {
		font-size: 11px;
		font-weight: 700;
	}

	.swipe-hint .swipe-icon {
		width: 16px;
		height: 16px;
		position: relative;
	}

	.swipe-hint .swipe-icon::before {
		content: '→';
		position: absolute;
		top: -4px;
		left: 0;
		font-size: 16px;
		font-weight: bold;
	}

	@keyframes swipeHintAnim {

		0%,
		100% {
			transform: translateX(0);
		}

		50% {
			transform: translateX(-5px);
		}
	}

	.image-holder {
		overflow: clip;
		overflow-clip-margin: 11px;
		position: relative;
		right: -10px;
	}

	.image-holder .images .image {
		height: auto !important;
	}

	.detail .images .image {
		width: 90% !important;
		min-width: 90% !important;
		max-width: 90% !important;
		display: inline-block;
		scroll-snap-align: center;
	}

	.sec-right .box,
	.sec-left .box {
		padding: 20px;
		padding-top: 0;
	}

	.sec-right {
		padding: 0 !important;
	}

	.detail .button {
		font-size: 16px;
	}

	.col-l,
	.col-r {
		padding: 0;
	}

	.box ul li {
		list-style: none;
	}

	.box ul {
		text-align: left;
	}

	.col,
	.col--w100p .input {
		width: 100% !important;
		padding: 0 !important;
	}

	.custom-image,
	.custom-text {
		width: 100% !important;
	}

	.custom-image {
		margin-top: 0 !important;
	}

	.section-about video {
		margin-bottom: 20px;
	}

	.section-about.mt-100 {
		margin-top: 20px !important;
	}

	.section-about.d-flex {
		display: flex;
		text-align: center;
		flex-direction: column;
	}

	.section-about .sec-image.sec-left,
	.section-about .sec-image.sec-right {
		border-radius: 0 !important;
		order: 1;
		margin-bottom: 20px !important;
	}

	.section-about .sec-right:not(.sec-image),
	.section-about .sec-left:not(.sec-image) {
		border-radius: 0 !important;
		order: 2;
		margin-bottom: 0 !important;
	}

	.section-about.d-flex .sec-right {
		box-sizing: border-box;
		padding: 15px;
	}

	nav a::after {
		top: 4px;
		bottom: auto;
		height: 5px;
		width: 100%;
		left: 0;
	}

	/*
	.detail form {
		box-sizing: border-box;
		background: #fff;
		padding: 15px;
		position: sticky;
		top: 0;
		margin-left: -3%;
		width: 106%;
	}
	*/

	header {
		padding-bottom: 10px !important;
		padding-top: 10px !important;
		border-bottom-left-radius: 25px !important;
		border-bottom-right-radius: 25px !important;
	}

	footer ul {
		margin-bottom: 30px;
	}

	.main-image {
		margin-top: 20px;
	}

	.menu a {
		display: inline-block;
	}

	.banner {
		background-attachment: scroll;
	}

	.column {
		padding: 4px;
	}

	.row {
		width: calc(100% + 8px);
		margin-left: -4px;
		flex-flow: column;
	}

	.product {
		margin: 0;
	}

	.category .image {
		height: 140px;
	}

	.sec-left,
	.sec-right {
		width: 100%;
		padding: 0;
	}

	.sec-left {
		margin-bottom: 20px;
	}

	.hp-products .column {
		width: 100%;
	}

	.product p {
		font-size: 15px;
		line-height: 1.3;
		letter-spacing: normal;
	}

	.product h2 {
		font-size: 19px;
	}

	.hp-products .h2 {
		text-align: center;
		font-size: 24px;
	}

	.detail .desc {
		margin-top: 50px;
	}

	.image-holder,
	.detail .desc,
	.basket-order,
	.basket-items {
		width: 100%;
	}

	.basket-order {
		margin-top: 30px;
	}

	.main-image {
		height: 300px;
		background-size: contain;
	}

	.flex-name h1 {
		font-size: 28px;
		padding-right: 15px;
	}

	.image-holder .thumbs .image {
		float: left;
	}

	html {
		scroll-padding-top: 70px;
	}

	header {
		padding-bottom: 0;
	}

	nav a::after {
		bottom: 0;
	}

	.banner {
		height: 80vh;
	}
}

@media (max-width: 1100px) {
	.banner {
		background-attachment: scroll;
	}
}

.d-flex {
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.custom-design {
	display: block;
	width: 100%;
	padding-bottom: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-design a {
	color: rgba(0, 0, 0, 0.35);
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.detail .custom-design {
	margin: 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	text-align: center;
	line-height: 1;
}

.note-custom textarea {
	height: 200px;
}

.alert {
	background: #def7ec;
	border: 1px solid #b2f5d8;
	color: #046c4e;
	padding: 13px;
	display: inline-block;
	border-radius: 5px 15px 5px 15px;
}

.custom-image {
	width: 48%;
	float: left;
}

.custom-text {
	width: 50%;
	float: right;
}

.f-dir-row {
	flex-direction: row;
}

.dz-details,
.dz-error-message,
.dz-success-mark,
.dz-error-mark {
	display: none !important;
}

.dz-upload {
	display: block;
	height: 3px;
	background: #fff;
	border-radius: 6px;
}

#dropzone {
	display: flex;
	width: 220px;
	height: 100px !important;
	min-height: 100px !important;
	flex-wrap: wrap;
	float: left;
	gap: 15px;
	margin: 0 !important;
	margin-bottom: 30px !important;
	margin-right: 30px !important;
	box-sizing: border-box !important;
	text-align: center;
}

.dz-success .dz-success-mark {
	display: block !important;
	position: absolute;
	top: 31px;
	left: 0;
	right: 0;
}

.dz-image img {
	border-radius: 10px;
}

.dz-preview {
	position: relative;
}

.dz-default {
	width: 100%;
}


.sortable-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dropzone .dz-preview {
	cursor: grab;
}

.dz-image-preview {
	display: flex;
}

.dz-image,
.dz-image img {
	max-width: 100px !important;
	height: 100px !important;
	object-fit: cover;
	cursor: grab;
}

.dz-remove-btn {
	position: absolute;
	top: -10px;
	right: -10px;
	background-color: red;
	color: white;
	border: none;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	cursor: pointer;
	z-index: 10;
}

.dz-remove-btn:hover {
	background-color: darkred;
}

.dz-preview {
	position: relative;
}

.bundle {
	width: 100%;
	float: left;
	margin-top: 20px;
	margin-bottom: 20px;
}

.bundle .link-bundle {
	width: 100%;
	font-size: 16px;
	margin-bottom: 10px;
	display: flex;
	padding: 15px 60px;
	padding-right: 15px;
	position: relative;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0px 12px 16px -4px #00000014;
	border-radius: 10px;
	box-sizing: border-box;
	cursor: pointer;
	justify-content: space-between;
	text-decoration: none;
	color: #000;
}

.preview-video {
	width: 100%;
	border-radius: 25px 50px 25px 50px;
}

.message {
	background: #D3EE98;
	color: #4a8f4f;
	border-color: #72BF78;
}

.bundle .link-bundle .discount-tag {
	color: #72BF78;
	display: block;
	position: relative;
	border-radius: 10px;
}

.bundle legend {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	text-align: center;
	font-size: 18px;
}

.info-bundle {
	color: #000;
}

.info-bundle strong,
.price-bundle strong {
	color: #000;
	display: inline-block;
}

.price-bundle small {
	text-decoration: line-through;
	float: right;
}

.price-bundle strong {
	color: var(--main);
	width: 80px;
	display: block;
	text-align: right;
}

.bundle .link-bundle:before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border: 2px solid #bcbcbc;
	border-radius: 50px;
	left: 20px;
	top: 15px;
	z-index: 1;
}

.bundle .link-bundle.active:before {
	background: var(--main);
	border: 2px solid #fff;
}

.bundle .link-bundle.active {
	background-color: rgba(175, 209, 54, 1);
	box-shadow: 0 10px 20px rgba(175, 209, 54, 0.3);
}

.bundle .link-bundle.active .discount-tag {
	color: #fff;
}

.qty-holder {
	width: 80px;
	display: flex;
	gap: 5px;
}

.qty-btn {
	height: 25px;
	min-height: 25px;
	width: 25px;
	min-width: 25px;
	display: block;
	border-radius: 100%;
	border: 0;
	background: transparent;
	color: #000;
	transition: .3s all ease-in-out;
	cursor: pointer;
}

.qty-btn:hover {
	background: var(--main);
	color: #fff;
	border-color: var(--main);
}

.qty-btns {
	gap: 7.5px;
	display: flex;
	flex-flow: column;
}

.section-about a:not(.button) {
	color: var(--main);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.section-about label {
	display: inline-block;
	width: 60px;
	text-align: left;
	color: #000;
	font-weight: bold;
	opacity: 1;
}

.comma {
	display: inline-block;
	padding: 20px;
	padding-left: 40px;
	font-size: 48px;
	background: url('../img/comma.svg') no-repeat left -15px / contain;
}

.colors {
	width: 100%;
	list-style: none;
	display: flex;
	padding: 0;
	gap: 10px;
}

.color {
	width: 36px;
	height: 36px;
	border-radius: 100%;
	display: block;
	cursor: pointer;
	border: 3px solid transparent;
	box-shadow: inset 0 -3px 10px rgba(0, 0, 0, .2);
}

.color.active {
	outline: 2.5px solid var(--main);
}

.color--white {
	background: #f4f4f4;
}

.color--black {
	background: #424242;
}

.color--red {
	background: #ba3333;
}

.selector-group {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.selector-group-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.selector {
	display: flex;
	width: 50%;
	border: 1.5px solid rgba(0, 0, 0, 0.3);
	border-radius: 15px;
	overflow: hidden;
	padding: 10px;
	cursor: pointer;
	box-sizing: border-box;
	gap: 20px;
	line-height: 1.3;
	align-items: center;
	font-size: 14px;
}

.selector-group-grid .selector {
	width: 100%;
}

.selector.active {
	outline: 2.5px solid var(--main);
}

.selector img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	object-position: center;
	border-radius: 100%;
}

.error {
	position: relative;
}

.error:before {
	position: absolute;
	content: '';
	width: calc(100% + 20px);
	left: -10px;
	top: -10px;
	border-radius: 20px;
	border: 2px solid #f72727;
	height: calc(100% + 20px);
	pointer-events: none;
}

.additives {
	width: 100%;
	display: block;
	white-space: normal;
	float: left;
}

.additives span {
	display: inline-block;
	font-size: 13px;
	padding: 6px;
	background: #e8e8e8;
	border-radius: 7px;
	margin-top: 5px;
}

@media (max-width: 440px) {
	.selector img {
		width: 35px;
		height: 35px;
	}
}

.marquee-section {
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.marquee-container {
	display: flex;
	white-space: nowrap;
	position: relative;
	width: 100%;
}

.marquee-content {
	display: flex;
	align-items: center;
	animation: scroll-left 20s linear infinite;
	will-change: transform;
}

/* Vytvoříme více kopií pro plynulé scrollování */
.marquee-item {
	display: inline-flex;
	align-items: center;
	padding: 0 40px;
	font-size: 40px;
	color: #000;
	position: relative;
}

/* Tečka mezi položkami */
.marquee-item::after {
	content: '•';
	margin-left: 80px;
	font-size: 40px;
	opacity: 0.3;
	color: var(--main);
}

.marquee-item:last-child::after {
	content: '';
}

/* Podtržení efekt */
.highlighted-text {
	position: relative;
	display: inline-block;
}

.underline-svg {
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 30px;
	pointer-events: none;
}

.underline-svg path {
	stroke: var(--green);
	stroke-width: 8;
	fill: none;
	stroke-linecap: round;
	animation: draw-underline 2s ease-in-out infinite alternate;
}

/* Animace scrollování */
@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* Animace podtržení */
@keyframes draw-underline {
	0% {
		stroke-dasharray: 0 1;
	}

	100% {
		stroke-dasharray: 1 0;
	}
}

/* Hover efekt - pozastavení animace */
.marquee-container:hover .marquee-content {
	animation-play-state: paused;
}

/* Responsivní velikosti */
@media (max-width: 1200px) {
	.marquee-item {
		font-size: 50px;
	}
}

@media (max-width: 768px) {
	.marquee-item {
		font-size: 35px;
		padding: 0 20px;
	}

	.marquee-item::after {
		margin-left: 20px;
		font-size: 25px;
	}
}

@media (max-width: 480px) {
	.marquee-item {
		font-size: 25px;
	}
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 1.5rem;
}

.social-links a {
	color: var(--text-white);
	transition: all 0.3s ease;
	opacity: 0.6;
}

.social-links a:hover {
	color: var(--accent);
	opacity: 1;
	transform: translateY(-3px);
}

.social-container {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto auto;
	gap: 10px;
	width: fit-content;
	align-items: start;
}

.social-button:nth-child(1) {
	grid-column: 1;
	grid-row: 1;
}

.social-button:nth-child(2) {
	grid-column: 1;
	grid-row: 2;
	max-width: 85px;
	position: relative;
	left: 21px;
}

.social-button:nth-child(3) {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	top: 25px;
	left: -9px;
}

.social-button {
	background: var(--green);
	border: none;
	padding: 10px 20px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
	text-decoration: none;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-button:hover {
	background: var(--main);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-button:active {
	transform: translateY(0);
}

.social-icon {
	width: 24px;
	height: 24px;
	fill: #fff;
}

.social-text {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {
	.social-container {
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		width: 100%;
	}

	.social-button:nth-child(1),
	.social-button:nth-child(2),
	.social-button:nth-child(3) {
		grid-column: 1;
		justify-self: center;
	}

	.social-button:nth-child(1) {
		grid-row: 1;
	}

	.social-button:nth-child(2) {
		grid-row: 2;
		left: auto;
	}

	.social-button:nth-child(3) {
		grid-row: 3;
		top: auto;
		left: auto;
	}

	#footer .wrapper.d-flex {
		display: block !important;
	}

	.drobeckova {
		margin-top: 20px;
	}
}

/* new */

:root {
	--color-primary: #232323;
	/* Moss */
	--color-accent: #76a53a;
	/* Clay */
	--color-cream: #f8fafc;
	/* Cream */
	--color-dark: #1a1a1a;
	--radius-lg: 2rem;
	--radius-xl: 3rem;
	--font-main: "Nunito", sans-serif;
	--ease-magnetic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base resets & global styles matching the luxury aesthetic */
body,
html {
	background-color: var(--color-cream) !important;
	color: var(--color-primary);
	font-family: var(--font-main);
	overflow-x: hidden;
}

/* NOISE OVERLAY */
.noise-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.05;
}

/* TYPOGRAPHY */
.banger-hp h1,
.banger-hp h2,
.banger-hp h3,
.banger-hp h4,
.hero-fixed h1 {
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	font-family: var(--font-main);
}

.hero-fixed .title-xl {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.banger-hp .title-lg {
	font-size: clamp(2rem, 4vw, 3rem);
}

.banger-hp .text-lg,
.hero-fixed .text-lg {
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.6;
	font-weight: 600;
	opacity: 0.85;
}

/* LAYOUT & UTILS */
.banger-hp {
	max-width: 100vw;
	margin: 100vh auto 0 auto;
	/* Overlaps fixed hero */
	position: relative;
	z-index: 10;
	background: var(--color-cream);
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.15);
	padding-bottom: 2rem;
	/* Substantial padding to hide banner gap behind the curved footer */
}

.banger-hp-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 5%;
}

.banger-hp .section {
	padding: 4rem 0;
	position: relative;
}

/* MAGNETIC BUTTON */
.btn-magnetic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem 3rem;
	border-radius: 50px;
	background-color: var(--color-primary);
	color: var(--color-cream);
	text-decoration: none;
	font-weight: 800;
	font-size: 1.2rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s var(--ease-magnetic), color 0.4s ease;
	border: none;
	cursor: pointer;
	z-index: 10;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	will-change: transform;
}

.btn-magnetic span.bg {
	position: absolute;
	top: 100%;
	left: 0;
	width: 110%;
	height: 110%;
	background-color: var(--color-accent);
	transition: transform 0.4s var(--ease-magnetic);
	z-index: -1;
	border-radius: 50%;
}

.btn-magnetic:hover {
	transform: scale(1.03);
	color: var(--color-primary);
}

.btn-magnetic:hover span.bg {
	transform: translateY(-100%);
	border-radius: 0;
}

/* INTERACTIVE LINKS */
.link-lift {
	display: inline-block;
	transition: transform 0.3s var(--ease-magnetic);
}

.link-lift:hover {
	transform: translateY(-2px);
}

/* FIXED HERO SECTION */
.hero-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-fixed::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(70, 35, 101, 0.5);
	/* Moss color overlay */
	z-index: -1;

	display: none;
}

.hero-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	object-fit: cover;
	z-index: -2;
}

.hero-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	max-width: 900px;
	z-index: 2;
	padding: 0 5%;
}

.hero-label {
	background: #e7b903;
	color: #fff;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.85rem;
	display: inline-block;
}

/* PROCESS SECTION */
.process-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}

@media(min-width: 992px) {
	.process-grid {
		grid-template-columns: 1fr 1fr;
		gap: 8rem;
		align-items: center;
	}

	.process-item-reverse .process-content {
		order: -1;
	}
}

.process-image-wrap {
	border-radius: var(--radius-xl);
	overflow: hidden;
	height: 60vh;
	position: relative;
}

.process-image-wrap img,
.process-image-wrap video {
	width: 100%;
	height: 120%;
	object-fit: cover;
	filter: saturate(1.2);
}

.process-content {
	display: flex;
	flex-direction: column;
	gap: 3px;
	align-items: flex-start;
}

/* LAB AESTHETIC CARDS */
.info-card {
	background: white;
	border-radius: var(--radius-xl);
	padding: 5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(70, 35, 101, 0.05);
}

.info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 100%;
	background: var(--color-accent);
}

/* PRODUCT LISTING TWEAKS */
.banger-products-wrapper {
	background: transparent;
	/* Light backdrop inside banger-hp-inner */
	color: var(--color-primary);
	padding: 2rem 0 0 0;
	margin: 0rem 0;
	margin-bottom: 100px;
}

.banger-products-wrapper h2 {
	color: var(--color-primary);
}

.banger-products-wrapper .product {
	/* Subtle magnetic lift inherited for cards */
	transition: transform 0.4s var(--ease-magnetic), box-shadow 0.4s var(--ease-magnetic);
	border-radius: var(--radius-lg);
	background: white;
	overflow: hidden;
}

.banger-products-wrapper .row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 3rem;
}

.banger-products-wrapper a {
	text-decoration: none;
	color: inherit;
}

#footer {
	background-color: var(--color-primary, #462365) !important;
	color: var(--color-cream, #f8fafc) !important;
	font-family: var(--font-main, "Nunito", sans-serif);
	padding: 6rem 0 3rem 0;
	position: relative;
	z-index: 20;
	margin-top: -3rem;
	/* overlap curved top if needed */
	border-radius: var(--radius-xl, 3rem) var(--radius-xl, 3rem) 0 0;
}

#triangle {
	display: none !important;
	/* Hide old geometric triangle */
}

#footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer ul .title {
	font-weight: 900;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-accent, #afd136);
}

#footer ul li {
	margin-bottom: 0.8rem;
}

#footer a:not(.social-button) {
	color: var(--color-cream, #f8fafc) !important;
	opacity: 0.8;
	text-decoration: none;
	transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
	display: inline-block;
	font-weight: 600;
}

#footer a:not(.social-button):hover {
	opacity: 1;
	color: var(--color-accent, #afd136) !important;
	transform: translateX(4px);
}

/* User specifically liked the social buttons, so we keep their internal structure while letting them blend smoothly */
#footer .wrapper>p {
	text-align: center;
	opacity: 0.5;
	font-size: 0.85rem;
	margin-top: 4rem;
	border-top: 1px solid rgba(248, 250, 252, 0.1);
	padding-top: 2rem;
}

#footer .wrapper>p a {
	color: var(--color-cream, #f8fafc) !important;
	font-weight: 800;
}

header {
	border-bottom-left-radius: 35px;
	border-bottom-right-radius: 35px;
	border: 0;
}

header .menu a {
	color: var(--green) !important;
	font-weight: 800 !important;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	position: relative;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

header .menu a:hover,
header .menu a.active {
	transform: translateY(-2px);
	color: var(--main) !important;
}

header .basket {
	background: var(--sec) !important;
	color: #232323 !important;
	border-radius: 50px !important;
	padding: 0.6rem 1.5rem !important;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease !important;
}

header .basket:hover {
	transform: scale(1.03) !important;
	background: #afd136 !important;
}

header .basket:hover * {
	color: #462365 !important;
}

header .basket * {
	color: #232323 !important;
	transition: color 0.4s ease;
}

.title-lg {
	margin-top: 10px;
	margin-bottom: 0;
}

/* BURGER MENU (CINEMATIC) */
.burger-menu {
	display: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--color-primary, #462365);
	border: none;
	position: relative;
	cursor: pointer;
	z-index: 10000;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s;
	margin-left: auto;
	margin-right: 15px !important;
	/* space between burger and basket */
}

.burger-menu span {
	position: absolute;
	left: 50%;
	width: 20px;
	height: 2px;
	background: var(--color-cream, #f8fafc);
	transform: translateX(-50%);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border-radius: 1px;
}

.burger-menu span:nth-child(1) {
	top: 18px;
}

.burger-menu span:nth-child(2) {
	top: 25px;
}

.burger-menu:hover {
	transform: scale(1.05);
}

.burger-menu.active {
	background: var(--color-accent, #afd136);
}

.burger-menu.active span {
	background: var(--color-primary, #462365);
}

.burger-menu.active span:nth-child(1) {
	top: 21px;
	transform: translateX(-50%) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
	top: 21px;
	transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 991px) {
	.burger-menu {
		display: block;
		margin: 0 !important;
		margin-right: 15px !important;
	}

	.banger-hp .section {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	header .wrapper-header {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		position: relative;
		z-index: 9999;
	}

	.logo {
		z-index: 10000;
		position: relative;
	}

	.basket {
		z-index: 10000;
		position: relative;
		margin: 0 !important;
		top: 0 !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
	}

	/* Override old mobile menu */
	header nav#navMenu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw !important;
		height: 100vh !important;
		background: var(--main) !important;
		backdrop-filter: blur(25px);
		-webkit-backdrop-filter: blur(25px);
		display: flex !important;
		flex-direction: column;
		justify-content: start;
		align-items: center;
		z-index: 9998;
		clip-path: circle(0px at calc(100% - 215px) 20px);
		transition: clip-path 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		white-space: normal !important;
		padding-top: 80px !important;
	}

	header nav#navMenu.active {
		clip-path: circle(55vh at calc(100% - 215px) 20px);
	}

	header nav#navMenu a {
		font-size: 19px !important;
		margin: 8px 0 !important;
		opacity: 0;
		transform: translateY(30px);
		transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	}

	header nav#navMenu.active a {
		opacity: 1;
		transform: translateY(0);
	}

	header nav#navMenu.active a:nth-child(1) {
		transition-delay: 0.15s !important;
	}

	header nav#navMenu.active a:nth-child(2) {
		transition-delay: 0.25s !important;
	}

	header nav#navMenu.active a:nth-child(3) {
		transition-delay: 0.35s !important;
	}

	header nav#navMenu.active a:nth-child(4) {
		transition-delay: 0.45s !important;
	}

	header nav#navMenu.active a:nth-child(5) {
		transition-delay: 0.55s !important;
	}

	body.menu-open {
		overflow: hidden !important;
	}
}

.completion-container {
	margin-bottom: 120px !important;
}

.completion-header {
	margin-top: 100px;
}

.completion-footer {
	margin-bottom: 50px;
}

#reviews-body {
	margin-bottom: 50px;
}

.process-content .box h2 {
	font-size: 31px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
}

.process-content .box p {
	font-size: 18px;
	line-height: 1.7;
	color: var(--color-primary);
	opacity: 0.85;
}

.other-pages .main {
	padding: 80px 0;
}

.banger-faq *,
.banger-faq *::before,
.banger-faq *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.banger-faq {
	width: 100%;
	background: #fff;
	padding: 40px;
	border-radius: 25px;
	border: 1px solid rgba(0, 0, 0, .07);
	box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08);
	margin-top: 5rem;
}

@media (max-width: 768px) {
	.banger-faq {
		padding: 20px;
		box-sizing: border-box;
	}
}

.banger-faq {
	box-sizing: border-box;
}

.banger-faq__head {
	margin-bottom: 40px;
	text-align: center;
}

.banger-faq__label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--sec);
	margin-bottom: 12px;
	font-weight: bold;
}

.banger-faq__title {
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--main);
}

/* ─── Skupina otázek ─────────────────────────────────────────────── */
.banger-faq__group {
	margin-bottom: 40px;
}

.banger-faq__category {
	font-size: 13px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sec);
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-light);
	margin-bottom: 0;
	font-weight: bold;
}

/* ─── Položka ────────────────────────────────────────────────────── */
.banger-faq__item {
	border-bottom: 1px solid var(--border-light);
}

/* ─── Otázka (button) ────────────────────────────────────────────── */
.banger-faq__q {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 20px 0;
	text-align: left;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--text-main);
	transition: color 0.2s;
	line-height: 1.4;
}

.banger-faq__q:hover {
	color: var(--main);
}

/* ─── Ikona +/× ──────────────────────────────────────────────────── */
.banger-faq__icon {
	flex-shrink: 0;
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(70, 35, 101, 0.2);
	border-radius: 50%;
	transition: border-color 0.2s, transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* horizontální čára */
.banger-faq__icon::before,
.banger-faq__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--main);
	border-radius: 1px;
	transform-origin: center;
	transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), opacity 0.3s;
}

.banger-faq__icon::before {
	width: 8px;
	height: 1px;
	transform: translate(-50%, -50%);
}

/* vertikální čára */
.banger-faq__icon::after {
	width: 1px;
	height: 8px;
	transform: translate(-50%, -50%);
}

/* Otevřený stav — vertikální čára zmizí, ikona se pootočí */
.banger-faq__item--open .banger-faq__icon {
	border-color: var(--main);
	transform: rotate(45deg);
}

.banger-faq__q:hover .banger-faq__icon {
	border-color: var(--main);
}

/* ─── Odpověď ────────────────────────────────────────────────────── */
.banger-faq__a {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.35s cubic-bezier(.4, 0, .2, 1), opacity 0.25s ease, padding 0.3s ease;
	padding-bottom: 0;
}

/* Aktivní stav přidán přes JS */
.banger-faq__item--open .banger-faq__a,
.banger-faq__a.banger-faq__item--open {
	opacity: 1;
	padding-bottom: 20px;
}

.banger-faq__a[hidden] {
	display: block !important;
	/* přepíšeme hidden kvůli animaci; viditelnost řídí JS */
}

.banger-faq__a p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--text-muted);
}

.banger-faq__a a {
	color: var(--main);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.banger-faq__item--open p {
	margin-bottom: 15px;
	margin-top: 15px;
}

@media (min-width: 1024px) {


	.wrapper-header {
		width: calc(100% - 40px);
	}

	.other-pages header {
		width: 100%;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		top: 0;
	}
}