* {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Lato', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #222222;
}

.center {
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

/* =====.header==== */
.header-page {
	background: #222222;
}

.header-page-big-shell {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.header-page-shell {
	display: flex;
	justify-content: space-between;
}

.header-page__left-position {
	margin: 18px 0 19px 0;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 41px;
}

.header-page__left-position a:hover {
	filter: brightness(60%)
}

.header-page__left-position a:active {
	filter: brightness(40%)
}

/* ====icon-from-search==== */
.header-page-search-form {
	width: 26px;
	height: 26px;
	position: relative;
}

.header-page-search-field {
	width: 0;
	padding: 0;
	min-height: 20px;
	box-sizing: border-box;
	background-color: #FFF;
	border: none;
	position: absolute;
	top: -3px;
	left: 30px;
}

.header-page-search-field:focus {
	width: 180px;
	padding: 5px;
	transition: width 1s ease;
}

.header-page-search-field:focus~label svg {
	filter: brightness(40%)
}

.header-page-search-icon-svg {
	fill: #FFF;
	cursor: pointer;
}

.header-page-search-icon-svg:hover {
	filter: brightness(60%)
}

.header-page-search-icon-svg:active {
	filter: brightness(40%)
}

/* ====ENDicon-from-search==== */
/* ====header-page-menu==== */
/* ====btn-burger-menu==== */
.header-page-menu-burger-btn {
	display: flex;
	align-items: center;
	width: 32px;
	height: 23px;
	cursor: pointer;
	position: relative;
}

.header-page-menu-burger-btn span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #E8E8E8;
}

.header-page-menu-burger-btn:hover {
	filter: brightness(60%)
}

.header-page-menu-burger-btn span::after,
.header-page-menu-burger-btn span::before {
	content: "";
	width: 100%;
	height: 3px;
	background-color: inherit;
	position: absolute;
}

.header-page-menu-burger-btn span::before {
	bottom: 0;
}

.header-page-menu-burger-btn span::after {
	top: 0;
}

.header-page-menu-btn~.header-page-menu-burger-btn span::before,
.header-page-menu-btn~.header-page-menu-burger-btn span::after {
	transition: transform 1s ease;
}

.header-page-menu-btn:checked~.header-page-menu-burger-btn span {
	background-color: transparent;
}

.header-page-menu-btn:checked~.header-page-menu-burger-btn span::before {
	transform: rotate(-45deg);
	background-color: #E8E8E8;
	top: 10px;
	filter: brightness(40%)
}

.header-page-menu-btn:checked~.header-page-menu-burger-btn span::after {
	transform: rotate(45deg);
	background-color: #E8E8E8;
	top: 10px;
	filter: brightness(40%)
}

/* ====ENDbtn-burger-menu==== */

.header-page-menu-box {
	max-width: 232px;
	width: 100%;
	min-height: 634px;
	background-color: rgba(255, 255, 255, 1);
	visibility: hidden;
	position: absolute;
	right: 0px;
	top: -664px;
	z-index: 1;
	transition: top 1.5s ease;
}

.header-page-menu-btn {
	display: none;
}

.header-page-menu-btn:checked~.header-page-menu-box {
	visibility: visible;
	top: 101px;
	transition: top 1.5s ease;
}

/* ====close-menu-btn==== */
.header-page-menu-close-btn {
	display: block;
	width: 12px;
	height: 12px;
	position: relative;
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.header-page-menu-list-close-item .header-page-menu-close-btn::before,
.header-page-menu-list-close-item .header-page-menu-close-btn::after {
	content: "";
	display: block;
	width: 3px;
	height: 100%;
	position: absolute;
	top: 0;
	border-radius: 5px;
}

.header-page-menu-list-close-item .header-page-menu-close-btn::before {
	background-color: #6f6e6e;
	transform: rotate(45deg);
	left: 4.5px;
}

.header-page-menu-list-close-item .header-page-menu-close-btn::after {
	background-color: #6f6e6e;
	transform: rotate(-45deg);
	left: 4.5px;
}

.header-page-menu-list-close-item {
	position: absolute;
	right: 20px;
}

/* ====ENDclose-menu-btn==== */
.header-page-menu-list {
	padding: 32px 32px;
}

.header-page-menu-title {
	position: relative;
	margin-bottom: 4px;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 14px;
	line-height: 17px;
	color: #000000;
}

.header-page-menu-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.header-page-menu-list-item {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
}

.header-page-menu-list-item>a {
	color: #F16D7F;
	text-transform: uppercase;
}

.header-page-menu-sublist-item>a {
	color: #6F6E6E;
	text-transform: capitalize;

}

.header-page-menu-sublist {
	margin-left: 33px;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

/* ====ENDheader-page-menu==== */
.header-page__right-position {
	margin: 26px 19px 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 41px;
}

.header-page__right-position a:hover {
	filter: brightness(60%)
}

.header-page__right-position a:active {
	filter: brightness(40%)
}

.header-page-icon-svg {
	width: 32px;
	height: 23px;
	fill: white;
}

.header-page-profile-icon-svg {
	width: 29px;
	height: 29px;
	fill: white;
}

.header-page-basket-link {
	position: relative;
}

.header-page-basket-link span {
	display: block;
	width: 19px;
	height: 19px;
	background-color: #F16D7F;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	position: absolute;
	top: -20px;
	left: 24px;
}

.header-page-basket-link:hover svg {
	fill: #9F9F9F;
}

.header-page-basket-link:active svg {
	fill: #F16D7F;
}

.header-page-basket-icon-svg {
	width: 32px;
	height: 29px;
	fill: white;
}

/* =====END.header==== */
/* =====.promo==== */
.promo {
	background: #F1E4E6;
	min-height: 764px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.promo-photo-shell {
	max-width: 800px;
	width: 100%;
	min-height: 764px;
	background-image: url(../img/promo-photo.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.promo-banner-shell {
	max-width: 800px;
	width: 100%;
	min-height: 764px;
	display: flex;
	align-items: center;
}

.promo-banner-text {
	margin-left: 91px;
	max-width: 380px;
	width: 100%;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 48px;
	line-height: 58px;
	font-style: normal;
	color: #222222;
	position: relative;
}

.promo-banner-text::before {
	content: "";
	display: block;
	width: 12px;
	height: 92px;
	background-color: #F16D7F;
	position: absolute;
	left: -28px;
	top: -1px;
}

.promo-banner-subtext {
	display: block;
	font-weight: 700;
	font-size: 32px;
	line-height: 38px;
	font-style: normal;
	white-space: nowrap
}

.promo-banner-subtext span {
	color: #F16D7F;
}

/* =====END.promo==== */
/* ====.offer==== */
.offer {
	max-width: 1140px;
	margin: 65px auto 0;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(3, minmax(30%, 360px));
	gap: 30px;
}

.offer-card {
	max-width: 360px;
	width: 100%;
	min-height: 260px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(33, 22, 22, 0.7);
	background-blend-mode: darken;
}

.card__for-women {
	background-image: url(../img/offers-photo-img-for-women.jpg);
}

.card__for-man {
	background-image: url(../img/offers-photo-img-for-man.jpg);

}

.card__for-kids {
	background-image: url(../img/offers-photo-img-for-kids.jpg);

}

.card__accesories {
	max-width: 1140px;
	width: 100%;
	min-height: 180px;
	background-image: url(../img/offers-photo-img-accesories.jpg);
	grid-column: span 3;
}

.offer-card-info {
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.offer-card:hover {
	background-blend-mode: normal;
}

.offer-card:active {
	background:
		linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 1));
}

.offer-card-info-subtitle {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
}

.offer-card-info-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #F16D7F;
	text-transform: uppercase;
}

/* ====END.offer==== */

/* ====.product==== */

.product-wrp {
	margin: 96px auto 0;
	text-align: center;
}

.product-title {
	text-transform: capitalize;
	font-size: 30px;
	line-height: 36px;
}

.product-txt {
	margin: 6px auto 0;
	font-size: 14px;
	line-height: 17px;
	color: #9F9F9F;
}

.product-card-list {
	margin: 48px auto 0;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(3, minmax(30%, 350px));
	justify-content: space-around;
	gap: 30px;
}

.product-card-item {
	display: block;
	max-width: 360px;
	width: 100%;
	margin: 0 0 30px 0;
	position: relative;
	background: #F8F8F8;
	text-decoration: none;
	box-sizing: border-box;
}

.product-card-item:hover .product-item-photo-wrp::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(58, 56, 56, 0.86);
	position: absolute;
	top: 0;
	left: 0;
}

.product-card-item:hover .product-item-btn {
	visibility: visible;
}

.product-item-btn:hover svg {
	fill: #000;
}

.product-item-btn:hover {
	background-color: #ccc;
	color: #000;
	border: 1px solid #000;
}

.product-item-btn:active {
	background-color: inherit;
	color: #fff;
	border: 1px solid #fff;
}

.product-item-btn:active svg {
	fill: #fff;
}

.product-item-photo-wrp {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 360px;
	width: 100%;
	background-color: #F7E4E2;
	box-sizing: border-box;
	position: relative;
}

.product-card-photo {
	max-width: 360px;
	width: 100%;
}

.product-item-wrp {
	margin: 25px auto 24px 16px;
	background-color: #F8F8F8;
}

.product-card-item-name {
	display: block;
	text-align: start;
	display: block;
	margin: 0 0 12px 0;
	text-transform: uppercase;
	font-size: 13px;
	line-height: 16px;
	color: #000000;
}

.product-card-item-description {
	display: block;
	margin: 0 0 18px 0;
	max-width: 312px;
	width: 100%;
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	color: #5D5D5D;
	text-align: start;
}

.product-card-item-price {
	text-align: start;
	color: #F16D7F;
	display: block;
}

.product-item-btn {
	display: flex;
	visibility: hidden;
	justify-content: center;
	align-items: center;
	width: 160px;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #FFFFFF;
	background: transparent;
	text-align: center;
	font-size: 14px;
	line-height: 17px;
	color: #FFFFFF;
	position: absolute;
	top: 30%;
	left: calc(50% - 80px);
}

.product-item-btn svg {
	fill: #fff;
	margin: 0 11px 0 0;
}

.product-btn {
	display: block;
	margin: 50px auto 0;
	padding: 15px 39px;
	outline: 1px solid #FF6A6A;
	color: #F26376;
	border: none;
	background-color: #fff;
}

.product-btn:hover {
	outline: 2px solid #5D5D5D;
	color: #5D5D5D;
}

.product-btn:active {
	background-color: #F16D7F;
	color: #FFFFFF;
	outline: 3px solid #FF6A6A;
}

/* ====END.product==== */
/* ====bonus-offer===== */
.bonus-offer {
	background-color: #222224;
	margin: 96px auto 0;
}

.bonus-offer-shell {}

.bonus-offer-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.bonus-offer-item {
	margin: 104px auto 104px;
	max-width: 360px;
	width: 100%;
	min-height: 134px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
}

.bonus-offer-item-link {
	display: block;
}

.bonus-offer-item-svg {
	fill: #F16D7F;
	display: block;
}

.bonus-offer-item-link:hover svg {
	fill: #9F9F9F;
}

.bonus-offer-item-link:active svg {
	fill: #fff;

}

.bonus-offer-item-title {
	display: block;
	font-weight: 400;
	font-size: 19.96px;
	line-height: 24px;
	color: #FBFBFB;
	text-align: center;
}

.bonus-offer-item-descrption {
	display: block;
	max-width: 298px;
	width: 100%;
	font-weight: 300;
	font-size: 13.972px;
	line-height: 17px;
	text-align: center;
	color: #FBFBFB;
	text-align: center;
}

/* ====ENDbonus-offer===== */
/* ====card-items==== */

.card-items-heading {
	margin: 96px 0 0 457px;
	font-size: 30px;
	line-height: 36px;
	text-transform: capitalize;
}

.product-box {
	padding-top: 64px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 40px;
}

.product {
	position: relative;
}

.btn__delete {
	position: absolute;
	top: 28px;
	right: 22px;
	width: 18px;
	height: 18px;
	font-size: 0;
	border: none;
	background: none;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/krestick.svg);
	cursor: pointer;
}

.product__content {
	display: flex;
	width: 652px;
	box-shadow: 17px 19px 24px rgba(0, 0, 0, 0.13);
}

.product__img {
	width: 262px;
}

.product__desc {
	margin-top: 22px;
	margin-left: 31px;
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	color: #575757;
}

.product__name {
	margin-bottom: 42px;
	width: 262px;
	text-transform: uppercase;
	font-size: 24px;
	line-height: 29px;
	color: #222222;
}

.product__price {
	font-style: normal;
	font-weight: 400;
	font-size: 22px;
	line-height: 26px;
	color: #EF5B70;
}

.product__qty {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 24px;
}

.input__quantity {
	width: 44px;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	color: #656565;
	border: 1px solid #EAEAEA;
}

/* ====ENDcard-items==== */
/* ====fotter===== */

.donations {
	min-height: 448px;
	background-image: url(../img/footter-background.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: rgba(244, 244, 244, 0.7);
	background-blend-mode: lighten;
	display: flex;
	align-items: center;
}

.donations-shell {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.donations-beggar {
	max-width: 360px;
	width: 100%;
	min-height: 225px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.donations-beggar-photo {
	max-width: 144px;
	width: 100%;
	min-height: 123px;
	background-image: url(../img/donations-beggar-photo.png);
	background-repeat: no-repeat;
	background-position: center;
}

.donations-beggar-txt {
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	color: #222224;
	font-style: italic;
}

.donations-subs {
	max-width: 557px;
	width: 100%;
	min-height: 142px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.donations-subs-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 40px;
	text-align: center;
	color: #222224;
	text-transform: uppercase;
}

.donations-subs-subtitle {
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: #222224;
	text-transform: uppercase;
}

.donations-subs-form {
	max-width: 356px;
}

.donations-subs-form-shell {
	display: flex;
	justify-content: center;
	min-height: 49px;
}

input[type="email"] {
	padding: 7px 10px 6px 23px;
	box-sizing: border-box;
	background-color: #E1E1E1;
	border: none;
	border-radius: 20px 0 0 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	display: flex;
	align-items: center;
	outline: none;
}

input[type="email"]::placeholder {
	color: #8B8B8C;
}

input[type="email"]:focus {
	cursor: pointer;
}

.donations-subs-form-btn {
	display: block;
	padding: 7px 20px 6px 21px;
	box-sizing: border-box;
	border: none;
	border-radius: 0 20px 20px 0;
	background-color: #F16D7F;
	color: #fff;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
}

.donations-subs-form-btn:hover {
	background-color: #fff;
	color: #F16D7F;
}

.donations-subs-form-btn:active {
	background-color: #F16D7F;
	color: #fff;
}

.footer {
	background: #222224;
	min-height: 79px;
	display: flex;
}

.footer-shell {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-info {
	color: #FBFBFB;
}

.footer-social-icon-list {
	display: flex;
	gap: 7px;
}

.footer-social-icon-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background-color: #fff;
}

.footer-social-icon-link:hover {
	background-color: #F16D7F;
}

.footer-social-icon-link:hover svg {
	fill: white;
}

.footer-social-icon-link:active svg {
	fill: #8B8B8C;
}

/* ====ENDfotter===== */
@media(max-width:1400px) {
	.header-page-menu-box {
		background-color: rgba(255, 255, 255, 0.8);
	}
}

@media(max-width:1024px) {
	.center {
		max-width: 768px;
	}

	.header-page-shell {
		justify-content: space-between;
	}

	.header-page__right-position {
		gap: 25px;
	}

	.header-page__right-position-item__tablet {
		padding-right: 17px;
	}

	.promo-photo-shell {
		max-width: 388px;
		min-height: 368px;
	}

	.promo {
		min-height: auto;
	}

	.promo-banner-shell {
		max-width: 380px;
		min-height: 368px;
	}

	.promo-banner {
		max-width: 283px;
	}

	.promo-banner-text {
		margin-left: 67px;
		font-size: 44px;
		line-height: 52px;
	}

	.promo-banner-subtext {
		font-size: 24px;
		line-height: 28px;
		font-weight: 700;
	}

	.offer {
		max-width: 768px;
		margin: 65px auto 0;
		grid-template-columns: repeat(3, minmax(30%, 231px));
		gap: 19.1px;
		justify-content: center;
	}

	.offer-card {
		min-height: 167px;
	}

	.card__accesories {
		min-height: 116px;
	}

	.product {
		max-width: 768px;
		margin: 110px auto 0;
	}

	.product-wrp {
		margin: 110px auto 0;
	}

	.product-txt {
		margin: 3px auto 0;
	}

	.product-card-list {
		margin: 72px auto 0;
		grid-template-columns: repeat(2, minmax(48%, 360px));
		gap: 16px;
		justify-content: center;
	}

	.product-btn {
		margin: 32px auto 0;
	}

	.bonus-offer {
		margin: 64px auto 0;
	}

	.bonus-offer-list {
		gap: 47px;
		flex-direction: column;
	}

	.bonus-offer-list {
		padding-top: 48px;
		padding-bottom: 64px;
	}

	.bonus-offer-item {
		margin: 0 auto;
	}

	.card-items-heading {
		margin: 32px auto;
		text-align: center;
	}

	.product-box {
		padding-top: 0px;
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.donations-shell {
		margin: 64px auto 140px;
		gap: 48px;
		flex-direction: column;
	}

	.footer-shell {
		max-width: 704px;
		width: 100%;
	}
}

@media(max-width:767px) {
	.center {
		max-width: 375px;
		width: 100%;
	}

	.header-page {
		width: 100%;
	}

	.header-page__left-position {
		margin-left: 16px;
	}

	.header-page-search-field:focus {
		width: 160px;
	}

	.header-page__right-position {
		margin-right: 16px;
	}

	.header-page__right-position-item:nth-last-child(-n+2) {
		display: none;
	}

	.promo {
		min-height: 363px;
		width: 100%;
	}

	.promo-photo-shell {
		display: none;
	}

	.promo-banner {
		max-width: 236px;
		margin: 0;
	}

	.promo-banner-text {
		font-size: 38px;
		line-height: 45.6px;
	}

	.promo-banner-subtext {
		font-size: 20px;
		line-height: 24px;
	}

	.promo-banner-text::before {
		width: 12px;
		height: 61px;
		background-color: #F16D7F;
		position: absolute;
		left: -27px;
		top: 5px;
	}

	.offer {
		max-width: 360px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin: 64px auto 0;
		align-items: center;
		gap: 32px;
	}

	.offer-card {
		min-height: 247px;
	}

	.card__accesories {
		min-height: 111px;
	}

	.offer-card {
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		margin: 0 16px 0;
	}

	.product-wrp {
		margin: 64px auto 0;
	}

	.product {
		max-width: 768px;
		margin: 64px auto 0;
	}

	.product-card-list {
		margin: 64px auto 0;
		gap: 16px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.product-card-item img {
		max-width: 360px;
		width: 100%;
	}

	.product-btn {
		margin: 40px auto 0;
	}

	.bonus-offer {
		margin: 96px auto 0;
	}

	.bonus-offer-list {
		padding-bottom: 81px;
	}

	.product__content {
		display: flex;
		width: 262px;
		min-height: 582px;
		flex-direction: column;
	}

	.product__name {
		width: 100%;
	}

	.donations-shell {
		margin: 64px auto 109px;
		gap: 59px;
	}

	.donations-beggar-txt {
		font-size: 18px;
		line-height: 30px;
	}

	.donations-subs-title {
		line-height: 36.77px
	}

	.donations-subs-subtitle {
		font-size: 14px;
		line-height: 21px;
	}

	.donations-subs {
		justify-content: center;
		gap: 22px;
	}

	.footer {
		min-height: 141px;
	}

	.footer-shell {
		margin: 43px auto 9px;
		max-width: 252px;
		width: 100%;
		flex-direction: column-reverse;
		justify-content: flex-start;
		gap: 40px;
	}
}

@media(max-width:400px) {
	.offer {
		max-width: 340px;
	}
}

@media(max-width:360px) {
	.product-card-item {
		max-width: 320px;
		width: 100%;
		min-height: 543px;
	}

	.promo-banner {
		margin: -15px;
	}

	.header-page-search-field:focus {
		width: 135px;
	}
}

@media(max-width:320px) {
	input[type="email"] {
		padding: 7px 2px 6px 23px;
	}

	.header-page__left-position {
		margin: 18px 0 19px 0;
		display: flex;
		justify-content: center;
		align-items: baseline;
		gap: 20px;
	}

	.promo-banner {
		margin: -30px;
	}

	.donations-subs-form-btn {
		padding: 7px 20px 6px 19px;
	}
}