.recipe-page-wrapper {
    background-color: var(--clrwhite);
    position: relative;
    z-index: 0;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}
.recipe-page-inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 100px;
    position: relative;
}
.recipe-page-heading {
    width: 100%;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    color: #522827;
    font-family: var(--a2standardbold);
}
.recipe-page-desc {
    width: 100%;
    max-width: 800px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-top: 20px;
    color: #522827;
}

.recipe-list-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}
.recipe-products-listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.recipe-products-listing ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.recipe-products-listing ul li {
    margin: 0 120px 50px 120px;
}

.recipe-products-listing ul li a {
    text-decoration: none;
    color: var(--brown);
    font-size: var(--font16);
    font-weight: 500;
    transition: color 0.3s ease;
    width: 140px;
    height: 210px;
    display: flex;
    border-radius: 11px;
    line-height: 24px;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    align-items: center;
    padding: 10px;
    margin: 0 auto;
}
.top-custom-bg {
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    z-index: 1;
}
.bottom-custom-bg {
    width: 100%;
    height: 190px;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    z-index: 2;
    background: url('./../images/card-bg.svg');
    display: flex;
    justify-content: center;
}
.recipe-text {
    font-size: var(--font16);
    font-weight: 500;
    color: var(--clrwhite);
    display: block;
    padding: 10px 0;
    text-align: center;
}
.recipe-products-listing ul li a img {
  width: 100%;
  max-width: 96px;
  position: absolute;
  bottom: 10px;
}

.products-display-component-wrapper {
    background-color: var(--lightyellow);
    position: relative;
    z-index: 0;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}
.products-display-component-inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 65px;
}
.product-display-heading {
    width: 100%;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    color: var(--brown);
    padding-top: 50px;
}
.product-display-listing {
    padding: 33px 0 65px 0;
    display: flex;
    justify-content: center;
}
.product-display-listing ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.product-display-listing ul li a {
    text-decoration: none;
    color: var(--clrwhite);
    font-size: var(--font16);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 173px;
    height: 107px;
    border-radius: 11px;
    border-radius: 11px;
    justify-content: center;
    text-align: center;
    padding: 10px;
}



/*all recipes page css starts*/
.all-recipes-component-wrapper {
    background-color: var(--lightyellow);
    position: relative;
    z-index: 0;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}
.all-recipes-component-inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 65px;
    position: relative;
}
.all-recipes-page-heading {
    width: 100%;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    color: var(--brown);
    padding-top: 50px;
    font-family: var(--a2standardbold);
}
.all-recipes-page-description {
    width: 100%;
    max-width: 800px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-top: 20px;
    color: #522827;
}


/*tabs css*/
.all-recipes-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 0;
    width: 100%;
    position: relative;
}

/*tabs css starts*/
.all-recipes-tabs {
    margin: 0;
    padding: 0px;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.all-recipes-tabs li{
     display: inline-block;
    margin: 3px 4px;
    cursor: pointer;
    padding: 13px 17px;
    font-size:1.2em;
    line-height:2em;
    color: var(--clrwhite);
    background: var(--brown);
    border-radius: 11px;
    font-size: var(--font16);
    line-height: 24px;
}
.all-recipes-tabs li:hover {
    background:var(--darkbrown);
    }
.all-recipes-tabs li.current{
    background: #C17600;
    color: #FFF;
}
.all-recipes-tab-content{
    display: none;
    background: var(--lightyellow);
    padding: 15px;
    line-height:1.4;
    width: 100%;
    box-sizing: border-box;
    max-width: 1160px;
    margin: 0 auto;
    border-radius: 28px;
}
.all-recipes-tab-content.current{
    display: inherit;
}

.all-recipes-tab-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.all-recipes-tab-content ul li {
    margin: 0;
}
.all-recipes-tab-content ul li a {
    text-decoration: none;
    color: var(--brown);
    font-size: var(--font16);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    border-radius: 11px;
    line-height: 24px;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    align-items: center;
    padding: 10px;
    margin: 0 auto;
}
.all-recipes-item-img {
    width: 100%;
    max-width: 275px;
}
.all-recipes-item-text {
    font-size: var(--font16);
    font-weight: 500;
    color: var(--clrblack);
    display: block;
    padding: 10px 0;
    text-align: center;
    width: 275px;
}
/*all recipes page css ends*/

/*mobile css starts*/
@media screen and (min-width: 390px) and (max-width:768px) {
    .all-recipes-tabs {
        margin: 20px 0 0 0;
    }
    .all-recipes-tab-content ul {
        gap: 0;
    }
    .all-recipes-tab-content ul li {
        margin: 0;
        width: 175px;
    }
    .all-recipes-tabs li {
        width: 173px;
        margin-bottom: 10px;
    }
    .all-recipes-tabs-wrapper {
        gap: 0;
    }
    .recipe-products-listing ul {
        justify-content: center;
    }
    .recipe-products-listing ul li {
        margin: 0 10px 30px 10px;
    }
    .recipe-products-listing ul li a {
        width: 170px;
        height: 235px;
    }
    .product-display-listing ul {
        width: 100%;
        margin: 0 20px;
    }
    .product-display-listing ul li {
        width: 100%;
    }
    .product-display-listing ul li a {
        width: 100%;
        height: auto;
    }
    .all-recipes-page-heading {
        font-size: var(--font18);
        color: #522827;
    }
    .recipe-page-inner {
        margin-top: 45px;
    }
    .recipe-page-heading {
        font-size: var(--font24);
        line-height: 32px;
    }
    .recipe-page-inner .page-back-btn {
        position: absolute;
        left: 20px;
        top: 0;
        box-shadow: 0px 6px 12px 0px #00000040;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        padding: 5px;
    }
}