/* Recipes Page */

.recipes-section {
    padding: 80px 0 0 0;
  
    @media screen and (max-width: 1500px) {
      padding: 70px 0 0 0;
    }
    @media screen and (max-width: 1199px) {
      padding: 40px 0 0 0;
    }
  }
  .recipes-title{
    text-align: center;
  
    h1{
      font-weight: 400;
      font-size: 64px;
      line-height: 77px;
      color: #121212;
      margin: 0 0 8px 0;
      font-family: "clarendon-urw";
  
      @media screen and (max-width: 1500px) {
        font-size: 50px;
        line-height: 60px;
      }
      @media screen and (max-width: 1299px) {
        font-size: 40px;
        line-height: 50px;
      }
      @media screen and (max-width: 767px) {
        font-size: 40px;
        line-height: normal;
      }
    }
  
    p{
      font-weight: 400;
      font-size: 20px;
      line-height: 150%;
      letter-spacing: 0.02em;
      color: #515C60;
      margin: 0 auto 40px auto;
      max-width: 783px;
      width: 100%;
      font-family: "Open Sans", sans-serif;
  
      
      @media screen and (max-width: 1299px) {
        font-size: 18px;
      }

      @media screen and (max-width: 767px) {
        font-size: 16px;
        margin: 0 0 24px 0;
      }

    }
  }
  .recipes-tab-wrapper{
    @media screen and (max-width: 1199px) {
        overflow-x: auto;
        overflow-y: hidden;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        /* scrollbar-width: thin;
        scrollbar-color: #B72928 #f0f0f0; */
        
        /* &::-webkit-scrollbar {
          height: 6px;
        }
        
        &::-webkit-scrollbar-track {
          background: #f0f0f0;
          border-radius: 3px;
        }
        
        &::-webkit-scrollbar-thumb {
          background: #B72928;
          border-radius: 3px;
        }
        
        &::-webkit-scrollbar-thumb:hover {
          background: #922120;
        } */
      }
      @media screen and (max-width: 767px) {
        margin-bottom: 24px;
        margin-right: -20px;
      }
  }
  .recipes-tab-item-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    padding: 0 0 40px 0;

    @media screen and (max-width: 1199px) {
      flex-wrap: nowrap;
      justify-content: flex-start;
      min-width: max-content;
      padding-bottom: 20px;
    }
    @media screen and (max-width: 767px) {
      gap: 12px;
      padding-bottom: 24px;
    }

    .recipes-tab-item-col{
      width: 128px;
      flex-shrink: 0;

      a{
        text-decoration: none;
        outline: none;
      }
      
      @media screen and (max-width: 1199px) {
        width: 110px;
      }

      @media screen and (max-width: 767px) {
        width: 96px;
      }
    }
  
    .recipes-tab-item-block {
      text-align: center;

      &:hover h2{
        color: #B72928;
      }
      &.active h2{
        color: #B72928;
      }
  
      img{
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 8px;
        margin: 0 0 24px 0;

        @media screen and (max-width: 991px) {
          margin: 0 0 16px 0;
        }
        @media screen and (max-width: 767px) {
          margin: 0 0 24px 0;
        }
      }
  
      h2{
        font-size: 20px;
        line-height: 125%;
        color: #121212;
        font-weight: 400;
        margin: 0 0 0 0;
        text-decoration: none;
      font-family: "clarendon-urw";

        @media screen and (max-width: 991px) {
          font-size: 18px;
        }
        @media screen and (max-width: 767px) {
          font-size: 14px;
          line-height: 125%;
        }
      }
    }
  }
  
  .recipes-filter-wrapper{
    padding: 0 0 48px 0;

    @media screen and (max-width: 767px) {
      padding-bottom: 40px;
    }
  }
  .recipes-filter{
    display: flex;
    flex-wrap: wrap;
    gap: 16px ;
  }
  .recipes-filter-search{
    position: relative;
    max-width: 360px;
    width: 100%;
  
    @media screen and (max-width: 1500px) {
      max-width: 220px;
    }
    @media screen and (max-width: 1299px) {
      max-width: 100%;
    }
  
    input{
      width: 100%;
      height: 56px;
      padding-left: 16px;
      background-color: #FFFFFC;
      border: 1px solid #515C6080;
      border-radius: 4px;
      font-size: 16px;
      line-height: 150%;
      color: #515C60;
      font-family: "Open Sans", sans-serif;
  
      &::placeholder{
        color: #515C60;
      }

      @media screen and (max-width: 767px) {
        height: 48px;
      }
    }
  
    .search-button-icon{
      position: absolute;
      right: 16px;
      top: 16px;
      background-image: url("../images/sr-icon.svg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: transparent;
      width: 24px;
      height: 24px;
      border: none;
      cursor: pointer;
      padding: 0;
      margin: 0;
      outline: none;

      @media screen and (max-width: 767px) {
        top: 12px;
      }
    }
  }
  .recipes-filter-select-wrapper{
    @media screen and (max-width: 991px) {
      width: calc(50% - 8px);
    }
    @media screen and (max-width: 767px) {
      display: none;
    }
  }
  .recipes-filter-select{
    width: auto;
    height: 56px;
    border: 1px solid #B72928;
    border-radius: 4px;
    padding-left: 24px;
    padding-right: 56px;
    padding-bottom: 3px;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #B72928;
    font-family: "clarendon-urw";
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../images/select-img.svg");
    background-position: calc(100% - 24px) center;
    background-repeat: no-repeat;
    background-size: 16px;


    @media screen and (max-width: 991px) {
      width: 100%;
    }
  }
  
  .sort-by-wrapper{
    display: flex;
    align-items: center;
    gap: 10px 16px;
    margin: 0 0 0 auto;
  
    h6{
      font-size: 18px;
      line-height: normal;
      color: #121212;
      font-weight: 400;
      font-family: "Open Sans", sans-serif;
      margin: 0;

      @media screen and (max-width: 767px) {
        margin-bottom: 10px;
      }
    }

    @media screen and (max-width: 991px) {
      
      width: 47%;
    }
    @media screen and (max-width: 767px) {
      display: none;
      width: 100%;
    }
  }

  .recipes-list-wrapper .recipes-block{
    h2{
      @media screen and (max-width: 1199px) {
        line-height: 130%;
      }
      @media screen and (max-width: 767px) {
        font-size: 24px;
        line-height: 150%;
      }
    }
    
  }

  .mobile-select-block{
    display: none;
    width: 100%;
    @media screen and (max-width: 767px) {
      display: block;
    }

    .sort-by-wrapper{
      display: block;
    }
    .recipes-filter-select{
      margin: 0 0 16px 0;
      width: 100%;
      height: 48px;
    }
    .mobile-select-button {
      background-image: none;
      padding-left: 24px;
      padding-right: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
  }
  .mobile-select-block-wrapper{
    display: none;
  }
  
  .recipes-list-wrapper .recipes-block .recipes-img{
    height: 360px;

    @media screen and (max-width: 1299px) {
      height: 280px;
    }
    @media screen and (max-width: 1199px) {
      height: 210px;
    }
    @media screen and (max-width: 767px) {
      height: 300px;
      margin: 0 0 24px 0;
    }
  }
  .recipes-list-wrapper .recipes-block h6{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .recipes-list-row{
    display: flex;
    flex-wrap: wrap;
    gap: 48px 0;
    margin: 0 -12px;
  
    .recipes-list-col{
      padding: 0 12px;
      width: 33.33%;

      @media screen and (max-width: 991px) {
        width: 50%;
      }
      @media screen and (max-width: 767px) {
        width: 100%;
      }
    }
  }
  .pagination-block {
    padding: 72px 0 0 0;
    @media screen and (max-width: 767px) {
      padding: 64px 0 0 0;
    }
  }
  .pagination-block ul{
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  
    li{
      a{
        display: block;
        color: #121212;
        opacity: 0.5;
        font-family: "clarendon-urw";
        font-weight: 400;
        font-size: 24px;
        line-height: normal;
        letter-spacing: 0%;
        transition: all 0.3s ease;
        &:hover{
          opacity: 1;
          color: #B72928;
          text-decoration: underline;
        }
      }
      &.active{
        a{
          opacity: 1;
          color: #B72928;
          text-decoration: underline;
        }
      }
  
      &.prev {
        a{
          opacity: 1;
        }
      }
      &.next {
        a{
          opacity: 1;
        }
      }
    }
  }
  
  
  .recipes-signup-section{
    padding: 80px 0;
    @media screen and (max-width: 767px) {
      padding: 40px 0;
    }
  }
  .recipes-signup-row{
    display: flex;
    gap: 24px 48px;

    @media screen and (max-width: 1199px) {
      gap: 24px 30px;
    }

    @media screen and (max-width: 991px) {
      flex-wrap: wrap;
    }

    
    .recipes-signup-col{
      width: 50%;
      min-height: 100%;

      @media screen and (max-width: 991px) {
        width: 100%;
        
      }
    }
  }
  .recipes-signupform-block{
    background-color: #B72928;
    background-image: url("../images/recipes-signup-bg.png");
    background-size: auto;
    background-position: right bottom;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 64px 40px;
    min-height: 100%;

    @media screen and (max-width: 1299px) {
      background-size: 100%;
    }
    @media screen and (max-width: 1199px) {
        background-size: 70%;
    }

    @media screen and (max-width: 991px) {
      background-size: 50%;
    }
    @media screen and (max-width: 767px) {
      padding: 40px 24px;
      min-height: 562px;
      background-size: 111%;
    }
  
  
    h2{
      font-size: 56px;
      line-height: normal;
      color: #FFFFFC;
      font-weight: 400;
      font-family: "flood-std", sans-serif;
      margin: 0 0 8px 0;
      text-align: center;

      @media screen and (max-width: 1199px) {
        font-size: 40px;
      }
      
    }
    p{
      font-size: 18px;
      line-height: 150%;
      color: #FFFFFC;
      font-weight: 400;
      font-family: "Open Sans", sans-serif;
      margin: 0 0 24px 0;
      text-align: center;

      @media screen and (max-width: 767px) {
        font-size: 14px;
      }
    }
  
    .recipes-signup-form{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0;

      @media screen and (max-width: 767px) {
        flex-wrap: wrap;
        gap: 16px 0;
      }
  
      input{
        width: calc(100% - 165px);
        height: 56px;
        color: #515C60;
        font-family: "Open Sans", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: normal;
        letter-spacing: 0%;
        padding-left: 12px;
        border: 1px solid #515C6040;
        background-color: #FFFFFC;
        border-radius: 4px;
        outline: none;
  
        border: none;
        &::placeholder{
          color: #515C60;
        }

        @media screen and (max-width: 767px) {
          width: 100%;
          height: 48px;
        }
      }
      .btn-main{
        background-color: #121212;
        color: #FFFFFC;
        border-color: #121212;
        border-radius: 4px;
        &:hover{
          background-color: #922120;
          color: #FFFFFC;
          border-color: #922120;
        }

        @media screen and (max-width: 767px) {
          width: 100%;
          padding: 10px 14px 14px 16px;
          font-size: 16px;
        }
      }
    }
  }
  .recipes-signup-image-block {
  
    img{
      width: 100%;
      height: 706px;
      object-fit: cover;
      border-radius: 20px;

      @media screen and (max-width: 1199px) {
        height: 500px;
      }
      @media screen and (max-width: 991px) {
        height: auto;
      }
    }
  }






  .reviews-page-section{
    padding: 80px 0;

    @media screen and (max-width: 1299px) {
      padding: 60px 0;
    }

    @media screen and (max-width: 767px) {
      padding: 40px 0;
    }
  }

  .reviews-page-wrapper{
    max-width: 960px;
    margin: 0 auto;
    width: 100%;

    .pagination-block{
      padding: 24px 0 0 0;
    }
  }

  .reviews-page-title{
    text-align: center;
    padding: 0 0 48px 0;
  
    h1{
      font-weight: 400;
      font-size: 64px;
      line-height: 77px;
      color: #121212;
      margin: 0 0 24px 0;
      font-family: "clarendon-urw";
  
      @media screen and (max-width: 1500px) {
        font-size: 50px;
        line-height: 60px;
      }
      @media screen and (max-width: 1299px) {
        font-size: 40px;
        line-height: 50px;
      }
      @media screen and (max-width: 767px) {
        line-height: normal;
        font-size: 32px;
        margin: 0 0 16px 0;
      }
    }

    h3{
      font-weight: 400;
      font-size: 32px;
      line-height: 38px;
      margin: 0 0 24px 0;
      font-family: "clarendon-urw";
      color: #121212;

      @media screen and (max-width: 1299px) {
        font-size: 28px;
        line-height: 34px;
      }
      @media screen and (max-width: 767px) {
        font-size: 20px;
        line-height: normal;
        margin: 0 0 16px 0;
      }
    }
  
    p{
      font-weight: 400;
      font-size: 20px;
      line-height: 150%;
      letter-spacing: 0.02em;
      color: #515C60;
      margin: 0 0 0px 0;
      font-family: "Open Sans", sans-serif;
  
      
      @media screen and (max-width: 1299px) {
        font-size: 18px;
      }

      @media screen and (max-width: 767px) {
        font-size: 14px;
      }

    }
  }

  .reviews-block{
    text-align: center;
    padding: 40px;
    background-color: #FCE6EC;
    border-radius: 12px;
    margin: 0 0 24px 0;

    &:nth-of-type(7n+1){
      background-color: #FDE6E9;
    }
    &:nth-of-type(7n+2){
      background-color: #E4F6D8;
    }
    &:nth-of-type(7n+3){
      background-color: #D6EDEC;
    }
    &:nth-of-type(7n+4){
      background-color: #EDE5EE;
    }
    &:nth-of-type(7n+5){
      background-color: #FBE9CC;
    }
    &:nth-of-type(7n+6){
      background-color: #EEE3D4;
    }
    &:nth-of-type(7n+7){
      background-color: #E4F6D8;
    }
  }
  .reviews-block-content{
    
    h6{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: "Open Sans", sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 125%;
      letter-spacing: 0%;
      margin: 0 0 24px 0;
      color: #121212;

      img{
        filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7084%) hue-rotate(18deg) brightness(90%) contrast(86%);
      }
    }
    p{
      font-family: "clarendon-urw";
      font-weight: 300;
      font-size: 20px;
      line-height: 140%;
      letter-spacing: 0%;
      margin: 0 0 24px 0;
      color: #121212;
    }
    h5{
      font-family: "Open Sans", sans-serif;
      font-weight: 600;
      font-size: 16px;
      line-height: 125%;
      letter-spacing: 0%;
      margin: 0 0 16px 0;
      color: #121212;
      display: flex;
      align-items: center;
      justify-content: center;

      img{
        height: 20px;
        display: inline-block;
        margin: 0 2px;
        filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7084%) hue-rotate(18deg) brightness(90%) contrast(86%);

        &:first-child{
          margin-left: 6px;
        }
      }
    }
    h4{
      font-weight: 400;
      font-size: 14px;
      line-height: 125%;
      letter-spacing: 0%;
      margin: 0;
      font-family: "Open Sans", sans-serif;
      color: #121212;
    }
  }




  

/* Product Tab Section */
.product-tab-section{
  padding: 0 0 80px 0;
  @media screen and (max-width:767px) {
    padding: 0 0 40px 0;
  }

  &.reviews-product-tab-section{
    @media screen and (max-width:767px) {
      padding: 40px 0;
    }
  }
}
.title{
  margin: 0 0 24px 0;
  @media screen and (max-width:767px) {
    margin: 0 0 23px 0;
  }

  h2{
    font-weight: 400;
    font-size: 56px;
    line-height: normal;
    letter-spacing: 0%;
    font-family: "clarendon-urw";
    margin: 0 0 0 0;

    @media screen and (max-width:1500px) {
      font-size: 50px;
    }
    @media screen and (max-width:1299px) {
      font-size: 40px;
    }
    @media screen and (max-width:991px) {
      font-size: 32px;
    }
    
  }
}
.tabs-title{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 48px 0;

  
  @media screen and (max-width:1199px) {
    margin: 0 0 30px 0;
  }

  @media screen and (max-width:767px) {
    margin: 0 0 24px 0;

    .btn-main{
      display: none;
    }
  }
}

.tab-content .tab-pane {
    display: none;
}
.tab-content .tab-pane.active {
    display: block;
}
.tab-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;

  @media screen and (max-width:991px) {
    gap: 10px 15px;
  }
  @media screen and (max-width:767px) {
    gap: 10px 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 0 7px 0;
  }

  .tab-link{
    padding: 4px 0 9px 0;
    font-family: "clarendon-urw";
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0%;
    color: #121212;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid transparent;

    &.active{
      border-color: #B72928;
      color: #B72928;
    }

    @media screen and (max-width:1299px) {
      font-size: 20px;
    }
    @media screen and (max-width:991px) {
      font-size: 18px;
    }
    @media screen and (max-width:767px) {
      font-size: 20px;
      white-space: nowrap;
    }
  }
}

