
:root {
  /* Colors */
  --primary: #00783F;
  --secondary: #FEF9E5; 
  --text: rgba(78, 78, 78, 1);
  --white: #fff;
  --black: #000;
  --bg : rgba(254, 249, 229, 1);
  --bg2: rgba(246, 237, 215, 1);
  --btnhover: #e7bb81;
  --link: #EC1B2F;
  --light: #EC1B2F80;
  --bs-link-hover-color-rgb: #00783F;
  --gf-ctrl-choice-check-color: var(--primary);
  --gf-ctrl-accent-color: var(--primary);

  /* Fonts */
  --bs-body-font-family: "Urbanist", Sans-serif;
  --bs-headings-font-family: "Advent Pro", Sans-serif; 
}

a:hover, a:focus, a:active {
    color: var(--primary);
}

body {
  font-family: var(--bs-body-font-family) !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--bs-headings-font-family) !important;
}

/* header-footer search bar */
.header_searchwrap .e-search-label,
.header_searchwrap .e-search-label svg,
.footer_searchwrap .e-search-label,
.footer_searchwrap .e-search-label svg{
	display: none;
}
.header_searchwrap .e-search-input-wrapper::after,
.footer_searchwrap .e-search-input-wrapper::after{
  content: '\26B2';
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(-40deg);
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
  color: var(--primary);
	z-index: 1;
}
.header_searchwrap .e-search-input-wrapper svg,
.footer_searchwrap .e-search-input-wrapper svg{
	background: var(--bg);
  z-index: 2;
  padding: 3px;
}
/* search expand */
.expandable-search-container {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.expandable-search-container .search-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.expandable-search-container .search-toggle:hover {
   background: none;
    border: none;
    color: var(--white);
}
.expandable-search-container.activewrap .search-toggle {
    display: none;
}

.search-form-wrapper {
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease, margin-left 0.3s ease;
    margin-left: 0;
}

.search-form-wrapper.active {
    width: 300px;
    margin-left: 10px;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--bg);
    border-radius: 25px;
    padding: 5px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    width: 300px;
}

.search-form-wrapper .search-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px;
    font-size: 14px;
    background: transparent;
    min-width: 0;
    line-height: 1;
}

.search-form-wrapper .search-field::placeholder {
    color: #999;
}

