@font-face {
	font-family: 'Helvetica Neue';
	src: url(./fonts/HelveticaNeueRegular.woff2) format('woff2'),
		url(./fonts/HelveticaNeueRegular.ttf) format('truetype');
	font-weight: 400;
}

@font-face {
	font-family: 'Helvetica Neue';
	src: url(./fonts/HelveticaNeueBold.woff2) format('woff2'),
		url(./fonts/HelveticaNeueBold.ttf) format('truetype');
	font-weight: 700;
}

@font-face {
	font-family: 'Helvetica Neue';
	src: url(./fonts/HelveticaNeueMedium.woff2) format('woff2'),
		url(./fonts/HelveticaNeueMedium.ttf) format('truetype');
	font-weight: 500;
}

@font-face {
	font-family: 'Inter';
	src: url(./fonts/Inter-Light.woff2) format('woff2'),
		url(./fonts/Inter-Light.ttf) format('truetype');
	font-weight: 300;
}

@font-face {
	font-family: 'Inter';
	src: url(./fonts/Inter-Regular.woff2) format('woff2'),
		url(./fonts/Inter-Regular.ttf) format('truetype');
	font-weight: 400;
}

@font-face {
	font-family: 'Inter';
	src: url(./fonts/Inter-SemiBold.woff2) format('woff2'),
		url(./fonts/Inter-SemiBold.ttf) format('truetype');
	font-weight: 600;
}

:root {
	--primary-font: 'Helvetica Neue', sans-serif;
	--secondary-font: 'Inter', sans-serif;

	--primary-light: #B7FF26;
	--primary-dark: #A0E612;
	--accent-text: #000;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	max-width: 480px;
	width: 100%;

	margin: 0 auto;

	background: #2c2c2c;
	font-family: var(--primary-font);
	font-weight: 400;
	font-size: 15px;
	line-height: 100%;
	color: #fff;
	cursor: default;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol,
li {
	list-style: none;
}

.container {
	padding: 0 16px;
}

.main_wrapper {
	margin: 0 auto;
	max-width: 480px;
	width: 100%;

	background: #000;
	min-height: 100vh;

	display: flex;
	flex-direction: column;
}

.header:hover .header__content {
	animation-play-state: paused;
}

.header__wrapper {
	display: flex;
	gap: 12px;

	overflow: hidden;
	white-space: nowrap;

	background: #9FE612;
	color: var(--accent-text);

	padding: 13px 0px;
}

.header__content {
	display: flex;
	align-items: center;
	gap: 12px;

	will-change: transform;
	animation: scrolling 10s linear infinite;
}

.header__item {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
}

@keyframes marquee {
	0% {
		transform: translateX(100%);
	}

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

@keyframes scroll-text {
	to {
		transform: translateX(-100%);
	}
}

@keyframes scrolling {
	0% {
		transform: translateX(0);
	}

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


.hero__img-wrapper {
	position: relative;
}

.hero__img-wrapper::before {
	content: '';

	background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000200 90% 100%);
	position: absolute;

	width: 100%;
	height: 44px;

	left: 0;
	right: 0;
	bottom: 0;
}

.hero__img-wrapper::after {
	content: '';

	/*background: linear-gradient(180deg, #000200 0%, rgba(0, 0, 0, 0) 100%);*/
	position: absolute;

	width: 100%;
	height: 44px;

	left: 0;
	right: 0;
	top: 0;
}

.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__content {
	position: relative;
	top: -8px;

	background: #000;
	z-index: 1;

	padding-top: 40px;
	padding-bottom: 23px;
}

.hero__price {
	outline: 2px solid var(--primary-light);
	display: inline-block;

	position: absolute;
	top: -31px;
	left: 50%;
	transform: translateX(-50%);

	border-radius: 5px;
}

.hero__price-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;

	background: var(--primary-light);
	margin: 2px;

	border-radius: 5px;

	padding: 6px 10px;
}

.hero__price-col {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hero__price-tag {

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 1px;
	border-radius: 3px;

	font-size: 8px;
	font-weight: 400;

	background: #000;
	color: #fff;
}

.hero__price-old {
	font-weight: 400;
	font-size: 16px;
	text-decoration: line-through;
	color: rgba(0, 0, 0, 0.5);
	text-wrap: nowrap;
	white-space: nowrap;
}

.hero__price-line {
	height: 30px;
	width: 1px;

	background: var(--primary-dark);
	flex-shrink: 0;
}

.hero__price-now {
	font-weight: 700;
	font-size: 36px;
	text-wrap: nowrap;
	white-space: nowrap;
	color: #000;
}

.hero__title {
	font-weight: 700;
	font-size: 20px;
	line-height: 120%;
}

.hero__rating {
	display: flex;
	align-items: center;
	gap: 8px;

	margin-top: 8px;
}

.hero__rating-value {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.hero__rating-reviews {
	font-size: 15px;
	font-weight: 400;
	text-decoration: underline;

	color: rgba(255, 255, 255, 0.6)
}

.hero__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;

	margin-top: 20px;
}


.hero__card {
	display: flex;
	align-items: center;
	gap: 8px;

	position: relative;

	border: 1px solid #323431;
	border-radius: 8px;

	overflow: hidden;
}

.hero__card-img {
	position: relative;
	top: -1px;
	bottom: -1px;
	left: -1px;

	margin-bottom: -2px;
	padding: 7px;

	background: #242424;
	border: 1px solid #323431;
	border-radius: 8px;
}

.hero__card-img img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	object-position: center;
}

.hero__card-desc {
	font-weight: 400;
	font-weight: 14;
	text-align: center;
}

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

	position: relative;

	margin: 30px 20px;
	padding: 16px 0px;

	border: none;
	border-radius: 8px;
	background: var(--primary-dark);
	color: var(--accent-text);

	font-family: var(--primary-font);
	font-weight: 500;
	font-size: 20px;

	line-height: 120%;

	cursor: pointer;

	transition: 0.3s;
}

