@font-face {
    font-family: 'Lora';
    src: url('../fonts/lora/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700; /* Диапазон весов, поддерживаемых шрифтом */
    font-style: normal;
}

@font-face {
    font-family: 'Lora';
    src: url('../fonts/lora/Lora-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: italic;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:"Lora",sans-serif;
	--main-color: #C29F4B;
	--main-color-white: #FEFEFC;
}
.bg-main-color {
	background: var(--main-color);
}

.l-mobile-header .navbar {
    border-bottom: 0 !important;
}

.l-mobile-header__top-item button {
    padding: 0 !important;
}

.b-mobile-logo {
    max-height: none !important;
}

.b-mobile-logo__link {
    width: 100%;
    display: flex;
    margin: 0 !important;
    padding: 0 !important;
}

.b-mobile-logo__img {
    display: block;

    img {
        max-height: 54px;
        height: auto !important;
        width: 100%;
    }
}

@media (min-width: 400px) {
    .b-mobile-logo {
        margin-inline-start: 20px;
    }
}

body.no-scroll {
	overflow: hidden;
}
button:hover {
	cursor: pointer;
}
button:focus {
	outline: none;
}
button {
	background: transparent;
	border: none;
	outline: none;
}
header {
	width: 100%;
}
header .header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #151515;
	padding: 10px 20px ;
}
.btn.btn-dark-theme-link {
	color: var(--main-color);
}
.hidden {
	display: none;
}
.header-group {
	display: none;
	justify-content: space-between;
	width: 100%;
}
.mobile-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}
.mobile-socials > * {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #4f4f4f;
}
.logo-wrapper .logo {
		width: 130px;
	}
.logo img {
	width: 100%;
}
.contacts {
	display: flex;
	align-items: center;
	gap: 20px;
	border: 1px solid #3E3E3D;
	border-radius: 40px;
	padding: 11px 22px;
}

.contacts .phone {
	text-align: right;
}
.contacts .phone button {
	font-size: 14px;
	font-weight: 400;
	color: var(--main-color);
}
.contacts .phone a {
	display: block;
	color: #F7F7F7;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
}

.contacts .phone a.sellerFeedbackModalShow {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

.socials {
	display: flex;
    align-items: center;
	gap: 10px;
    position: relative;
}

.socials .socials-dropdown.hidden {
	display: none;
}
.socials .socials-dropdown {
	position: absolute;
	top: 50px;
	left: 0;
}

.socials .socials-dropdown {
	display: flex;
	align-items: center;
	gap: 10px;
}
.socials a,
.socials button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
	background: #515050;
	border-radius: 50%;
}

.socials button {
    width: 28px;
    height: 28px;

    svg {
        stroke: var(--main-color);
    }
}

.socials button.opened {
	transform: rotate(180deg);
}

.all-socials {
    display: none;
}

.socials-main {
    display: flex;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.socials-dropdown {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.l-mobile-header {
    position: absolute !important;
    top: 0;
    inset-inline: 0;
}

.personal {
	display: flex;
	align-items: center;
	gap: 22px;
}
.personal .icon {
	position: relative;
	display: flex;
	justify-content: center;
}
.personal .badge {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	top: -9px;
	right: 0;
	background: var(--main-color);
	color: var(--main-color-white);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 500;
}
.personal .compare .badge {
	right: 15px;
}
.personal .favorites .badge {
	right: 13px;
}
.personal .cart .badge.hidden {
	display: none;
}
.personal .cart .badge {
	right: 5px;
}
.personal a {
	text-decoration: none;
	color: var(--main-color-white);
}
.personal svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}
.main-banner {
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
}
.main-banner img {
	display: block;
	height: 450px;
	width: 100%;
    object-fit: cover;
    object-position: 80%;
}
.main-banner-wrapper {
	position: absolute;
	top: 24px;
	left: 0;
	width: 100%;
}
.main-banner .content {
	display: flex;
	flex-direction: column;
	margin: 70px 0 0 26px;
}
.main-banner .content h2 {
	font-size: 30px;
	font-weight: 500;
	color: var(--main-color-white);
}
.main-banner .content h2  span {
	margin: 0 0 0 15px;
	color: var(--main-color)
}
.main-banner .content p {
	margin: 70px 0 0;
	font-size: 18px;
	font-weight: 400;
	color: var(--main-color-white);
    line-height: 20px;
}
.main-banner .content p span {
	display: none;
}
.main-banner .content p strong {
	color: var(--main-color);
}
.main-banner .content a {
	background: var(--main-color);
	color: var(--main-color-white);
	padding: 12px 46px;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 700;
}
.main-banner .content div:last-child {
	margin: 40px 0 0;
	align-self: center;
}
.bullets {
	background: #191919;
	clip-path: polygon(0 0, 100% 1%, 100% 100%, 0 95%);
	margin: -22px 0 0;
}
.bullets-wrapper {
	display: flex;
	flex-direction: column;
	margin: 0 20px;
	gap: 50px;
	padding: 50px 0 70px;
}
.bullets h2 {
	/*margin: 60px 0 0;*/
	font-size: 30px;
	font-weight: 400;
	color: var(--main-color-white);
}
.bullets h2 span:not(.bullets-title-group) {
	color: var(--main-color);
}
.bullets-title-group {
	margin: 0 0 0 38px;
}
.bullets .content {
	display: grid;
    grid-template-columns: 1fr 1fr;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px 0;
	width: 100%;
}
.bullets .content .image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90px;
}