.search-form-wrapper .search-submit, 
.search-form-wrapper .search-close {
    background: transparent;
    border: transparent;
    color: var(--primary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-form-wrapper .search-submit:hover,
.search-form-wrapper .search-close:hover,
.search-form-wrapper .search-submit:focus,
.search-form-wrapper .search-close:focus {
    background: transparent;
    border: transparent;
    color: var(--primary);
}

@media (max-width: 768px) {
    .search-form-wrapper.active {
        width: 250px;
    }
    .search-form {
        width: 250px;
    }
}

/* Product Category Template */
.headingbanner {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 270px 180px;
  position: relative;
}
.headingbanner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(269.71deg, var(--black) 27.03%, rgba(0, 0, 0, 0.4) 97.68%);
  z-index: 0;
}
.headingbanner_innerwrap {
  position: relative;
  z-index: 1;
}
.headingbanner_innerwrap .headingwrap {
 color: var(--bg); 
}

@media (max-width: 1200px) {
  .headingbanner {
    padding: 150px 30px;
  }
}


/* Product Subcategory Card */
.product_subcategory_section .section_desc{
  max-width: 1200px;
  margin: 40px auto;
}
.product_subcategory_image {
  background: var(--bg2);
  border-radius: 0 0 20px 20px;
  padding: 15px;
  position: relative;
  margin-bottom: 20px;
  background: linear-gradient(143deg, var(--bg) 45%, var(--btnhover) 45%);
  transition: all 0.6s ease-in-out; 
}
.product_subcategory_card:hover .product_subcategory_image {
  background: linear-gradient(143deg, var(--bg) 45%, var(--bg2) 45%);
}
.product_subcategory_image img {
  width: 137px;
  height: 150px;
  object-fit: contain;
  object-position: center;
}
.product_subcategory_card .product_subcategory_name {
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  max-width: 120px;
  margin: 0 auto;
  line-height: 1.2em;
}

/* .subcategory_detail_section.odd{
  background: linear-gradient(27deg, var(--bg2) 74%, var(--bg) 74%);
}
.subcategory_detail_section.even{
  background: linear-gradient(333deg, var(--bg2) 74%, var(--bg) 74%);
} */

.subcategory_detail_section.odd .subcategory_header > .row{
  flex-direction: row;
}
.subcategory_detail_section.even .subcategory_header > .row{
  flex-direction: row-reverse;
}
.subcategory_detail_section.odd .subcategory_image{
  text-align: right;
}
.subcategory_detail_section.even .subcategory_image{
  text-align: left;
}

.subcategory_detail_section.odd:before {
  right: 0;
  background: linear-gradient(35deg, var(--bg2) 75%, var(--bg) 75%);
}
.subcategory_detail_section.even:before {
  left: 0;
  background: linear-gradient(328deg, var(--bg2) 75%, var(--bg) 75%);
}

.subcategory_detail_section {
  border-radius: 20px 0 20px 20px;
  background-color: var(--bg2);
  padding: 68px 42px;
  margin-top: 150px;
  position: relative;
}
.subcategory_detail_section:before{
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 450px;
  z-index: 0;
  border-radius: 20px 0 20px 20px;
}
.subcategory_detail_section > *{
  z-index: 1;
  position: relative;
}
.subcategory_image img {
  width: 600px;
  height: 600px;
  object-fit: contain;
  object-position: top center;
}
.subcategory_image{
  margin-top: -150px;
}
.subcategory_title:hover {
  text-decoration: underline;
}
.subcategory_desc {
  margin: 30px 0 40px 0;
}

/* Product */
.product_card .product_name {
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  max-width: 140px;;
  margin: 0 auto;
  line-height: 1.2em;
}
.product_image img {
  width: 137px;
  height: 150px;
  object-fit: contain;
  object-position: center;
}
.product_image {
  background: var(--bg2);
  border-radius: 0 0 20px 20px;
  padding: 15px;
  position: relative;
  margin-bottom: 20px;
  background: linear-gradient(143deg, var(--bg2) 45%, var(--bg) 45%);
  text-align: center;
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product_card:hover .product_image {
  background: linear-gradient(143deg, var(--bg2) 45%, var(--btnhover) 45%);
}


.product_detail_close.product_detail_close_top {
  background: transparent;
  color: var(--primary);
  font-size: 18px;
  line-height: 24px;
  text-align: right;
  width: 100%;
  padding: 0;
  margin: 25px 0;
  position: relative;
}
.product_detail_close.product_detail_close_top:hover,
.product_detail_close.product_detail_close_top:focus{
  background: transparent;
  color: var(--primary);
}
.product_detail_close.product_detail_close_top span{
  background: var(--bg2);
  padding-left: 8px;
}
.product_detail_close.product_detail_close_top:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: black;
  transform: translateY(-50%);
  z-index: -1;
}
.product_detail_close.product_detail_close_bottom {
  width: 100%;
  text-align: center;
  border-radius: 0 0 20px 20px;
  padding: 8px;
  margin-top: 0;
}
.product_detail_close.product_detail_close_bottom:hover,
.product_detail_close.product_detail_close_bottom:focus{
  background: var(--primary);
  color: var(--white);
  border-radius: 0 0 20px 20px;
}
.bottom_close_btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -68px;
  width: auto;
  text-align: center;
  z-index: 10;
  margin-left: -42px;
  margin-right: -42px;
}

.product_detail_content .product_detail_title {
  color: var(--text);
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  font-size: 34px;
  line-height: 40px;
}
.product_detail_content .product_detail_title:hover {
  text-decoration: underline;
}
.product_detail_content .product_detail_description {
  margin-top: 20px;
  margin-bottom: 30px;
  color: var(--text);
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.product_detail_purchase_options {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  justify-content: space-between;
}
.product_size_variation label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.product_size_select {
  padding: 11px 48px 11px 11px;
  border-radius: 100px;
  border: 1px solid rgba(127, 127, 127, 1) !important;
  background-color: var(--bg);
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
  outline: 0 !important;
  box-shadow: unset !important;
  min-width: 200px;
}
.product_buy_button a{
  padding: 10px 36px;
  color: var(--white);
  background-color: var(--primary);
  border: 0;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  display: inline-block;
}
.product_buy_button a:hover,
.product_buy_button a:focus{  
  background-color: var(--btnhover);
  color: var(--black);
}
.product_buy_select {
  padding: 11px 0px;
  border-radius: 100px;
  border: 1px solid var(--primary) !important;
  background-color: var(--primary);
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--white);
  outline: 0 !important;
  box-shadow: unset !important;
  min-width: 200px;
  background-image: url('../img/arrow-down.png');
}
.product_buy_select option{
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--white);
}

