/* Hero Giveaway Section - Start */
.hero-giveaway-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-giveaway-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 50%);
	z-index: 0;
}

.container-hero-giveaway {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - var(--header-height));
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.container-hero-giveaway .one-column {
	gap: 30px;
}

/* Заголовок */
.hero-title-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hero-main-title {
	font-family: var(--font-family-2);
	font-size: 120px;
	line-height: 110px;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
}

.hero-main-title .letter {
	display: inline-block;
	color: transparent;
	-webkit-text-stroke: 1px var(--white);
	text-stroke: 1px var(--white);
	animation: letterFillAppear 5s ease-in-out infinite;
}

.hero-main-title .space {
	display: inline-block;
	width: 30px;
}


@keyframes letterFillAppear {
	0%, 100% {
		color: transparent;
	}
	47%, 53% {
		color: var(--white);
	}
}


/* Група 1 - старт 0s */
.hero-main-title .letter:nth-child(1) { animation-delay: 0s; }
.hero-main-title .letter:nth-child(10) { animation-delay: 0.15s; }

/* Група 2 - старт 0.8s */
.hero-main-title .letter:nth-child(5) { animation-delay: 0.8s; }
.hero-main-title:nth-child(2) .letter:nth-child(2) { animation-delay: 0.95s; }

/* Група 3 - старт 1.6s */
.hero-main-title .letter:nth-child(3) { animation-delay: 1.6s; }


/* Група 4 - старт 2.4s */
.hero-main-title .letter:nth-child(2) { animation-delay: 2.4s; }
.hero-main-title .letter:nth-child(11) { animation-delay: 2.55s; }

/* Група 5 - старт 3.2s */
.hero-main-title .letter:nth-child(6) { animation-delay: 3.2s; }
.hero-main-title:nth-child(2) .letter:nth-child(4) { animation-delay: 3.35s; }

/* Група 6 - старт 4s */
.hero-main-title .letter:nth-child(8) { animation-delay: 4s; }
.hero-main-title:nth-child(2) .letter:nth-child(1) { animation-delay: 4.15s; }

.hero-main-title .letter:nth-child(4) { animation-delay: 0.4s; }
.hero-main-title .letter:nth-child(9) { animation-delay: 1.2s; }
.hero-main-title .letter:nth-child(12) { animation-delay: 2s; }
.hero-main-title:nth-child(2) .letter:nth-child(3) { animation-delay: 2.8s; }
.hero-main-title:nth-child(2) .letter:nth-child(5) { animation-delay: 3.6s; }


.hero-subtitle {
	margin-top: 20px;
	letter-spacing: 1px;
}

/* Інфо блок */
.hero-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.hero-info .sold-count {
	font-weight: 600;
	color: var(--primary);
}

/* CTA кнопка */
.hero-giveaway-section .btn {
	margin-top: 20px;
	min-width: 250px;
	background: rgb(255 215 0 / 80%);
}

/* Кнопка скролу */
.scroll-down {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border: 2px solid var(--white);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: scrollBounce 2s infinite;
}

.scroll-down:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.scroll-down img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.scroll-down:hover img {
	filter: var(--primary-filter-match);
}

