@charset "UTF-8";
*, *::after, *::before {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  /*transition: all 0.2s ease-in;*/
}

html, body {
font-size:18px;
font-family: "Geologica", sans-serif;
}

body {
	display:flex;
	flex-direction:column;
	justify-content: space-between;
	min-height:100vh;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

button, a, input, textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

button {
  background-color: transparent;
  cursor: pointer;
}

a {
  text-decoration: none;
}

::-moz-placeholder {
  font-size: inherit;
  font-weight: inherit;
}

::placeholder {
  font-size: inherit;
  font-weight: inherit;
}

.main {
max-width:1440px;
width:100%;
margin:auto;
padding-top:120px;
padding-bottom:50px;	
}

.main > h1 {
	text-align:center;
	padding: 0 20px;
	margin-bottom:0.5em;
}
@media (max-width: 599px) {
	.main > h1 {
		padding: 0 15px;
	}
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 599px) {
  .container {
    padding: 0 15px;
  }
}

.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.scroll-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-5px);
}
.scroll-to-top svg {
  width: 20px;
  height: 20px;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

input[type=radio] {
  accent-color: #E12A37;
}

.logo img {
  width: 220px;
  height:auto;
}
@media (max-width: 1120px) {
  .logo img {
    width: 110px;
  }
}
@media (max-width: 599px) {
  .logo img {
    width: 55px;
  }
}

.menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  flex: auto;
}

.menu__top {
  display: flex;
  align-items: center;
}

.menu__catalog {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  margin-right: 15px;
  background-color: #E12A37;
  border-radius: 10px;
}
.menu__catalog div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 26px;
  height: 26px;
}
.menu__catalog div span {
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
}
.menu__catalog p {
  font-size: 16px;
  color: #FFFFFF;
}
.menu__catalog:hover {
  opacity: 0.8;
}
@media (max-width: 1120px) {
  .menu__catalog {
    display: none;
  }
}

.menu__icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1120px) {
	.menu__icons {
		gap: 5px;
	}
	.menu__icon--hidden {
		display: none;
	}
}

.menu__icon a,
.menu__icon button {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  color: #7F7F7F;
  font-size: 16px;
}

.menu__icon img {
  width: 24px;
  height: 24px;
}

/*@media (max-width: 1120px) {
	.menu__icon a,
	.menu__icon button {
		font-size: 14px;
	}
	.menu__icon img {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 599px) {
	.menu__icon a,
	.menu__icon button {
		font-size: 12px;
	}
}*/

.menu__icon:hover {
  opacity: 0.7;
}

.menu__search {
  position: relative;
  width: 100%;
  margin-right:15px;
  height: 42px;
  border: 1px solid #7F7F7F;
  border-radius: 10px;
  font-size: 18px;
  overflow: hidden;
}
.menu__search input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  padding: 0 15px;
  outline: none;
}

@media (max-width: 1120px) {
	.menu__search {
		height: 36px;
		margin-right:10px;
	}
	.menu__search input {
	  font-size: 14px;
	  padding: 0 10px;
	}
}

.menu__search::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url(./../img/icons/search.svg) center/cover no-repeat;
}
.menu__search:hover {
  box-shadow: 0 0 10px #7F7F7F;
}

/*@media (max-width: 599px) {
  .menu__search {
    width: 30vw;
    height: 7vw;
    border-radius: 3.4274vw;
  }

  .menu__search input {
    font-size: 2vw;
  }
}*/

.menu__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1120px) {
  .menu__bottom {
    display: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #7F7F7F;
}

.nav__image a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav__image a img {
  width: 16px;
  height: 16px;
}

.nav a:hover {
	opacity:0.7;
}

#slider-banners {
  width: 100%;
  border-radius: 1.3021vw;
}
@media (max-width: 599px) {
  #slider-banners .slider-banners-img-desctop {
    display: none;
  }
}
#slider-banners .slider-banners-img-mobile {
  display: none;
}
@media (max-width: 599px) {
  #slider-banners .slider-banners-img-mobile {
    display: block;
  }
}