.product_size_variation_content_item {
  background: var(--bg);
  padding: 20px;
  border-radius: 20px;
  margin-top: 20px;
}

.product_info_accordion .accordion {
  margin: 70px 0 0 0;
}
.product_info_accordion .accordion-item {
  background: transparent;
  border: 0;
  margin-bottom: 16px;
}
.product_info_accordion .accordion-header button {
  background-color: var(--bg);
  color: var(--text);
  border: 0 !important;
  border-radius: 100px !important;
  padding: 12px 50px;
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
  outline: 0 !important;
  box-shadow: unset !important;
}
.product_info_accordion .accordion-body {
  color: var(--text);
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  padding: 12px 50px;
}
.product_info_accordion .accordion-body table{
  font-size: 19px;
  line-height: 24px;
  border: 1px solid var(--text);
  overflow-x: auto;
}
.product_info_accordion .accordion-body thead{
  background-color: #e7bb81;
}
.product_info_accordion .accordion-body thead th{
  font-weight: 600;
}
.product_info_accordion .accordion-body table th, 
.product_info_accordion .accordion-body table td {
  padding: 8px;
}
.product_info_accordion .accordion-header button:after {
    content: "\002B";
    background: unset;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    font-size: 42px;
    color: var(--primary);
    font-weight: 500;
    line-height: 42px;
    top: 50%;
    position: absolute;
    right: 50px;
}
.product_info_accordion .accordion-header button:not(.collapsed)::after {
    content: "-";
    transform: translateY(-50%);
}

/* Product Gallery with Thumbnails */
.product_gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.product-gallery-main {
  margin-bottom: 15px;
  border: 1px solid var(--bg);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
  flex-basis: calc(100% - 120px);
}

.product-gallery-main img.main-gallery-image {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: contain;
}

.product-gallery-thumbs {
  display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.gallery-thumb-item {
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg);
  height: 100px;
  width: 100px;
  margin: 5px;
}
.gallery-thumb-item:hover {
    border-color: var(--primary);
    opacity: 0.8;
}
.gallery-thumb-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--text);
}

.gallery-thumb-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* Related Recipes Section */
.product_related_recipes {
  margin-top: 100px;
  /* margin-bottom: 40px; */
}
.product_related_title{
  font-weight: 500;
  text-transform: capitalize;
  font-size: 34px;
  line-height: 40px;
  color: var(--text);
}
.product_related_desc{
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: 400;
  color: var(--text);
}
.product_related_link a{
  display: inline-block;
  padding: 10px 36px;
  color: var(--white);
  background-color: var(--primary);
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
}
.product_related_link a:hover,
.product_related_link a:focus{
  background-color: var(--btnhover);
  color: var(--black);
}

.product_related_recipes{
  position: relative;
}
.slider-progress {
  width: 100%;
  height: 10px;
  background: var(--light); /* background color */
  margin-top: 30px;
  border-radius: 0;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--link); /* progress color */
  transition: width 0.3s linear;
}


.product_related_recipes_slider .slick-slider {
  position: relative;
  padding: 0 40px;
}
.product_related_recipes_slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 14px;
  font-size: 15px;
  line-height: 15px;
  color: var(--bg);
  background: var(--link);
}
.product_related_recipes_slider .slick-arrow:hover,
.product_related_recipes_slider .slick-arrow:focus {
  background: var(--link);
  color: var(--bg);
}
.product_related_recipes_slider .slick-arrow.slick-prev {
  left: 0;
}
.product_related_recipes_slider .slick-arrow.slick-next {
  right: 0;
}
.product_related_recipes_slider .slick-track {
  display: flex !important;
}
.product_related_recipes_slider .recipe_slide {
  margin: 0 10px;
  background: var(--bg);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.02);
  border-radius: 20px;
  height: auto !important;
  display: flex;
}
.product_related_recipes_slider .recipe_card {
  height: 100%;
  width: 100%;
}
.product_related_recipes_slider .recipe_slide .recipe_image {
  width: 100%;
  height: 340px;
}
.product_related_recipes_slider .recipe_slide .recipe_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.product_related_recipes_slider .recipe_details {
  padding: 26px;
}
.product_related_recipes_slider .recipe_details .recipe_title {
  margin-bottom: 14px;
}
.recipe_metadata {
  display: flex;
  flex-wrap: wrap;
}
.recipe_metadata span img{
  margin-right: 6px;
  width: 20px;
  height: 20px;
}
.recipe_metadata span {
  display: flex;
  flex-wrap: nowrap;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text);
}
.recipe_metadata span:not(:last-child) {
  margin-right: 20px;
}