.bullets .content .image-wrapper img {
    width: auto;
    height: 100%;
}

.bullets .content p {
	text-align: center;
	font-size: 18px;
    line-height: 20px;
	font-weight: 500;
	color: var(--main-color-white);
}

.bullet {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fav-collection {
	background: #1e1e20;
	color: var(--main-color-white);
	clip-path: polygon(0 0, 100% 1%, 100% 100%, 0 99%);
	margin: -35px 0 0;
}
.fav-collection_wrapper {
	margin: 0 5px;
	padding: 30px 0 40px;
}
.fav-header {
	padding: 0 15px;
}
.fav-header h2 {
	font-size: 30px;
	font-weight: 400;
}
.fav-header p {
	font-size: 18px;
	font-weight: 400;
	margin: 15px 0 0;
}
.fav-header p span {
	font-weight: 500;
	color: var(--main-color);
}
.fav-items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0 0;
}
.fav-item {
	background: #191919;
	border-radius: 16px;
	width: 48%;
	padding: 4px;
}
div.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 0;
}
div.owl-theme .owl-dots .owl-dot span {
	margin: 2px;
	width: 6px;
	height: 6px;
}
.fav-item_image img {
	height: 150px;
	border-radius: 16px;
    object-fit: cover;
}
.fav-item_top {
	position: relative;
	background: #1E1E20;
	border-radius: 16px;
	width: 100%;
	height: 150px;
}
.fav-buttons {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 2px 13px 0 0;
	z-index: 1;
}
.fav-buttons button {
	display: block;
	color: var(--main-color-white);
	width: 14px;
	height: 14px;
}
.fav-buttons svg {
	fill: currentColor;
}
.fav-item_bottom {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 20px 5px 5px;
}
.fav-name {
	font-size: 13px;
	font-weight: 500;
}
.fav-name a {
	text-decoration: none;
	color: var(--main-color-white);
}
.fav-price {
	font-size: 13px;
	font-weight: 700;
}
.fav-item_bottom-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0 0;
}
.btn {
	background: var(--main-color);
	color: var(--main-color-white);
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 400;
}
.btn-outline {
	background: transparent;
	color: var(--main-color);
	border-radius: 8px;
	border: 1px solid var(--main-color);
	font-size: 13px;
	font-weight: 400;
}
.fav-item_bottom-footer button {
	font-size: 12px;
    padding: 6px;
}
.fav-footer {
	text-align: center;
	margin: 40px 0 0;
}
.fav-footer button {
	padding: 12px 62px;
	border-radius: 40px;
	font-size: 13px;
	font-weight: 700;
	background: var(--main-color);
	color: var(--main-color-white);
}
.sec-banner {
	clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 95%);
	margin: -18px 0 0;
}
.sec-banner_wrapper {
	position: relative;
	color: var(--main-color-white);
	overflow: hidden;
}
.sec-banner_wrapper img {
	display: block;
	height: 580px;
	width: 100%;
	object-fit: cover;
    object-position: 69%;
}
.sec-banner_content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.sec-banner_content-wrapper {
	margin: 20px 20px 0;
}
.sec-banner_content h2 {
	text-align: end;
	font-size: 30px;
	font-weight: 500;
}
.sec-banner_content h2 span {
	color: var(--main-color);
}
.sec-banner_content p {
	margin: 30px 0 0;
	font-size: 18px;
	font-weight: 400;
    line-height: 20px;
}
.sec-banner_content p br:nth-child(4) {
	display: none;
}
.sec-banner_content p .h-mobile {
	display: none;
}
.sec-banner_content p span:last-child {
	font-weight: 500;
	color: var(--main-color);
}
.faq {
	background: #1e1e20;
	color: var(--main-color-white);
	clip-path: polygon(0 0, 100% 1%, 100% 100%, 0 97%);
	margin: -22px 0 0;
}
.faq-wrapper {
	margin: 0 5px;
	padding: 50px 0 50px;
}
.faq-wrapper h2 {
	padding: 0 15px;
	font-size: 30px;
	font-weight: 400;
    line-height: 32px;
}
.faq-wrapper h2 span {
	display: block;
	text-align: right;
	color: var(--main-color);
	font-weight: 500;
}
.faq-questions {
	display: flex;
	flex-wrap: wrap;
	gap: 0 30px;
	margin: 20px 0 0;
}
.faq-questions .faq-question:not(.faq-questions .faq-question:last-child) {
	border-bottom: 1px solid #515151;
}
.faq-question {
	padding: 15px 10px;
	width: 100%;
}
.faq-question_group {
	display: flex;
	align-items: center;
	gap: 10px;
}
.faq-question button {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: var(--main-color);
	width: 50px;
	height: 50px;
}
.faq-question button img {
	width: 25px;
}
.q-text {
	flex: 1;
	font-size: 20px;
	font-weight: 500;
}
.q-text br {
	display: none;
}
.a-text {
	margin: 30px 0 0;
}
.feedback {
	background: #191919;
	color: var(--main-color-white);
	clip-path: polygon(0 0, 100% 2%, 100% 100%, 0% 100%);
	margin: -27px 0 0;
}
.feedback-wrapper {
	margin: 0 20px;
	padding: 40px 0;
}
.feedback-wrapper h2 {
	text-align: center;
	font-size: 30px;
	font-weight: 400;
}
.feedback-wrapper h2 span {
	color: var(--main-color);
	font-weight: 500;
}
.feedback-form {
	margin: 20px 0 0;
}
.feedback-form .form-input-group {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.feedback-form input[type="text"]:focus, .feedback-form input[type="tel"]:focus {
	outline: none;
}

.feedback-form input[type="text"], .feedback-form input[type="tel"] {
	background: transparent;
	border: 2px solid #1E1E20;
	border-radius: 10px;
	padding: 10px;
	width: 100%;
	font-size: 18px;
	font-weight: 500;
	color: var(--main-color-white);
}
.feedback-form input[type="text"].error,
.feedback-form input[type="tel"].error,
.feedback-form textarea[name="question"].error {
	border: 2px solid red;
}
.feedback-form textarea[name="question"]:focus {
	outline: none;
}
.feedback-form textarea[name="question"] {
	background: transparent;
	border: 2px solid #1E1E20;
	border-radius: 10px;
	padding: 10px;
	width: 100%;
	height: 120px;
	font-size: 18px;
	font-weight: 500;
	color: var(--main-color-white);
	margin: 15px 0 0;
}
.feedback-agreement {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 10px 0 0;
}
.feedback-agreement input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 24px;
	height: 22px;
	z-index: 1;
}
.feedback-agreement label {
	display: inline;
	align-self: normal;
	font-size: 16px;
	font-weight: 400;
}
.feedback-agreement .checkmark:hover {
	cursor: pointer;
}
.feedback-agreement .checkmark {
	position: relative;
	width: 24px;
	height: 22px;
	border: 2px solid #1E1E20;
	border-radius: 5px;
}
.feedback-agreement .checkmark:after {
	content: "";
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: var(--main-color);
}
.feedback-agreement input:checked ~ .checkmark:after {
	content: "\2713";
}
.feedback-agreement label a {
	color: var(--main-color);
	text-decoration: underline;
}
.feedback-submit {
	text-align: center;
	margin: 20px 0 0;
}
.feedback-wrapper input[type="submit"] {
	padding: 12px 60px;
	border-radius: 40px;
	background: var(--main-color);
	color: var(--main-color-white);
	font-size: 24;
	font-weight: 700;
	border: none;
}
.feedback-wrapper input[type="submit"]:hover {
	cursor: pointer;
}
footer {
	background: #1E1E20;
	color: var(--main-color-white);
}
.footer-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	margin: 0 20px;
	padding: 15px 0 100px;
}
.footer-group .socials {
	display: none;
}
.footer-wrapper > div {
	width: 100%;
}
.copyright {
	order: 1;
}
.copyright span {
	font-size: 16px;
	font-weight: 500;
}
.footer-group {
	display: flex;
	align-items: center;
}
.footer-group .info {
	display: flex;
	flex-direction: column;
}
.footer-group .info a {
	color: var(--main-color-white);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
}
.mobile-menu_btn {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.mobile-menu_btn div {
	background: var(--main-color);
	width: 25px;
	height: 3px;
	border-radius: 16px;
}
.mobile-menu {
	position: fixed;
	width: 90vw;
	height: 100vh;
	top: 0;
	left: 0;
	background: #151515;
	z-index: 2;
}
.mobile-menu_header {
	padding: 10px 20px;
	text-align: right;
	border-bottom: 1px solid var(--main-color-white);
}
.mobile-menu_header button {
	color: var(--main-color-white);
}
.mobile-menu ul {
	list-style: none;
}
.mobile-menu ul li a {
	display: block;
	text-decoration: none;
	color: var(--main-color-white);
	padding: 15px 0;
	margin: 0 20px;
	border-bottom: 1px solid var(--main-color-white);
}
.footer-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #212121;
	padding: 15px 30px;
	z-index: 1;
}
.footer-menu a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--main-color-white);
	text-decoration: none;
}
.footer-menu .badge.hidden {
	display: none;
}
.footer-menu .badge {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: -5px;
	right: 5px;
	width: 20px;
	height: 20px;
	background: var(--main-color);
	color: var(--main-color-white);
	border-radius: 50%;
}
.success-message.hidden {
	display: none;
}
.success-message {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1045;
}
.success-message_wrapper {
	max-width: 360px;
	background: #1e1e20;
	border: 1px solid white;
	border-radius: 8px;
	padding: 20px;
}
.success-message_header {
	text-align: right;
}
.success-message_header button {
	color: var(--main-color);
}
.success-message_wrapper h4 {
	text-align: center;
	font-size: 16px;
	margin: 20px 0 0;
}
.success-message_footer {
	text-align: center;
	margin: 20px 0 0;
}
.success-message_footer button {
	color: var(--main-color-white);
	background: var(--main-color);
	padding: 5px 30px;
	border-radius: 16px;
}

