.catalog {
  padding-block: 100px;
  background-color: #fff5eb;
}
.catalog.separate {
  background-color: #fff;
}

.catalog > .container {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
}

.catalog-section .catalog-section__title {
  display: flex;
  align-items: center;
  column-gap: 10px;

  font-size: 36px;
  font-weight: 900;
}

.catalog-section .catalog-section__title::after {
  display: block;
  content: '';

  flex-grow: 1;
  height: 1px;

  background-color: currentColor;
}

.catalog-section-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 50px 25px;
  /*margin-top: 50px;*/
}
/*.catalog-section-items.popular {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(4, 1fr);*/

/*  gap: 50px 25px;*/
/*  !*margin-top: 50px;*!*/
/*}*/

.catalog-section.popular .catalog-section__title::after {
  display: none;
  content: '';
}

.catalog-section-item__image {
  width: 100%;
}

.catalog-section-item__title {
  margin-top: 10px;
  font-weight: 900;
}

.catalog-section-item__button {
  margin-top: 10px;

  color: #fff;
  background-color: var(--accent-color);
}

.catalog-section-item__button:hover,
.catalog-section-item__button:focus-visible {
  background-color: #000;
}

.main-info {
  margin-top: 50px;
}
.main-info h4 {
  display: block;
  position: relative;
  padding-top: 5px;
  font-size: 18px;
  font-weight: bold;
  border-top: 1px #ccc solid;
}
.main-info h4:after {
  display: block;
  content: '';
  width: 100px;
  height: 4px;
  position: absolute;
  top: -1px;
  left: 0;
  background-color: var(--accent-color);
}

.main-info p {
  margin-top: 30px;
}

.product-header {
  vertical-align: top;
}
.product-header .product-image,
.product-header .product-details {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  padding: 0;
  margin: 0;
}
.product-header .product-image {
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.product-header .product-details {
  padding-top: 20px;
}
.product-header .product-details strong.accent {
  color: var(--accent-color);
  display: inline-block;
  font-size: 16px;
}
.product-header .product-details h1 {
  color: currentColor;
  display: block;
  padding: 5px 0;
  margin-bottom: 20px;
  border-bottom: 1px #ccc solid;
}


.banner {
  height: 400px;
  background-size: cover;
  background-position: center;
}

.price-list {
  padding-block: 100px;
  background-color: #fff5eb;
}

.price-list > .container {
  display: flex;
  column-gap: 30px;
}

.price-list > .container > .site-contacts {
  width: 280px;
  flex-shrink: 0;
}

.price-list__divider {
  width: 1px;
  background-color: currentColor;
}

.price-list-feedback__title {
  font-size: 36px;
  font-weight: 900;
}

.breadcrumbs {
  padding-top: 20px;
}

.breadcrumbs-list .breadcrumb-item {
  display: inline;
  color: #999;
}
.breadcrumbs-list .breadcrumb-item:hover {
  color: #666;
}
.breadcrumbs-list .breadcrumb-item:before {
  content: '/';
  display: inline;
  margin: 0 5px;
}
.breadcrumbs-list .breadcrumb-item:first-child:before {
  content: '';
  margin: 0;
}

.heading {
  margin-top: 20px;
}
.heading h1 {
  font-size: 36px;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  color: var(--accent-color);
}




@media (max-width: 1279px) {
  .catalog-section-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-list > .container {
    flex-direction: column;
  }

  .price-list__divider {
    display: none;
  }

  .price-list-feedback {
    margin-top: 30px;
  }

  .price-list-feedback__title {
    font-size: 18px;
  }


  .product-header .product-image,
  .product-header .product-details {
    display: block;
    width: 100%;
  }
  .main-info h4:after {
    width: 100%;
  }
}