.single_product_gallery .product-gallery-main{
  background-color: transparent;
  border-color: transparent;
}
.product-gallery-thumbs{
    flex-basis: 100px;
}
.product-gallery-thumbs img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.product-gallery-thumbs .slick-prev.slick-arrow span,
.product-gallery-thumbs .slick-next.slick-arrow span {
  transform: rotate(90deg);
  display: block;
}
.product-gallery-thumbs .slick-arrow{
  padding: 10px 15px;
  max-width: max-content;
  margin: 10px auto;
  font-size: 18px;
  line-height: 20px;
}

/* Responsive */
@media(max-width:1400px){
  .product_subcategory_image img{
    width: 110px;
    height: 110px;
  }
  .product_subcategory_image{
    padding: 12px;
    background: linear-gradient(147deg, var(--bg) 45%, var(--btnhover) 45%);
    margin-bottom: 15px;
  }
  .product_subcategory_card:hover .product_subcategory_image {
    background: linear-gradient(147deg, var(--bg) 45%, var(--bg2) 45%);
  }
  .product_image{
    padding: 12px;
    background: linear-gradient(147deg, var(--bg2) 45%, var(--bg) 45%);
    margin-bottom: 15px;
  }
  .product_card:hover .product_image {
    background: linear-gradient(147deg, var(--bg2) 45%, var(--btnhover) 45%);
  }
  .product_subcategory_section .section_desc{
    margin: 30px auto 40px auto;
  }
  .subcategory_detail_section{
    margin-top: 100px;
  }
  .subcategory_image img {
    width: 450px;
    height: 450px;
  }
  .subcategory_image{
    margin-top: -120px;
  }
  .subcategory_desc {
    margin: 20px 0;
  }
  .product_image img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  .subcategory_detail_section:before{
    height: 400px;
  }
  .product_info_accordion .accordion-header button{
    padding: 10px 30px 10px 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .product_info_accordion .accordion-header button:after{
    right: 20px;
    font-size: 34px;
    line-height: 34px;
  }
  .product_info_accordion .accordion-body{
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
  }
  .product_info_accordion .accordion-body table{
    font-size: 16px;
    line-height: 20px;
  }
  .product_related_recipes {
    margin-top: 42px;
  }
  .product_related_desc {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .product_related_recipes_slider .recipe_slide .recipe_image{
    height: 280px;
  }
  .product_related_recipes_slider .recipe_details {
    padding: 20px;
  }
  .product_related_recipes_slider .slick-slider{
    padding: 0 30px;
  }
  .product_related_recipes_slider .slick-arrow{
    padding: 8px 12px;
    font-size: 14px;
    line-height: 14px;
  }
}
@media(max-width:1200px){
  .subcategory_image img {
    width: 325px;
    height: 325px;
  }
  .subcategory_image{
    margin-top: -100px;
  }
  .product-gallery-main img.main-gallery-image{
    height: 420px;
  }
   .product-gallery-thumbs .slick-arrow {
    padding: 7px 10px;
    font-size: 14px;
    line-height: 14px;
    margin: 5px auto;
  }
}
@media(max-width:1024px){
  .subcategory_products .slick-slider {
    padding: 0 30px;
  }
  .subcategory_products .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 12px;
    font-size: 14px;
    line-height: 14px;
    color: var(--bg);
    background: var(--link);
    width: auto;
  }
  .subcategory_products .slick-arrow.slick-prev {
    left: 0;
  }
  .subcategory_products .slick-arrow.slick-next {
    right: 0;
  }
  .product_card {
    margin: 5px;
  }
}
@media(max-width:767px){
  .product_info_accordion .accordion-body table{
    font-size: 14px;
    line-height: 18px;
    width: 100%;
    overflow-x: scroll;
  }
  .product_info_accordion .accordion-body table th, 
  .product_info_accordion .accordion-body table td {
    padding: 6px;
  }
  .subcategory_detail_section{
    padding: 50px 30px 50px 30px;
    margin-top: 80px;
  }
  .bottom_close_btn{
    bottom: -50px;
    margin-left: -30px;
    margin-right: -30px;
  }
   .subcategory_detail_section .subcategory_header .row, 
   .subcategory_detail_section.odd .subcategory_header .row, 
   .subcategory_detail_section.even .subcategory_header .row {
    flex-direction: column-reverse;
  }
  .subcategory_detail_section.odd .subcategory_image,
  .subcategory_detail_section.even .subcategory_image {
    text-align: left;
  }
  .subcategory_detail_section{
    border-radius: 20px;
  }
  .subcategory_detail_section.odd::before,
  .subcategory_detail_section.even::before {
    border-radius: 20px;
    background: linear-gradient(328deg, var(--bg2) 63%, var(--bg) 63%);
    height: 280px;
  }
  .subcategory_image {
    margin-top: -120px;
    margin-bottom: 20px;
  }
   .product_image {
    background: linear-gradient(156deg, var(--bg2) 50%, var(--bg) 50%);
  }
  .subcategory_image img{
    margin: 0 auto;
  }
  .subcategory_products .slick-slider {
    padding: 0 10px;
  }
  .subcategory_products .slick-arrow.slick-prev {
    left: -20px;
  }
  .subcategory_products .slick-arrow.slick-next {
    right: -20px;
  }
  .product_card {
    margin: 0 8px;
  }
  .product_detail_purchase_options{
    flex-direction: column;
    align-items: initial;
  }
  .product_size_variation {
    margin-bottom: 25px;
  }
  .product_info_accordion .accordion {
    margin: 40px 0 0 0;
  }
  .product-gallery-main{
    flex-basis: calc(100% - 50px);
  }
  .product-gallery-thumbs {
    flex-basis: 42px;
    max-width: 42px;
  }
  .gallery-thumb-item{
    width: 42px;
    height: 42px;
  }
  .product-gallery-thumbs img{
    width: 42px;
    height: 42px;
  }
  .product-gallery-main img.main-gallery-image {
    height: 280px;
  }
  .product_gallery{
    margin-top: 40px;
  }
  .product_detail_content .product_detail_title,
  .product_related_title{
    font-size: 28px;
    line-height: 32px;
  }
  .product_related_recipes_slider{
    margin-top: 40px;
  }
}

/* recipe single page */
.single-recipe-meta-wrapper{
  padding-left: 50px;
  padding-right: 50px;
}
.custom-recipe-display {
  max-width: 100%;
  margin: 0 auto;
}
.recipe-meta-grid {
  display: flex;
  align-items: center;
}
.recipe-meta-item:not(:last-child) {
  margin-right: 20px;
}
.recipe-meta-item .meta-data {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.recipe-meta-item .meta-data img{
  width: 40px;
  height: 40px;
  margin-right: 14px;
  object-fit: contain;
  object-position: center;
}
/* share */
.recipe-share-buttons {
  text-align: right;
}
.recipe-share-buttons a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--bs-headings-font-family);
  letter-spacing: 1px;
}
.recipe-share-buttons a,
.recipe-share-buttons a:hover,
.recipe-share-buttons a:focus {
  color: var(--primary);
}
.recipe-share-buttons > a:not(:last-child) {
  margin-right: 60px;
}
.recipe-share-buttons a i {
  margin-right: 8px;
  font-size: 26px;
  line-height: 28px;
}

