/* Переменные проекта */
:root {
  --color-primary: #2c4a2e;
  --color-primary-hover: #1f3521;
  --color-bg-light: #faf5e8;
  --color-text: #333333;
  --color-border: #e2e8f0;
  --radius-card: 12px;
}

.col{
	width: 1510px;
	margin: 0 auto;
}

.site-header{
	background:url("../images/header.jpg") no-repeat;
	background-position-y: 170px;
	width: 1860px;
	height: 1120px;
	margin: 0 auto;
}

.headerLine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
	margin-top: 31px;
	margin-bottom: 29px;
}

.headerAdress {
	margin-left: 70px;
	font-size: 22px;
}

.headerPhone a{
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	font-size: 22px;
	background: #fef3dd;
	border-radius: 40px;
	margin-left: 100px;
	color:#000;
}

.headerVk a{
	display: inline-block;
	background: url("../images/icon_vk.png");
	color:#000;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	margin-left: 10px;
}

.headerMax a{
	display: inline-block;
	background: url("../images/icon_max.png");
	color:#000;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	margin-left: 10px;
}

.headerMail a{
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	font-size: 22px;
	background: #fef3dd;
	border-radius: 40px;
	color:#000;
	margin-left: 10px;
}

.headerCart {
    margin-left: auto;
}

.headerText{
	font-size: 90px;
	font-family: 'MinionPro-Semibold';
	color:#fef3dd;
	text-align: center;
	padding-top: 278px;
	padding-bottom: 100px;
}

.headerLink a{
	font-size: 34px;
	font-family: 'MinionPro-Semibold';
	color:#fef3dd;
	width: 250px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	margin: 0 auto;
	border:1px solid #fef3dd;
	display: block;
	border-radius: 20px;
}

.main-navigation{
	background: #ffffff;
	width: 1510px;
	height: 80px;
	border:1px solid #e8ebdf;
	display: inline-block;
	border-radius: 20px;
}

.main-content{
	width: 1510px;
	margin: 0 auto;
}

.assortmentBox{
	width: 1850px;
	margin: 0 auto;
	border-radius: 20px;
	background: #fef3dd;
}

.assortment{
	width: 1510px;
	margin: 0 auto;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px;
	padding-bottom: 80px;
}

.assortmentTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 100%;
    width: 100%;
    
    font-family: 'Georgia', serif;
    font-size: 70px;
    font-weight: normal;
    color: #687629;
    margin: 0;
	margin-top: 90px;
	margin-bottom: 50px;
    gap: 17px;
}

/* Рисуем тонкие линии по бокам с помощью псевдоэлементов */
.assortmentTitle::before,
.assortmentTitle::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #556B2F;
    opacity: 0.5;
}

/* Отступы от линий до текста и иконки */
.assortmentTitle::before {
    margin-right: 40px;
}

.assortmentTitle::after {
    margin-left: 40px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
}

.itemImage img {
    max-width: 100%;
    height: auto;
    display: block;
}

.itemTitle{
	font-size: 22px;
	padding-top: 17px;
	padding-bottom: 58px;
}