.product-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .product-top {
    flex-direction: column;
    gap: 20px;
  }
}
.product-top .product-top__content {
  width: calc(50% - 50px);
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .product-top .product-top__content {
    width: 100%;
  }
}
.product-top .product-top__content .title {
  margin-bottom: 25px;
}
.product-top .product-top__content .button {
  margin-top: 25px;
}
.product-top .product-top__content p:first-child {
  margin-top: 0;
}
.product-top .product-top__content .product-top__disclaimer {
  font-size: 12px;
  line-height: 1.2em;
  margin-top: 50px;
  text-transform: uppercase;
}
.product-top .product-top__content .product-top__disclaimer a {
  text-decoration: underline;
  font-weight: 400;
}
.product-top .product-top__data {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .product-top .product-top__data {
    flex-direction: column;
    gap: 20px;
  }
}
.product-top .product-top__data .product-top__data-description {
  width: calc(60% - 25px);
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 768px) {
  .product-top .product-top__data .product-top__data-description {
    width: 100%;
  }
}
.product-top .product-top__data .product-top__data-parameters {
  width: calc(40% - 25px);
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 768px) {
  .product-top .product-top__data .product-top__data-parameters {
    width: 100%;
  }
}
.product-top .product-top__parameters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-top .product-top__parameters .product-top__parameter:not(.product-top__parameter--title) {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: baseline;
}
.product-top .product-top__parameters .product-top__parameter:not(.product-top__parameter--title) .product-top__parameter-name,
.product-top .product-top__parameters .product-top__parameter:not(.product-top__parameter--title) .product-top__parameter-value {
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
  text-transform: uppercase;
}
@media screen and (max-width: 1360px) {
  .product-top .product-top__parameters .product-top__parameter:not(.product-top__parameter--title) .product-top__parameter-name,
  .product-top .product-top__parameters .product-top__parameter:not(.product-top__parameter--title) .product-top__parameter-value {
    font-size: 14px;
    line-height: 1em;
  }
}
.product-top .product-top__parameters .product-top__parameter:not(.product-top__parameter--title) .product-top__parameter-name {
  order: 1;
}
.product-top .product-top__parameters .product-top__parameter:not(.product-top__parameter--title) .product-top__parameter-value {
  order: 3;
}
.product-top .product-top__parameters .product-top__parameter:not(.product-top__parameter--title):after {
  content: "";
  order: 2;
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.product-top .product-top__parameters .product-top__parameter.product-top__parameter--title {
  margin-top: 25px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1360px) {
  .product-top .product-top__parameters .product-top__parameter.product-top__parameter--title {
    font-size: 14px;
    line-height: 1em;
  }
}
.product-top .product-top__image {
  flex-grow: 1;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .product-top .product-top__image {
    width: 100%;
  }
}
.product-top .product-top__image .product-top__img {
  position: absolute;
  top: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .product-top .product-top__image .product-top__img {
    width: 100%;
    position: relative;
  }
}
.product-top .product-top__image .product-top__img.product-top__img--single {
  width: 100%;
}
.product-top .product-top__image .product-top__img.product-top__img--single .product-top__img-bg {
  width: 100%;
  height: auto;
}
.product-top .product-top__image .product-top__img.product-top__img--single .product-top__img-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: auto;
}
.product-top .product-top__image .product-top__img:not(.product-top__img--single) {
  max-width: 100%;
  height: auto;
}

.product-list {
  max-width: 100%;
  margin-top: 30px;
}
.product-list:not(.splide) {
  display: flex;
  flex-direction: row;
  gap: 30px;
  overflow-x: scroll;
  padding-bottom: 15px;
  scrollbar-color: #FDC703 transparent;
  scrollbar-width: thin;
}
.product-list:not(.splide)::-webkit-scrollbar {
  width: 8px;
}
.product-list:not(.splide)::-webkit-scrollbar-track {
  background: transparent;
}
.product-list:not(.splide)::-webkit-scrollbar-thumb {
  background: #FDC703;
}
.product-list:not(.splide)::-webkit-scrollbar-thumb:hover {
  background: #fede7b;
}
@media screen and (max-width: 768px) {
  .product-list:not(.splide) {
    width: 100%;
    max-width: initial;
    gap: 15px;
  }
}

.product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.product .product__image {
  max-height: 184px;
  width: auto;
}
.product .product__title {
  font-family: "Domaine Text", serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3em;
  margin: 0;
  text-align: center;
}

.product-cat-list:not(.splide) {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 15px;
  scrollbar-color: #FDC703 transparent;
  scrollbar-width: thin;
}
.product-cat-list:not(.splide)::-webkit-scrollbar {
  width: 8px;
}
.product-cat-list:not(.splide)::-webkit-scrollbar-track {
  background: transparent;
}
.product-cat-list:not(.splide)::-webkit-scrollbar-thumb {
  background: #FDC703;
}
.product-cat-list:not(.splide)::-webkit-scrollbar-thumb:hover {
  background: #fede7b;
}
.product-cat-list .product-cat-list__item {
  display: flex;
  flex-shrink: 0;
  flex-grow: 0;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  max-width: 280px;
}
.product-cat-list .product-cat-list__item .product-cat-list__image {
  max-width: 100%;
  height: auto;
}
.product-cat-list .product-cat-list__item .product-cat-list__title {
  font-family: "Domaine Text", serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3em;
  margin: 0;
}
.product-cat-list.splide .product-cat-list__item {
  height: 100%;
}/*# sourceMappingURL=lovecatering-products.css.map */