/* Post Content Styles */
.singlerecipe_contentwrap {
    margin-bottom: 50px;
    margin-top: 70px;
    padding-left: 60px;
    padding-right: 0;
}
.recipe-content {
    color: var(--text);
    margin-bottom: 50px;
}
.recipe-content p,.recipe-content ul,.recipe-content ol {
  margin-bottom: 15px;
}
.recipe-content p:last-child {
    margin-bottom: 0;
}
.singlerecipe_contentwrap {
  justify-content: space-between;
}
.ingredients-image-sidebar img {
  width: 440px;
  height: 440px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.ingredients-image-sidebar {
  background: var(--primary);
  padding: 0 27px 27px 27px;
  border-radius: 20px;
  background: linear-gradient(142deg, transparent 44.8%, var(--primary) 45%);
  text-align: center;
}
.ingredients-image-sidebar .sidebarProductTitle,
.ingredients-image-sidebar .sidebarProductTitle a{
  color: var(--white);
}
.ingredients-image-sidebar .image-caption {
  margin-top: 15px;
  color: var(--white);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  font-family: var(--bs-headings-font-family);
}
.sidebar-products-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.sidebar-products-slider .slick-dots li {
  list-style: none;
  margin: 15px 0 0 0;
  opacity: 0.5;
}
.sidebar-products-slider .slick-dots li.slick-active {
  opacity: 1;
}
.sidebar-products-slider .slick-dots li:not(:last-child) {
  margin-right: 8px;
}
.sidebar-products-slider .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  padding: 0;
  border-radius: 100%;
  margin: 0;
}