.fav-item .add-to-cart {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fav-item_bottom {
    flex: auto;
}

.sr-only {
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden
}

.form-input-group label {
    flex: auto;
}

.flex-auto {
    flex: auto;
}

@media only screen and (min-width: 600px) {
	body {
		position: relative;
	}
	header {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	header .header-wrapper {
		background: transparent;
		width: 1440px;
		margin: 0 auto;
	}
	.logo {
		width: 226px;
	}
	.logo-wrapper {
		width: 100%;
	}
	.header-group {
		display: flex;
	}
	.mobile-socials {
		display: none;
	}
	.mobile-menu_btn {
		display: none;
	}
	.main-banner {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
	}
	.main-banner .content {
		width: 1440px;
		margin: 180px auto 0;
	}
	.main-banner .content h2 {
		color: var(--main-color);
		margin: 0 0 0 50px;
		font-size: 88px;
	}
	.main-banner .content h2 br {
		display: none;
	}
	.main-banner img {
		height: auto;
		width: 100%;
		margin: 0;
	}
	.main-banner .content p span {
		display: inline;
	}
	.main-banner .content p {
		margin: 20px 0 0 150px;
		font-size: 36px;
        line-height: 54px;
	}
	.main-banner .content a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
		border-radius: 40px;
		font-size: 24px;
		padding: 0;
		width: 453px;
		height: 78px;
	}
	.main-banner .content div:last-child {
		margin: 200px 0 0;
	}
	.bullets-wrapper {
		align-items: center;
		gap: 100px;
		max-width: 1200px;
		margin: 0 auto;
		padding: 50px 0 100px;
	}
	.bullets {
		clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 90%);
		margin: -45px 0 0;
	}
	.bullets h2 {
		font-size: 60px;
	}
	.bullets h2 br {
		display: none;
	}
	.bullets-title-group {
		margin: 0;
	}
	.bullets .content {
        display: flex;
		width: 100%;
	}
	.bullets .content p {
		font-size: 24px;
        line-height: 36px;
	}
	.fav-collection {
		clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 97%);
		margin: -52px 0 0;
	}
	.fav-collection_wrapper {
		max-width: 1440px;
		margin: 0 auto;
		padding: 60px 0 100px;
	}
	.fav-header h2 {
		text-align: center;
		font-size: 60px;
	}
	.fav-header p {
		text-align: center;
		font-size: 36px;
		margin: 30px 0 0;
	}
	.fav-items {
		gap: 20px;
		margin: 100px 0 0;
	}
	.fav-items {
		gap: 20px;
		margin: 100px 0 0;
	}
	.fav-item {
		width: 338px;
	}

    .fav-item .add-to-cart {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

	div.owl-theme .owl-nav.disabled + .owl-dots {
		margin-top: 10px;
	}
	div.owl-theme .owl-dots .owl-dot span {
		margin: 2px;
	}
	.fav-item_image img {
		height: 250px;
	}
	.fav-item_top {
		height: 250px;
	}
	.fav-item_bottom {
		margin: 40px 17px 17px;
        flex: auto;
        justify-content: space-between;
	}
	.fav-name {
		font-size: 20px;
	}
	.fav-price {
		font-size: 24px;
	}
	.fav-item_bottom-footer {
		margin: 50px 0 0;
	}
	.fav-item_bottom-footer button {
		padding: 12px 32px;
		font-size: 18px;
	}
	.fav-footer {
		margin: 90px 0 0;
	}
	.fav-footer button {
		padding: 24px 124px;
		font-size: 24px;
	}
	.sec-banner {
		clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 95%);
		margin: -50px 0 0;
	}
	.sec-banner_content-wrapper {
		width: 1200px;
		margin: 57px auto 0;
	}
	.sec-banner_wrapper img {
		width: 100%;
		height: auto;
		margin: 0;
	}
	.sec-banner_content h2 br {
		display: none;
	}
	.sec-banner_content h2 {
		text-align-last: left;
		font-size: 60px;
	}
	.sec-banner_content p {
		margin: 40px 0 0 77px;
		font-size: 36px;
        line-height: 38px;
	}
	.sec-banner_content p .h-mobile {
		display: inline;
	}
	.sec-banner_content p br:nth-child(1),
	.sec-banner_content p br:nth-child(3) {
		display: none;
	}
	.faq {
		clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 95%);
		margin: -45px 0 0;
	}
	.faq-wrapper {
		max-width: 1440px;
		margin: 0 auto;
		padding: 57px 0 50px;
	}
	.faq-wrapper h2 {
		text-align: center;
		font-size: 60px;
		font-weight: 400;
	}
	.faq-wrapper h2 span {
		display: inline;
	}
	.faq-questions {
		gap: 0 30px;
		margin: 50px 0 0;
	}
	.faq-question {
		gap: 30px;
		padding: 20px 30px;
		width: 48%;
	}
	.faq-questions .faq-question:not(.faq-questions .faq-question:nth-child(3)):not(.faq-questions .faq-question:nth-child(4)) {
		border-bottom: none;
	}
	.faq-questions .faq-question:nth-child(3),
	.faq-questions .faq-question:nth-child(4) {
		border-top: 1px solid #515151;
		border-bottom: 1px solid #515151;
	}
	.faq-question {
		gap: 20px;
		padding: 20px 30px;
	}
	.faq-question button {
		width: 69px;
		height: 69px;
	}
	.faq-question button img {
		width: 30px;
	}
	.q-text {
		font-size: 24px;
	}
	.feedback {
		clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%);
		margin: -35px 0 0;
	}
	.feedback-wrapper {
		max-width: 1200px;
		margin: 0 auto;
		padding: 57px 0 50px;
	}
	.feedback-wrapper h2 {
		font-size: 60px;
	}
	.feedback-form {
		margin: 50px 0 0;
	}
	.feedback-form .form-input-group {
		display: flex;
		flex-wrap: nowrap;
		gap: 30px;
	}
	.feedback-form input[type="text"], .feedback-form input[type="tel"] {
		padding: 20px;
		font-size: 24px;
	}
	.feedback-form textarea[name="question"] {
		margin: 30px 0 0;
		font-size: 24px;
		height: auto;
	}
	.feedback-agreement {
		gap: 10px;
		margin: 20px 0 0 50px;
	}
	.feedback-agreement label {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 24px;
	}
	.feedback-agreement label a {
		text-decoration: none;
	}
	.feedback-wrapper input[type="submit"] {
		margin: 20px 0 0 50px;
		padding: 24px 130px;
		font-size: 24px;
	}
	.footer-wrapper {
        max-width: 1440px;
		flex-wrap: nowrap;
		margin: 0 auto;
		padding: 30px 0;
	}
	.footer-group .socials {
		display: flex;
	}
	.footer-group {
		justify-content: space-around;
	}
	.footer-group .info a {
		font-size: 18px;
	}
	.copyright {
		order: 0;
	}
	.copyright span {
		font-size: 18px;
	}
	.copyright span br {
		display: none;
	}
	.footer-menu {
		display: none;
	}
	.success-message_wrapper {
		max-width: 600px;
	}
	.success-message_wrapper h4 {
		font-size: 24px;
	}
	.success-message_footer {
		margin: 30px 0 0;
	}
	.success-message_footer button {
		font-size: 20px;
		padding: 5px 40px;
	}
}

@media (min-width: 1024px) {
    .fav-items {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .fav-item {
        width: auto;
    }

    .fav-item .js-add-button {
        padding-inline: 16px;
    }
}