#slider-reviews {
  width: 100%;
}

#slider-products .swiper-button-prev img, #slider-products .swiper-button-next img {
  -o-object-fit: contain;
     object-fit: contain;
}
#slider-products .swiper-button-prev::after, #slider-products .swiper-button-next::after {
  opacity: 0;
}

.monuments-slider {
  position: relative;
  height: 25.25vw;
  overflow: hidden;
}

@media (max-width: 599px) {
  .monuments-slider {
  position: relative;
  height: 35vw;
  overflow: hidden;
    }
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  align-items: flex-end;
}

.slide {
  flex: 0 0 33.33%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  transition: all 0.3s ease;
}
.slide img {
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0.2604vw 0.7813vw rgba(0, 0, 0, 0.5));
}
.slide.prev img {
  transform: scale(0.8) translateX(20%);
  opacity: 0.7;
}
.slide.active img {
  transform: scale(1.1);
  opacity: 1;
}
.slide.next img {
  transform: scale(0.8) translateX(-20%);
  opacity: 0.7;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight:bold;
  line-height: clamp(28px, 2.6042vw, 32px);
  width: clamp(28px, 2.6042vw, 32px);
  height: clamp(28px, 2.6042vw, 32px);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.slider-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}
.slider-btn.prev-btn {
  left: 1vw;
}
.slider-btn.next-btn {
  right: 1vw;
}

.slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: max-content;
  max-width:100%;
}
.slider-caption h3 {
  font-size: clamp(16px, 2vw, 28px);
  margin-bottom: 0.5em;
  color: #FFFFFF;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 599px) {
  .slider-caption h3 {

  }
  .slider-caption {

  }
}
.slider-caption ul {
  padding: 0;
  color: #FFFFFF;
}
.slider-caption ul li {
  position: relative;
  padding-left: 1.3021vw;
  margin-bottom: 0.5208vw;
  font-size: 0.9375vw;
}
.slider-caption ul li:before {
  content: "○";
  position: absolute;
  left: 0;
  top: 0;
}

#our-products-slider .reviews__slide {
  padding: 0;
}

#block-slider {
  display: none;
  height: 20vh;
}
@media (max-width: 599px) {
  #block-slider {
    display: block;
  }
}
#block-slider .swiper-slide {
  position: relative;
  filter: grayscale(100%);
  border-radius: 1.3021vw;
  overflow: hidden;
}
#block-slider .swiper-slide:hover {
  filter: grayscale(0);
}
#block-slider .swiper-slide::before {
  content: "Товары от производителя";
  position: absolute;
  width: 100%;
  height: 3.9063vw;
  bottom: 10%;
  left: 5%;
  font-size: 1.6188vw;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 599px) {
  #block-slider .swiper-slide::before {
    left: 0;
    font-size: 4vw;
    text-align: center;
  }
}
#block-slider .swiper-slide:nth-child(2)::before {
  content: "Реализуем любой дизайн изделия";
}
#block-slider .swiper-slide:nth-child(3)::before {
  content: "Доставка и установка";
}
#block-slider .swiper-slide:nth-child(4)::before {
  content: "На кладбищах Новосибирска и НСО";
}
#block-slider img {
  width: 94vw;
}

.blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 899px) {
  .blocks {
    grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
  }
}
@media (max-width: 599px) {
  .blocks {
    grid-template-columns: 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}
.blocks .block {
  position: relative;
  opacity:0.9;
  border-radius: 1.3021vw;
  overflow: hidden;
}
.blocks .block:hover {
  opacity:1;
}
.blocks .block span {
  content: "Товары от производителя";
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  font-size: clamp(20px, 1.6188vw, 24px);
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 0 0.7813vw #333333;
}
@media (max-width: 899px) {
  .blocks .block span {
    text-align: center;
    text-shadow: 0 0 5px #333333;
  }
}
@media (max-width: 599px) {
  .blocks .block span {
	
  }
}
/*@media (max-width: 599px) {
  .blocks .block:not(:first-child) {
    display: none;
  }
}*/

.product-block {
  position: relative;
  padding: 1.5%;
  background-color: #fff;
  border-radius: 15px;
}
.product-block__img {
  border-radius: 15px;
  overflow: hidden;
}

.product-block__img img {
width:100%;
height:auto;
}

.product-block__img-mobi {
  display: none;
}

@media (max-width: 599px) {

  .product-block__img {
  height: 26.0417vw;
  margin-bottom: 0.5208vw;
  border-radius: 1.3021vw;
  background-color: #e9e9e9;
  overflow: hidden;
}

  .product-block__img-mobi {
    display: inline;

    object-fit: contain;
    object-position: right;
  }

  .product-block__img-desc {
  display: none;
}
}

.product-block:hover {
  transform: scale(1.05);
}
.product-block:hover .product-block__img {

}
.product-block__info {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  width: 9.2708vw;
  height: 3.3854vw;
  background-color: #F4F4F4;
  border-radius: 0 0 1.3021vw 1.3021vw;
  font-size: 1.5625vw;
  font-weight: 700;
  color: #E12A37;
  text-align: center;
  text-transform: lowercase;
  display: none;
}
.product-block__title {
  z-index: 2;
  position: absolute;
  top: 10%;
  left:10%;
  right:10%;
  font-size: clamp(20px, 1.675vw, 24px);
  font-weight: 400;
  text-align: left;
  text-shadow: 0 0 1px white;
}
.product-block__title span {
  font-weight: 700;
  color: #E12A37;
}
@media (max-width: 899px) {
  .product-block__title {

  }
}

.block-order {
  position: relative;
  padding: 1em;
  border-radius: 1em;
  background-color: #FFFFFF;
  box-shadow: 0 0 0.0521vw #333;
}
.block-order__title {
  position: relative;
  margin-bottom: 1em;
  padding-left: 2em;
  font-size: clamp(20px, 1.4vw, 24px);
  font-weight: 700;
  color: #E12A37;
}
.block-order__title::before {
  content: "1";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: clamp(28px, 2.2917vw, 32px);
  font-weight: 900;
  color: #E12A37;
}
.block-order:nth-child(2) .block-order__title::before {
  content: "2";
}
.block-order:nth-child(3) .block-order__title::before {
  content: "3";
}
.block-order:nth-child(4) .block-order__title::before {
  content: "4";
}
.block-order:nth-child(5) .block-order__title::before {
  content: "5";
}
.block-order:nth-child(6) .block-order__title::before {
  content: "6";
}
.block-order__text {
  margin-bottom: 1em;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 400;
  color: #333333;
}

.block-order__button {
position:absolute;
right:0;
bottom:0;
}
.block-order__desc {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.block-order__desc .tel {
  font-size: clamp(18px, 1.4667vw, 24px);
  font-weight: 700;
  color: #E12A37;
}

.block-order__desc .messenger span {
  font-size: clamp(16px, 1.0417vw, 24px);
  display:inline-block;
  vertical-align:middle;
  margin-right:10px;
}

.block-order__desc .messenger a img {
  display:inline-block;
  vertical-align:middle;
  width: 32px;
  height: 32px;
}

.block-order__desc .messenger a:hover {
  opacity: 0.7;
}

.contacts__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contacts__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contacts__item img {
  width: 16px;
  height: 16px;
}
.contacts__item span {
  font-size: 16px;
  color: #7F7F7F;
}
.contacts__item:hover {
  opacity: 0.7;
}

.title-1 {
  font-size: clamp(20px, 2.2vw, 28px);
}
@media (max-width: 599px) {
  .title-1 {
    font-size: 4.5vw;
  }
}

.button {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #E12A37;
  border-radius: 1em 0 1em 0;
  font-size: clamp(14px, 1.4583vw, 20px);
  font-weight: 600;
  color: #FFFFFF;
}
.button:hover {
  opacity: 0.8;
}
@media (max-width: 599px) {
  .button {
    
  }
}

/* Стили для модального окна сообщений */
#message-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1.0417vw;
  border-radius: 0.2604vw;
  color: white;
  z-index: 1000;
  font-size: 0.9375vw;
  text-align: center;
  box-shadow: 0 0.2083vw 0.4167vw rgba(0, 0, 0, 0.2);
  max-width: 80%;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.success {
  background-color: #4CAF50;
}

.error {
  background-color: #f44336;
}

.mobile-button {
  display: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 24px;
}
@media (max-width: 1120px) {
  .mobile-button {
    display: flex;
  }
}
.mobile-button__middle {
  position: relative;
  width: 32px;
  height: 3px;
  background-color: #7F7F7F;
  border-radius: 10px;
}
.mobile-button__middle::before, .mobile-button__middle::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 24px;
  height: 3px;
  background-color: #7F7F7F;
  border-radius: 10px;
}
.mobile-button__middle::after {
  top: -8px;
}
.mobile-button.mobile-button--active .mobile-button__middle {
  background-color: transparent;
}
.mobile-button.mobile-button--active .mobile-button__middle::before, .mobile-button.mobile-button--active .mobile-button__middle::after {
  top: 0;
  transform: rotate(45deg);
}
.mobile-button.mobile-button--active .mobile-button__middle::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  z-index: 5;
  inset: 0;
  top: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.6);
}
.mobile-menu--active {
  display: block;
}
.mobile-menu__middle {
  position: relative;
  width: 360px;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  padding: 15px 20px;
  background-color: #FFFFFF;
}