/* Ingredients Section */
.recipe-ingredients-section {
    margin-bottom: 50px;
    background-color: var(--bg2);
    padding: 50px;
    border-radius: 20px;
}
.ingredients-wrapper .section-title{
  margin-bottom: 40px;
}
/* single */
.ingredients-list {
  list-style: disc;
  padding: 0;
  margin: 0 0 20px 20px;
}
.ingredients-list li {
    padding: 0;
    margin-bottom: 4px;
}
/* multiple */
.ingredients-subsection .subsection-title {
    font-weight: 700;
    color: var(--text);
    margin: 0 0 5px 0;
}

/* Instructions Section */
.recipe-instructions-section {
    margin-bottom: 40px;
    background: var(--bg2);
    padding: 100px 50px;
    border-radius: 20px;
}
.recipe-instructions-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.recipe-instructions-section .section-title{
  margin-bottom: 40px;
}
.instructions-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}
.instructions-list li {
    display: flex;
    align-items: center;
    padding: 30px 50px;
    margin-bottom: 15px;
    background: var(--bg);
    border-radius: 20px;
}
.instructions-list li:last-child {
    margin-bottom: 0;
}
.step-number {
    display: inline-block;
    color: var(--text);
    padding: 0;
    font-size: 34px;
    line-height: 36px;
    font-weight: 500;
    margin-right: 50px;
}
.recipe-instructions-section .subsection-title {
    font-size: 34px;
    line-height: 40px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 28px;
}
.instructions-subsection:not(:last-child) {
    margin-bottom: 40px;
}

@media(max-width:1199px){
  .recipe-meta-item .meta-data{
    font-size: 18px;
    line-height: 22px;
  }
  .recipe-meta-item .meta-data img{
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }
  .recipe-share-buttons > a:not(:last-child) {
    margin-right: 30px;
  }
  .recipe-share-buttons a i {
    margin-right: 4px;
    font-size: 20px;
    line-height: 20px;
  }
  .singlerecipe_contentwrap {
    margin-bottom: 30px;
    margin-top: 30px;
    padding-left: 0px;
  }
  .single-recipe-meta-wrapper{
    padding-left: 0px;
    padding-right: 0px;
  }
  .recipe-content{
    margin-bottom: 30px;
  }
  .recipe-ingredients-section {
    margin-bottom: 30px;
    padding: 30px;
  }
  .ingredients-wrapper .section-title {
    margin-bottom: 20px;
  }
  .ingredients-image-sidebar img {
    width: 300px;
    height: 300px;
  }
  .ingredients-image-sidebar{
    padding: 20px;
  }
  .recipe-instructions-section{
    padding: 50px 30px;
  }
  .recipe-instructions-section .subsection-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .step-number{
    font-size: 28px;
    line-height: 32px;
    margin-right: 30px;
  }
}
@media(max-width:1024px){
  .instructions-list li{
    padding: 25px 14px;
  }
}
@media(max-width:991px){
  .ingredients-image-sidebar{
    text-align: center;
  }
}
@media(max-width:767px){
  .recipe-meta-grid{
    margin-bottom: 30px;
    justify-content: center;
  }
  .recipe-meta-item .meta-data {
    font-size: 16px;
    line-height: 20px;
  }
  .recipe-meta-item .meta-data img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
  .single-recipe-meta-wrapper .recipe-meta-section{
    display: none;
  }
  .recipe-share-buttons {
    text-align: center;
  }
  .recipe-share-buttons > a:not(:last-child) {
    margin-right: 20px;
  }
  .product_related_recipes_slider .slick-slider {
    padding: 0;
  }
  .product_related_recipes_slider .slick-arrow{
    display: none !important;
  }
  .product-gallery-main{
    margin-bottom: 45px;
  }
  .product_buy_button a{
    display: block;
    text-align: center;
  }
}