.noi-home .giftcard-link,
.noi-home .locator-link,
.noi-home .business-link,
.noi-home .naturallife-link,
.noi-home .show-link {
	display: block;
	text-decoration: none;
	color: inherit;
	width: 100%;
	max-width: 1400px;
}

.noi-home .giftcard-link:hover,
.noi-home .locator-link:hover,
.noi-home .business-link:hover,
.noi-home .naturallife-link:hover,
.noi-home .show-link:hover {
	text-decoration: none !important;
}

.noi-home {
	align-items: center;
	background-color: var(--background-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: min(1400px, 100vw);
	margin: auto;
}

/* Wrappers */

.noi-home .wrapper {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 50px 0;
	width: 100%;
}

.noi-home .wrapper-nomargin {
	margin: 0 !important;
}

.noi-home .wrapper h1 {
	color: var(--primary-color);
	font-size: 6rem;
	font-weight: bold;
	grid-area: title;
	line-height: 1;
	margin: 0;
	margin-bottom: 5rem;
	text-align: center;
	text-transform: uppercase;
	max-width: 1400px;
}

.noi-home .wrapper h2 {
	color: var(--font-color);
	font-size: 4rem;
	font-weight: bold;
	grid-area: title;
	line-height: 1;
	margin: 0;
	margin-bottom: 2rem;
	text-align: left;
	text-transform: uppercase;
}

.noi-home .wrapper .gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1400px;
	width: 100%;
	min-height: 500px;
}

.noi-home .wrapper .gallery img {
	border: 5px solid var(--background-color);
	height: 250px;
	object-fit: cover;
	width: auto;
	cursor: pointer;
}

/* Bestsellers layout, jeśli będzie potrzebny */

.noi-home .bestsellers {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	width: 100%;
}

.noi-home .bestsellers .cms-section-default {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1400px;
	width: 100%;
	min-height: 500px;
}

.noi-home .bestsellers .cms-section-default .cms-block {
	border: 5px solid var(--background-color);
	height: 250px;
	object-fit: cover;
	width: auto;
	cursor: pointer;
}

.noi-home .bestsellers .cms-section-default .cms-block img {
	height: 250px;
	object-fit: cover;
	width: auto;
}

.noi-home .bestsellers .products-section-title {
	display: none;
}

/* Image slider */

.noi-home .slider-container {
	align-items: center;
	display: flex;
	max-width: 1400px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.noi-home .slider {
	display: flex;
	overflow-x: scroll;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.noi-home .slider::-webkit-scrollbar {
	display: none;
}

.noi-home .slide {
	margin: 10px;
	min-height: 300px;
	min-width: 300px;
	user-select: none;
}

.noi-home .slide img {
	border-radius: 10px;
	height: 300px;
	object-fit: cover;
	width: 100%;
}

.noi-home .slide p {
	color: var(--font-color);
	font-size: 20px;
	margin: 10px 0;
	text-align: center;
	text-transform: uppercase;
}

.noi-home .slide a {
	text-decoration: none;
}

.noi-home .arrow {
	background-color: var(--arrow-bg-color);
	border-radius: 50%;
	cursor: pointer;
	font-size: 40px;
	height: 50px;
	line-height: 50px;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	user-select: none;
	width: 50px;
	z-index: 2;
}

.noi-home .arrow.left {
	left: 10px;
}

.noi-home .arrow.right {
	right: 10px;
}

/* Giftcard */

.noi-home .giftcard-container {
	display: grid;
	grid-auto-rows: auto;
	grid-template-areas:
		". image"
		"title image"
		"desc  image";
	grid-template-columns: 1fr minmax(300px, 600px);
	gap: 20px;
	max-width: 1400px;
	overflow: hidden;
	padding: 20px 10px 20px 30px;
	width: 100%;
	background-color: var(--creme-color);
	border-radius: 10px;
}

.noi-home .giftcard-container h2 {
	color: var(--primary-color);
	font-size: 7rem;
	font-weight: bold;
	grid-area: title;
	line-height: 0.8;
	margin-bottom: 0;
	text-align: left;
	text-transform: uppercase;
}

.noi-home .giftcard-container p {
	color: var(--font-color);
	font-size: 2rem;
	line-height: 2rem;
	grid-area: desc;
	margin-top: 0;
}

.noi-home .giftcard-container img {
	border-radius: 10px;
	grid-area: image;
	height: auto;
	max-width: 600px;
	width: 100%;
}

/* FAQ */

.noi-home .faq-container {
	align-items: center;
	background-color: var(--grey-color);
	display: flex;
	justify-content: space-between;
	max-width: 1400px;
	padding: 10px 30px;
	width: 100%;
	border-radius: 10px;
}

.noi-home .faq-left h2 {
	color: var(--font-color);
	font-size: 3rem;
	font-weight: bold;
	grid-area: title;
	line-height: 1;
	margin: 0;
	text-align: left;
	text-transform: uppercase;
}

.noi-home .faq-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
}

.noi-home .faq-item {
	border-bottom: 4px solid var(--font-color);
	cursor: pointer;
	margin-bottom: 10px;
	padding-top: 10px;
	transition: background-color 0.3s ease;
}

.noi-home .faq-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.noi-home .faq-item .arrow-icon {
	font-size: 2rem;
	display: inline-block;
	transform: rotate(0deg);
	transition: transform 0.3s ease;
}

.noi-home .faq-item.expanded .arrow-icon {
	transform: rotate(90deg) !important;
}

.noi-home .faq-item h3 {
	width: 75%;
}

.noi-home .faq-item p {
	height: 0;
	margin: 0;
	overflow: hidden;
	transition: height 0.5s ease, margin-bottom 0.5s ease;
	width: 90%;
}

/* Business */

.noi-home .business-container {
	align-items: center;
	background-color: var(--grey-color);
	display: flex;
	justify-content: center;
	max-width: 1400px;
	padding: 10px 30px;
	width: 100%;
	border-radius: 10px;
}

.noi-home .business-container h2 {
	color: var(--font-color);
	font-size: 7rem;
	font-weight: bold;
	line-height: 0.8;
	margin: 0;
	text-align: left;
	text-transform: uppercase;
}

.noi-home .business-container .business-login-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
}

