/* Imports */

/* Popup */
@import url("./assets/css/components/popup.css");

/* Fabric card */
@import url("./assets/css/components/fabric-card.css");

/* Fonts */
@font-face {
	font-family: "Involve";
	src: url("./assets/fonts/Involve/Involve-Regular.ttf");
}
@font-face {
	font-family: "Involve";
	src: url("./assets/fonts/Involve/Involve-Medium.ttf");
}
@font-face {
	font-family: "Involve";
	src: url("./assets/fonts/Involve/Involve-SemiBold.ttf");
}
@font-face {
	font-family: "Involve";
	src: url("./assets/fonts/Involve/Involve-Bold.ttf");
}

/* Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;

	background: none;
	outline: none;
	text-decoration: none;
	border: none;
	background-repeat: no-repeat;

	font-family: "Involve", sans-serif;
	font-weight: 400;

	list-style: none;

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

	z-index: 0;
	position: relative;
}

:root {
	--c1: #ED1379;
	--c2: #f5e0c7;
	--c3: #fff;
	--c4: #ffd9ab;
	--c5: #fff4e8;
	--c6: #524431;
	--c7: #2aabee;
	--c8: #fcf7f7;
	--text: #423a2f;
}

.display-hide{
	display: none !important;
}

.overflow-hidden{
	overflow: hidden;
}

html,
body {
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

.mainContainer {
	max-width: 1440px;
	margin: 0 auto;
	height: 100%;

	position: relative;
}
.main {
	width: 100%;

	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
}

h1 {
	font-size: clamp(
		2.75rem,
		calc(44px + (50 - 44) * ((100vw - 390px) / (1440 - 390))),
		3.125rem
	);
	font-weight: 400;
	color: var(--c1);
	font-family: "Involve", sans-serif;
	text-transform: uppercase;
	line-height: 0.9;
}

h2 {
	font-size: clamp(
		1.375rem,
		calc(22px + (28 - 22) * ((100vw - 390px) / (1440 - 390))),
		1.75rem
	);
	font-weight: 600;
	text-transform: uppercase;
	color: var(--text);
}

button {
	transition: all 0.2s;
	cursor: pointer;
	user-select: none;
}
button:hover {
	transform: scale(1.05);
}

textarea::placeholder {
	color: var(--c1);
}

h4 {
	font-family: "Involve", sans-serif;
	color: var(--c1);
	font-size: clamp(
		1.375rem,
		calc(22px + (28 - 22) * ((100vw - 390px) / (1440 - 390))),
		1.75rem
	);
}

a {
	white-space: nowrap;
}

img {
	display: block;

	user-select: none;
}

/* UI */

/* Button */
.btn {
	font-size: 0.875rem;
	background: linear-gradient(to right, var(--c1), #E60D56);
	border-radius: 90px;
	padding: 17px 0;
	width: 100%;
	color: var(--c3);
	font-weight: 600;
	transition: all 0.5s;

	display: flex;
	align-items: center;
	white-space: nowrap;
	justify-content: center;
	gap: 5px;
}

.btn:hover {
	transition: all 0.5s;
	background: var(--c1);
}

/* Input */
.input {
	width: 100%;
	font-size: 0.875rem;
	font-weight: 400;
	border-radius: 90px;
	background: var(--c3);
	color: var(--c1);
	padding: 15px 20px;
}
.input::placeholder {
	color: var(--c1);
}

.input_var2 {
	width: 100%;
	font-size: 0.875rem;
	padding: 15px 20px;
	color: var(--c1);
	border-radius: 90px;
	border: 1px solid var(--c1);
	font-weight: 400;
}
.input_var2::placeholder {
	color: var(--c1);
}

/* Policy agreement */
.policy-agreement__text-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	text-align: left;
	font-size: 0.625rem;
	color: var(--text);
}

.checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 24px;
	aspect-ratio: 1;
	border-radius: 5px;
	border: 2px solid var(--c1);
}
.checkbox:checked {
	background-image: url("./assets/media/catalog/filter/check-mark.png");
	background-size: 70%;
	background-position: center;
}

.policy__link {
	color: var(--text);
	text-decoration: underline;
}

/* WP CF 7 */
.wpcf7-form-control-wrap{
	width: 100%;
}

.wpcf7-list-item{
	margin-top: 5px;
}
.wpcf7-list-item > label{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	text-align: left;
	font-size: 0.625rem;
	color: var(--text);
}

.orderFabric .wpcf7-form-control-wrap{
	display: block;
	margin: 10px 0;
}
.orderFabric .points__wrapper{
	margin: 10px 0 !important;
}