.hero__btn:hover {
	opacity: 0.8;
}

.hero__btn span {
	font-weight: 400;
	font-size: 20px;
	color: #5E8510;
	text-decoration: line-through;
}


.offer {
	margin: 0 16px;
}

.offer-header {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}

.offer-timer {
	color: var(--primary-dark);
	font-size: 18px;
	font-weight: bold;
}

.offer-container {
	/* background: #fff; */
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.offer-option {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 15px 20px;
	cursor: pointer;
	position: relative;
	transition: border 0.3s ease;
	background-color: #242424;
	border-radius: 10px;
}


.offer-option--selected {
	border: 1px solid var(--primary-light);
	/* background-color: #f0f5ed; */
}

.offer-radio {
	display: none;
}

.custom-radio-mark {
	width: 20px;
	height: 20px;
	border: 2px solid var(--primary-dark);
	border-radius: 50%;
	margin-right: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	position: relative;
}

.offer-radio:checked+.custom-radio-mark::before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: var(--primary-dark);
	border-radius: 50%;
}

.offer-label-right {
	margin-top: 5px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.offer-label-top-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.offer-label {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: white;
}

.offer-label-top-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.offer-title {
	font-size: 18px;
	font-weight: bold;
	color: white;
}

.offer-subtext {
	padding-top: 7px;
	font-size: 14px;
	color: white;
}

.offer-pricing {
	text-align: right;
}

.offer-price-current {
	margin-top: 5px;
	font-size: 18px;
	font-weight: bold;
	color: white;

}

.offer-price-old {
	padding-top: 5px;
	font-size: 14px;
	text-decoration: line-through;
	-webkit-text-decoration-line: line-through;
	color: #aaa;
}

.offer-discount {
	background: var(--primary-dark);
	color: #1B1B1B;
	font-size: 12px;
	border-radius: 2px;
	padding: 1px 6px;
	display: inline-block;
}

.offer-badge {
	position: absolute;
	top: -10px;
	right: 10px;
	background: var(--primary-dark);
	color: #1B1B1B;
	font-size: 10px;
	padding: 4px 8px;
	border-radius: 3px;
	font-weight: bold;
}


.offer-button {
	display: block;
	margin-top: 20px;
	background: var(--primary-dark);
	color: #1B1B1B;
	padding: 15px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;

	border: 0;
}

.offer-quantity {
	text-align: center;
	margin-top: 15px;
	font-size: 12px;
}

.offer-quantity-number {
	background-color: var(--primary-dark);
	color: #1B1B1B;
	font-weight: bold;
	padding: 5px;
}

.offer-button:hover {
	background: var(--primary-light);
}

.advantages {
	margin-bottom: 1.5rem;
}

.advantages__inner {
	display: flex;
	justify-content: space-between;

	position: relative;
}

.advantages__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;

	width: 101px;

	z-index: 1;
}