.noi-home .business-flag-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.noi-home .business-flag-container .business-link {
	width: auto;
	margin: 5px 20px;
}

.noi-home .business-flag-container img {
	border-radius: 100px;
	height: 50px;
	width: 50px;
	object-fit: cover;
}

.noi-home .business-container p {
	color: var(--font-color);
	font-size: 1.5rem;
	line-height: 1.5rem;
	text-align: center;
	width: 50%;
}

.noi-home .business-container .business-login-icon {
	border-radius: 10px;
	height: auto;
	max-width: 200px;
	width: 100%;
}

/* Natural Life */

.noi-home .naturallife-container {
	align-items: center;
	background-color: var(--lightblue-color);
	display: flex;
	justify-content: space-between;
	padding: 30px;
	width: 100%;
	border-radius: 10px;
	max-width: 1400px;
}

.noi-home .naturallife-container img {
	border-radius: 10px;
	height: auto;
	width: 35%;
}

.noi-home .naturallife-logo-container {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 60%;
	height: 100%;
}

.noi-home .naturallife-logo-container img {
	border-radius: 10px;
	margin: 20px 0;
	width: 100%;
}

.noi-home .naturallife-logo-container p {
	color: var(--font-color);
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	margin: 0;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
}

.noi-home .naturallife-logo-container button {
	align-self: flex-start;
	border-radius: 10px;
	padding: 12px 24px;
	min-width: 200px;
	font-size: 1.8rem;
	line-height: 1.8rem;
	color: var(--secondary-color);
	background-color: #fd2636;
	border: 3px solid #fd2636;
	cursor: pointer;
	text-transform: uppercase;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.noi-home .naturallife-logo-container button:hover {
	background-color: var(--lightblue-color);
	color: #fd2636;
}

/* Welcome slider */

.noi-home .welcome-slider {
	background: linear-gradient(to bottom, var(--lightblue-color) 0%, var(--lightblue-color) 50%, var(--pink-color) 50%, var(--pink-color) 100%);
	max-width: 1400px;
	overflow: hidden;
	padding: 10px 0;
	width: 100%;
	border-radius: 10px;
}

.noi-home .slider-track {
	animation: marquee 10s linear infinite;
	display: flex;
}

.noi-home .slider-content {
	display: flex;
}

.noi-home .slider-content span {
	font-size: 2rem;
	margin-right: 2rem;
	white-space: nowrap;
	color: var(--primary-color);
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-130%);
	}
}

/* Shows */

