.product-slider-sec {
  position: relative;
  width: 100%;
  padding: 0 0 80px 0;
}

.product-slider-list {
  width: 100%;
}

.product-slider-item {
  position: relative;
  width: 100%;
  height: 350px;
  transform: scale(0.7);
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
  text-decoration: none;
}

.product-slider-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 30px;
}

.product-slider-title {
  font-family: Merriweather, Bold;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: black;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.product-slider-image {
  width: 100%;
  height: 250px;
  margin-top: 25px;
}

.product-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.product-slider-item-bg {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.product-slider-item-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  left: 0;
  bottom: 0;
}

.product-slider-item-bg .yellow-bg {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.product-slider-item-bg .red-bg {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.product-slider-nav {
  position: absolute;
  top: 100px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 10px;
}

.product-slider-nav .sl-arrow {
  display: flex;
  width: 35px;
  height: 35px;
}

.product-slider-nav .sl-arrow svg {
  width: 100%;
  height: 100%;
}

/* slick */
.product-slider-list .slick-track {
  display: flex;
  gap: 0;
}

.product-slider-list .slick-list {
  padding: 0 50px !important;
}

.slick-current .product-slider-item {
  transform: scale(1);
  opacity: 1;
}

.slick-current .product-slider-item-bg .yellow-bg {
  opacity: 0;
}

.slick-current .product-slider-item-bg .red-bg {
  opacity: 1;
}

.slick-current .product-slider-title {
  color: white;
}

/* Category filter */
.recipes-sec {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
  padding: 0 20px 80px 20px;
  box-sizing: border-box;
}

.res-cat-filter {
  width: 100%;
  background-color: #451911;
  padding: 30px 20px;
  max-height: 80px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

.res-cat-filter.open {
  max-height: 1000px;
}

.res-cat-filter.open .res-filter-title-wrap .res-filter-icon {
  transform: rotate(270deg);
}

.res-filter-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

.res-filter-title {
  font-family: Merriweather, Bold;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: white;
}

.res-filter-icon {
  display: flex;
  width: 25px;
  height: 25px;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}

.res-filter-icon svg,
.res-filter-icon img {
  width: 100%;
  height: 100%;
}

.res-cat-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.res-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.res-cat-name {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: white;
}

.res-cat-arrow-icon {
  display: flex;
  width: 20px;
  height: 20px;
}

.res-cat-arrow-icon svg,
.res-cat-arrow-icon img {
  width: 100%;
  height: 100%;
}

.res-cat-item.active .res-cat-name {
  color: #fdcb00;
}

.res-cat-item.active .res-cat-arrow-icon {
  transform: rotate(90deg);
}

.recipies-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  gap: 24px;
  margin-top: 0;
  box-sizing: border-box;
}

.recipe-list-item {
  display: grid;
  gap: 30px;
  max-height: 515px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.recipe-list-item.open {
  max-height: 5000px;
}

.recipe-list-item-image {
  width: 100%;
  height: 240px;
}

.recipe-list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-list-item-content {
  display: grid;
  gap: 12px;
}

.recipe-list-item-title {
  margin: 0;
  font-family: Merriweather, Bold;
  font-size: 24px;
  line-height: 1.2;
  color: #1a1818;
}

.recipe-list-item-description,
.recipies-empty-state {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #1a1818;
}

.recipe-list-item-link {
  font-family: Merriweather, Bold;
  font-size: 16px;
  line-height: 1.2;
  color: #451911;
  text-decoration: none;
}

.recipies-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  gap: 24px;
  margin-top: 0;
  box-sizing: border-box;
}

.recipe-list-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgba(69, 25, 17, 0.2);
  padding: 20px;
  box-sizing: border-box;
}

.recipe-item-head {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}

.recipe-item-main-image {
  width: 100%;
  height: 250px;
}

.recipe-item-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.re-item-head-content-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.recipe-title {
  font-family: Merriweather, Bold;
  font-size: 20px;
  line-height: 20px;
  color: #1a1818;
}

.recipe-tags-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin-top: 5px;
}

.re-tag {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -1px;
  color: rgba(26, 24, 24, 0.5);
}

.re-tag::after {
  position: absolute;
  content: "";
  top: 0;
  right: -10px;
  width: 1px;
  height: 100%;
  background-color: rgba(26, 24, 24, 0.5);
}

.re-tag:last-child::after {
  display: none;
}

.re-head-para {
  margin-top: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.recipe-item-body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.re-item-body-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.re-gallery-sec {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.re-gallery-main-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.re-gallery-wrap {
  margin-top: 5px;
}

.re-gallery-wrap .re-gallery-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.re-gallery-wrap .slick-track {
  display: flex;
  gap: 5px;
}

.re-gallery-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 255px);
  z-index: 1;
}

.re-gallery-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 24, 24, 0.9);
  width: 50px;
  height: 100%;
}