.advantages__item-img {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 72px;
	height: 72px;

	background: #1B1B1B;
	border: 2px solid #373535;
	outline: 3px solid #000;
	border-radius: 50%;
}

.advantages__item-title {
	margin-top: 13px;

	font-weight: 700;
	font-size: 14px;
}

.advantages__item-desc {
	margin-top: 7px;

	color: rgba(255, 255, 255, 0.5);

	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
}

.advantages__hr {
	position: absolute;
	left: 20px;
	right: 20px;
	top: 36px;
	height: 2px;

	background: #373535;
}

.history {}

.history__item {
	background: #1B1B1B;
	border: 2px solid #373535;
	border-radius: 24px;

	overflow: hidden;
}

.history__item-img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
}

.history__item-content {
	position: relative;

	padding: 20px;
}

.history__item-content::after {
	content: '';

	position: absolute;
	top: -14px;
	right: 22px;

	width: 53px;
	height: 53px;
	background-image: url(./imgs/icons/green-star.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.history__item-title {
	font-weight: 700;
	font-size: 20px;
}

.history__item-desc {
	margin-top: 14px;

	color: rgba(255, 255, 255, 0.7);

	font-family: var(--secondary-font);
	font-weight: 400;
	font-size: 14px;
	line-height: 137%;
	letter-spacing: 0.25px;
}

.desc {
	margin-top: 14px;

	position: relative;
}

.desc-image {
	margin-top: 14px;

	position: relative;
}

.desc-image::before {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	right: 0;

	height: 98px;
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	;
}

.desc-image::after {
	content: '';

	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;

	height: 110px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	;
}


.desc__img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 1/1;

}

.desc__title {
	margin-top: 24px;

	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-align: center;
}


.desc__options {
	margin-top: 20px;
}

.desc__item {
	display: flex;
	justify-content: space-between;
	padding-bottom: 12px;

	border-bottom: 1px solid #3B3D3B;
}

.desc__item:not(:first-child) {
	padding-top: 15px;
}

.desc__item:last-child {
	border: none;
}

.desc__item-title {
	display: flex;
	gap: 8px;


	font-family: var(--secondary-font);
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;

	color: rgba(255, 255, 255, 0.7);
}

.desc__item-title::before {
	content: '';

	display: block;
	width: 14px;
	height: 14px;
	background-image: url(./imgs/icons/green-star.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.desc__item-span {
	font-family: var(--secondary-font);
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	text-align: right;
}

.forwho {
	position: relative;

	margin-top: 14px;
	overflow: hidden;
}

.forwho__img {
	width: 575px;
	height: 382px;
	object-fit: cover;
	object-position: -85px center;
}

.forwho__card {
	position: absolute;
	bottom: 20px;
	left: 16px;
	right: 16px;

	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 16px 20px;

	border: 1px solid #353535;
	border-radius: 20px;
	background: #1B1B1B;
}

.forwho__card-title {
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 120%;
}

.forwho__card-desc {
	margin-top: 8px;

	font-weight: 700;
	font-size: 16px;
	line-height: 115%;
	text-align: center;
}

.clients {
	margin-top: 32px;
}

.clients__title {
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-align: center;
}

.clients__rating {
	display: flex;
	align-items: center;

	margin: 0 auto;

	width: fit-content;

	margin-top: 8px;
	padding: 0 0 0 12px;

	border: 1px solid #2E2F2E;
	border-radius: 20px;

	overflow: hidden;
}

.clients__rating-img {
	width: 88px;
}

.clients__rating-value {
	margin-left: 5px;

	color: #9FE612;

	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: -1px;
}

.clients__rating-reviews {
	background: #242424;

	padding: 9px 11px;
	margin-left: 8px;

	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: -0.25px;
}

.clients__splide {
	position: relative;
	margin-top: 16px;
}

.clients__list {
	padding-left: 16px;
}

.clients__slide {
	height: auto !important;

	padding: 16px 8px 8px;

	border-radius: 20px;
	background: #1B1B1B;

	display: flex !important;
	flex-direction: column;

	flex-shrink: 0;
}



.clients__slide-header-img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
}

.clients__slide-header {
	display: flex;
	align-items: center;

	padding: 0px 8px;
}

.clients__slide-info {
	display: flex;
	column-gap: 40px;
}

.clients__slide-about {
	margin-left: 16px;
	display: flex;
	flex-direction: column;
}

.clients__slide-name {
	font-family: var(--secondary-font);
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;

	color: #fff;
}

.clients__slide-city {
	margin-top: 5px;

	font-family: var(--secondary-font);
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;

	color: rgba(255, 255, 255, 0.7);
}

.clients__slide-stars {
	width: 88px;

	margin-left: auto;
}

.clients__slide-content {
	display: flex;
	flex-direction: column;

	margin-top: 12px;
	height: 100%;
}

.clients__slide-p {
	font-family: var(--secondary-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;

	margin: 0 8px 12px;
	padding-top: 8px;

	border-top: 1px solid #292929;
}

.clients__slide-img {
	margin-top: auto;

	width: 100%;
	border-radius: 16px;

	aspect-ratio: 3 / 4;

	object-fit: cover;
	object-position: center;
}

.clients__slide:nth-child(1) .clients__slide-img {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(2) .clients__slide-img {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(3) .clients__slide-img {
	aspect-ratio: 3 / 4.3;
}

.clients__slide:nth-child(4) .clients__slide-img {
	aspect-ratio: 3 / 4;
}

.clients__slide:nth-child(5) .clients__slide-img {
	aspect-ratio: 3 / 4.5;
}

.clients__slide:nth-child(6) .clients__slide-img {
	aspect-ratio: 9 / 16;
}

.clients__slide-img-pr {
	margin-top: auto;

	width: 100%;
	border-radius: 16px;

	aspect-ratio: 3 / 4;

	object-fit: cover;
	object-position: center;
}

.clients__slide:nth-child(1) .clients__slide-img-pr {
	aspect-ratio: 1 / 1;
}

.clients__slide:nth-child(2) .clients__slide-img-pr {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(3) .clients__slide-img-pr {
	aspect-ratio: 1 / 1;
}

.clients__slide:nth-child(4) .clients__slide-img-pr {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(5) .clients__slide-img-pr {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(6) .clients__slide-img-pr {
	aspect-ratio: 9 / 16;
}

.clients__slide-img-dior {
	margin-top: auto;

	width: 100%;
	border-radius: 16px;

	aspect-ratio: 3 / 4;

	object-fit: cover;
	object-position: center;
}

.clients__slide:nth-child(1) .clients__slide-img-dior {
	aspect-ratio: 1 / 1;
}

.clients__slide:nth-child(2) .clients__slide-img-dior {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(3) .clients__slide-img-dior {
	aspect-ratio: 1 / 1;
}

.clients__slide:nth-child(4) .clients__slide-img-dior {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(5) .clients__slide-img-dior {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(6) .clients__slide-img-dior {
	aspect-ratio: 9 / 16;
}

.clients__slide-img-creed {
	margin-top: auto;

	width: 100%;
	border-radius: 16px;

	aspect-ratio: 3 / 4;

	object-fit: cover;
	object-position: center;
}

.clients__slide:nth-child(1) .clients__slide-img-creed {
	aspect-ratio: 1 / 1;
}

.clients__slide:nth-child(2) .clients__slide-img-creed {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(3) .clients__slide-img-creed {
	aspect-ratio: 1 / 1;
}

.clients__slide:nth-child(4) .clients__slide-img-creed {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(5) .clients__slide-img-creed {
	aspect-ratio: 9 / 16;
}

.clients__slide:nth-child(6) .clients__slide-img-creed {
	aspect-ratio: 9 / 16;
}

.banners {
	position: relative;
	overflow: hidden;
	height: 200px;
}

.banners__line {
	display: flex;
	align-items: center;
	gap: 12px;

	background: #9FE612;
	padding: 6px;

	box-shadow: 0px 4px 4px 0px #00000040;

	position: absolute;
}

.banners__line:nth-child(1) {
	transform: rotate(-11.5deg);
	left: -96px;
	top: 24%;
}

.banners__line:nth-child(2) {
	transform: rotate(13.5deg);
	left: -152px;
	top: 38%;
}

.banners__line-item {
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	color: #000;
	text-wrap: nowrap;
	white-space: nowrap;
}

.banners__line img {
	width: 12px;
	height: 12px;
	object-fit: contain;
	object-position: center;
}

.catalog {
	margin-top: -64px;
}

.catalog__title {
	margin-left: 16px;

	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
}

.catalog__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;

	margin-top: 20px;
}

.catalog__card {
	padding: 4px;

	border-radius: 16px;
	border: 1px solid #353535;

	background: #1B1B1B;
}

.catalog__card-img {
	border-radius: 12px;
	aspect-ratio: 152/138;
	width: 100%;

	object-fit: cover;
	object-position: center;
}

.catalog__card-title {
	margin-top: 10px;

	font-family: var(--secondary-font);
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
}

.catalog__card-desc {
	text-align: center;
	font-family: var(--secondary-font);
	font-size: 12px;
	line-height: 20px;
	font-weight: 300;
}

.catalog__card-price {
	margin-top: 2px;

	text-align: center;
	font-family: var(--secondary-font);
	font-weight: 600;
	font-size: 20px;
	line-height: 20px;

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

.catalog__card-price span:nth-child(2) {
	font-size: 14px;
	color: #fff;
	text-decoration: line-through;
	font-weight: 400;
}

.catalog__card-btn {
	margin-top: 10px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 12px;
	padding: 12px 9px;
	width: 100%;

	background: #fff;
	color: #000;
	border: 1px solid black;

	font-family: var(--primary-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: -0.5px;
	text-decoration: none;
	text-align: center;

	cursor: pointer;

	transition: background 0.3s;
}

.catalog__card-btn:hover {
	background: var(--primary-dark);
}

.order {
	margin-top: 38px;
}

.order__title {
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	color: #fff;
}

.order__cards {
	margin-top: 14px;

	display: flex;
	flex-direction: column;
	gap: 8px;
}

.order__card {
	display: flex;
	align-items: center;
	gap: 16px;

	padding: 6px;
	padding-right: 24px;

	border-radius: 20px;
	border: 1px solid #353535;
	background: #1B1B1B;
}

.order__card:nth-child(2n) {
	flex-direction: row-reverse;
	padding-right: 6px;
	padding-left: 24px;
}

.order__card-img {
	border-radius: 16px;
	width: 110px;

	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
}

.order__card-title {
	color: rgba(255, 255, 255, 0.4);

	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
}

.order__card-desc {
	color: #fff;

	font-weight: 700;
	font-size: 16px;
	line-height: 120%;

	margin-top: 8px;
}

.cart {
	margin-top: 20px;
	padding: 20px 0px 16px;
	background: #1B1B1B;
}

.cart__title {
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	color: #fff;
}

.cart__list {
	margin-top: 24px;
}

.cart__item {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 12px;

	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #3D3D3D;
}


.cart__item-img {
	width: 88px;

	aspect-ratio: 1;
	border-radius: 8px;
}

.cart__item-title {
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
}

.cart__item-info {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.cart__item-price {
	margin-top: 4px;

	font-family: var(--secondary-font);
	font-weight: 600;
	font-size: 20px;
	line-height: 20px;
	color: #fff;
}

.cart__item-price span {
	font-size: 16px;
	text-decoration: line-through;

	color: #878787;
}

.cart__item-size {
	font-family: var(--secondary-font);
	font-weight: 300;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
}

.cart__item-amount {
	display: flex;
	justify-content: space-between;
	align-items: center;

	margin-top: 8px;

	border-radius: 8px;
	border: 1px solid #3d3d3d;
}

.cart__item-minus {
	display: flex;
	justify-content: center;
	align-items: center;

	border-radius: 8px;
	border: 1px solid #1B1B1B;
	background: #41423E;

	font-family: var(--primary-font);
	font-weight: 500;
	font-size: 32px;
	line-height: 100%;
	text-align: center;

	color: #9FE612;

	width: 77px;
	height: 34px;

	cursor: pointer;

	transition: opacity 0.3s;
}

.cart__item-minus:hover {
	opacity: 0.8;
}

.cart__item-plus {
	display: flex;
	justify-content: center;
	align-items: center;

	border-radius: 8px;
	border: 1px solid #1B1B1B;
	background: #41423E;

	font-family: var(--primary-font);
	font-weight: 500;
	font-size: 32px;
	line-height: 100%;
	text-align: center;

	background: var(--primary-dark);
	color: #000;

	width: 77px;
	height: 34px;

	cursor: pointer;

	transition: opacity 0.3s;
}

.cart__item-plus:hover {
	opacity: 0.8;
}

.cart__item-count {
	font-family: var(--secondary-font);
	font-weight: 600;
	font-size: 18px;
	line-height: 20px;
}

.cart__total {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 12px;
}

.cart__total-title {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
}

.cart__total-price {
	font-family: var(--secondary-font);
	font-weight: 600;
	font-size: 20px;
	line-height: 20px;

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

.cart__total-price-old {
	font-size: 14px;
	font-weight: 400;
	text-decoration: line-through;

	color: #fff;
}

.order-form {
	background: #1B1B1B;
	padding: 24px 0px 20px;
}

.order-form__title {
	margin: 0 0 20px 0;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	color: #fff;
}

.order-form__form {}

.order-form__field {
	padding: 12px;
	margin-bottom: 8px;
	width: 100%;

	border: 1px solid #FFFFFF26;
	border-radius: 8px;

	font-family: var(--primary-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;

	color: #fff;
	background: transparent;
}

.order-form__field::placeholder {
	font-family: var(--primary-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;

	color: #FFFFFF80;
}

.order-form__btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;

	margin-top: 16px;
	padding: 16px 0px;
	width: 100%;

	border: none;
	border-radius: 8px;

	background: var(--primary-dark);
	color: var(--accent-text);

	font-family: var(--primary-font);
	font-weight: 500;
	font-size: 20px;
	line-height: 120%;

	cursor: pointer;

	transition: opacity 0.3s;
}

.order-form__btn--promocja::after {
	content: attr(data-rabat);

	position: absolute;
	top: -8px;
	right: 17px;

	padding: 4px 8px;
	border-radius: 6px;

	font-weight: 400;
	font-size: 11px;
	line-height: 100%;

	color: #fff;
	background: #C03E3E;
}

.order-form__btn:hover {
	opacity: 0.8;
}

.order-form__price-old {
	color: #00000080;
	text-decoration: line-through;
}

.order-form__payment {
	margin-top: 10px;
	text-align: center;
	font-size: 14px;
	color: rgb(250 247 247 / 50%)
}

.timer {
	background-color: #242424;
	padding: 20px 0;
}

.timer__title {
	font-weight: 400;
	line-height: 100%;
	text-align: center;

	margin-bottom: 15px;
}

.timer-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 10px;
}

.digit-group {
	display: flex;
	gap: 5px;
}

.digit {
	background: var(--primary-dark);
	padding: 15px 15px;
	border-radius: 10px;
	font-size: 20px;
	width: 40px;
	color: #1B1B1B;
}

.label-row {
	display: flex;
	justify-content: center;
	gap: 75px;
}

.unit-label {
	font-size: 14px;
	font-weight: normal;
	margin-top: 5px;
	color: white;
}

.accordion {
	padding: 0 20px 20px 20px;
}

.accordion-item {
	border-bottom: 1px solid #3B3D3B;
	padding: 16px 0;
	position: relative;
}

.accordion-summary {
	list-style: none;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-summary::-webkit-details-marker {
	display: none;
}

.accordion-arrow {
	width: 24px;
	height: 24px;
	padding: 3px 3px;
	background-color: var(--primary-dark);
	color: #1B1B1B;
	border-radius: 50%;
	transition: transform 0.3s linear;
}

details[open] .accordion-arrow {
	transform: rotate(180deg);
}

.accordion-content {
	padding-top: 12px;
	font-size: 14px;
	color: rgb(163, 163, 163)
}

.footer {
	margin-top: auto;
}

.footer__links {
	display: flex;
	justify-content: center;
	gap: 16px;

	padding: 12px 0;
	border-bottom: 1px solid #FFFFFF26;
}

.footer__link {
	font-family: var(--primary-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-align: center;
	text-decoration: underline;

	color: #FFFFFFB2;

	transition: color 0.3s;
}

.footer__link:hover {
	color: #fff;
}

.footer__copyright {
	padding: 10px 0 12px;

	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-align: center;

	color: #FFFFFF66;
}

.success-hero {
	padding-top: 16px;
	margin-bottom: 24px;
}

.success-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 24px 16px;

	background: #1B1B1B;
	border: 2px solid #373535;
	border-radius: 24px;
}

.success-hero__img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	object-position: center;
}

.success-hero__title {
	margin-top: 16px;

	font-family: var(--primary-font);
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-align: center;
}

.success-hero__desc {
	margin-top: 8px;

	font-family: var(--secondary-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	text-align: center;


	color: #FFFFFFB2;
}

@media (max-width: 438px) {
	.clients__slide-info {
		flex-direction: column;
	}

	.clients__slide-stars {
		padding: 5px 0 0 5px;
		margin-left: 10px;
	}
}

@media (max-width: 400px) {
	.offer-label {
		align-items: flex-start;
	}

	.offer-label-top-line {
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
	}

	.offer-quantity {
		line-height: 1.5;
	}
}

@media (max-width: 359px) {
	.cart__item-count {
		font-size: 14px;
	}

	.cart__item-plus,
	.cart__item-minus {
		font-size: 26px;
		width: 60px;
	}

	.cart__item-title {
		font-size: 14px;
	}

	.timer-container {
		gap: 20px;
	}
}

@media (max-width: 345px) {
	.offer-subtext {
		font-size: 10px;
	}
}

.back-button {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 2px;

	width: 100px;

	background-color: black;

	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s;

	z-index: 3;
}