@keyframes scrollBounce {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

.add-info {
	margin-top: -10px;
}
@media (min-width: 1280px) {
	.hero-giveaway-section ul {
		display: flex;
		flex-direction: row;
		gap: 20px;
	}
}
@media (max-width: 1480px) {
	.hero-giveaway-section {
		min-height: 700px;
	}
	.container-hero-giveaway {
		min-height: 700px;
	}
	.hero-main-title {
		font-size: 90px;
		line-height: 85px;
		letter-spacing: 4px;
	}
	.container-hero-giveaway .one-column {
		gap: 15px;
	}
	.hero-main-title .letter {
		-webkit-text-stroke: 1px var(--white);
		text-stroke: 1px var(--white);
	}

	.hero-main-title .space {
		width: 25px;
	}

	.hero-subtitle {
		letter-spacing: 1px;
	}
}

@media (max-width: 1279px) {
	.hero-giveaway-section {
		min-height: calc(100vh - 0px);
	}

	.container-hero-giveaway .one-column {
		gap: 20px;
	}

	.hero-main-title {
		font-size: 48px;
		line-height: 46px;
		letter-spacing: 2px;
	}

	.hero-main-title .letter {
		-webkit-text-stroke: 1px var(--white);
		text-stroke: 1px var(--white);
	}

	.hero-main-title .space {
		width: 12px;
	}

	.hero-subtitle {
		margin-top: 15px;
		letter-spacing: 1px;
	}

	.hero-info {
		margin-top: 15px;
	}

	.hero-giveaway-section .btn {
		margin-top: 15px;
		min-width: 200px;
	}

	.scroll-down {
		bottom: 30px;
		width: 40px;
		height: 40px;
	}

	.scroll-down img {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 768px) {
	.hero-giveaway-section {
		--this-background: url(/wp-content/themes/shop/img/main/new-main-mob.webp) !important;
		background-position: 30% 50%!important;
	}
	.hero-main-title {
		font-size: 11vw;
		line-height: 11vw;
	}

	.hero-main-title .space {
		width: 10px;
	}

	.scroll-down {
		bottom: 60px;
	}
	.container-hero-giveaway {
		min-height: calc(100vh - 0px);
	}

}
/* Hero Giveaway Section - End */

/* Statistics Section - Start */
.statistics-section {
	padding: 160px 0 80px 0;
}
.statistics-section .text-up-2 {
	font-weight: 500;
}
.container-statistics .one-column {
	margin-bottom: 40px;
}

.stats-number {
	font-family: var(--font-family-1);
	font-size: 80px;
	line-height: 90px;
	font-weight: 500;
	margin-bottom: 10px;
}

.stats-number.stats-number-1::after {
	content: '';
}
.stats-number.stats-number-2::after {
	content: '';
}
.stats-number.stats-number-3::after {
	content: '%';
}

@media (max-width: 1480px) {
	.stats-number {
		font-size: 70px;
		line-height: 80px;
	}
}

@media (max-width: 1279px) {
	.statistics-section {
		padding: 120px 0 60px 0;
	}
	.product-list.products.columns-4 {
		margin-top: 20px;
		max-width: 80%;
	}
	.container-statistics .one-column {
		margin-bottom: 30px;
	}

	.stats-number {
		font-size: 48px;
		line-height: 56px;
		margin-bottom: 0px;
		margin-top: 20px;
	}
}
/* Statistics Section - End */

section#products {
	padding: 80px 0;
}
@media (max-width: 1279px) {
	section#products {
		padding: 60px 0;
	}
}
/* Prizes Section - Start */
.prizes-section {
	padding: 80px 0;
}

.container-prizes {
	gap: 60px;
}

/* Заголовок з контурним ефектом */
.prizes-title {
	position: relative;
	margin-bottom: 40px;
}

.prizes-title::before {
	content: 'АВТОМОБІЛІ';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	color: transparent;
	-webkit-text-stroke: 0.5px var(--white);
	text-stroke: 0.5px var(--white);
	z-index: 0;
}

/* Зображення призів */
.prize-image {
	width: 100%;
	height: auto;
	max-width: 1000px;
	border-radius: var(--radius-medium);
	transition: transform 0.5s ease;
}
.prize-image.prize-image-lexus {
	max-width: 850px;
}
.prize-image:hover {
	transform: scale(1.05);
}

/* Контент призу */
.prize-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0 30px;
}

.prize-content .h2 {
	margin-bottom: 10px;
}

/* Відступи між призами */
.container-prizes > .col-60:first-of-type,
.container-prizes > .col-40:first-of-type {
	margin-bottom: 0;
}

@media (max-width: 1480px) {
	.prizes-section {
		padding: 80px 0;
	}

	.container-prizes {
		gap: 50px;
	}

	.prizes-title::before {
		top: -8px;
	}

	.prize-content {
		padding: 0 20px;
	}
	.prize-image.prize-image-lexus {
		max-width: 750px;
	}
}