.product-tab-row{
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; */
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  gap: 24px 0;

  .product-tab-col{
    padding: 0 12px;
    width: 33.33%;

    @media screen and (max-width:1199px) {
      width: 50%;
    }
    @media screen and (max-width:767px) {
      width: 100%;
    }
  }
}
.product-tab-block{
    background-color: #FCE6EC;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;

    &:hover{
      outline: 1.5px solid #B72928;
    }
}
.product-pattern-img{
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: overlay;

  @media screen and (max-width:767px) {
    width: 66%;
  }
}
.product-tab-img{
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;

  img{
    object-fit: contain;
    width: 100%;

    @media screen and (max-width:1299px) {
      height: 200px;
    }
    @media screen and (max-width:1199px) {
      height: 260px;
    }
    @media screen and (max-width:767px) {
      height: 304px;
    }
  }

  @media screen and (max-width:1299px) {
    height: 300px;
    padding: 45px 20px 20px 20px;
  }

  @media screen and (max-width:767px) {
    height: 335px;
    padding: 39px 0 0 0;
  }
}
.vg-tag{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
}

.product-tab-tag{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 16px;

  span{
    display: table;
    padding: 3px 9px;
    font-weight: 300;
    font-size: 12px;
    line-height: normal;
    font-family: "clarendon-urw";
    color: #FFFFFC;
    background-color: #539373;
  }
}