.re-gallery-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.ingredients-sec {
  margin-top: 30px;
}

.ingredients-title {
  font-family: Merriweather, Bold;
  font-size: 20px;
  line-height: 20px;
  color: #1a1818;
}

.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.ingredient-item {
  position: relative;
  padding-left: 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.ingredient-item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: #1a1818;
}

.re-instructions-title {
  font-family: Merriweather, Bold;
  font-size: 20px;
  line-height: 20px;
  color: #1a1818;
  margin-top: 30px;
  font-weight: 700;
}

.re-instructions {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px;
}

.re-vid-wrap {
  position: relative;
  width: 100%;
  margin-top: 30px;
  height: 190px;
  overflow: hidden;
  background-color: #000;
}

.re-vid-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.re-vid-wrap:not(.is-playing) .re-vid {
  pointer-events: none;
}

.re-vid-interaction-shield {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 60px;
  left: 0;
  z-index: 1;
  background: transparent;
}

.re-vid-wrap.is-playing .re-vid-interaction-shield {
  display: block;
}

.re-vid-play-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
}

.re-vid-wrap.is-playing .re-vid-play-wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.re-vid-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.re-vid-play-button svg {
  width: 45px;
  height: 45px;
}

.re-item-head-arrow {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.re-item-head-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.re-item-head-arrow svg {
  width: 100%;
  height: 100%;
}

.recipe-list-item.open
  .recipe-item-head
  .re-item-head-content-wrap
  .re-item-head-arrow {
  transform: rotate(180deg);
}

@media only screen and (min-width: 1024px) {
  .product-slider-sec {
    position: relative;
    width: 100%;
    padding: 0 0 160px 0;
  }

  .product-slider-list {
    width: 100%;
  }

  .product-slider-item {
    position: relative;
    width: 100%;
    height: 550px;
    transform: scale(0.6);
    transition: all 0.3s ease-in-out;
    opacity: 1;
  }

  .product-slider-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 55px 60px;
  }

  .product-slider-title {
    font-family: Merriweather, Bold;
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    color: black;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }

  .product-slider-image {
    width: 100%;
    height: 380px;
    margin-top: 50px;
  }

  .product-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
  }

  .product-slider-item-bg {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .product-slider-item-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    left: 0;
    bottom: 0;
  }

  .product-slider-item-bg .yellow-bg {
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }

  .product-slider-item-bg .red-bg {
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .product-slider-nav {
    position: absolute;
    top: 200px;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 70px;
  }

  .product-slider-nav .sl-arrow {
    display: flex;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }

  .product-slider-nav .sl-arrow svg {
    width: 100%;
    height: 100%;
  }

  /* slick */
  .product-slider-list .slick-track {
    display: flex;
    gap: 0;
  }

  .product-slider-list .slick-list {
    padding: 0 50px !important;
  }

  .slick-current .product-slider-item {
    transform: scale(1);
    opacity: 1;
  }

  .slick-current .product-slider-item-bg .yellow-bg {
    opacity: 0;
  }

  .slick-current .product-slider-item-bg .red-bg {
    opacity: 1;
  }

  .slick-current .product-slider-title {
    color: white;
  }

  /* Recipes section */
  .recipes-sec {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    padding: 0 120px 140px 120px;
  }

  .res-cat-filter {
    flex: 0 0 455px;
    width: 455px;
    max-width: 100%;
    background-color: #451911;
    padding: 70px 60px;
    max-height: 1000px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .res-cat-filter.open {
    max-height: 1000px;
  }

  .res-cat-filter.open .res-filter-title-wrap .res-filter-icon {
    transform: rotate(270deg);
  }

  #res-filter-icon-main {
    display: none;
  }

  .res-filter-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
  }

  .res-filter-title {
    font-family: Merriweather, Bold;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    color: white;
  }

  .res-filter-icon {
    display: flex;
    width: 25px;
    height: 25px;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
  }

  .res-filter-icon svg {
    width: 100%;
    height: 100%;
  }

  .res-cat-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .res-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    opacity: 0.6;
  }

  .res-cat-item.active {
    opacity: 1;
  }

  .res-cat-name {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    color: white;
  }

  .res-cat-arrow-icon {
    display: flex;
    width: 20px;
    height: 20px;
  }

  .res-cat-arrow-icon svg,
  .res-cat-arrow-icon img {
    width: 100%;
    height: 100%;
  }

  .res-cat-item.active .res-cat-name {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    color: white;
  }

  .res-cat-item.active .res-cat-arrow-icon {
    transform: rotate(90deg);
  }

  .recipies-list {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    gap: 20px;
    margin-top: 0;
    box-sizing: border-box;
  }

  .recipe-list-item {
    gap: 30px;
    max-height: 250px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }

  .recipe-list-item.open {
    max-height: 5000px;
  }

  .recipe-list-item-image {
    width: 100%;
    height: 240px;
  }

  .recipe-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recipe-list-item-content {
    display: grid;
    gap: 12px;
  }

  .recipe-list-item-title {
    margin: 0;
    font-family: Merriweather, Bold;
    font-size: 24px;
    line-height: 1.2;
    color: #1a1818;
  }

  .recipe-list-item-description,
  .recipies-empty-state {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #1a1818;
  }

  .recipe-list-item-link {
    font-family: Merriweather, Bold;
    font-size: 16px;
    line-height: 1.2;
    color: #451911;
    text-decoration: none;
  }

  .recipies-list {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    gap: 24px;
    margin-top: 0;
    box-sizing: border-box;
  }

  .recipe-list-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: rgba(69, 25, 17, 0.2);
    padding: 20px 30px 60px 30px;
  }

  .recipe-item-head {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 40px;
    padding-top: 20px;
    cursor: pointer;
  }

  .recipe-item-main-image {
    width: 229px;
    height: 181px;
  }

  .recipe-item-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .re-item-head-content-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .recipe-title {
    font-family: Merriweather, Bold;
    font-size: 28px;
    line-height: 28px;
    color: #1a1818;
  }

  .recipe-tags-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 24px;
    margin-top: 15px;
  }

  .re-tag {
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -1px;
    color: rgba(26, 24, 24, 0.5);
  }

  .re-tag::after {
    position: absolute;
    content: "";
    top: 0;
    right: -12px;
    width: 1px;
    height: 100%;
    background-color: rgba(26, 24, 24, 0.5);
  }

  .re-tag:last-child::after {
    display: none;
  }

  .re-head-para {
    margin-top: 40px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
  }

  .recipe-item-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 30px;
  }

  .re-item-body-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 60px;
  }

  .re-gallery-sec {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 671px;
  }

  .re-gallery-main-img {
    width: 100%;
    height: 471px;
    object-fit: cover;
  }

  .re-gallery-wrap {
    margin-top: 10px;
  }

  .re-gallery-wrap .re-gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
  }

  .re-gallery-wrap .slick-track {
    display: flex;
    gap: 10px;
  }

  .re-gallery-wrap .slick-list {
    padding: 0 125px !important;
  }

  .re-gallery-nav {
    position: absolute;
    display: flex;
    justify-content: space-between;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 481px);
    z-index: 1;
  }

  .re-gallery-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 24, 24, 0.9);
    width: 125px;
    height: 100%;
    cursor: pointer;
  }

  .re-gallery-arrow img {
    width: 45px;
    height: 45px;
    object-fit: contain;
  }

  .ingredients-sec {
    margin-top: 40px;
  }

  .ingredients-title {
    font-family: Merriweather, Bold;
    font-size: 24px;
    line-height: 24px;
    color: #1a1818;
  }

  .ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }

  .ingredient-item {
    position: relative;
    padding-left: 15px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
  }

  .ingredient-item::after {
    position: absolute;
    content: "";
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    aspect-ratio: 1/1;
    background-color: #1a1818;
  }

  .re-instructions-title {
    font-family: Merriweather, Bold;
    font-size: 24px;
    line-height: 24px;
    color: #1a1818;
    margin-top: 80px;
  }

  .re-instructions {
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
    margin-top: 40px;
  }

  .re-vid-wrap {
    position: relative;
    width: 100%;
    margin-top: 80px;
    height: 500px;
    overflow: hidden;
    background-color: #000;
  }

  .re-vid-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .re-vid-wrap:not(.is-playing) .re-vid {
    pointer-events: none;
  }

  .re-vid-interaction-shield {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 60px;
    left: 0;
    z-index: 1;
    background: transparent;
  }

  .re-vid-wrap.is-playing .re-vid-interaction-shield {
    display: block;
  }

  .re-vid-play-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    transition:
      opacity 0.2s ease-in-out,
      visibility 0.2s ease-in-out;
  }

  .re-vid-wrap.is-playing .re-vid-play-wrap {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .re-vid-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
  }

  .re-vid-play-button svg {
    width: 120px;
    height: 120px;
  }

  .re-item-head-arrow {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
  }

  .re-item-head-arrow svg {
    width: 100%;
    height: 100%;
  }

  .recipe-list-item.open
    .recipe-item-head
    .re-item-head-content-wrap
    .re-item-head-arrow {
    transform: rotate(180deg);
  }
}