.mobile-menu__middle .flex-top {
display: flex;
justify-content: space-between;
margin-bottom:24px;
}

.mobile-menu__nav {
  color: #7F7F7F;
}

.mobile-menu__nav li {
  margin-bottom: 0.5em;
}

.mobile-menu__nav li a {
  font-size: 16px;
}
.mobile-menu__exit {

}
.mobile-menu__cta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 24px;
  font-size: 16px;
  color: #7F7F7F;
}

.mobile-button-close {
  display: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 24px;
}
.mobile-button-close__middle {
  position: relative;
  width: 32px;
  height: 3px;
  background-color: #7F7F7F;
  border-radius: 10px;
}
.mobile-button-close__middle::before, .mobile-button-close__middle::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 24px;
  height: 3px;
  background-color: #7F7F7F;
  border-radius: 10px;
}
.mobile-button-close__middle::after {
  top: -8px;
}
.mobile-button-close.mobile-button-close--active .mobile-button-close__middle {
  background-color: transparent;
}
.mobile-button-close.mobile-button-close--active .mobile-button-close__middle::before, .mobile-button-close.mobile-button-close--active .mobile-button-close__middle::after {
  top: 0;
  transform: rotate(45deg);
}
.mobile-button-close.mobile-button-close--active .mobile-button-close__middle::after {
  transform: rotate(-45deg);
}

.header {
  position: fixed;
  z-index: 4;
  width: 100%;
  padding: 10px 0;
  background-color: #c9c9c9;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:15px;
}

@media (max-width: 599px) {
	.header__inner {
		  gap:10px;
	}	
}

.infoblocks__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 120px;
  padding-bottom: 50px;
}

@media (max-width: 1120px) {
	.infoblocks__inner {
		 padding-top: 70px;
	}	
}

.services {
  padding: 15px 0;
}
.services__title {
  margin-bottom: 2.1667vw;
  text-align: center;
}