.product-tab-text{
  padding: 24px;

  @media screen and (max-width:767px) {
    padding: 16px;
  }

  h3{
    font-weight: 400;
    font-size: 24px;
    color: #121212;
    font-family: "clarendon-urw";
    line-height: normal;
    letter-spacing: 0%;
    margin: 0 0 8px 0;

    @media screen and (max-width:767px) {
      font-size: 18px;
    }
  }

  p{
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    letter-spacing: -0.02em;
    color: #515C60;
    margin: 0 0 0 0;
    font-family: "Open Sans", sans-serif;

    @media screen and (max-width:767px) {
      font-size: 12px;
    }
  }
}

.product-tab-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 24px 0;

  @media screen and (max-width:767px) {
    margin: 0 0 16px 0;
  }


  ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;

    li{
      width: 20px;

      @media screen and (max-width:991px) {
        width: 16px;
      }
    }
  }

  h6,
  h5{
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #121212;
    margin: 0 0 0 0;
    font-family: "Open Sans", sans-serif;

    @media screen and (max-width:991px) {
      font-size: 14px;
    }
  }

  h5{
    display: flex;
    align-items: center;
    gap:8px;

    img{
      height: 20px;
      @media screen and (max-width:767px) {
        height: 16px;
      }
    }

    .v-tag{
      height: 25px;
      margin: 0 0 0 12px;
    }
  }
}
.product-tab-star{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.product-tab-bottom{
  margin-top: auto;
  padding: 24px;
  padding-top: 0;

  .btn-main{
    width: 100%;

    span{
      text-decoration-line: line-through;
    }
    @media screen and (max-width:767px) {
      font-size: 16px;
      padding: 14px 14px 18px 16px;
    }
  }
  @media screen and (max-width:767px) {
    padding: 16px;
    padding-top: 0;
  }
}



.recipe-single-banner-section{
  padding: 80px 0;
  background-color: #F9F5EF;

  @media screen and (max-width: 1299px) {
    padding: 60px 0;
  }
  @media screen and (max-width: 767px) {
    padding: 40px 0;
  }
}
.recipe-single-banner-row{
  display: flex;
  flex-wrap: wrap;
  gap: 64px 0;

  .recipe-single-banner-col-sm{
    width: 40%;
    padding: 0 12px 0 0;

    @media screen and (max-width: 1299px) {
      padding: 0;
    }
    @media screen and (max-width: 991px) {
      width: 100%;
      padding: 0;
    }
  }
  .recipe-single-banner-col-lg{
    width: 60%;
    padding: 0 0 0 52px;

    @media screen and (max-width: 1299px) {
      padding: 0 0 0 30px;
    }
    @media screen and (max-width: 991px) {
      width: 100%;
      padding: 0;
    }
  }
}
.recipe-single-banner-image-block{

  .recipe-single-img{
    width: 100%;
    height: 551px;
    object-fit: cover;
    margin: 0 0 24px 0;
    border-radius: 16px;


    @media screen and (max-width: 1199px) {
      height: 350px;
    }
    @media screen and (max-width: 767px) {
      height: 400px;
    }
  }

  .btn-main{
    width: 100%;
    border-radius: 8px;
    background-color: #539373;
    border-color: #539373;
    padding: 21px 24px 25px 24px;

    img{
      width: 24px;
      height: 24px;
      margin: 0 0 -4px 0;
    }
  }
}
.recipe-single-banner-text{
  text-align: center;
  margin: 0 0 40px 0;

  h1{
    font-weight: 400;
    font-size: 40px;
    line-height: 125%;
    margin: 0 0 16px 0;
    font-family: "clarendon-urw";
    color: #121212;

    @media screen and (max-width: 1299px) {
      font-size: 32px;
    }
    
  }
  p{
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #121212;
    font-family: "Open Sans", sans-serif;
    margin: 0 0 0 0;

    @media screen and (max-width: 1199px) {
      font-size: 16px;
      line-height: normal;
    }
  }
}
.width-1280{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.recipe-single-overview{
  border: 1px solid #EEE3D4;
  border-radius: 16px;
  background-color: #FFFFFC;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0;
  margin: 0 0 40px 0 ;
}
.recipe-single-overview-item{
  padding: 24px;
  min-height: 107px;
  text-align: center;
  width: 33.33%;
  border-right: 1px solid #EEE3D4;

  @media screen and (max-width: 1199px) {
    padding: 16px;
    min-height: 95px;
  }
  @media screen and (max-width: 767px) {
    padding: 0;
    min-height: 97px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  &:last-child{
    border-right: none;
  }

  h6{
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    font-family: "clarendon-urw";
    color: #121212;
    margin: 0 0 8px 0;
    @media screen and (max-width: 1199px) {
      font-size: 18px;
    }
    @media screen and (max-width: 767px) {
      font-size: 16px;
    }
  }
  p{
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: #121212;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    @media screen and (max-width: 1199px) {
      font-size: 18px;
    }
    @media screen and (max-width: 767px) {
      font-size: 16px;
    }
  }
}

.recipe-single-star-of-show{

  @media screen and (max-width: 767px) {
    .mobile-only-button{
      padding-top: 0;
    }
  }

  h2{
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    text-align: center;
    font-family: "clarendon-urw";
    color: #121212;
    margin: 0 0 24px 0;
  }
}

.recipe-single-star-of-show-block-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0 0;
  background-color: #FBE9CC;
  border-radius: 12px;

  @media screen and (max-width: 767px) {
    display: none;
  }
}
.recipe-single-star-of-show-block-image{
  width: 37%;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;

  .vg-tag{
    top: auto;
    bottom: 16px;
    right: auto;
    left: 16px;
    width: 40px;
    height: 40px;
  }
}
.recipe-single-star-of-show-block-text{
  width: 63%;
  padding: 24px;

  h3{
    margin: 0 0 16px 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    font-family: "clarendon-urw";
    color: #121212;
  }
  p{
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.02em;
    color: #121212;
    margin: 0 0 24px 0;
    font-family: "Open Sans", sans-serif;
  }

  .product-tab-meta{
    margin: 0 0 35px 0;

    ul{
      gap: 2px;
      li{
        img{
          height: 16px;
          display: block;
        }
      }
    }
    h6{
      font-size: 14px;
      line-height: normal;
    }
    h5{
      font-size: 14px;
      line-height: normal;

      img{
        height: 16px;
        display: block;
      }
    }
  }

  .product-tab-bottom{
    padding: 0;
    .btn-main{
      border-radius: 4px;
      
    }
  }
}


.recipe-single-ingredients-section{
  padding: 80px 0;

  @media screen and (max-width: 1299px) {
    padding: 60px 0;
  }

  @media screen and (max-width: 767px) {
    padding: 40px 0;
  }
}
.recipe-single-ingredients-row{
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;

  .recipe-single-ingredients-col-sm{
    width: 36%;
    padding: 0 12px 0 0;

    @media screen and (max-width: 1299px) {
      padding: 0;
    }
    @media screen and (max-width: 1199px) {
      width: 40%;
    }
    @media screen and (max-width: 991px) {
      width: 100%;
      padding: 0;
    }
  }
  .recipe-single-ingredients-col-lg{
    width: 64%;
    padding: 0 0 0 52px;

    @media screen and (max-width: 1299px) {
      padding: 0 0 0 30px;
    }
    @media screen and (max-width: 1199px) {
      width: 60%;;
    }
    @media screen and (max-width: 991px) {
      width: 100%;
      padding: 0;
    }
  }
}

.recipe-single-ingredients-block{
  background-color: #F9F5EF;
  padding: 40px;
  border-radius: 16px;
  position: sticky;
  top: 30px;

  @media screen and (max-width: 1199px) {
    padding: 24px;
  }
  @media screen and (max-width: 767px) {
    padding: 28px 20px;
  }

  h3{
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    font-family: "clarendon-urw";
    margin: 0 0 24px 0;
    color: #121212;
  }
  ul{
    margin: 0;
    padding: 0;
    list-style: none;

    li{
      font-weight: 400;
      font-size: 18px;
      line-height: 150%;
      letter-spacing: 0.02em;
      font-family: "Open Sans", sans-serif;
      color: #121212;
      margin: 0 0 16px 0;
      padding: 0 0 0 32px;
      position: relative;

      &:last-child{
        margin-bottom: 0;
      }

      a{
        text-decoration: underline;
        color: #B72928;
        font-weight: 600;
      }

      &::before{
        content: "";
        width: 16px;
        height: 16px;
        background-image: url("../images/a-icon.svg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 6px;
        left: 0;
        filter: brightness(0) saturate(100%) invert(23%) sepia(40%) saturate(7284%) hue-rotate(352deg) brightness(77%) contrast(80%);
      }
    }
  }
}
.recipe-single-procces-block{

  h3{
    font-weight: 400;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0%;
    font-family: "clarendon-urw";
    margin: 0 0 24px 0;
    color: #121212;

    @media screen and (max-width: 1199px) {
      font-size: 26px;
    }
  }
  h5{
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    font-family: "clarendon-urw";
    margin: 0 0 8px 0;
    color: #121212;
  }
  p{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.02em;
    font-family: "Open Sans", sans-serif;
    color: #121212;
    margin: 0 0 24px 0;
  }
}

.tips-block{
  padding: 40px;
  background-color: #FCE6EC;
  border-radius: 16px;
  margin-top: 48px;

  @media screen and (max-width: 1199px) {
    padding: 24px;
  }
  @media screen and (max-width: 767px) {
    padding: 28px 20px;
  }

  h3{
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    font-family: "clarendon-urw";
    margin: 0 0 24px 0;
    color: #121212;
  }

  ul{
    margin: 0;
    padding: 0;
    list-style: none;

    li{
      font-weight: 400;
      font-size: 18px;
      line-height: 150%;
      letter-spacing: 0.02em;
      font-family: "Open Sans", sans-serif;
      color: #121212;
      margin: 0 0 24px 0;
      padding: 0 0 0 40px;
      position: relative;

      &:last-child{
        margin-bottom: 0;
      }

      &::before{
        content: "";
        width: 28px;
        height: 28px;
        background-image: url("../images/light.svg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0;
      }
    }
  }

  
}

.pair-it-with-section{
  
  .products-title{
    text-align: center;
    justify-content: center;
  }
}

.similar-recipes-section{
  padding: 0 0 104px 0;

  @media screen and (max-width: 767px) {
    padding: 0 0 40px 0;

    .mobile-only-button{
      padding-top: 48px;
    }
  }

  .recipes-list-wrapper .recipes-block .recipes-img{
    height: 437px;

    @media screen and (max-width: 1299px) {
      height: auto;
    }
  }
}


.modal-video{
  width: 100%;
}
.modal button.close{
  position: absolute;
  top: -9px;
  right: -5px;
  float: none;
  font-size: 35px;
  line-height: 22px;
  opacity: 1;
  color: #922120;
  z-index: 11;
}