@media (max-width: 1279px) {
	.prizes-section {
		padding: 60px 0;
	}

	.container-prizes {
		gap: var(--blocks-indent);
	}

	.prizes-title {
		margin-bottom: 30px;
	}

	.prizes-title::before {
		top: -6px;
		-webkit-text-stroke: 0.5px var(--white);
		text-stroke: 0.5px var(--white);
	}

	.prize-content {
		padding: 0;
		gap: 15px;
		margin-top: 20px;
	}

	.prize-content .h2 {
		margin-bottom: 5px;
	}

	.prize-image:hover {
		transform: scale(1);
	}
	.prize-image {
		max-width: 100%;
	}
	.prize-image.prize-image-lexus {
		max-width: 100%;
	}
	.col-pr-3 {
		order: 2;
	}
}
/* Prizes Section - End */

/* About Me Section - Start */
.about-me-section {
	padding: 0px 0 0 0;
	overflow: visible;
}

.container-about-me {
	gap: 60px;
}

/* Заголовок з контурним ефектом */
.about-title {
	position: relative;
	margin-bottom: 30px;
	width: fit-content;
}

.about-title::before {
	content: 'ОФІЦІЙНІ ПРАВИЛА АКЦІЇ';
	position: absolute;
	top: -10px;
	left: 0;
	color: transparent;
	-webkit-text-stroke: 0.5px var(--white);
	text-stroke: 0.5px var(--white);
	z-index: 0;
}


/* FAQ блоки білі */
.about-me-section .faq-question {
	background: transparent;
	border: 1px solid var(--gray);
}

.about-me-section .faq-question i {
	background: transparent;
}

.about-me-section .faq-question i img {
	filter: brightness(0) invert(1);
}

/* Фото */
.about-photo {
	width: 100%;
	height: auto;
}

/* Соціальні мережі поверх фото */
.social-icons-about {
	position: absolute;
	top: 44%;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: fit-content;
	display: flex;
	gap: 10px;
	z-index: 2;
	transform: translateY(-50%);
}

.social-icons-about .icon-element {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: var(--radius-small);
	padding: 8px;
	transition: all 0.3s ease;
}

.social-icons-about .icon-element:hover {
	background: var(--primary);
}

.social-icons-about .icon {
	filter: brightness(0) invert(1);
}

.social-icons-about .icon-element:hover .icon {
	filter: var(--primary-filter-match);
}

@media (max-width: 1480px) {
	.about-me-section {
		padding: 0px 0 20px 0;
		overflow: visible;
	}
	.about-me-section .items-group.center{
		margin-top: 20px;
	}
	.container-about-me {
		gap: 50px;
	}

	.about-title::before {
		top: -8px;
	}
}

@media (max-width: 1279px) {
	.about-me-section {
		padding: 0px 0 0 0;
	}

	.container-about-me {
		gap: 30px;
	}

	.about-title {
		margin-bottom: 20px;
	}

	.about-title::before {
		top: -6px;
		-webkit-text-stroke: 0.5px var(--white);
		text-stroke: 0.5px var(--white);
	}

	.social-icons-about .icon-element {
		padding: 6px;
	}
	.about-me-section .items-group.center {
		margin-top: 30px;
	}
	.about-me-section .items-group.center .btn {
		width: 100%;
	}
}
/* About Me Section - End */



/* Sticky sidebar */
.about-sidebar-sticky {
	position: sticky;
	top: 140px;
}
.about-sidebar-sticky .about-photo {
	width: 100%;
	height: auto;
}
@media (max-width: 1279px) {
	.about-sidebar-sticky {
		position: relative;
		top: 0;
	}
}


/* ===== SECTION: Reviews - Start ===== */
.reviews-section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.reviews-section .h2 {
	margin-bottom: 20px;
}

.reviews-section .block-with-cols {
	margin-bottom: 30px;
}

.reviews-slider {
	margin-bottom: 35px;
}

@media (max-width: 1279px) {
	.reviews-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
/* ===== SECTION: Reviews - End ===== */