@font-face {
	font-family: 'Manrope';
	src: url('../fonts/manrope/manrope-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Manrope';
	src: url('../fonts/manrope/manrope-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Manrope';
	src: url('../fonts/manrope/manrope-800.woff2') format('woff2');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope';
	src: url('../fonts/manrope/manrope-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	/* colors */
	--color-primary: rgba(57, 124, 191, 1);
	--color-primary-hover: rgba(208, 223, 168, 1);
	--color-bg-main: #fff1b1;
	--color-text: rgba(70, 70, 70, 1);
	--color-white: rgba(255, 255, 255, 1);
	--color-border-light: rgba(255, 255, 255, 0.55);

	/* layout */
	--container-width: 1160px;
	--container-width-tablet: 728px;
	--container-width-mobile: 350px;
}

* {
	box-sizing: border-box;
}

button {
	all: unset;
	box-sizing: border-box;
	cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

html {
	scroll-behavior: smooth;
}

[id='faq'] {
	scroll-margin-top: 30px;
}

body {
	margin: 0;

	color: var(--color-text);
	background: var(--color-bg-main);

	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 15px;
	/* font-size-adjust: 0.58; */

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
}

main {
	padding-top: 91px;
}

@media (max-width: 1199px) {
	.container {
		max-width: var(--container-width-tablet);
	}
}

@media (max-width: 768px) {
	.container {
		max-width: var(--container-width-mobile);
	}

	main {
		padding-top: 68px;
	}
}

/* =========================
   HEADER
========================= */
header {
	width: 100%;
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	height: 91px;
	background: var(--color-primary);
	color: var(--color-white);
}

.header__inner {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo,
.footer__logo {
	display: inline-flex;
	align-items: center;
	width: 110px;
	height: 63px;
}

.header__logo svg,
.footer__logo svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: currentColor;
}

/* NAV */
.nav__list {
	list-style: none;
	display: flex;
	gap: 32px;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav__list a {
	color: var(--color-white);
	font-family: Manrope;
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
}

/* HEADER ACTIONS */
header .header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.icon-btn {
	width: 22px;
	height: 22px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	cursor: pointer;
}

.icon-btn--favorites,
.icon-btn--cart {
	position: relative;
}

.icon-btn__count {
	position: absolute;
	top: -6px;
	right: -6px;

	min-width: 18px;
	height: 18px;
	padding: 0 5px;

	display: none;
	align-items: center;
	justify-content: center;

	border-radius: 999px;
	background: #d92d2d;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
}

.login-link {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 20px;
	font-weight: 600;
}

.burger {
	display: none;
}

.header__overlay {
	display: none;
}

@media (max-width: 1199px) {
	header nav {
		display: none;
	}
}

@media (max-width: 768px) {
	header {
		height: 68px;
	}

	.header__logo,
	.footer__logo {
		width: 70px;
		height: 40px;
	}

	.login-link {
		display: none;
	}

	.burger {
		display: block;
	}

	.header__overlay {
		display: block;

		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.6);
		z-index: 4;

		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s ease;
	}

	.header-overley__content {
		position: absolute;
		top: 0;
		right: 0;
		height: 100vh;
		width: 270px;

		background: var(--color-bg-main);
		border-radius: 12px 0 0 12px;
		padding: 30px;

		display: flex;
		flex-direction: column;

		transform: translateX(100%);
		transition: transform 0.25s ease;
	}

	/* Burger open */
	.header__overlay.is-open {
		opacity: 1;
		pointer-events: auto;
		height: 100vh;
	}
	.header__overlay.is-open .header-overley__content {
		transform: translateX(0);
	}

	body.menu-open .reviews__nav--next,
	body.menu-open .pdp-gallery__badge {
		opacity: 0;
		pointer-events: none;
	}

	.menu-close {
		width: 22px;
		height: 22px;
	}

	.menu-close svg {
		width: 100%;
		height: 100%;
	}

	.menu-close svg path {
		stroke: rgba(189, 176, 119, 1);
	}

	.header-overley__content .header__nav {
		display: block;
		margin-top: 32px;
		padding-bottom: 32px;
		border-bottom: 1px solid rgba(189, 176, 119, 1);
	}

	.header-overley__content .nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.header-overley__content .account-menu--guest {
		display: block;
		margin-top: 32px;
	}

	.header-overley__content .nav__list a,
	.account-menu__header {
		color: var(--color-text);
	}

	.header-overley__content .account-menu__link {
		font-weight: 500;
		font-size: 14px;
		color: var(--color-text);
	}

	.header-overley__content .login-link.login-link__user-name {
		font-weight: 500;
		font-size: 16px;
		display: flex;
		align-items: center;
		margin: 32px 0 12px 0;
	}

	.header-overley__content .login-link.login-link__user-name span {
		width: 22px;
		height: 22px;
		display: flex;
	}

	.header-overley__content .account-menu__link-profile {
		margin-top: 10px;
	}

	.header-overley__content .account-menu__link-logout {
		display: flex;
		align-items: center;
		gap: 8px;
		margin-top: 32px;
	}

	.account-menu__header svg path {
		stroke: var(--color-text);
	}

	.account-menu__header {
		display: flex;
		align-items: center;
		gap: 4px;
		font-size: 16px;
	}

	.account-menu__header svg {
		width: 20px;
		height: 20px;
	}

	.header-overley__content .login-link {
		display: flex;
		margin: 12px 0 0 0;
		color: var(--color-primary);
		font-size: 14px;
	}

	.header-overley__content .login-link svg path {
		stroke: var(--color-primary);
	}
}

/* Account dropdown */

.account-menu {
	position: relative;
}

.account-menu__trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-left: 20px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-white);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.account-menu::after {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	width: 100%;
	height: 20px;
}

.account-menu__icon,
.account-menu__link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.account-menu__icon svg,
.account-menu__link-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.account-menu__dropdown {
	position: absolute;
	top: calc(100% + 17.5px);
	right: 0;
	z-index: 1;

	padding: 24px;

	display: flex;
	flex-direction: column;
	gap: 12px;

	border: 1px solid var(--color-primary);
	border-radius: 12px;
	background: var(--color-bg-main);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease;
}

.account-menu:hover .account-menu__dropdown,
.account-menu:focus-within .account-menu__dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.account-menu__dropdown .account-menu__link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	color: var(--color-text);
	text-decoration: none;
	text-wrap: nowrap;
	font-weight: 600;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}

.account-menu__dropdown .account-menu__link:hover {
	color: var(--color-primary);
}

.account-menu__dropdown .account-menu__link:hover svg path {
	stroke: var(--color-primary);
}

@media (max-width: 768px) {
	.account-menu__dropdown,
	.account-menu {
		display: none;
	}
}

/* =========================
	 MAIN
========================= */
main {
	min-height: calc(100vh - 379px);
}

.notice-bar {
	background: var(--color-primary-hover);
	color: var(--color-text);
}

.notice-bar .container {
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.notice-bar__text span {
	font-weight: 800;
}

.catalog-head .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.catalog-head__title {
	font-weight: 800;
	font-size: 32px;
	text-align: center;
	text-transform: uppercase;
}

.catalog-head__subtitle {
	margin-top: 12px;
	width: 500px;
	text-align: center;
}

.catalog-tabs {
	margin-top: 42px;
}

.catalog-tabs__list {
	display: flex;
	justify-content: center;
	border-bottom: 1px solid rgba(202, 209, 182, 1);
}

.catalog-tabs__item a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 24px;
	color: rgba(96, 134, 157, 1);
}

.catalog-tabs__item .is-active {
	color: var(--color-primary);
	border-bottom: 1.5px solid var(--color-primary);
}

@media (max-width: 1199px) {
}

@media (max-width: 768px) {
	.notice-bar .container {
		height: 42px;
	}

	.notice-bar__text {
		font-size: 13px;
	}

	.catalog-head__title {
		font-size: 22px;
	}

	.catalog-head__subtitle {
		margin-top: 6px;
		width: 350px;
	}

	.catalog-tabs {
		margin-top: 22px;
		max-width: 100%;
		overflow: hidden;
	}

	.catalog-tabs__list {
		flex-wrap: nowrap;
		justify-content: flex-start;
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity;
	}

	.catalog-tabs__item {
		scroll-snap-align: start;
	}

	.catalog-tabs__item a {
		padding: 10px 12px;
		white-space: nowrap;
		font-size: 14px;
	}

	.catalog-tabs__list::-webkit-scrollbar {
		display: none;
	}

	.catalog-tabs__list {
		scrollbar-width: none;
	}
}

/* BRED CRUMBS */

.breadcrumbs {
	display: flex;
	justify-content: center;
	font-weight: 800;
	margin-top: 32px;
}

.container {
	width: var(--container-width);
	margin: 0 auto;
}

.breadcrumbs .container {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumbs__link {
	color: var(--color-text);
	text-decoration: none;
}

.breadcrumbs__sep {
	color: var(--color-text);
}

.breadcrumbs__current {
	color: var(--color-primary);
}

.catalog-page .catalog-head {
	margin-top: 32px;
}

@media (max-width: 1199px) {
}

@media (max-width: 768px) {
	.breadcrumbs {
		margin-top: 22px;
		font-size: 13px;
	}
}

/* LEGAL */

.legal__title {
	margin: 32px 0;
	font-weight: 800;
	font-size: 32px;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-primary);
}

.legal__content {
	font-size: 16px;
	line-height: 1.65;
}

.legal__content h2 {
	margin: 28px 0 14px;
	font-weight: 800;
	font-size: 20px;
	color: var(--color-text);
}

.legal__content p:has(+ ol) {
	margin-top: 10px;
}

.legal__content ol {
	margin: 10px 0;
	padding-left: 22px;
	list-style: decimal;
}

@media (max-width: 1199px) {
}

@media (max-width: 768px) {
}

/* CARDS */
.home-products {
	margin-top: 42px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}

.product-card {
	width: 275px;
	height: 415px;
	position: relative;
	border-radius: 12px;
	border: 1px solid var(--color-primary);
	overflow: hidden;
}

.product-card__img {
	position: relative;
	margin: 0;
	width: 100%;
	height: 280px;
}

.product-card__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.product-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 8px;
	background: var(--color-primary-hover);
	color: var(--color-text);
	font-weight: 800;
	font-size: 12px;
	border-radius: 100px;
	z-index: 1;
}

.product-card__badge--sale-label {
	left: 54px;
	background: rgba(218, 41, 28, 1);
	color: var(--color-white);
	font-weight: 800;
}

.product-card__fav {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--color-primary);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.product-card__fav svg {
	width: 12px;
	height: 12px;
}

.product-card__fav:hover {
	background: var(--color-white);
}

.product-card__fav:hover svg path {
	fill: var(--color-white);
	stroke: var(--color-primary-hover);
}

.product-card__fav.is-active svg path {
	fill: red;
}

.product-card__content {
	height: 135px;
	padding: 12px 20px 18px;
	display: flex;
	flex-direction: column;
}

.product-card__title {
	font-weight: 800;
	text-transform: uppercase;
	max-height: 41px;
	min-height: 41px;
	overflow: hidden;
	font-size: 15px;
}

.product-card__levels {
	margin-top: 4px;
	color: var(--color-text);
	font-weight: 600;
	font-size: 14px;
}

.product-card__price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

.product-card__price p {
	font-size: 16px;
	color: var(--color-primary);
}

.product-card__price .product-card__price-old {
	font-weight: 400;
	font-size: 12px;
	color: rgba(159, 151, 119, 1);
	text-decoration: line-through;
}

.product-card__price .product-card__price-current {
	color: rgba(218, 41, 28, 1);
}

.product-card__cart {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--color-primary-hover);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.products-more,
.faq__footer {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

.products-more__btn,
.faq__btn {
	height: 52px;
	width: 374px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-text);
	border: 1px solid var(--color-text);
	border-radius: 4px;
}

.products-more__btn:hover,
.faq__btn:hover {
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

@media (max-width: 1199px) {
	.product-card {
		width: 229px;
		height: 375px;
	}

	.product-card__img {
		height: auto;
		width: 100%;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.home-products {
		margin-top: 22px;
	}

	.products-grid {
		grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
		gap: 20px;
	}

	.product-card__content {
		height: 110px;
		padding: 8px 12px 12px;
	}

	.product-card {
		width: 165px;
		height: 243px;
	}

	.product-card__img {
		padding-top: 13px;
		display: flex;
		justify-content: center;
		height: auto;
		width: 100%;
	}

	.product-card__img img {
		height: auto;
		width: 120px;
	}

	.product-card__title {
		font-size: 13px;
		max-height: 35px;
		min-height: 35px;
	}

	.product-card__levels {
		font-size: 11px;
	}

	.product-card__price p,
	.product-card__price .product-card__price-current {
		font-size: 11px;
	}

	.product-card__price .product-card__price-old {
		font-size: 9px;
	}

	.products-more {
		margin-top: 20px;
	}
}

/* ABOUT */

.about {
	background: var(--color-primary-hover);
	padding: 52px 0;
	margin-top: 52px;
}

.about__inner {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 75px;
}

.about__media {
	width: 373px;
	height: 440px;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about__img {
	display: block;
	width: 100%;
	height: auto;
}

.about__content {
	max-width: 712px;
	color: var(--color-text);
}

.about__title {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: 28px;
	text-transform: uppercase;
	font-synthesis: none;
	display: inline-block;
}

.about__text p:not(:last-child) {
	margin-bottom: 16px;
	line-height: 1.6;
}

.about__btn {
	height: 52px;
	width: 230px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 22px;
	border-radius: 12px;
	text-decoration: none;
	background: var(--color-primary);
	color: var(--color-white);
}

.about__btn:hover {
	border: 1px solid var(--color-primary);
	background: var(--color-primary-hover);
	color: var(--color-primary);
}

@media (max-width: 1199px) {
	.about__inner {
		flex-direction: column;
		gap: 32px;
	}

	.about__media {
		width: 100%;
		height: 400px;
		border-radius: 12px;
		overflow: hidden;
		display: block;
	}

	.about__img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		display: block;
	}
}

@media (max-width: 768px) {
	.about {
		padding: 40px 0;
		margin-top: 40px;
	}

	.about__media {
		height: 300px;
	}

	.about__title {
		font-size: 20px;
		margin-bottom: 14px;
	}

	.about__text {
		font-size: 14px;
		line-height: 1;
	}

	.about__btn {
		height: 42px;
		margin-top: 16px;
		font-size: 14px;
	}

	.about__text p:not(:last-child) {
		margin-bottom: 8px;
		line-height: normal;
	}
}

/* =========================
	 REVIEWS
========================= */

.reviews {
	margin-top: 52px;
}

.reviews__head {
	text-align: center;
	margin-bottom: 24px;
	color: var(--color-primary);
}

.reviews__title {
	margin: 0;
	font-weight: 800;
	font-size: 28px;
	text-transform: uppercase;
}

.reviews__subtitle {
	margin-top: 8px;
}

.reviews__slider {
	position: relative;
	display: flex;
	align-items: center;
}

.reviews__nav {
	position: absolute;
	z-index: 2;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(70, 70, 70, 0.5);

	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reviews__nav--prev {
	top: 145px;
	left: 10px;
}

.reviews__nav--next {
	top: 145px;
	right: 10px;
}

.reviews__swiper {
	width: 100%;
	min-width: 0;
	padding: 0 2px !important;
	margin: 0 -2px;
}

.reviews__swiper .swiper-slide {
	height: 329px;
	display: flex;
	justify-content: center;
}

.review-card {
	height: 329px;
	width: 275px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	border: 1px solid var(--color-primary);
	border-radius: 12px;
	padding: 18px 20px;
	background: var(--color-primary-hover);
}

.review-card__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 100px;
	border: 1px solid var(--color-primary);
	font-size: 12px;
	color: var(--color-primary);
}

.review-card__media {
	height: 200px;
	width: 145px;
	border-radius: 12px;
	overflow: hidden;
}

.review-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.review-card__text {
	font-size: 12px;
	text-align: center;
}

@media (max-width: 1199px) {
	.reviews__swiper .swiper-slide {
		height: 329px;
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.reviews {
		margin-top: 40px;
	}

	.reviews__head {
		margin-bottom: 16px;
	}

	.reviews__title {
		font-size: 20px;
	}

	.reviews__subtitle {
		margin-top: 6px;
		font-size: 14px;
	}

	.reviews__nav--prev {
		top: 106px;
		left: -10px;
	}

	.reviews__nav--next {
		top: 106px;
		right: -10px;
	}

	.reviews__swiper .swiper-slide {
		height: 252px;
	}

	.review-card {
		height: 252px;
		width: 165px;
		gap: 10px;
		padding: 12px;
	}

	.review-card__badge {
		font-size: 10px;
	}

	.review-card__media {
		height: 140px;
		width: 101px;
	}

	.review-card__text {
		font-size: 10px;
	}
}

/* =========================
   FAQ
========================= */

.faq {
	margin-top: 52px;
}

.faq__head {
	text-align: center;
	margin-bottom: 24px;
	color: var(--color-primary);
}

.faq__title {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	text-transform: uppercase;
}

.faq__subtitle {
	margin-top: 8px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 32px;
}

.faq-item {
	position: relative;
	padding: 16.5px 24px;
	border: 1px solid var(--color-text);
	color: var(--color-text);
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
}

.faq-item__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	cursor: pointer;
}

.faq-item__icon {
	width: 22px;
	height: 22px;
	position: absolute;
	top: 16px;
	right: 24px;
}

.faq-item__answer {
	display: none;
}

.faq-item.is-open .faq-item__question {
	font-weight: 800;
	color: var(--color-primary);
	margin-bottom: 12.5px;
}

.faq-item.is-open .faq-item__icon {
	transform: rotate(180deg);
}

.faq-item.is-open .faq-item__answer {
	display: block;
}

.faq-item.is-hidden-extra {
	display: none;
}

.faq.is-expanded .faq-item.is-hidden-extra {
	display: block;
}

@media (max-width: 1199px) {
}

@media (max-width: 768px) {
	.faq {
		margin-top: 40px;
	}

	.faq__head {
		margin-bottom: 14px;
	}

	.faq__title {
		font-size: 20px;
	}

	.faq__subtitle {
		margin-top: 6px;
	}

	.faq__list {
		gap: 10px;
		margin-top: 0;
	}

	.faq-item {
		padding: 16px 12px;
	}

	.faq-item__question {
		font-size: 14px;
	}

	.faq-item__icon {
		right: 12px;
	}

	.faq-item.is-open .faq-item__answer {
		font-size: 14px;
	}
}

/* =========================
	 CALL TO ACTION
========================= */

.lead {
	margin-top: 52px;
	background: var(--color-primary-hover);
}

.lead__inner {
	text-align: center;
	padding: 52px 0;
}

.lead__title {
	margin: 0;
	font-weight: 800;
	font-size: 28px;
	text-transform: uppercase;
	color: var(--color-text);
}

.lead__subtitle {
	margin-top: 12px;
	color: var(--color-text);
}

.lead__form {
	position: relative;
	height: 52px;
	width: 766px;
	margin: 32px auto 0;
	display: flex;
	gap: 34px;
	align-items: end;
}

.lead-field__input {
	width: 260px;
	border: 0;
	border-bottom: 1px solid var(--color-primary);
	color: var(--color-text);
	background: transparent;
	padding: 8px 2px;
	font-size: 14px;
	outline: none;
}

.lead-field__input::placeholder {
	color: rgba(138, 153, 98, 1);
	font-weight: 600;
}

.lead-field__input:focus {
	border-bottom: 3px solid var(--color-primary);
}

.lead__btn {
	height: 52px;
	width: 230px;
	border-radius: 4px;
	background: var(--color-primary);
	color: var(--color-white);
	cursor: pointer;
}

.lead__btn:hover {
	border: 1px solid var(--color-primary);
	background: var(--color-primary-hover);
	color: var(--color-primary);
}

.lead__error {
	position: absolute;
	margin-top: 12px;
	font-size: 13px;
	color: red;
	bottom: -18px;
}

@media (max-width: 1199px) {
	.lead-field__input {
		width: 215px;
	}
}

@media (max-width: 768px) {
	.lead {
		margin-top: 40px;
	}

	.lead__inner {
		padding: 40px 0;
	}

	.lead__title {
		font-size: 20px;
	}

	.lead__subtitle {
		margin-top: 6px;
		color: var(--color-text);
	}

	.lead__form {
		height: 150px;
		width: 350px;
		margin-top: 14px;
		flex-direction: column;
		justify-content: space-between;
		gap: 11px;
		align-items: start;
	}

	.lead-field__input {
		width: 100%;
	}

	.lead__btn {
		height: 42px;
		width: 100%;
	}
}

/* =========================
	 INFO SUPPORT
========================= */

.info-support {
	margin-top: 52px;
	text-align: center;
}

.info-support__title {
	font-weight: 800;
	font-size: 28px;
	text-transform: uppercase;
	color: var(--color-primary);
}

.info-support__text {
	margin: 28px auto 0;
	color: var(--color-primary);
	line-height: 1.5;
}

.info-support__email {
	display: inline-block;
	font-weight: 800;
	font-size: 28px;
	text-transform: uppercase;
	color: var(--color-text);
}

.info-support__note {
	margin: 28px auto 0;
	max-width: 600px;
	line-height: 1.5;
	color: var(--color-text);
}

.info-support__socials {
	margin-top: 28px;
	display: flex;
	justify-content: center;
	gap: 12px;
}

.info-support__social {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-support__social svg {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.info-support__social:hover {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-primary);
}

.info-support__social:hover svg path {
	stroke: var(--color-primary);
	fill: var(--color-bg-main);
}

@media (max-width: 768px) {
	.info-support {
		margin-top: 40px;
	}

	.info-support__title {
		font-size: 20px;
	}

	.info-support__text {
		margin-top: 14px;
		line-height: normal;
	}

	.info-support__email {
		font-size: 20px;
	}

	.info-support__note {
		margin-top: 14px;
		line-height: normal;
	}

	.info-support__socials {
		margin-top: 14px;
	}

	.info-support__social {
		width: 40px;
		height: 40px;
	}
}

/* =============================== 
CATALOG 
================================ */

.catalog-page .catalog-head {
	margin-top: 32px;
}

.catalog-page .catalog-tabs {
	margin-top: 0;
}

/* ========================
PAGINATION
======================== */

.pagination {
	margin: 24px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.pagination__item,
.pagination__item.is-dots {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	color: var(--color-text);
	border: 1px solid transparent;
	font-size: 13px;
}

.pagination__item:hover {
	color: var(--color-primary);
}

.pagination__item.is-current {
	background: var(--color-primary-hover);
}

.pagination__item.is-current:hover,
.pagination__item.is-dots:hover {
	color: var(--color-text);
}

.pagination__item.is-prev,
.pagination__item.is-next {
	width: 96px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: var(--color-text);
}

.pagination__item.is-prev:hover,
.pagination__item.is-next:hover {
	color: var(--color-primary);
}

/* =========================
   FOOTER
========================= */
footer {
	height: 288px;
	margin-top: 52px;
	padding: 52px 0;
	background: var(--color-primary);
	color: var(--color-white);
}

.footer__inner {
	display: flex;
	flex-wrap: wrap;
}

.footer__brand {
	width: 290px;
	margin-right: 360px;
}

.footer__brand p:nth-child(2) {
	margin-top: 8px;
	color: var(--color-primary-hover);
	font-size: 16px;
	font-weight: 600;
}

.footer__brand p:last-child {
	margin-top: 2px;
	font-size: 14px;
	font-weight: 400;
}

footer nav:nth-child(2) {
	width: 265px;
	margin-right: 24px;
}

footer h4 {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 12px;
}

.footer__copy {
	margin-top: 40px;
	font-size: 16px;
}

.footer__links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__links a:hover {
	color: var(--color-primary-hover);
}

@media (max-width: 1199px) {
	footer {
		height: 301px;
		margin-top: 52px;
	}

	.footer__brand {
		width: 350px;
		margin-right: 24px;
	}

	.footer__brand p:nth-child(2) {
		font-size: 14px;
	}

	.footer__brand p:last-child {
		font-size: 13px;
	}

	footer nav:nth-child(2) {
		width: 167px;
		margin-right: 20px;
	}

	footer nav:nth-child(3) {
		width: 167px;
	}

	footer nav:nth-child(3) .footer__links {
		line-height: 1.1;
	}
}

@media (max-width: 768px) {
	footer {
		height: 362px;
		margin-top: 40px;
		padding: 40px 0;
	}

	.footer__brand {
		margin: 0 0 18px 0;
	}

	footer nav:nth-child(2) {
		width: 163px;
		margin-right: 20px;
	}

	footer nav:nth-child(3) {
		width: 163px;
	}

	.footer__copy {
		margin-top: 18px;
		font-size: 13px;
	}

	.footer__links {
		font-size: 14px;
	}
}

/* =========================
   AUTH MODAL
========================= */

.auth-modal {
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 2;

	display: none;

	align-items: center;
	justify-content: center;

	pointer-events: none;
	transition: opacity 160ms ease;
}

.auth-modal.is-open {
	display: flex;
}

.auth-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.auth-modal__dialog {
	width: 570px;
	position: relative;
	z-index: 4;
	pointer-events: all;

	background: var(--color-bg-main);
	padding: 70px;
	border-radius: 12px;

	opacity: 1;
}

.auth-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	border: none;
	cursor: pointer;
}

.auth-view h2 {
	text-align: center;
	font-size: 28px;
	font-weight: 800;
	color: var(--color-primary);
}

.auth-view form {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
}

.auth-view label:not(:first-child) {
	margin-top: 10px;
}

.auth-view input {
	width: 100%;
	border: 0;
	border-bottom: 1px solid var(--color-primary);
	color: var(--color-text);
	background: transparent;
	padding: 8px 2px;
	font-size: 14px;
	outline: none;
	padding: 12px 0;
}

.password-field input {
	padding-right: 32px;
}

.auth-view input::placeholder {
	color: rgba(159, 151, 119, 1);

	font-weight: 600;
	letter-spacing: 0.25px;
}

.auth-view input:focus {
	border-bottom: 2px solid var(--color-primary);
}

.auth-view form a {
	margin-top: 12px;
	font-size: 13px;
	color: var(--color-primary);
}

.auth-view form > button {
	height: 52px;
	margin-top: 26px;
	color: var(--color-white);
	background: var(--color-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
}

.auth-view > p {
	margin-top: 32px;
	font-style: 14px;
	color: var(--color-text);
	letter-spacing: 0.25px;
	text-align: center;
}

.auth-view > p a {
	font-weight: 600;
	color: var(--color-primary);
}

/* ===== PASSWORD FIELD ===== */
.password-field {
	position: relative;
}

.password-field > p {
	margin-top: 10px;
	color: var(--color-text);
	font-style: 13px;
}

.toggle-pass {
	position: absolute;
	top: 12px;
	right: 8px;
	background: none;
	border: none;
	cursor: pointer;
}

.toggle-pass .icon-eye {
	display: none;
}

.toggle-pass.is-active .icon-eye {
	display: inline-block;
}

.toggle-pass.is-active .icon-eye-off {
	display: none;
}

/* ===== ERROR ===== */
.auth-error {
	margin-top: 6px;
	font-size: 13px;
	color: #c0392b;
	text-align: center;
}

/* ===== BODY LOCK ===== */
.modal-open {
	overflow: hidden;
}

/* =========================
	 PRODUCT PAGE
========================= */

.pdp__layout {
	display: grid;
	grid-template-columns: 570px 1fr;
	gap: 40px;
	align-items: start;
	margin-top: 32px;
}

.pdp-gallery {
	position: relative;
}

.pdp-gallery__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 8px;
	background: var(--color-primary-hover);
	color: var(--color-text);
	font-weight: 800;
	font-size: 12px;
	border-radius: 100px;
	z-index: 2;
}

.pdp-gallery__badge--sale {
	left: 54px;
	background: rgba(218, 41, 28, 1);
	color: var(--color-white);
	font-weight: 800;
}

.pdp-gallery__main {
	border-radius: 12px;
	overflow: hidden;
}

.pdp-gallery__main .swiper-slide {
	width: 570px;
	height: 546px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pdp-gallery__main img {
	width: auto;
	height: 546px;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

.pdp-gallery__nav {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 0;
	cursor: pointer;
	z-index: 2;
	background: rgba(70, 70, 70, 0.5);
}

.pdp-gallery__nav:hover {
	background: rgba(70, 70, 70, 0.7);
}

.pdp-gallery__nav--prev {
	left: 10px;
}
.pdp-gallery__nav--next {
	right: 10px;
}

.pdp-gallery__thumbs {
	margin-top: 12px;
}

.pdp-gallery__thumbs .swiper-wrapper {
	align-items: center;
}

.pdp-gallery__thumbs .swiper-slide {
	width: 71px;
	height: 71px;
	opacity: 0.55;
	cursor: pointer;
}

.pdp-gallery__thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border-radius: 12px;
	border: 2px solid var(--color-primary);
}

.pdp-gallery__thumbs img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

/* ================
PDP INFO
================ */

.pdp-info--mobile {
	display: none;
}

.pdp-info {
	display: flex;
	flex-direction: column;
}

.pdp-info__title {
	font-weight: 800;
	font-size: 24px;
	text-transform: uppercase;
	color: var(--color-primary);
}

.pdp-info__code {
	margin-top: 8px;
	color: rgba(100, 100, 100, 1);
}

.pdp-info__price {
	margin-top: 22px;
	font-weight: 600;
	font-size: 20px;
	color: var(--color-text);
}

.pdp-info__price-old {
	font-weight: 500;
	font-size: 16px;
	text-decoration: line-through;
	color: rgba(159, 151, 119, 1);
}

.pdp-info__price-current {
	color: rgba(218, 41, 28, 1);
}

.pdp-info__formats {
	margin-top: 22px;
	color: var(--color-text);
}

.pdp-info__label {
	font-weight: 600;
	font-size: 16px;
	color: var(--color-text);
}

.pdp-info__checkbox {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	margin-top: 12px;
}

.pdp-info__control {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.pdp-info__box {
	width: 22px;
	height: 22px;
	border: 1.5px solid var(--color-text);
	border-radius: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
}

.pdp-info__box svg {
	width: 100%;
	height: auto;
	opacity: 0;
	transform: scale(0.7);
	transition:
		opacity 0.15s ease,
		transform 0.15s ease;
}

.pdp-info__control:checked + .pdp-info__box {
	background: var(--color-text);
	border-color: var(--color-text);
}

.pdp-info__control:checked + .pdp-info__box svg {
	opacity: 1;
	transform: scale(1);
}

.pdp-info__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
}

.btn-primary,
.btn-favorite {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-primary);
	color: var(--color-white);
}

.btn-primary {
	min-width: 230px;
	height: 52px;
	border-radius: 4px;
}

.btn-primary:hover {
	background: var(--color-bg-main);
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.btn-favorite {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.btn-favorite.is-active svg path {
	stroke: red;
	fill: red;
}

.pdp-info__accordion {
	margin-top: 32px;
}

.pdp-accordion-item:not(:last-child) {
	margin-bottom: 12px;
}

.pdp-accordion__title {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	font-weight: 600;
	font-size: 16px;
	color: var(--color-text);
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid rgba(189, 176, 119, 1);
}

.is-open .pdp-accordion__icon {
	transform: rotate(180deg);
}

.pdp-accordion__content {
	display: none;
}

.is-open .pdp-accordion__content {
	display: block;
}

.pdp-gift {
	margin-top: 32px;
	display: none;
}

.pdp-gift.is-visible {
	display: block;
}

.pdp-gift__head {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--color-primary);
	font-weight: 800;
	font-size: 16px;
}

.pdp-gift__text {
	margin-top: 22px;
}

@media (max-width: 1199px) {
	.pdp__layout {
		display: flex;
		flex-direction: column;
		gap: 40px;
		align-items: start;
	}

	.pdp-gallery {
		width: 100%;
		max-width: 728px;
	}

	.pdp-gallery__main .swiper-slide {
		width: 100% !important;
		height: 400px;
	}

	.pdp-gallery__main img {
		width: auto;
		height: 400px;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		object-position: center;
		display: block;
	}
}

@media (max-width: 768px) {
	.pdp__layout {
		margin-top: 22px;
		gap: 18px;
	}

	.pdp-info .pdp-info__title,
	.pdp-info .pdp-info__code {
		display: none;
	}

	.pdp-gallery__main .swiper-slide {
		height: 348px;
	}

	.pdp-gallery__main img {
		margin-left: -1px;
		width: auto;
		height: 348px;
		object-fit: cover;
		object-position: center;
		display: block;
	}

	.pdp-info--mobile {
		display: flex;
		flex-direction: column;
	}

	.pdp-info__title {
		font-size: 20px;
	}

	.pdp-info__code {
		margin-top: 6px;
	}

	.pdp-gallery__thumbs {
		margin-top: 10px;
	}

	.pdp-gallery__thumbs .swiper-slide {
		width: 40px;
		height: 40px;
	}

	.pdp-info__price {
		margin-top: 0;
	}

	.pdp-info__formats {
		margin-top: 14px;
	}

	.pdp-info__control-text {
		font-size: 14px;
	}

	.btn-primary {
		height: 42px;
		font-size: 14px;
	}

	.btn-favorite {
		width: 42px;
		height: 42px;
	}

	.pdp-info__actions {
		margin-top: 14px;
	}

	.pdp-info__accordion {
		margin-top: 18px;
	}

	.pdp-accordion__content {
		font-size: 14px;
	}

	.pdp-gift {
		margin-top: 18px;
	}

	.pdp-gift__title {
		font-size: 13px;
	}

	.pdp-gift__text {
		font-size: 14px;
		margin-top: 14px;
	}
}
/* ===============
RELATED PRODUCTS
=============== */

.related {
	margin-top: 56px;
}

.related__head {
	text-align: center;
	margin-bottom: 18px;
}

.related__title {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	color: var(--color-primary);
	text-transform: uppercase;
}

.related__subtitle {
	margin-top: 12px;
	color: var(--color-primary);
}

.related__wrap {
	position: relative;
	margin-top: 42px;
}

.related__nav {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 0;
	cursor: pointer;
	z-index: 2;
	background: rgba(70, 70, 70, 0.5);
}

.related__nav:hover {
	background: rgba(70, 70, 70, 0.7);
}

.related__nav--prev {
	left: 10px;
}
.related__nav--next {
	right: 10px;
}

.related__slide {
	height: auto;
}
.related .product-card {
	height: 100%;
}

@media (max-width: 1199px) {
}

@media (max-width: 768px) {
	.related {
		margin-top: 40px;
	}

	.related__head {
		margin-bottom: 0px;
	}

	.related__title {
		font-size: 20px;
	}

	.related__subtitle {
		margin-top: 6px;
		font-size: 14px;
	}

	.related__wrap {
		margin-top: 14px;
	}

	.related__nav--prev {
		left: -10px;
	}
	.related__nav--next {
		right: -10px;
	}
}

/* ===============
ACCOUNT PAGE
=============== */

.account-page__section {
	margin-top: 32px;
}

.account-profile__title {
	font-weight: 800;
	font-size: 32px;
	text-transform: uppercase;
	color: var(--color-primary);
}

.account-profile__subtitle {
	margin-top: 8px;
	color: var(--color-primary);
}

.account-profile__form {
	margin-top: 30px;
}

.account-profile__group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.account-profile__group-title {
	font-weight: 800;
	font-size: 18px;
	color: var(--color-text);
}

.woocommerce .account-profile__form .account-profile__field {
	margin: 0;
	padding: 0;
}

.account-profile__group .account-profile__field {
	display: flex;
	flex-direction: column;
}

.woocommerce form .account-profile__group label {
	font-size: 16px;
	line-height: normal;
	font-weight: 600;
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row input[type='email'],
.woocommerce form .form-row input[type='password'] {
	margin-top: 8px;
	width: 275px;
	height: 45px;
	padding: 12px;

	box-shadow: none;
	outline: none;

	font-family: Manrope;
	font-weight: 500;
	font-size: 15px;
	color: var(--color-text);
	border: 1px solid var(--color-primary);
	background: transparent;
}

.woocommerce form .form-row .input-text::placeholder,
.woocommerce form .form-row input[type='email']::placeholder,
.woocommerce form .form-row input[type='password']::placeholder {
	font-family: Manrope;
	font-weight: 500;
	font-size: 15px;
	color: rgba(159, 151, 119, 1);
}

.woocommerce form .show-password-input {
	top: 19.5px;
	transform: translateY(0);
}

.woocommerce form .show-password-input::before {
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../images/icons/eye-off.svg');
	content: '';
	display: block;
	height: 22px;
	width: 22px;
}

.woocommerce form .show-password-input.display-password::before {
	background-image: url('../images/icons/eye.svg');
}

.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row input[type='email']:focus,
.woocommerce form .form-row input[type='password']:focus {
	border: 1.5px solid var(--color-primary);
}

.account-profile__hint {
	margin-top: 6px;
	font-family: Manrope;
	font-weight: 400;
	font-size: 13px;

	color: var(--color-text);
}

.account-profile__group:last-of-type {
	margin-top: 28px;
}

.account-profile__password-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 21px;
	align-items: start;
	justify-content: start;
}

.account-profile__actions {
	margin-top: 30px;
}

.woocommerce .account-profile__submit.button,
.woocommerce .account-profile__submit.woocommerce-Button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 230px;
	height: 52px;
	border-radius: 4px;
	background: var(--color-primary);
	color: var(--color-white);
	font-family: Manrope;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
}

.woocommerce .account-profile__submit.button:hover,
.woocommerce .account-profile__submit.woocommerce-Button:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

.woocommerce-notices-wrapper {
	margin-top: 4px;
	font-family: Manrope;
	font-weight: 500;
	font-size: 13px;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
	margin: 4px 0 0 0;
	padding: 0 0 0 5px;
	border: 0px;
	border-radius: 0;
	background: transparent;
	color: var(--color-text);
	list-style: none;

	font-family: Manrope;
	font-weight: 500;
	font-size: 13px;
}

.woocommerce-error:focus,
.woocommerce-error *:focus,
.woocommerce-message:focus,
.woocommerce-message *:focus,
.woocommerce-info:focus,
.woocommerce-info *:focus {
	outline: none;
	box-shadow: none;
}

.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--color-text);
	content: '*';
	font-weight: 500;
	margin-right: 1px;
	top: 0;
	left: 0;
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
	margin: 0;
	border: none;
}

.woocommerce-password-strength,
.woocommerce-password-hint {
	margin-top: 6px;
	max-width: 275px;
	text-align: center;
	padding: 2px;
	font-family: Manrope;
	font-weight: 500;
	font-size: 13px;
}

@media (max-width: 1199px) {
	.account-profile__group:last-of-type .woocommerce-form-row,
	.woocommerce form .form-row .input-text,
	.woocommerce form .form-row input[type='email'],
	.woocommerce form .form-row input[type='password'] {
		width: 228.67px;
	}

	.account-profile__hint {
		white-space: nowrap;
	}
}

@media (max-width: 768px) {
	.account-page__section {
		margin-top: 22px;
	}

	.account-profile__title {
		font-size: 22px;
	}

	.account-profile__subtitle {
		margin-top: 6px;
	}

	.account-profile__form {
		margin-top: 20px;
	}

	.account-profile__group {
		gap: 14px;
	}

	.account-profile__group-title {
		font-size: 16px;
	}

	.account-profile__group:last-of-type .woocommerce-form-row {
		width: 100%;
	}
	.woocommerce form .form-row .input-text,
	.woocommerce form .form-row input[type='email'],
	.woocommerce form .form-row input[type='password'] {
		width: 350px;
		height: 43px;
		font-size: 14px;
	}

	.woocommerce form .form-row .input-text::placeholder,
	.woocommerce form .form-row input[type='email']::placeholder,
	.woocommerce form .form-row input[type='password']::placeholder {
		font-size: 14px;
	}

	.woocommerce form .show-password-input {
		top: 18.5px;
	}

	.account-profile__group:last-of-type {
		margin-top: 20px;
	}

	.account-profile__password-grid {
		gap: 12px;
	}

	.account-profile__actions {
		margin-top: 20px;
	}

	.woocommerce .account-profile__submit.button,
	.woocommerce .account-profile__submit.woocommerce-Button {
		height: 42px;
		font-size: 14px;
	}

	.woocommerce-password-strength,
	.woocommerce-password-hint {
		margin-top: 4px;
		max-width: 100%;
		text-align: center;
		padding: 2px;
		font-family: Manrope;
		font-weight: 500;
		font-size: 13px;
	}
}

/* ===============
MY WORKBOOKS PAGE
=============== */

.account-workbooks {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.account-workbooks__head {
	margin-bottom: 10px;
}

.account-workbooks__title {
	margin: 0;
	font-size: 32px;
	font-weight: 800;
	color: var(--color-primary);
	text-transform: uppercase;
}

.account-workbooks__subtitle {
	margin-top: 8px;
	color: var(--color-primary);
}

.account-workbooks__empty {
	margin-top: 30px;
}

.account-workbook {
	padding: 20px;
	border: 1px solid var(--color-primary);
	border-radius: 12px;
}

.account-workbooks__list .account-workbook:not(:last-child) {
	margin-bottom: 20px;
}

.account-workbook__top {
	display: flex;
	gap: 12px;
	align-items: center;
}

.account-workbook__media {
	width: 127px;
	height: auto;
}

.account-workbook__image {
	height: 100%;
	width: 100%;
}

.account-workbook__info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.account-workbook__title {
	font-weight: 800;
	font-size: 15px;
	text-transform: uppercase;
	color: var(--color-primary);
}

.account-workbook__meta,
.account-workbook__access strong {
	font-weight: 600;
	font-size: 14px;
}

.account-workbook__access {
	font-weight: 400;
	font-size: 14px;
}

.account-workbook__materials {
	margin-top: 12px;
	padding: 12px;
	border: 1px solid rgba(159, 151, 119, 1);
	border-radius: 4px;
}

.account-workbook__toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	height: 22px;
}

.account-workbook__toggle-text {
	font-weight: 600;
}

.account-workbook__toggle-icon {
	display: inline-flex;
	transition: transform 0.25s ease;
}

.account-workbook__toggle[aria-expanded='true'] .account-workbook__toggle-icon {
	transform: rotate(180deg);
}

.account-workbook__panel {
	margin-top: 12px;
}

.account-workbook__files {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.account-workbook-folder-title {
	font-size: 16px;
	font-weight: 800;
	border-bottom: 1px solid rgba(159, 151, 119, 1);
	padding-bottom: 8px;
}

.account-workbook-file {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.account-workbook-file__meta {
	display: flex;
	align-items: center;
	gap: 6px;
}

.account-workbook-file__icon {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	border: 1px solid rgba(159, 151, 119, 1);
	display: flex;
	justify-content: center;
	align-items: center;
}

.account-workbook-file__ext {
	font-weight: 400;
	font-size: 12px;
	text-transform: uppercase;
}

.account-workbook-file__action {
	width: 136px;
	height: 32px;
	border-radius: 4px;
	color: var(--color-white);
	background: var(--color-primary);
	display: flex;
	justify-content: center;
	align-items: center;
}

.account-workbook-file__action:hover {
	color: var(--color-primary);
	background: var(--color-bg-main);
	border: 1px solid var(--color-primary);
}

@media (max-width: 768px) {
	.account-workbooks__title {
		font-size: 22px;
	}

	.account-workbooks__subtitle {
		margin-top: 6px;
		font-size: 14px;
	}

	.account-workbook__toggle-text {
		font-size: 14px;
	}

	.account-workbook-file__icon {
		width: 34px;
		height: 34px;
	}

	.account-workbook-file__icon svg {
		width: 14.5px;
		height: 14.5px;
	}

	.account-workbook-file__name {
		font-size: 13px;
		width: 100px;
	}

	.account-workbook-file__ext {
		font-size: 10px;
	}

	.account-workbook-file__action {
		width: 115px;
		font-size: 13px;
	}
}

/* ===============
MY FAVORITES POPUP
=============== */

.favorites-modal[hidden] {
	display: none;
}

.favorites-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.favorites-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.favorites-modal__dialog {
	width: 1160px;
	position: relative;
	z-index: 1;
	padding: 70px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--color-bg-main);
}

.favorites-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.favorites-modal__close:hover svg path {
	stroke: var(--color-primary);
}

.favorites-modal__title {
	font-weight: 800;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-primary);
}

.favorites-modal__body {
	margin-top: 32px;
}

.favorites-modal__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.favorites-modal__empty-title {
	font-weight: 800;
	font-size: 22px;
	text-transform: uppercase;
}

.favorites-modal__empty-text {
	margin-top: 12px;
}

.favorites-modal__catalog-link,
.favorites-modal__actions button:last-child {
	margin-top: 32px;
	width: 300px;
	height: 52px;
	border-radius: 4px;
	background: var(--color-primary);
	color: var(--color-white);
	display: flex;
	justify-content: center;
	align-items: center;
}

.favorites-modal__catalog-link:hover,
.favorites-modal__actions button:last-child:hover {
	background: var(--color-bg-main);
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

/* Favorite cards modal */

.favorites-modal__items {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 330px;
	overflow-y: auto;
	padding-right: 20px;
}

.favorites-modal__item {
	height: 157px;
	display: flex;
	align-items: start;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--color-primary);
	border-radius: 12px;
}

.favorites-modal__item-image {
	width: 133px;
	height: 133px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.favorites-modal__item-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.favorites-modal__item-content {
	width: 100%;
	padding-top: 11px;
	display: flex;
	flex-direction: column;
}

.favorites-modal__item-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.favorites-modal__item-title {
	font-weight: 800;
	font-size: 14px;
	text-transform: uppercase;
}

.favorites-modal__item-remove {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}

.favorites-modal__item-meta {
	margin-top: 4px;
}

.favorites-modal__item-levels {
	font-size: 14px;
}

.favorites-modal__item-format {
	font-size: 14px;
	margin-top: 4px;
}

.favorites-modal__item-bottom {
	height: 34px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.favorites-modal__item-bottom {
	height: 34px;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}

.favorites-modal__qty {
	width: 100px;
	height: 100%;
	border: 1px solid rgba(100, 100, 100, 1);
	border-radius: 6px;
	padding: 6px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.favorites-modal__qty-input {
	font-family: Manrope;
	font-weight: 600;
	font-size: 15px;
	color: var(--color-text);
	min-width: 7px;
	text-align: center;
	border: 0;
	background: transparent;
}

.favorites-modal__qty-btn {
	height: 22px;
	width: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.favorites-modal__item-multiply {
	transform: rotate(45deg);
	display: block;
	margin-top: 3px;
}

.favorites-modal__item-price {
	font-weight: 600;
	font-size: 16px;
	color: var(--color-primary);
}

.favorites-modal__items::-webkit-scrollbar {
	width: 4px;
}

.favorites-modal__items::-webkit-scrollbar-thumb {
	background: var(--color-primary);
	border-radius: 100px;
}

.favorites-modal__actions {
	margin-top: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.favorites-modal__actions button:first-child {
	font-weight: 800;
	display: flex;
	align-items: center;
}

.favorites-modal__actions button:first-child svg {
	margin-right: 4px;
}

.favorites-modal__actions button:last-child {
	margin-top: 0;
	width: 230px;
}

@media (max-width: 1199px) {
	.favorites-modal__dialog {
		width: 728px;
		padding: 50px;
	}
}

@media (max-width: 768px) {
	.favorites-modal__dialog {
		width: 350px;
		padding: 30px;
	}

	.favorites-modal__title {
		font-size: 20px;
	}

	.favorites-modal__body {
		margin-top: 22px;
	}

	.favorites-modal__empty-title {
		font-size: 15px;
	}

	.favorites-modal__empty-text {
		margin-top: 6px;
		font-size: 14px;
		text-align: center;
	}

	.favorites-modal__catalog-link,
	.favorites-modal__actions button:last-child {
		margin-top: 22px;
		width: 290px;
		height: 42px;
		border-radius: 4px;
	}

	.favorites-modal__items {
		gap: 12px;
		height: 533px;
		overflow-y: auto;
		padding-right: 16px;
	}

	.favorites-modal__item {
		min-height: 250px;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		padding: 12px 20px;
	}

	.favorites-modal__item-image {
		width: 100px;
		height: 100px;
	}

	.favorites-modal__item-content {
		position: relative;
		width: 100%;
		padding-top: 0;
	}

	.favorites-modal__item-remove {
		position: absolute;
		right: 0;
		bottom: 8px;
	}

	.favorites-modal__item-bottom {
		gap: 4px;
		margin-top: 6px;
	}

	.favorites-modal__actions {
		margin-top: 22px;
		display: flex;
		flex-direction: column-reverse;
		justify-content: start;
		align-items: center;
	}

	.favorites-modal__actions button:first-child {
		font-size: 14px;
		margin-top: 10px;
	}

	.favorites-modal__actions button:first-child svg {
		margin-right: 4px;
	}

	.favorites-modal__actions button:last-child {
		font-size: 14px;
	}
}

/* ===============
CART POPUP
=============== */

.cart-modal[hidden] {
	display: none;
}

.cart-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.cart-modal__dialog {
	width: 1160px;
	position: relative;
	z-index: 1;
	padding: 70px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--color-bg-main);
}

.cart-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.cart-modal__close:hover svg path {
	stroke: var(--color-primary);
}

.cart-modal__title {
	font-weight: 800;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-primary);
}

.cart-modal__body {
	margin-top: 32px;
}

.cart-modal__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cart-modal__empty-title {
	font-weight: 800;
	font-size: 22px;
	text-transform: uppercase;
}

.cart-modal__empty-text {
	margin-top: 12px;
}

.cart-modal__catalog-link,
.cart-modal__actions button:last-child {
	margin-top: 32px;
	width: 300px;
	height: 52px;
	border-radius: 4px;
	background: var(--color-primary);
	color: var(--color-white);
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart-modal__catalog-link:hover,
.cart-modal__actions button:last-child:hover {
	background: var(--color-bg-main);
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

/* Favorite cards modal */

.cart-modal__items {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 330px;
	overflow-y: auto;
	padding-right: 20px;
}

.cart-modal__item {
	height: 157px;
	display: flex;
	align-items: start;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--color-primary);
	border-radius: 12px;
}

.cart-modal__item-image {
	width: 133px;
	height: 133px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-modal__item-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.cart-modal__item-content {
	width: 100%;
	padding-top: 11px;
	display: flex;
	flex-direction: column;
}

.cart-modal__item-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.cart-modal__item-title {
	font-weight: 800;
	font-size: 14px;
	text-transform: uppercase;
}

.cart-modal__item-remove {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}

.cart-modal__item-meta {
	margin-top: 4px;
}

.cart-modal__item-levels {
	font-size: 14px;
}

.cart-modal__item-format {
	font-size: 14px;
	margin-top: 4px;
}

.cart-modal__item-bottom {
	height: 34px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.cart-modal__item-bottom {
	height: 34px;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}

.cart-modal__qty {
	width: 100px;
	height: 100%;
	border: 1px solid rgba(100, 100, 100, 1);
	border-radius: 6px;
	padding: 6px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cart-modal__qty-input {
	font-family: Manrope;
	font-weight: 600;
	font-size: 15px;
	color: var(--color-text);
	min-width: 7px;
	text-align: center;
	border: 0;
	background: transparent;
}

.cart-modal__qty-btn {
	height: 22px;
	width: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-modal__item-multiply {
	transform: rotate(45deg);
	display: block;
	margin-top: 3px;
}

.cart-modal__item-price {
	font-weight: 600;
	font-size: 16px;
	color: var(--color-primary);
}

.cart-modal__items::-webkit-scrollbar {
	width: 4px;
}

.cart-modal__items::-webkit-scrollbar-thumb {
	background: var(--color-primary);
	border-radius: 100px;
}

.cart-modal__summary {
	height: 89px;
	margin-top: 20px;
	margin-right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	border: 1px solid var(--color-primary);
	border-radius: 12px;
}

.cart-modal__total-label {
	font-weight: 600;
	display: flex;
	align-items: center;
}

.cart-modal__total-price {
	margin-left: 4px;
	font-weight: 800;
	font-size: 18px;
}

.cart-modal__checkout-btn {
	margin-top: 0;
	width: 300px;
	height: 49px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart-modal__checkout-btn:hover {
	background: var(--color-bg-main);
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

@media (max-width: 1199px) {
	.cart-modal__dialog {
		width: 728px;
		padding: 50px;
	}

	.cart-modal__summary {
		height: 126px;
		flex-direction: column;
		gap: 12px;
	}
}

@media (max-width: 768px) {
	.cart-modal__dialog {
		width: 350px;
		padding: 30px;
	}

	.cart-modal__title {
		font-size: 20px;
	}

	.cart-modal__body {
		margin-top: 22px;
	}

	.cart-modal__empty-title {
		font-size: 15px;
	}

	.cart-modal__empty-text {
		margin-top: 6px;
		font-size: 14px;
	}

	.cart-modal__catalog-link {
		margin-top: 22px;
		width: 290px;
		height: 42px;
		border-radius: 4px;
	}

	.cart-modal__items {
		gap: 12px;
		height: 533px;
		overflow-y: auto;
		padding-right: 16px;
	}

	.cart-modal__item {
		min-height: 250px;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		padding: 12px 20px;
	}

	.cart-modal__item-image {
		width: 100px;
		height: 100px;
	}

	.cart-modal__item-content {
		position: relative;
		width: 100%;
		padding-top: 0;
	}

	.cart-modal__item-remove {
		position: absolute;
		right: 0;
		bottom: 8px;
	}

	.cart-modal__item-bottom {
		gap: 4px;
		margin-top: 6px;
	}

	.cart-modal__summary {
		height: 116px;
		gap: 12px;
	}

	.cart-modal__total-label {
		font-size: 14px;
	}

	.cart-modal__total-price {
		font-size: 14px;
	}

	.cart-modal__checkout-btn {
		margin-top: 0;
		width: 250px;
		height: 42px;
		font-size: 14px;
	}
}

/* ===================
CHECKOUT
=================== */

.woocommerce-notices-wrapper {
	font-size: 15px;
	margin: 0;
}

.checkout-page__section {
	margin-top: 32px;
}

.checkout-page__title {
	font-family: Manrope;
	font-weight: 800;
	font-size: 32px;
	text-transform: uppercase;
	color: var(--color-primary);
}

.checkout-page__form {
	margin-top: 30px;
}

.checkout-page__grid {
	display: flex;
	justify-content: space-between;
}

.checkout-page__main {
	width: 668px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.checkout-card {
	padding: 20px;
	border: 1px solid var(--color-primary);
	border-radius: 12px;
}

.checkout-card__title {
	font-family: Manrope;
	font-weight: 800;
	font-size: 18px;
}

/* Radio tabs */

.checkout-delivery-region {
	display: none;
}

.checkout-delivery-region.is-active {
	display: block;
}

.checkout-delivery-tabs {
	display: flex;
	align-items: flex-end;
	width: 100%;
	border-bottom: 1px solid rgba(96, 134, 157, 1);
}

.checkout-delivery-tab {
	width: 50%;
	position: relative;
	display: inline-flex;
	margin: 0;
	cursor: pointer;
}

.checkout-delivery-tab input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.checkout-delivery-tab__inner {
	width: 100%;
	padding: 8px 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: start;
	font-size: 16px;
	font-weight: 500;
	color: rgba(96, 134, 157, 1);
	transition: color 0.2s ease;
	white-space: nowrap;
}

.checkout-delivery-tab__inner::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 3px;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.2s ease;
}

.checkout-delivery-tab input:checked + .checkout-delivery-tab__inner {
	color: var(--color-primary);
	font-weight: 600;
}

.checkout-delivery-tab input:checked + .checkout-delivery-tab__inner::after {
	transform: scaleX(1);
}

.checkout-fields-grid {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.checkout-field {
	position: relative;
	width: 308px;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.checkout-field label {
	font-size: 14px;
	line-height: normal;
	font-weight: 600;
}

.checkout-field input {
	width: 100%;
	height: 44px;
	padding: 12px;

	box-shadow: none;
	outline: none;

	font-family: Manrope;
	font-weight: 500;
	font-size: 15px;
	color: var(--color-text);
	border: 1px solid var(--color-primary);
	border-radius: 4px;
	background: transparent;
}

.checkout-field input::placeholder {
	font-family: Manrope;
	font-weight: 500;
	font-size: 15px;
	color: rgba(159, 151, 119, 1);
}

.checkout-field input:focus {
	border: 1.5px solid var(--color-primary);
}

.checkout-field.has-error input {
	border-color: rgba(218, 41, 28, 1);
	color: rgba(218, 41, 28, 1);
}

.checkout-field__error {
	color: rgba(218, 41, 28, 1);
	font-weight: 400;
	font-size: 14px;
}

.checkout-card__save-button {
	margin-top: 0;
	width: 308px;
	height: 52px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.checkout-card__save-button:hover,
.woocommerce .checkout-summary__submit .checkout-page__submit.button.alt:hover {
	background: var(--color-bg-main);
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.checkout-world-shipping {
	margin-top: 20px;
	border: 2px solid var(--color-primary);
	padding: 20px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.checkout-world-shipping label {
	color: rgba(100, 100, 100, 1);
}

.checkout-world-shipping .checkout-field {
	margin-bottom: 0;
	width: 100%;
}

/* aside */

.checkout-page__sidebar {
	width: 472px;
}

.checkout-summary {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.checkout-summary__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.checkout-summary__row strong {
	font-weight: 800;
}

.checkout-summary__total {
	margin-top: 22px;
	height: 62px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(159, 151, 119, 1);
	border-bottom: 1px solid rgba(159, 151, 119, 1);
}

.checkout-summary__total strong {
	font-weight: 800;
}

.woocommerce .checkout-summary__submit .checkout-page__submit.button.alt {
	margin-top: 22px;
	width: 100%;
	height: 52px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	font-weight: 500;
}

.checkout-summary__note {
	margin-top: 12px;
	font-style: 14px;
	color: rgba(100, 100, 100, 1);
}

.checkout-shipping-panel {
	display: none;
}

.checkout-shipping-item.is-active .checkout-shipping-panel {
	display: block;
	padding: 0 20px;
}

.checkout-shipping-methods {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 16px;
}

.checkout-shipping-item {
	border: 1px solid rgba(159, 151, 119, 1);
	border-radius: 12px;
	background: transparent;
	overflow: hidden;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.checkout-shipping-item.is-active {
	overflow: visible;
	border: 2px solid var(--color-primary);
}

.checkout-shipping-method {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 20px;
	cursor: pointer;
	position: relative;
}

.checkout-shipping-method input[type='radio'] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.checkout-shipping-method__control {
	position: relative;
	width: 22px;
	height: 22px;
	border: 2px solid rgba(159, 151, 119, 1);
	border-radius: 50%;
	background: transparent;
	box-sizing: border-box;
}

.checkout-shipping-method__control::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-white);
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.2s ease;
}

.checkout-shipping-method
	input[type='radio']:checked
	+ .checkout-shipping-method__control {
	border-color: var(--color-primary);
	background: var(--color-primary);
}

.checkout-shipping-method
	input[type='radio']:checked
	+ .checkout-shipping-method__control::after {
	transform: translate(-50%, -50%) scale(1);
}

.checkout-shipping-method__content {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.checkout-shipping-method__title {
	display: flex;
	align-items: center;
	gap: 4px;
}

.checkout-shipping-method__price {
	color: rgba(100, 100, 100, 1);
}

.checkout-shipping-panel .checkout-field + .checkout-field,
.checkout-shipping-panel .checkout-field-group {
	margin-top: 14px;
}

.checkout-shipping-panel .checkout-field label {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(100, 100, 100, 1);
}

.checkout-shipping-item.is-active .checkout-field {
	width: 100%;
}

.checkout-shipping-item:last-child.is-active .checkout-shipping-panel {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 20px;
}

.checkout-shipping-item:last-child.is-active .checkout-field {
	width: 280px;
	margin: 0;
}

/* select */

.custom-select {
	position: relative;
	width: 100%;
}

.custom-select__native {
	display: none;
}

.custom-select__trigger {
	width: 100%;
	height: 46px;
	padding: 12.5px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;

	border: 1px solid var(--color-primary);
	border-radius: 4px;

	background: transparent;
	cursor: pointer;

	text-align: left;
	font-size: 15px;
	color: black;

	position: relative;
	overflow: hidden;
}

.custom-select__trigger [data-select-value] {
	flex: 1;
	min-width: 0;
	margin-right: 5px;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.custom-select__arrow {
	position: absolute;
	right: 12.5px;
	top: 50%;

	width: 8px;
	height: 8px;

	border-right: 2px solid #333;
	border-bottom: 2px solid #333;

	transform: translateY(-70%) rotate(45deg);
}

.custom-select__dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;

	background: var(--color-bg-main);

	border: 1px solid var(--color-primary);
	border-top: none;
	border-radius: 0 0 4px 4px;

	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;

	list-style: none;
	margin: 0;
	padding: 6px 0;

	display: none;
	z-index: 100;
}

.custom-select.is-open .custom-select__dropdown {
	display: block;
}

.custom-select__option {
	margin-bottom: 12px;
	cursor: pointer;
	white-space: normal;
	font-size: 15px;
	font-weight: 500;
	color: black;
}

.custom-select__option:hover {
	color: var(--color-primary);
}

.custom-select__dropdown {
	padding-left: 20px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.custom-select__dropdown::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.custom-select__dropdown.has-custom-scroll {
	padding-right: 20px;
}

.custom-select__fake-scroll {
	position: absolute;
	right: 12px;
	width: 4px;
	pointer-events: none;
	display: none;
	z-index: 101;
}

.custom-select.is-open .custom-select__fake-scroll {
	display: block;
}

.custom-select__fake-scroll-track {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	transform: translateX(-50%);
	background: #ddd4aa;
	border-radius: 999px;
}

.custom-select__fake-scroll-thumb {
	position: absolute;
	left: 50%;
	top: 0;
	width: 4px;
	min-height: 24px;
	transform: translateX(-50%);
	background: var(--color-primary);
	border-radius: 999px;
}

/* input city dropdown */

.np-city-suggestions {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;

	background: var(--color-bg-main);

	border: 1px solid var(--color-primary);
	border-top: none;
	border-radius: 0 0 4px 4px;

	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;

	margin: 0;
	padding: 6px 0;

	display: none;
	z-index: 100;
}

.np-city-suggestions.is-open {
	display: block;
	padding: 10px 20px;
}

.np-city-suggestions__item {
	display: block;
	width: 100%;

	margin-bottom: 12px;
	padding: 0;

	text-align: left;
	background: transparent;
	border: none;

	cursor: pointer;
	white-space: normal;

	font-size: 15px;
	font-weight: 500;
	color: black;
}

.np-city-suggestions__item:hover {
	color: var(--color-primary);
}

/* metods */

.checkout-payment-methods {
	margin-top: 16px;
}

.checkout-payment-method {
	display: flex;
	flex-wrap: wrap;
}

.checkout-payment-method .checkout-shipping-method__content {
	max-width: 150px;
}

.checkout-shipping-method__description {
	color: black;
	width: 100%;
}

@media (max-width: 1199px) {
	.checkout-page__grid {
		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: center;
		gap: 20px;
	}

	.checkout-page__main {
		width: 728px;
	}

	.checkout-field {
		width: 338px;
	}

	.checkout-shipping-item:last-child.is-active .checkout-field {
		width: 310px;
		margin: 0;
	}

	.checkout-page__sidebar {
		width: 728px;
	}
}

@media (max-width: 768px) {
	.checkout-page__section {
		margin-top: 22px;
	}

	.checkout-page__title {
		font-size: 22px;
	}

	.checkout-page__main {
		width: 350px;
	}

	.checkout-fields-grid {
		margin-top: 12px;
	}

	.checkout-field {
		margin-bottom: 12px;
	}

	.checkout-shipping-method {
		padding: 12px;
		align-items: start;
	}

	.checkout-shipping-method__content {
		font-size: 14px;
		width: 250px;
		align-items: start;
	}

	.checkout-shipping-method__content svg {
		width: 22px;
		height: 22px;
	}

	.checkout-shipping-method__title {
		display: flex;
		align-items: start;
	}

	.checkout-shipping-method__title-width {
		width: 120px;
	}

	.checkout-shipping-method__price {
		white-space: nowrap;
	}

	.checkout-shipping-item:last-child.is-active .checkout-shipping-panel {
		gap: 12px;
	}

	.checkout-shipping-item:last-child.is-active .checkout-shipping-panel label {
		margin-bottom: 0;
	}

	.checkout-page__sidebar {
		width: 350px;
	}
}

/* ===============
CART CARD POPUP
=============== */

.card-cart-modal[hidden] {
	display: none;
}

.card-cart-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-cart-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.card-cart-modal__dialog {
	width: 570px;
	height: 400px;
	position: relative;
	z-index: 3;
	padding: 70px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--color-bg-main);
}

.card-cart-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.card-cart-modal__close:hover svg path {
	stroke: var(--color-primary);
}

.card-cart-modal__title {
	font-weight: 800;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-primary);
}

.card-cart-modal__body {
	margin-top: 32px;
}

.card-cart-modal__body .pdp-info__checkbox {
	margin-top: 0;
}

.card-cart-modal__body .pdp-info__checkbox:last-child {
	margin-top: 8px;
}

.card-cart-modal__body .pdp-info__control-text {
	font-size: 16px;
	font-weight: 500;
}

.card-cart-modal__body .cart-modal__item-bottom {
	margin-top: 26px;
}

.card-cart-modal__body .card-cart-picker__submit {
	margin: 26px auto 0;
	width: 300px;
	height: 52px;
	color: var(--color-white);
	background: var(--color-primary);
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card-cart-modal__body .card-cart-picker__submit:hover {
	color: var(--color-primary);
	background: var(--color-bg-main);
	border: 1px solid var(--color-primary);
}

@media (max-width: 768px) {
	.card-cart-modal__dialog {
		width: 350px;
		height: 270px;
		padding: 30px;
	}

	.card-cart-modal__title {
		font-size: 20px;
	}

	.card-cart-modal__body {
		margin-top: 22px;
	}

	.card-cart-modal__body .pdp-info__control-text {
		font-size: 14px;
	}

	.card-cart-modal__body .cart-modal__item-bottom {
		margin-top: 16px;
	}

	.card-cart-modal__body .card-cart-picker__submit {
		margin-top: 16px;
		width: 290px;
		height: 42px;
		font-size: 14px;
	}
}

/* ===============
LEAD POPUP
=============== */

.lead-modal[hidden] {
	display: none;
}

.lead-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lead-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.lead-modal__dialog {
	width: 570px;
	height: 334px;
	position: relative;
	z-index: 3;
	padding: 70px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--color-bg-main);
}

.lead-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.lead-modal__close:hover svg path {
	stroke: var(--color-primary);
}

.lead-modal__body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lead-modal__title {
	font-weight: 800;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-primary);
}

.lead-modal__text {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 15px;
	font-weight: 500;
}

.lead-modal__text span {
	text-align: center;
}

.lead-modal__btn {
	margin-top: 32px;
	width: 300px;
	height: 52px;
	color: var(--color-white);
	background: var(--color-primary);
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lead-modal__btn:hover {
	color: var(--color-primary);
	background: var(--color-bg-main);
	border: 1px solid var(--color-primary);
}

@media (max-width: 1199px) {
	.lead-modal__dialog {
		width: 628px;
		height: 294px;
		padding: 50px;
	}
}

@media (max-width: 768px) {
	.lead-modal__dialog {
		width: 350px;
		height: 236px;
		padding: 30px;
	}

	.lead-modal__title {
		font-size: 20px;
	}

	.lead-modal__text {
		font-size: 14px;
	}

	.lead-modal__btn {
		margin-top: 22px;
		width: 290px;
		height: 42px;
		font-size: 14px;
	}
}

/* review img modal */

.review-card__img.js-review-image {
	cursor: zoom-in;
}

.review-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.review-lightbox[hidden] {
	display: none;
}

.review-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.review-lightbox__dialog {
	position: relative;
	z-index: 2;
	max-width: 95vw;
	max-height: 95vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-lightbox__img {
	display: block;
	max-width: 95vw;
	max-height: 95vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 16px;
}

.review-lightbox__close {
	z-index: 3;
	position: absolute;
	top: 20px;
	right: 20px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.review-lightbox__close:hover svg path {
	stroke: var(--color-primary);
}

/* =======================
PDF / WORKBOOK VIEWER
======================= */

.workbook-lightbox[hidden] {
	display: none;
}

.workbook-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding: 0 20px;
}

.workbook-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.workbook-lightbox__dialog {
	position: relative;
	z-index: 2;
	width: min(1200px, 95vw);
	height: 100%;
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.workbook-lightbox__content {
	position: relative;
	width: 100%;
	height: 100%;
	background: var(--color-bg-main);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.workbook-lightbox__head {
	padding: 20px 24px 12px;
	flex-shrink: 0;
}

.workbook-lightbox__title {
	font-size: 20px;
	color: var(--color-primary);
}

.workbook-lightbox__note {
	margin: 0 0 8px;
	font-size: 14px;
}

.workbook-lightbox__status {
	font-size: 14px;
}

.workbook-lightbox__status.is-error {
	color: #b42318;
}

.workbook-lightbox__body {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

.workbook-lightbox__pages {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 0 40px 24px 24px;

	scrollbar-width: none;
	-ms-overflow-style: none;
}

.workbook-lightbox__pages[hidden] {
	display: none;
}

.workbook-lightbox__pages::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.workbook-lightbox__media {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	overflow: auto;
}

.workbook-lightbox__media[hidden] {
	display: none;
}

.workbook-lightbox__image,
.workbook-lightbox__video {
	display: block;
	max-width: 100%;
	max-height: 70vh;
	width: auto;
	height: auto;
	margin: 0 auto;
}

.workbook-lightbox__video {
	width: 100%;
	max-width: 900px;
	background: #000;
}

.workbook-lightbox__page {
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}

.workbook-lightbox__canvas {
	display: block;
	width: 100%;
	height: auto;
}

.workbook-lightbox__page-placeholder,
.workbook-lightbox__page-error {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 400px;
	border-radius: 12px;
	background: #f5f5f5;
	color: rgba(0, 0, 0, 0.5);
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	padding: 20px;
}

.workbook-lightbox__page-error {
	background: #fff1f3;
	color: #b42318;
}

.workbook-lightbox__scrollbar {
	position: absolute;
	top: 80px;
	right: 14px;
	bottom: 16px;
	width: 14px;
	display: flex;
	justify-content: center;
	z-index: 3;
	pointer-events: none;
}

.workbook-lightbox__scrollbar-track {
	position: relative;
	width: 8px;
	height: 100%;
	border-radius: 999px;
	background: #f3eab8;
	overflow: hidden;
}

.workbook-lightbox__scrollbar-thumb {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	min-height: 48px;
	border-radius: 999px;
	background: #3f7edb;
	pointer-events: auto;
	cursor: pointer;
}

.workbook-lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 4;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.workbook-lightbox__close:hover svg path {
	stroke: var(--color-primary);
}

body.is-workbook-modal-open {
	overflow: hidden;
}

@media (max-width: 768px) {
	.workbook-lightbox {
		padding: 8px;
	}

	.workbook-lightbox__dialog {
		width: 100%;
		height: 100%;
	}

	.workbook-lightbox__head {
		padding: 12px 16px 8px;
	}

	.workbook-lightbox__title {
		font-size: 16px;
	}

	.workbook-lightbox__pages {
		padding: 0 32px 16px 16px;
	}

	.workbook-lightbox__media {
		display: block;
		padding: 12px 16px 16px;
		overflow-y: auto;
	}

	.workbook-lightbox__scrollbar {
		top: 72px;
		right: 10px;
		bottom: 12px;
	}

	.workbook-lightbox__video {
		display: block;
		width: 100%;
		max-width: 100%;
		max-height: none;
		height: auto;
		margin: 0;
		border-radius: 12px;
	}

	.workbook-lightbox__image {
		display: block;
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 70vh;
		margin: 0 auto;
		border-radius: 12px;
	}
}

/* LOADER */

.boo-checkout-modal__spinner {
	width: 48px;
	height: 48px;
	border: 3px solid rgba(0, 0, 0, 0.1);
	border-top-color: var(--color-primary);
	border-radius: 50%;
	animation: booSpin 0.8s linear infinite;
	margin: 0 auto 20px;
}

@keyframes booSpin {
	to {
		transform: rotate(360deg);
	}
}

.woocommerce-checkout .blockUI.blockOverlay {
	display: none !important;
}

.woocommerce-checkout form.checkout.processing::before {
	display: none !important;
}

/* Order pay visible */

.woocommerce-order-pay header {
	height: 110px;
}

/* .woocommerce-order-pay .woocommerce {
	display: none;
}

.woocommerce-order-pay footer {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
} */