.design {
  padding: 1.5625vw 0;
}
.design__title {
  margin-bottom: 2.1667vw;
  text-align: center;
}
.design__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.7292vw;
  align-items: center;
}
@media (max-width: 599px) {
  .design__inner {
    grid-template-columns: 1fr;
  }
}
.design__block .design__title {
  text-align: left;
}
@media (max-width: 599px) {
  .design__block .design__title {
    text-align: center;
  }
}
@media (max-width: 599px) {
  .design__block {
    text-align: center;
  }
}
.design__list {
  margin-bottom: 1em;
  margin-left:1em;
}
.design__list li {
  margin-bottom: 0.5em;
  font-size: clamp(16px, 1vw, 20px);
  list-style-type: disc;
}
@media (max-width: 599px) {
.design__list {
	margin-left:0;
}
  .design__list li {
    text-align: center;
    list-style-type: none;
  }
}
@media (max-width: 599px) {
  .design__list {
    margin-bottom: 2.5625vw;
  }
}
.design__slider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1vw;
}
.design__img {
  position: relative;
  display: inline-block;
  height: 27vw;
  width: 22.6563vw;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .design__img {
    height: auto;
    width: 30vw;
  }
}
.design__img::after {
  content: "";
  z-index: 2;
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 599px) {
  .design__img::after {
    background-color: transparent;
  }
}
.design__img::before {
  content: "Оформление";
  position: absolute;
  z-index: 3;
  bottom: 1em;
  right: 1em;
  left:1em;
  padding:0.5em 0;
  background-color: #7F7F7F;
  border-radius: 1em 0 1em 0;
  font-size: clamp(16px, 1.4583vw, 20px);
  text-align:center;
  color: #FFFFFF;
}
@media (max-width: 599px) {
  .design__img::before {
	font-size: clamp(12px, 1.4583vw, 20px);
    background-color: #E12A37;
  }
}
.design__img:hover::after {
  background-color: transparent;
}
.design__img:hover::before {
  background-color: #E12A37;
}
.design__img:nth-child(2)::before {
  content: "Благоустройство";
}
.design__img:nth-child(3)::before {
  content: "Оградки";
}
.design__img:nth-child(4)::before {
  content: "Конструктор";
}
.design__img--mobile {
  display: none;
}
.design__img--mobile img {
  border-radius: 1vw;
}
@media (max-width: 599px) {
  .design__img--mobile {
    display: block;
    overflow: hidden;
  }
}

.popular {
  padding: 1.5625vw 0;
}
.popular__title {
  margin-bottom: 2.1667vw;
  text-align: center;
}
.popular__inner {
  background: url("./../img/popular/popular-bg.jpg") center/cover no-repeat;
}

.works {
  padding: 1.5625vw 0;
}
.works__title {
  margin-bottom: 2.1667vw;
  text-align: center;
}
.works__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.3021vw;
  height: 30vw;
}
.works__inner > *:not(button) {
  max-height: 32.2917vw;
  border-radius: 1.0417vw;
  overflow: hidden;
}
.works__inner div {
  position: relative;
}
.works__inner div::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.works__inner div:hover::before {
  background-color: transparent;
}
.works__inner div.works-pth {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3021vw;
}
.works__inner div.works-pth span {
  height: 15.4688vw;
  border-radius: 1.0417vw;
  overflow: hidden;
}
.works__inner a {
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;
}

@media (max-width: 599px) {
  .works__inner {
    grid-template-columns: 1fr;
  }

  .works__mobile__hidden {
    display: none;
  }

  .works__mobile__height {
    height: auto !important;
  }
}

.order {
  padding: 1.5625vw 0;
  background-color: #f5f5f5;
}
.order__title {
  margin-bottom: 2.1667vw;
  text-align: center;
}
.order__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.3021vw;
}
@media (max-width: 899px) {
  .order__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 599px) {
  .order__inner {
    grid-template-columns: 1fr;
  }
}

.reviews {
  padding: 1.5625vw 0;
}
.reviews__title {
  margin-bottom: 2.1667vw;
  text-align: center;
}
.reviews__inner {
  max-width:1071px;
  margin: 0 auto;
  box-shadow: 0 0 5px #333;
  border-radius: 15px;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 599px) {
  .reviews__inner {

  }
}

.reviews__slider {
aspect-ratio:1071/281;	
}

.reviews__header {
  position: relative;
  padding: 1.5625vw;
  background-color: #f5f5f5;
}
.reviews__button {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 0.1rem solid #7F7F7F;
  border-radius: 1.0417vw 0 0 0;
  background-color: #FFFFFF;
  color: #333333;
}
.reviews__slide {
  padding: 0;
  cursor: grabbing;
}

.reviews__slide img {
width:auto;
max-width:100%;
height:auto;
-o-object-fit: initial;
object-fit: initial;
}