.noi-home .shows-container {
	align-items: flex-start;
	background-color: var(--lightpink-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 1320px !important;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 20px 30px;
	width: 100%;
	border-radius: 10px;
}

.noi-home .shows-container section,
.noi-home .shows-container .col-12 {
	padding: 0 !important;
}

.noi-home .shows-container h2 {
	color: var(--primary-color);
	font-size: 7rem;
	font-weight: bold;
	line-height: 0.8;
	margin-bottom: 0;
	text-align: left;
	text-transform: uppercase;
}

.noi-home .shows-container h3 {
	color: var(--font-color);
	font-size: 3rem;
	font-weight: bold;
	margin: 0;
	text-transform: uppercase;
}

.noi-home .shows-content {
	align-items: flex-start;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
}

.noi-home .shows-content a {
	margin: 10px;
}

.noi-home .shows-content .col-md-3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	width: 100%;
	border-radius: 10px;
}

.noi-home .col-md-3 img {
	border-radius: 10px 10px 0 0;
	object-fit: cover;
	width: 100%;
}

.noi-home .col-md-3 p {
	color: var(--font-color);
	font-size: 1.2rem;
	margin: 5px 0;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.noi-home .col-md-3 .pink {
	color: var(--primary-color);
	font-weight: bold;
}

/* Mobile */

@media screen and (max-width: 768px) {
	.noi-home .giftcard-link,
	.noi-home .locator-link,
	.noi-home .business-link,
	.noi-home .naturallife-link,
	.noi-home .show-link {
		max-width: 768px;
	}

	.noi-home .wrapper h1 {
		font-size: 3rem;
		max-width: 768px;
		padding-left: 10px;
	}

	.noi-home .wrapper h2 {
		font-size: 2.2rem;
		text-align: center;
	}

	.noi-home .bestsellers .cms-section-default .cms-block {
		height: 150px;
	}

	.noi-home .bestsellers .cms-section-default .cms-block img {
		height: 150px;
	}

	.noi-home .hide {
		display: none;
	}

	.noi-home .slide {
		min-height: 200px;
		min-width: 200px;
	}

	.noi-home .slide img {
		height: 200px;
	}

	.noi-home .giftcard-container {
		grid-template-areas:
			"image"
			"title"
			"desc";
		grid-template-columns: 100%;
		max-width: 768px;
		padding: 20px;
		text-align: center;
	}

	.noi-home .giftcard-container h2 {
		font-size: 3rem;
		width: 100%;
		text-align: center;
	}

	.noi-home .giftcard-container p {
		font-size: 1.5rem;
	}

	.noi-home .faq-container {
		align-items: center;
		background-color: var(--grey-color);
		display: flex;
		flex-direction: column;
		justify-content: center;
		max-width: 768px;
		padding: 30px 10px;
		width: 100%;
	}

	.noi-home .faq-left h2 {
		font-size: 2.2rem;
		text-align: center;
	}

	.noi-home .faq-right {
		width: 100%;
	}

	.noi-home .faq-item h3 {
		display: flex;
		align-items: center;
		cursor: pointer;
	}

	.noi-home .locator-hero h2 {
		font-size: 3rem;
	}

	.noi-home .locator-hero p {
		font-size: 1.5rem;
	}

	.noi-home .business-container {
		flex-direction: column;
		max-width: 768px;
		padding: 30px 10px;
	}

	.noi-home .business-container h2 {
		font-size: 3rem;
		text-align: center;
		margin-bottom: 20px;
	}

	.noi-home .business-container div {
		width: 100%;
	}

	.noi-home .business-container p {
		width: 100%;
	}

	.noi-home .naturallife-container {
		flex-direction: column;
		gap: 20px;
		max-width: 768px;
	}

	.noi-home .naturallife-container img {
		width: 100%;
	}

	.noi-home .naturallife-logo-container {
		width: 100%;
	}

	.noi-home .naturallife-logo-container img {
		width: 100%;
	}

	.noi-home .shows-container {
		max-width: 768px;
	}

	.noi-home .shows-container h2 {
		font-size: 4rem;
		text-align: center;
	}

	.noi-home .shows-container h3 {
		font-size: 2.2rem;
		margin-bottom: 20px;
		text-align: center;
	}

	.noi-home .shows-content {
		flex-wrap: wrap;
		gap: 20px;
	}

	.noi-home .shows-content .col-md-3 {
		margin: 0;
		margin-bottom: 3rem !important;
		width: 100%;
	}

	.noi-home .shows-content a {
		margin: auto;
		width: 100%;
	}

	.noi-home .col-md-3 img {
		border-radius: 10px;
	}

	.noi-home .col-md-3 p {
		font-size: 1.3rem;
	}
}