.contacts {
  padding: 2em 0 3em 0;
}
.contacts__title .title-1 {
margin-bottom:1em;
text-align: center;
}
.contacts__desc {
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 2em;
  font-size: clamp(18px, 1.675vw, 24px);
  font-weight: 400;
  text-align: center;
}
.contacts__inner {
  display: flex;
  justify-content:space-between;
  gap: 15px;
  margin: 0 auto;
  max-width:1080px;
}

.contacts__inner > * {
	flex:1;
}

.contacts__inner form input[type=text],
.contacts__inner form button {
  width:100%;
  padding: 0.5em 1em;
  border: 1px solid #CAC9C9;
  border-radius: 0;
  background-color: #FFFFFF;
  font-size: clamp(16px, 1.575vw, 20px);
  font-weight: 400;
  border-radius: 15px;
  color: #737373;
  margin-bottom:2em;
}
.contacts__inner form .input-wrap {
 margin-bottom:2em;
}
.contacts__inner form button {
  /*background-color: #4b53e2;*/
  background:linear-gradient(to right, #7a76ff, #c430f8);
  color: #FFFFFF;
}
.contacts__inner form a {
  border: none;
  font-size: clamp(16px, 1.575vw, 20px);
}
.contacts__inner form a span {
  font-weight: 700;
  color: #9f54fc;
}

.contacts__img img {
width:auto;
max-width:100%;
height:auto;
-o-object-fit: initial;
object-fit: initial;
}

@media (max-width: 640px) {
	.contacts__img {
		display:none;
	}
}


.contact-page__wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
}
@media (max-width: 599px) {
  .contact-page__wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.contact-page__wrapper > * {
  border-radius: 15px;
  overflow: hidden;
}
.contact-page__map img {
  -o-object-position: 30%;
     object-position: 30%;
}
.contact-page__desc {
  padding: 20px;
  background-color: #F5F5F5;
}
@media (max-width: 599px) {
  .contact-page__desc {

  }
}
.contact-page__desc h3 {
  margin-bottom: 1em;
  color: #E12A37;
}
@media (max-width: 599px) {
  .contact-page__desc h3 {

  }
}
.contact-page__desc p {
  margin-bottom: 1em;
}
@media (max-width: 599px) {
  .contact-page__desc p {

  }
}
.contact-page__desc ul {
  margin-top: 1em;
}

.contact-page__desc li {
  position: relative;
  padding-left:40px;
  margin-bottom:1.5em;
}

@media (max-width: 599px) {
  .contact-page__desc li {

  }
}
.contact-page__desc li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("./../img/icons/location-pur.svg") center/cover no-repeat;
}
.contact-page__desc li:nth-child(2)::before {
  background-image: url("./../img/icons/location-blue.svg");
}
.contact-page__text {
	margin-top:32px;
	font-size:24px;
}
@media (max-width: 599px) {
  .contact-page__text {

  }
}

.footer {
  padding: 32px 0;
  background-color: #333333;
  color: #FFFFFF;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom:40px;
}

.footer__block {
	flex:auto;
}

@media (max-width: 799px) {
	.footer__block {
		flex:100%;
		text-align:center;
	}
}

.footer__title {
  margin-bottom: 1.5em;
  font-size: 18px;
  font-weight: 700;
}
.footer__list {
  font-size: 16px;
}
.footer__list li {
  margin-bottom: 1em
}
.footer__list li:last-child {
  margin-bottom: 0;
}

.footer .user-menu img {
  display: none;
}

/* Auth Popup Styles */
.auth-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.auth-popup__content {
	background-color: #FFF;
	padding: 30px;
	border-radius: 8px;
	width: 100%;
	max-width: 400px;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	margin: 0 auto;
	margin-top: 6vw;
}

.auth-popup__close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
	color: #333;
	font-weight: bold;
}

.auth-popup__close:hover {
	color: #E12A37;
}

.auth-popup h2 {
	margin-bottom: 20px;
	text-align: center;
	color: #333;
	font-size: 24px;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	color: #333;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #E12A37;
}

.form-group small {
	color: #666;
	font-size: 12px;
	display: block;
	margin-top: 5px;
}

.form-group--checkbox {
	display: flex;
	align-items: center;
}

.form-group--checkbox input {
	width: auto;
	margin-right: 10px;
}

.forgot-password {
	display: block;
	text-align: right;
	margin-bottom: 15px;
	color: #666;
	font-size: 14px;
	text-decoration: none;
}

.forgot-password:hover {
	color: #E12A37;
}

.auth-btn {
	width: 100%;
	padding: 12px;
	background-color: #E12A37;
	color: #FFF;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	margin-bottom: 15px;
	font-size: 16px;
	transition: background-color 0.3s ease;
}

.auth-btn:hover {
	background-color: #c41e29;
}

.auth-switch {
	text-align: center;
	font-size: 14px;
	color: #666;
}

.switch-to-register,
.switch-to-login {
	color: #E12A37;
	cursor: pointer;
	font-weight: bold;
	text-decoration: underline;
}

.switch-to-register:hover,
.switch-to-login:hover {
	color: #c41e29;
}

.error-message {
	color: #E12A37;
	font-size: 14px;
	margin-top: 5px;
}

/* Profile Popup Styles */
.profile-content {
	max-width: 500px;
}

.profile-tabs {
	display: flex;
	margin-bottom: 20px;
	border-bottom: 2px solid #E12A37;
}

.tab-btn {
	padding: 12px 20px;
	background: none;
	border: none;
	cursor: pointer;
	color: #333;
	font-weight: 500;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.tab-btn.active {
	background-color: #E12A37;
	color: #FFF;
	border-bottom-color: #E12A37;
}

.tab-btn:hover:not(.active) {
	background-color: #f8f8f8;
}

.tab-content {
	display: none;
	min-height: 300px;
}

.tab-content.active {
	display: block;
}

.orders-list {
	max-height: 300px;
	overflow-y: auto;
}

.order-item {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 15px;
	margin-bottom: 10px;
	background-color: #fafafa;
}

.order-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.order-number {
	font-weight: bold;
	color: #333;
}

.order-status {
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: bold;
}

.status-delivered {
	background-color: #4CAF50;
	color: white;
}

.status-processing {
	background-color: #FF9800;
	color: white;
}

.status-cancelled {
	background-color: #F44336;
	color: white;
}

.order-date, .order-total {
	margin-bottom: 5px;
	color: #666;
}

.order-details-btn {
	background-color: #E12A37;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 12px;
	transition: background-color 0.3s ease;
}

.order-details-btn:hover {
	background-color: #c41e29;
}

.profile-footer {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
	text-align: center;
}

#profile-logout {
	background-color: #666;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

#profile-logout:hover {
	background-color: #555;
}

/* User Menu Styles */
.user-menu {
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.user-menu:hover .user-dropdown {
	display: block;
}

.user-name {
	color: #E12A37;
	font-weight: 500;
	font-size: 14px;
}

.user-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: white;
	min-width: 200px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	z-index: 1000;
	border-radius: 8px;
	overflow: hidden;
}

.user-dropdown a {
	display: block;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}

.user-dropdown a:last-child {
	border-bottom: none;
}

.user-dropdown a:hover {
	background-color: #E12A37;
	color: white;
}

.user-dropdown .logout-btn {
	color: #E12A37;
	font-weight: 500;
}

.user-dropdown .logout-btn:hover {
	background-color: #E12A37;
	color: white;
}

/* Form Styles */
textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	resize: vertical;
	font-family: inherit;
	min-height: 100px;
}



/* Infopages */
.about-page__desc {
	padding:120px 0 50px 0;
}

.about-page__desc h1,
.about-page__desc h2,
.about-page__desc h3,
.about-page__desc h4,
.about-page__desc h5,
.about-page__desc h6 {
	margin-bottom:1em;
}

.about-page__desc p {
	margin-bottom:1em;
}

.about-page__desc ul, .about-page__desc ol {
	margin:0 0 1em 1.2em;
	list-style-type:initial;
}

.about-page__desc ul li, .about-page__desc ol li {
	list-style-type:initial;
}