/* =========================================
   RECIPE HEADER
========================================= */
body
{

    font-family: mulish;
}
.recipe-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 9999;
    font-family: mulish;
}

.recipe-header-inner {
    max-width: 1240px;
    height: 78px;
    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================
   LOGO
========================================= */

.recipe-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.recipe-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f45b3c;
    font-size: 21px;
}

.recipe-logo-text {
    color: #202020;
    font-size: 21px;
    font-family: sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* =========================================
   DESKTOP NAV
========================================= */

.recipe-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.recipe-nav a {
    position: relative;
    color: #383838;
    text-decoration: none;
    font-size: 14px;
    font-family: sans-serif;
    font-weight: 600;
    padding: 29px 0;
    transition: color 0.2s ease;
}

.recipe-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: #f45b3c;
    transition: width 0.25s ease;
}

.recipe-nav a:hover {
    color: #f45b3c;
}

.recipe-nav a:hover::after {
    width: 100%;
}

/* =========================================
   HEADER ACTIONS
========================================= */

.recipe-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recipe-search-btn,
.recipe-menu-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.recipe-search-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.2s ease;
}

.recipe-search-btn:hover {
    background: #f7f7f7;
}

.recipe-search-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #222;
    stroke-width: 2;
    stroke-linecap: round;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.recipe-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 19px;

    background: #f45b3c;
    color: #ffffff;

    border-radius: 9px;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.recipe-submit-btn:hover {
    background: #df4930;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(244, 91, 60, 0.2);
}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.recipe-menu-btn {
    width: 42px;
    height: 42px;
    padding: 9px;

    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    border-radius: 9px;
}

.recipe-menu-btn:hover {
    background: #f7f7f7;
}

.recipe-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    border-radius: 3px;

    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================================
   MOBILE NAVIGATION
========================================= */

.recipe-mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.recipe-mobile-menu nav {
    padding: 8px 20px 20px;
}

.recipe-mobile-menu a {
    display: flex;
    align-items: center;

    min-height: 48px;

    color: #222;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    border-bottom: 1px solid #f1f1f1;
}

.recipe-mobile-menu a:last-child {
    border-bottom: 0;
}

.recipe-mobile-menu a:hover {
    color: #f45b3c;
}

.recipe-mobile-submit {
    margin-top: 12px;
    justify-content: center;

    background: #f45b3c;
    color: #ffffff !important;

    border-radius: 9px;
}

/* =========================================
   SEARCH OVERLAY
========================================= */

.recipe-search-overlay {
    position: fixed;
    inset: 0;

    background: rgba(20, 20, 20, 0.62);

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 90px 20px;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.recipe-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.recipe-search-box {
    position: relative;

    width: 100%;
    max-width: 650px;

    background: #ffffff;
    padding: 30px;

    border-radius: 16px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.recipe-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 13px;

    border: 1px solid #dddddd;
    border-radius: 10px;

    padding: 0 16px;
}

.recipe-search-input-wrap svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: #777;
    stroke-width: 2;
    stroke-linecap: round;
}

.recipe-search-input-wrap input {
    width: 100%;
    height: 54px;

    border: 0;
    outline: none;

    color: #222;
    background: transparent;

    font-size: 16px;
}

.recipe-search-close {
    position: absolute;
    top: 8px;
    right: 13px;

    border: 0;
    background: transparent;

    color: #555;
    font-size: 25px;

    cursor: pointer;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1080px) {

    .recipe-nav {
        gap: 17px;
    }

    .recipe-nav a {
        font-size: 13px;
    }

    .recipe-logo-text {
        font-size: 19px;
    }

    .recipe-submit-btn {
        padding: 0 14px;
    }
}

@media (max-width: 900px) {

    .recipe-header-inner {
        height: 70px;
        padding: 0 18px;
    }

    .recipe-nav {
        display: none;
    }

    .recipe-menu-btn {
        display: flex;
    }

    .recipe-submit-btn {
        display: none;
    }

    .recipe-mobile-menu.active {
        display: block;
    }
}

@media (max-width: 480px) {

    .recipe-header-inner {
        height: 64px;
        padding: 0 14px;
    }

    .recipe-logo {
        gap: 8px;
    }

    .recipe-logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 18px;
    }

    .recipe-logo-text {
        font-size: 17px;
    }

    .recipe-header-actions {
        gap: 2px;
    }

    .recipe-search-btn,
    .recipe-menu-btn {
        width: 38px;
        height: 38px;
    }

    .recipe-search-box {
        padding: 25px 15px;
    }
}




/* ============================================
   RECIPE HERO SECTION
============================================ */

.recipe-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(248, 245, 235, 0.95) 0,
            rgba(255, 255, 255, 0) 34%
        ),
        #fff;

     font-family: mulish;
}


/* ============================================
   HERO CONTAINER
============================================ */

.recipe-hero-container {
    width: min(1240px, calc(100% - 48px));
    min-height: 650px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;

    position: relative;
}


/* ============================================
   LEFT CONTENT
============================================ */

.recipe-hero-content {
    position: relative;
    z-index: 5;
    padding: 60px 0;
}


/* ============================================
   KICKER
============================================ */

.recipe-hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #58815c;

    font-family: Georgia, serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 600;

    margin-bottom: 8px;
}

.recipe-hero-kicker span {
    width: 28px;
    height: 3px;

    background: #58815c;
    border-radius: 20px;

    transform: rotate(-20deg);
}


/* ============================================
   HEADING
============================================ */

.recipe-hero-content h1 {
    max-width: 650px;

    margin: 0 0 22px;

    color: #202932;

    font-size: clamp(45px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 800;
}

.recipe-hero-content h1 strong {
    color: #f26045;
    font-weight: 800;
}


/* ============================================
   DESCRIPTION
============================================ */

.recipe-hero-description {
    max-width: 540px;

    margin: 0 0 30px;

    color: #61727d;

    font-size: 17px;
    line-height: 1.65;
}


/* ============================================
   SEARCH
============================================ */

.recipe-hero-search {
    width: min(100%, 620px);
    height: 68px;

    display: flex;
    align-items: center;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 40px;

    padding: 7px;

    box-shadow:
        0 12px 35px rgba(44, 57, 65, 0.10);

    margin-bottom: 34px;
}

.recipe-search-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.recipe-search-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: #62737d;
    stroke-width: 2;
    stroke-linecap: round;
}

.recipe-hero-search input {
    min-width: 0;
    flex: 1;

    height: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: #222;
    font-size: 16px;
}

.recipe-hero-search input::placeholder {
    color: #84939c;
}

.recipe-hero-search button {
    height: 54px;

    padding: 0 27px;

    border: 0;
    border-radius: 32px;

    background: #f26045;
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.recipe-hero-search button span {
    margin-left: 8px;
    font-size: 20px;
}

.recipe-hero-search button:hover {
    background: #dc4d35;
    transform: translateY(-1px);
}


/* ============================================
   CATEGORY ROW
============================================ */

.recipe-hero-categories {
    display: flex;
    align-items: stretch;

    width: fit-content;
    max-width: 100%;
}

.recipe-category {
    min-width: 105px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 19px;

    text-decoration: none;

    border-right: 1px solid #e5e5e5;

    transition: transform 0.2s ease;
}

.recipe-category:first-child {
    padding-left: 0;
}

.recipe-category:last-child {
    border-right: 0;
}

.recipe-category:hover {
    transform: translateY(-3px);
}

.recipe-category span {
    color: #26313a;

    font-size: 13px;
    font-weight: 700;
}


/* ============================================
   CATEGORY ICONS
============================================ */

.recipe-category-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 21px;
}

.recipe-icon-yellow {
    background: #fff0d4;
}

.recipe-icon-green {
    background: #e2f1dc;
}

.recipe-icon-pink {
    background: #ffe0e5;
}

.recipe-icon-purple {
    background: #eee3ff;
}

.recipe-icon-blue {
    background: #ddf3fb;
}


/* ============================================
   RIGHT VISUAL
============================================ */

.recipe-hero-visual {
    position: relative;

    height: 100%;
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================================
   FOOD IMAGE
============================================ */

.recipe-food-image-wrap {
    width: min(650px, 100%);
    height: 500px;

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-food-image-wrap::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: #f7f3e9;

    border-radius: 50%;

    z-index: -1;
}

.recipe-food-image-wrap img {
    width: 520px;
    height: 440px;

    object-fit: cover;

    border-radius: 48% 52% 48% 52%;

    box-shadow:
        0 25px 60px rgba(48, 53, 41, 0.15);

    transform: rotate(2deg);
}


/* ============================================
   DECORATIONS
============================================ */

.recipe-food-decoration {
    position: absolute;
    z-index: 4;

    pointer-events: none;
}

.recipe-tomatoes {
    top: 65px;
    left: 30px;

    font-size: 70px;

    transform: rotate(-10deg);
}

.recipe-leaves {
    bottom: 50px;
    left: 30px;

    font-size: 80px;

    transform: rotate(15deg);
}

.recipe-good-food {
    position: absolute;

    top: 78px;
    right: 0;

    z-index: 5;

    color: #527b58;

    font-family: Georgia, serif;
    font-size: 21px;
    font-style: italic;
    font-weight: 600;

    line-height: 1.25;

    transform: rotate(-5deg);
}

.recipe-good-food span {
    display: inline-block;

    margin-left: 8px;

    font-size: 28px;
}

.recipe-food-sprinkle {
    position: absolute;

    color: #66846a;

    font-size: 24px;
}

.recipe-sprinkle-one {
    right: 40px;
    bottom: 105px;
}

.recipe-sprinkle-two {
    right: 90px;
    bottom: 75px;
    font-size: 32px;
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 1050px) {

    .recipe-hero-container {
        grid-template-columns: 52% 48%;
    }

    .recipe-hero-content h1 {
        font-size: 52px;
    }

    .recipe-category {
        min-width: 85px;
        padding: 0 12px;
    }

    .recipe-food-image-wrap img {
        width: 430px;
        height: 390px;
    }

    .recipe-food-image-wrap::before {
        width: 420px;
        height: 420px;
    }

    .recipe-tomatoes {
        left: 0;
    }
}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 800px) {

    .recipe-hero-container {
        width: min(100% - 30px, 600px);

        display: flex;
        flex-direction: column;

        min-height: auto;
    }

    .recipe-hero-content {
        width: 100%;
        padding: 55px 0 25px;

        text-align: center;
    }

    .recipe-hero-kicker {
        justify-content: center;
        font-size: 25px;
    }

    .recipe-hero-content h1 {
        font-size: clamp(42px, 10vw, 58px);
        letter-spacing: -2px;
    }

    .recipe-hero-description {
        margin-left: auto;
        margin-right: auto;

        font-size: 15px;
    }

    .recipe-hero-search {
        width: 100%;
        height: 62px;
    }

    .recipe-hero-search button {
        height: 48px;
        padding: 0 20px;
    }

    .recipe-hero-categories {
        width: 100%;

        justify-content: center;

        overflow-x: auto;

        padding-bottom: 8px;
    }

    .recipe-category {
        min-width: 85px;
        padding: 0 12px;
    }

    .recipe-category:first-child {
        padding-left: 12px;
    }

    .recipe-hero-visual {
        width: 100%;
        min-height: 440px;

        margin-top: 10px;
    }

    .recipe-food-image-wrap {
        height: 390px;
    }

    .recipe-food-image-wrap img {
        width: min(90vw, 460px);
        height: 340px;
    }

    .recipe-food-image-wrap::before {
        width: 350px;
        height: 350px;
    }

    .recipe-good-food {
        top: 15px;
        right: 5px;

        font-size: 16px;
    }

    .recipe-tomatoes {
        top: 35px;
        left: 0;

        font-size: 45px;
    }

    .recipe-leaves {
        bottom: 20px;
        left: 5px;

        font-size: 50px;
    }
}


/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 480px) {

    .recipe-hero-container {
        width: calc(100% - 24px);
    }

    .recipe-hero-content {
        padding-top: 40px;
    }

    .recipe-hero-content h1 {
        font-size: 39px;
        line-height: 1.02;
    }

    .recipe-hero-description {
        font-size: 14px;
        line-height: 1.55;
    }

    .recipe-hero-search {
        height: 58px;
        padding: 5px;
    }

    .recipe-search-icon {
        width: 40px;
    }

    .recipe-hero-search input {
        font-size: 14px;
    }

    .recipe-hero-search button {
        padding: 0 15px;
        font-size: 14px;
    }

    .recipe-hero-search button span {
        display: none;
    }

    .recipe-category {
        min-width: 70px;
        padding: 0 7px;
    }

    .recipe-category-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .recipe-category span {
        font-size: 11px;
    }

    .recipe-hero-visual {
        min-height: 350px;
    }

    .recipe-food-image-wrap {
        height: 330px;
    }

    .recipe-food-image-wrap img {
        width: 94%;
        height: 280px;
    }

    .recipe-food-image-wrap::before {
        width: 280px;
        height: 280px;
    }
}


/* ============================================
   ABOUT SECTION
============================================ */

.recipe-about {
    width: 100%;
    padding: 100px 0;

    background: #faf8f3;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow: hidden;
}

.recipe-about-container {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: 48% 52%;

    align-items: center;

    gap: 75px;
}


/* ============================================
   IMAGE AREA
============================================ */

.recipe-about-visual {
    position: relative;

    min-height: 570px;
}

.recipe-about-main-image {
    width: 410px;
    height: 500px;

    overflow: hidden;

    border-radius: 190px 190px 25px 25px;

    box-shadow:
        0 25px 55px rgba(43, 48, 37, 0.13);
}

.recipe-about-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* ============================================
   SMALL IMAGE
============================================ */

.recipe-about-small-image {
    position: absolute;

    right: 5px;
    bottom: 20px;

    width: 220px;
    height: 220px;

    padding: 8px;

    background: #fff;

    border-radius: 50%;

    box-shadow:
        0 18px 45px rgba(42, 47, 40, 0.15);
}

.recipe-about-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* ============================================
   BADGE
============================================ */

.recipe-about-badge {
    position: absolute;

    left: -25px;
    bottom: 50px;

    width: 145px;
    height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #f26045;

    color: #fff;

    border-radius: 50%;

    text-align: center;

    transform: rotate(-7deg);

    box-shadow:
        0 15px 35px rgba(242, 96, 69, 0.22);
}

.recipe-about-badge span {
    font-size: 22px;

    margin-bottom: 4px;
}

.recipe-about-badge strong {
    font-family: Georgia, serif;

    font-size: 17px;
}

.recipe-about-badge small {
    margin-top: 3px;

    font-size: 11px;

    opacity: 0.9;
}


/* ============================================
   CONTENT
============================================ */

.recipe-about-content {
    max-width: 590px;
}

.recipe-about-label {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    color: #5a805d;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 16px;
}

.recipe-about-label::before {
    content: "";

    width: 30px;
    height: 2px;

    background: #f26045;
}


.recipe-about-content h2 {
    margin: 0 0 22px;

    color: #202a31;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;
}

.recipe-about-content h2 span {
    display: block;

    color: #f26045;
}


.recipe-about-intro {
    color: #3d4a51;

    font-size: 18px;
    line-height: 1.65;

    font-weight: 600;

    margin-bottom: 18px;
}

.recipe-about-content > p:not(.recipe-about-intro) {
    color: #69767d;

    font-size: 15px;
    line-height: 1.8;

    margin: 0 0 15px;
}


/* ============================================
   FEATURES
============================================ */

.recipe-about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin: 30px 0;
}

.recipe-about-feature {
    display: flex;

    align-items: flex-start;

    gap: 13px;
}

.recipe-feature-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border-radius: 12px;

    font-size: 20px;

    box-shadow:
        0 5px 18px rgba(35, 42, 35, 0.07);
}

.recipe-about-feature h3 {
    margin: 2px 0 4px;

    color: #263238;

    font-size: 14px;
}

.recipe-about-feature p {
    margin: 0;

    color: #778188;

    font-size: 12px;

    line-height: 1.5;
}


/* ============================================
   BUTTON
============================================ */

.recipe-about-button {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    min-height: 50px;

    padding: 0 22px;

    background: #f26045;

    color: #fff;

    border-radius: 9px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.recipe-about-button span {
    font-size: 20px;
}

.recipe-about-button:hover {
    background: #dc4d35;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(242, 96, 69, 0.2);
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 1000px) {

    .recipe-about-container {
        grid-template-columns: 44% 56%;

        gap: 45px;
    }

    .recipe-about-main-image {
        width: 330px;
        height: 450px;
    }

    .recipe-about-small-image {
        width: 170px;
        height: 170px;

        right: -5px;
    }

    .recipe-about-badge {
        left: -10px;

        width: 120px;
        height: 120px;
    }

    .recipe-about-content h2 {
        font-size: 40px;
    }

}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 760px) {

    .recipe-about {
        padding: 70px 0;
    }

    .recipe-about-container {
        width: min(100% - 30px, 600px);

        display: flex;
        flex-direction: column;

        gap: 45px;
    }

    .recipe-about-visual {
        width: 100%;

        min-height: 500px;

        display: flex;

        justify-content: center;
    }

    .recipe-about-main-image {
        width: min(82vw, 400px);

        height: 470px;
    }

    .recipe-about-small-image {
        right: 2%;
        bottom: 0;

        width: 170px;
        height: 170px;
    }

    .recipe-about-badge {
        left: 1%;
        bottom: 35px;

        width: 120px;
        height: 120px;
    }

    .recipe-about-content {
        max-width: 100%;

        text-align: center;
    }

    .recipe-about-label {
        justify-content: center;
    }

    .recipe-about-content h2 {
        font-size: 40px;
    }

    .recipe-about-intro {
        font-size: 16px;
    }

    .recipe-about-features {
        text-align: left;
    }

    .recipe-about-button {
        margin-top: 5px;
    }
}


/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 480px) {

    .recipe-about {
        padding: 55px 0;
    }

    .recipe-about-container {
        width: calc(100% - 24px);
    }

    .recipe-about-visual {
        min-height: 390px;
    }

    .recipe-about-main-image {
        width: 75vw;
        height: 370px;

        border-radius: 150px 150px 20px 20px;
    }

    .recipe-about-small-image {
        width: 125px;
        height: 125px;
    }

    .recipe-about-badge {
        width: 100px;
        height: 100px;

        left: 0;
        bottom: 25px;
    }

    .recipe-about-badge strong {
        font-size: 14px;
    }

    .recipe-about-badge small {
        font-size: 9px;
    }

    .recipe-about-content h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .recipe-about-features {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .recipe-about-feature {
        background: #fff;

        padding: 13px;

        border-radius: 12px;
    }
}



/* ==========================================
   CATEGORY SECTION
========================================== */

.recipe-category-showcase {
    width: 100%;
    padding: 100px 0;

    background: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

.recipe-category-wrap {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==========================================
   SECTION HEADING
========================================== */

.recipe-category-heading {
    max-width: 650px;
    margin: 0 auto 55px;

    text-align: center;
}

.recipe-category-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #5d825f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 13px;
}

.recipe-category-eyebrow::before,
.recipe-category-eyebrow::after {
    content: "";

    width: 25px;
    height: 2px;

    background: #f26045;

    border-radius: 5px;
}

.recipe-category-heading h2 {
    margin: 0 0 17px;

    color: #202a31;

    font-size: clamp(38px, 4.5vw, 56px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;
}

.recipe-category-heading h2 span {
    color: #f26045;
}

.recipe-category-heading p {
    max-width: 560px;

    margin: 0 auto;

    color: #6e7a81;

    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================
   GRID
========================================== */

.recipe-category-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* ==========================================
   CARD
========================================== */

.recipe-category-card {
    display: block;

    color: inherit;
    text-decoration: none;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #eeeeee;

    box-shadow:
        0 7px 25px rgba(30, 40, 34, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.recipe-category-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(30, 40, 34, 0.13);
}


/* ==========================================
   IMAGE
========================================== */

.recipe-category-image {
    position: relative;

    width: 100%;
    height: 255px;

    overflow: hidden;
}

.recipe-category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;
}

.recipe-category-card:hover
.recipe-category-image img {
    transform: scale(1.07);
}


/* ==========================================
   OVERLAY
========================================== */

.recipe-category-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(0, 0, 0, 0.28)
        );
}


/* ==========================================
   ARROW
========================================== */

.recipe-category-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #f26045;

    border-radius: 50%;

    font-size: 22px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.recipe-category-card:hover
.recipe-category-arrow {
    background: #f26045;

    color: #ffffff;

    transform: rotate(-8deg);
}


/* ==========================================
   CARD INFO
========================================== */

.recipe-category-info {
    min-height: 92px;

    display: flex;
    align-items: center;

    gap: 17px;

    padding: 17px 20px;
}

.recipe-category-number {
    color: #c6cbc9;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}

.recipe-category-info h3 {
    margin: 0 0 4px;

    color: #263238;

    font-size: 20px;

    font-weight: 800;
}

.recipe-category-info p {
    margin: 0;

    color: #879197;

    font-size: 12px;
}


/* ==========================================
   VIEW ALL
========================================== */

.recipe-category-bottom {
    display: flex;
    justify-content: center;

    margin-top: 50px;
}

.recipe-category-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-height: 50px;

    padding: 0 24px;

    border: 1px solid #f26045;

    border-radius: 9px;

    color: #f26045;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.recipe-category-all span {
    font-size: 19px;
}

.recipe-category-all:hover {
    background: #f26045;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .recipe-category-showcase {
        padding: 75px 0;
    }

    .recipe-category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 22px;
    }

    .recipe-category-image {
        height: 230px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .recipe-category-showcase {
        padding: 60px 0;
    }

    .recipe-category-wrap {
        width: calc(100% - 30px);
    }

    .recipe-category-heading {
        margin-bottom: 35px;
    }

    .recipe-category-heading h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }

    .recipe-category-heading p {
        font-size: 14px;
    }

    .recipe-category-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .recipe-category-image {
        height: 250px;
    }

    .recipe-category-info {
        min-height: 82px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .recipe-category-wrap {
        width: calc(100% - 24px);
    }

    .recipe-category-image {
        height: 220px;
    }

    .recipe-category-heading h2 {
        font-size: 33px;
    }
}



/* ============================================
   FAQ SECTION
============================================ */

.recipe-faq-section {
    width: 100%;

    padding: 100px 0;

    background: #faf8f3;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

.recipe-faq-container {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 38% 62%;

    gap: 75px;

    align-items: start;
}


/* ============================================
   LEFT CONTENT
============================================ */

.recipe-faq-intro {
    position: sticky;

    top: 30px;
}

.recipe-faq-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #5b805f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.recipe-faq-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: #f26045;

    border-radius: 10px;
}

.recipe-faq-intro h2 {
    margin: 0 0 20px;

    color: #202a31;

    font-size: clamp(38px, 4vw, 53px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;
}

.recipe-faq-intro h2 span {
    display: block;

    color: #f26045;
}

.recipe-faq-intro > p {
    margin: 0;

    color: #69767d;

    font-size: 15px;

    line-height: 1.75;
}


/* ============================================
   FAQ NOTE
============================================ */

.recipe-faq-note {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 30px;

    padding: 16px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(40, 45, 39, 0.05);
}

.recipe-faq-note-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0e9;

    border-radius: 12px;

    font-size: 21px;
}

.recipe-faq-note strong {
    display: block;

    color: #29353b;

    font-size: 13px;

    margin-bottom: 4px;
}

.recipe-faq-note p {
    margin: 0;

    color: #7b858a;

    font-size: 11px;

    line-height: 1.5;
}


/* ============================================
   CONTACT BUTTON
============================================ */

.recipe-faq-contact {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    color: #f26045;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;
}

.recipe-faq-contact span {
    font-size: 19px;

    transition: transform 0.2s ease;
}

.recipe-faq-contact:hover span {
    transform: translateX(5px);
}


/* ============================================
   FAQ LIST
============================================ */

.recipe-faq-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* ============================================
   FAQ ITEM
============================================ */

.recipe-faq-item {
    background: #ffffff;

    border: 1px solid #e9e9e9;

    border-radius: 13px;

    overflow: hidden;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.recipe-faq-item.active {
    border-color: rgba(242, 96, 69, 0.25);

    box-shadow:
        0 10px 30px rgba(40, 45, 39, 0.06);
}


/* ============================================
   QUESTION
============================================ */

.recipe-faq-question {
    width: 100%;

    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 17px 22px;

    border: 0;

    background: transparent;

    color: #29353b;

    text-align: left;

    font-family: inherit;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;
}

.recipe-faq-question:hover {
    color: #f26045;
}


/* ============================================
   PLUS ICON
============================================ */

.recipe-faq-plus {
    position: relative;

    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f8f7f3;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.recipe-faq-plus span {
    position: absolute;

    width: 13px;
    height: 2px;

    background: #5c696f;

    border-radius: 5px;

    transition:
        transform 0.25s ease;
}

.recipe-faq-plus span:last-child {
    transform: rotate(90deg);
}

.recipe-faq-item.active .recipe-faq-plus {
    background: #f26045;

    transform: rotate(180deg);
}

.recipe-faq-item.active .recipe-faq-plus span {
    background: #ffffff;
}

.recipe-faq-item.active .recipe-faq-plus span:last-child {
    transform: rotate(0);
}


/* ============================================
   ANSWER
============================================ */

.recipe-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.3s ease;
}

.recipe-faq-answer p {
    min-height: 0;

    overflow: hidden;

    margin: 0;

    padding: 0 22px;

    color: #6e797f;

    font-size: 14px;

    line-height: 1.75;

    transition:
        padding 0.3s ease;
}

.recipe-faq-item.active .recipe-faq-answer {
    grid-template-rows: 1fr;
}

.recipe-faq-item.active .recipe-faq-answer p {
    padding: 0 22px 22px;
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 900px) {

    .recipe-faq-section {
        padding: 75px 0;
    }

    .recipe-faq-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .recipe-faq-intro {
        position: static;

        max-width: 650px;
    }

    .recipe-faq-intro h2 span {
        display: inline;
    }

}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 600px) {

    .recipe-faq-section {
        padding: 60px 0;
    }

    .recipe-faq-container {
        width: calc(100% - 30px);

        gap: 35px;
    }

    .recipe-faq-intro h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }

    .recipe-faq-intro > p {
        font-size: 14px;
    }

    .recipe-faq-question {
        min-height: 65px;

        padding: 15px 16px;

        font-size: 14px;
    }

    .recipe-faq-question > span:first-child {
        line-height: 1.45;
    }

    .recipe-faq-plus {
        width: 32px;
        height: 32px;
    }

    .recipe-faq-answer p {
        padding-left: 16px;
        padding-right: 16px;

        font-size: 13px;
    }

    .recipe-faq-item.active .recipe-faq-answer p {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 18px;
    }

}


/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 400px) {

    .recipe-faq-container {
        width: calc(100% - 24px);
    }

    .recipe-faq-intro h2 {
        font-size: 33px;
    }

    .recipe-faq-note {
        align-items: flex-start;
    }

}



/* ============================================
   FOOTER
============================================ */

.recipe-site-footer {
    width: 100%;

    background: #202b2d;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* ============================================
   CONTAINER
============================================ */

.recipe-footer-container {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;
}


/* ============================================
   TOP FOOTER
============================================ */

.recipe-footer-top {
    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        0.9fr
        1.35fr;

    gap: 55px;

    padding: 75px 0 65px;
}


/* ============================================
   BRAND
============================================ */

.recipe-footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    text-decoration: none;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: -0.5px;

    margin-bottom: 18px;
}

.recipe-footer-logo-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f26045;

    border-radius: 11px;

    font-size: 20px;
}

.recipe-footer-brand > p {
    max-width: 280px;

    margin: 0;

    color: #aeb9ba;

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================
   SOCIALS
============================================ */

.recipe-footer-socials {
    display: flex;

    gap: 9px;

    margin-top: 25px;
}

.recipe-footer-socials a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #465355;

    border-radius: 50%;

    color: #dbe0df;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.recipe-footer-socials a:hover {
    background: #f26045;

    border-color: #f26045;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ============================================
   FOOTER COLUMNS
============================================ */

.recipe-footer-column h3,
.recipe-footer-newsletter h3 {
    margin: 5px 0 22px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;
}

.recipe-footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.recipe-footer-column li {
    margin-bottom: 12px;
}

.recipe-footer-column a {
    color: #aeb9ba;

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.recipe-footer-column a:hover {
    color: #ffffff;

    padding-left: 4px;
}


/* ============================================
   NEWSLETTER
============================================ */

.recipe-footer-newsletter > p {
    margin: 0 0 18px;

    color: #aeb9ba;

    font-size: 13px;

    line-height: 1.7;
}

.recipe-footer-form {
    width: 100%;

    height: 50px;

    display: flex;

    align-items: center;

    padding: 4px;

    background: #ffffff;

    border-radius: 8px;
}

.recipe-footer-form input {
    width: 100%;
    height: 100%;

    min-width: 0;

    border: 0;
    outline: 0;

    padding: 0 12px;

    background: transparent;

    color: #222;

    font-family: inherit;

    font-size: 13px;
}

.recipe-footer-form input::placeholder {
    color: #8b9698;
}

.recipe-footer-form button {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border: 0;

    border-radius: 6px;

    background: #f26045;

    color: #ffffff;

    font-size: 21px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.recipe-footer-form button:hover {
    background: #dc4d35;

    transform: translateX(2px);
}

.recipe-footer-newsletter small {
    display: block;

    margin-top: 10px;

    color: #7f8b8c;

    font-size: 10px;
}


/* ============================================
   DIVIDER
============================================ */

.recipe-footer-divider {
    width: 100%;

    height: 1px;

    background: #3b4849;
}


/* ============================================
   BOTTOM
============================================ */

.recipe-footer-bottom {
    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.recipe-footer-bottom > p {
    margin: 0;

    color: #899596;

    font-size: 11px;
}

.recipe-footer-legal {
    display: flex;

    align-items: center;

    gap: 24px;
}

.recipe-footer-legal a {
    color: #899596;

    text-decoration: none;

    font-size: 11px;

    transition: color 0.2s ease;
}

.recipe-footer-legal a:hover {
    color: #ffffff;
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 950px) {

    .recipe-footer-top {
        grid-template-columns: 1.4fr 1fr 1fr;

        gap: 40px;
    }

    .recipe-footer-newsletter {
        grid-column: 1 / -1;

        max-width: 500px;
    }

}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 650px) {

    .recipe-footer-container {
        width: calc(100% - 30px);
    }

    .recipe-footer-top {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 38px 25px;

        padding: 55px 0 45px;
    }

    .recipe-footer-brand {
        grid-column: 1 / -1;
    }

    .recipe-footer-brand > p {
        max-width: 400px;
    }

    .recipe-footer-newsletter {
        grid-column: 1 / -1;

        max-width: 100%;
    }

    .recipe-footer-bottom {
        min-height: auto;

        padding: 22px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .recipe-footer-legal {
        flex-wrap: wrap;

        gap: 10px 18px;
    }

}


/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 400px) {

    .recipe-footer-container {
        width: calc(100% - 24px);
    }

    .recipe-footer-top {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .recipe-footer-brand,
    .recipe-footer-newsletter {
        grid-column: auto;
    }

    .recipe-footer-column li {
        margin-bottom: 10px;
    }

    .recipe-footer-legal {
        flex-direction: column;

        align-items: flex-start;

        gap: 9px;
    }

}


/* ================================
   Taste US Recipes - ABOUT PAGE
================================ */

.busr-about-page {
  width: 100%;
  background: #faf8f3;
  padding: 90px 20px;
  color: #202a31;
  box-sizing: border-box;
}

.busr-about-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Intro */

.busr-about-intro {
  max-width: 800px;
  margin: 0 auto 75px;
  text-align: center;
}

.busr-about-eyebrow,
.busr-about-small-title {
  display: inline-block;
  color: #f26045;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.busr-about-intro h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.08;
  font-weight: 500;
  color: #202a31;
}

.busr-about-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #697277;
}

/* Story */

.busr-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
  margin-bottom: 110px;
}

.busr-about-image {
  position: relative;
  min-height: 580px;
}

.busr-about-image img {
  display: block;
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 28px;
}

.busr-about-image-note {
  position: absolute;
  right: -25px;
  bottom: 30px;
  width: 205px;
  padding: 22px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(32, 42, 49, 0.14);
}

.busr-about-image-note strong {
  display: block;
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.2;
  color: #202a31;
}

.busr-about-image-note span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #788084;
}

.busr-about-content {
  padding-right: 15px;
}

.busr-about-content h2,
.busr-about-value-heading h2 {
  margin: 0 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 500;
  color: #202a31;
}

.busr-about-content p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #687176;
}

.busr-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  padding: 15px 22px;
  background: #202a31;
  color: #ffffff;
  text-decoration: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.busr-about-btn span {
  font-size: 19px;
  transition: transform 0.25s ease;
}

.busr-about-btn:hover {
  background: #f26045;
  color: #ffffff;
}

.busr-about-btn:hover span {
  transform: translateX(4px);
}

/* Values */

.busr-about-values {
  padding: 75px 0;
  border-top: 1px solid #e7e2d9;
}

.busr-about-value-heading {
  max-width: 650px;
  margin-bottom: 42px;
}

.busr-about-value-heading h2 {
  margin-bottom: 0;
}

.busr-about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.busr-about-value-card {
  padding: 34px 30px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eeeae2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.busr-about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(32, 42, 49, 0.09);
}

.busr-about-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  background: #edf2eb;
  color: #5d825f;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.busr-about-value-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 700;
  color: #202a31;
}

.busr-about-value-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #747d81;
}

/* CTA */

.busr-about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 35px;
  padding: 45px 50px;
  background: #202b2d;
  border-radius: 25px;
}

.busr-about-cta span {
  display: block;
  margin-bottom: 9px;
  color: #f5a08f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.busr-about-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 500;
}

.busr-about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  padding: 15px 22px;
  background: #ffffff;
  color: #202a31;
  text-decoration: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.busr-about-cta-btn span {
  margin: 0;
  color: #202a31;
  font-size: 17px;
  transition: transform 0.25s ease;
}

.busr-about-cta-btn:hover {
  background: #f26045;
  color: #ffffff;
}

.busr-about-cta-btn:hover span {
  color: #ffffff;
  transform: translate(3px, -3px);
}

/* Tablet */

@media (max-width: 900px) {
  .busr-about-page {
    padding: 70px 20px;
  }

  .busr-about-story {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .busr-about-image {
    min-height: auto;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .busr-about-image img {
    height: 520px;
  }

  .busr-about-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .busr-about-value-grid {
    grid-template-columns: 1fr;
  }

  .busr-about-value-card {
    padding: 30px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .busr-about-page {
    padding: 55px 16px;
  }

  .busr-about-intro {
    margin-bottom: 55px;
  }

  .busr-about-intro h1 {
    font-size: 39px;
  }

  .busr-about-intro p {
    font-size: 15px;
    line-height: 1.7;
  }

  .busr-about-story {
    gap: 42px;
    margin-bottom: 70px;
  }

  .busr-about-image img {
    height: 400px;
    border-radius: 20px;
  }

  .busr-about-image-note {
    right: 15px;
    bottom: 15px;
    width: 175px;
    padding: 17px;
  }

  .busr-about-image-note strong {
    font-size: 16px;
  }

  .busr-about-content h2,
  .busr-about-value-heading h2 {
    font-size: 34px;
  }

  .busr-about-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .busr-about-values {
    padding: 55px 0;
  }

  .busr-about-value-grid {
    gap: 15px;
  }

  .busr-about-value-card {
    padding: 27px 24px;
  }

  .busr-about-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 25px;
    border-radius: 20px;
  }

  .busr-about-cta h2 {
    font-size: 30px;
  }

  .busr-about-cta-btn {
    width: 100%;
    justify-content: center;
  }
}



/* =========================================
   Taste US Recipes - CONTACT PAGE
========================================= */

.busr-contact-page {
  width: 100%;
  padding: 90px 20px;
  background: #faf8f3;
  color: #202a31;
  box-sizing: border-box;
}

.busr-contact-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Intro */

.busr-contact-intro {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.busr-contact-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: #f26045;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.busr-contact-intro h1 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 500;
  color: #202a31;
}

.busr-contact-intro p {
  max-width: 650px;
  margin: 0 auto;
  color: #6e777b;
  font-size: 17px;
  line-height: 1.8;
}

/* Main Grid */

.busr-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: start;
}

/* Left */

.busr-contact-image {
  width: 100%;
  height: 370px;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 30px;
}

.busr-contact-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.busr-contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.busr-contact-detail {
  display: flex;
  align-items: center;
  gap: 18px;
}

.busr-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #edf2eb;
  color: #5d825f;
  font-size: 19px;
}

.busr-contact-detail h3 {
  margin: 0 0 5px;
  color: #202a31;
  font-size: 16px;
  font-weight: 700;
}

.busr-contact-detail p {
  margin: 0;
  color: #747d81;
  font-size: 14px;
  line-height: 1.5;
}

/* Form Box */

.busr-contact-form-box {
  padding: 42px;
  background: #ffffff;
  border: 1px solid #eeeae2;
  border-radius: 25px;
  box-shadow: 0 15px 45px rgba(32, 42, 49, 0.06);
}

.busr-contact-form-heading {
  margin-bottom: 30px;
}

.busr-contact-form-heading span {
  display: block;
  margin-bottom: 10px;
  color: #f26045;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.busr-contact-form-heading h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: #202a31;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 500;
}

.busr-contact-form-heading p {
  margin: 0;
  color: #747d81;
  font-size: 15px;
  line-height: 1.7;
}

/* Fields */

.busr-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.busr-contact-field {
  margin-bottom: 20px;
}

.busr-contact-field label {
  display: block;
  margin-bottom: 8px;
  color: #303a3f;
  font-size: 13px;
  font-weight: 700;
}

.busr-contact-field input,
.busr-contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dddeda;
  border-radius: 9px;
  outline: none;
  background: #fcfcfa;
  color: #202a31;
   font-family: mulish;
  font-size: 14px;
  transition: all 0.2s ease;
}

.busr-contact-field input {
  height: 52px;
  padding: 0 15px;
}

.busr-contact-field textarea {
  min-height: 155px;
  padding: 15px;
  resize: vertical;
  line-height: 1.6;
}

.busr-contact-field input::placeholder,
.busr-contact-field textarea::placeholder {
  color: #a2a7a8;
}

.busr-contact-field input:focus,
.busr-contact-field textarea:focus {
  border-color: #f26045;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(242, 96, 69, 0.08);
}

/* Button */

.busr-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  min-height: 53px;
  border: 0;
  border-radius: 9px;
  background: #202a31;
  color: #ffffff;
  cursor: pointer;
   font-family: mulish;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.busr-contact-submit span {
  font-size: 19px;
  transition: transform 0.25s ease;
}

.busr-contact-submit:hover {
  background: #f26045;
}

.busr-contact-submit:hover span {
  transform: translateX(4px);
}

/* Bottom CTA */

.busr-contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 85px;
  padding: 43px 50px;
  border-radius: 24px;
  background: #202b2d;
}

.busr-contact-bottom > div > span {
  display: block;
  margin-bottom: 8px;
  color: #f5a08f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.busr-contact-bottom h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 500;
}

.busr-contact-recipes-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  padding: 15px 23px;
  border-radius: 9px;
  background: #ffffff;
  color: #202a31;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.busr-contact-recipes-btn span {
  font-size: 17px;
  transition: transform 0.25s ease;
}

.busr-contact-recipes-btn:hover {
  background: #f26045;
  color: #ffffff;
}

.busr-contact-recipes-btn:hover span {
  transform: translate(3px, -3px);
}

/* Tablet */

@media (max-width: 900px) {
  .busr-contact-page {
    padding: 70px 20px;
  }

  .busr-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .busr-contact-info {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .busr-contact-form-box {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .busr-contact-page {
    padding: 55px 16px;
  }

  .busr-contact-intro {
    margin-bottom: 48px;
  }

  .busr-contact-intro h1 {
    font-size: 39px;
  }

  .busr-contact-intro p {
    font-size: 15px;
    line-height: 1.7;
  }

  .busr-contact-image {
    height: 300px;
    border-radius: 20px;
  }

  .busr-contact-form-box {
    padding: 27px 20px;
    border-radius: 20px;
  }

  .busr-contact-form-heading h2 {
    font-size: 32px;
  }

  .busr-contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .busr-contact-field input {
    height: 50px;
  }

  .busr-contact-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
    padding: 32px 25px;
    border-radius: 20px;
  }

  .busr-contact-bottom h2 {
    font-size: 30px;
  }

  .busr-contact-recipes-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}



/* =========================================
   Taste US Recipes - RECIPE CARDS PAGE
========================================= */

.busr-recipes-page {
  width: 100%;
  padding: 90px 20px;
  background: #faf8f3;
  color: #202a31;
  box-sizing: border-box;
}

.busr-recipes-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Heading */

.busr-recipes-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.busr-recipes-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: #f26045;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.busr-recipes-heading h1 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 500;
}

.busr-recipes-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #6d767a;
  font-size: 17px;
  line-height: 1.8;
}

/* Tools */

.busr-recipes-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 45px;
}

.busr-recipes-search {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}

.busr-recipes-search span {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #7a8386;
  font-size: 22px;
}

.busr-recipes-search input {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  padding: 0 15px 0 45px;
  border: 1px solid #deded8;
  border-radius: 9px;
  outline: none;
  background: #ffffff;
  color: #202a31;
  font-size: 14px;
}

.busr-recipes-search input:focus {
  border-color: #f26045;
}

.busr-recipes-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.busr-filter-btn {
  padding: 10px 15px;
  border: 1px solid #deded8;
  border-radius: 30px;
  background: #ffffff;
  color: #5e686c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.busr-filter-btn:hover,
.busr-filter-btn.busr-filter-active {
  border-color: #202a31;
  background: #202a31;
  color: #ffffff;
}

/* Grid */

.busr-recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */

.busr-recipe-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eeeae2;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(32, 42, 49, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.busr-recipe-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(32, 42, 49, 0.11);
}

/* Image */

.busr-recipe-image {
  position: relative;
  display: block;
  height: 255px;
  overflow: hidden;
  text-decoration: none;
}

.busr-recipe-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.busr-recipe-card:hover .busr-recipe-image img {
  transform: scale(1.06);
}

.busr-recipe-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 30px;
  background: #ffffff;
  color: #202a31;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Content */

.busr-recipe-content {
  padding: 25px 24px 27px;
}

.busr-recipe-time {
  display: block;
  margin-bottom: 10px;
  color: #5d825f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.busr-recipe-content h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
}

.busr-recipe-content h2 a {
  color: #202a31;
  text-decoration: none;
}

.busr-recipe-content h2 a:hover {
  color: #f26045;
}

.busr-recipe-content p {
  margin: 0 0 20px;
  color: #727b7f;
  font-size: 14px;
  line-height: 1.7;
}

.busr-recipe-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #202a31;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.busr-recipe-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.busr-recipe-link:hover {
  color: #f26045;
}

.busr-recipe-link:hover span {
  transform: translateX(4px);
}

/* Empty */

.busr-recipes-empty {
  display: none;
  padding: 70px 20px;
  text-align: center;
}

.busr-recipes-empty span {
  font-size: 40px;
}

.busr-recipes-empty h3 {
  margin: 15px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.busr-recipes-empty p {
  margin: 0;
  color: #737c80;
}

/* Bottom */

.busr-recipes-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 65px;
  padding-top: 35px;
  border-top: 1px solid #e5e1d9;
}

.busr-recipes-bottom p {
  margin: 0;
  color: #747d81;
  font-size: 14px;
}

.busr-recipes-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 19px;
  border-radius: 8px;
  background: #202a31;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.busr-recipes-more-btn span {
  font-size: 17px;
  transition: transform 0.2s ease;
}

.busr-recipes-more-btn:hover {
  background: #f26045;
}

.busr-recipes-more-btn:hover span {
  transform: translateX(4px);
}

/* Tablet */

@media (max-width: 950px) {

  .busr-recipes-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .busr-recipes-search {
    width: 100%;
  }

  .busr-recipes-filters {
    justify-content: flex-start;
  }

  .busr-recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 600px) {

  .busr-recipes-page {
    padding: 55px 16px;
  }

  .busr-recipes-heading {
    margin-bottom: 42px;
  }

  .busr-recipes-heading h1 {
    font-size: 39px;
  }

  .busr-recipes-heading p {
    font-size: 15px;
  }

  .busr-recipes-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    justify-content: flex-start;
  }

  .busr-filter-btn {
    flex-shrink: 0;
  }

  .busr-recipe-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .busr-recipe-image {
    height: 240px;
  }

  .busr-recipe-content {
    padding: 22px 20px 24px;
  }

  .busr-recipe-content h2 {
    font-size: 22px;
  }

  .busr-recipes-bottom {
    flex-direction: column;
    text-align: center;
  }

}


.recipe-wrap{
    max-width:1120px;
    margin:0 auto;
    padding:45px 20px 70px;
}

.recipe-intro{
    max-width:850px;
    margin:0 auto 35px;
    text-align:center;
}

.recipe-label{
    display:inline-block;
    background:#f6e4df;
    color:#8c3d3d;
    padding:7px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.recipe-title{
    font-size:clamp(34px,5vw,58px);
    line-height:1.1;
    margin-bottom:18px;
    color:#251d1d;
}

.recipe-description{
    max-width:720px;
    margin:auto;
    color:#6d6262;
    font-size:17px;
}

.recipe-featured{
    margin:35px auto 45px;
    border-radius:24px;
    overflow:hidden;
    max-width:1000px;
    box-shadow:0 18px 50px rgba(70,35,35,.12);
}

.recipe-featured img{
    display:block;
    width:100%;
    height:auto;
}

.recipe-meta{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    max-width:900px;
    margin:0 auto 45px;
    background:#fff;
    border:1px solid #eee1de;
    border-radius:18px;
    overflow:hidden;
}

.meta-item{
    padding:20px 15px;
    text-align:center;
    border-right:1px solid #eee1de;
}

.meta-item:last-child{
    border-right:0;
}

.meta-label{
    display:block;
    color:#968989;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:3px;
}

.meta-value{
    font-weight:700;
    color:#352929;
}

.recipe-content{
    display:grid;
    grid-template-columns:1fr 1.35fr;
    gap:55px;
    align-items:start;
}

.recipe-box{
    background:#fff;
    border:1px solid #eee1de;
    border-radius:20px;
    padding:30px;
}

.section-title{
    font-size:27px;
    line-height:1.2;
    margin-bottom:22px;
    color:#2d2222;
}

.ingredients-list{
    list-style:none;
}

.ingredients-list li{
    padding:12px 0;
    border-bottom:1px solid #f0e7e5;
    color:#554949;
}

.ingredients-list li:last-child{
    border-bottom:0;
}

.ingredients-list strong{
    color:#2d2222;
}

.steps{
    counter-reset:recipe-step;
}

.step{
    position:relative;
    padding:0 0 25px 58px;
    margin-bottom:22px;
    border-bottom:1px solid #eee5e3;
}

.step:last-child{
    border-bottom:0;
    margin-bottom:0;
}

.step:before{
    counter-increment:recipe-step;
    content:counter(recipe-step);
    position:absolute;
    left:0;
    top:0;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#7c3838;
    color:#fff;
    font-weight:700;
}

.step h3{
    margin-bottom:6px;
    font-size:18px;
    color:#332626;
}

.step p{
    color:#665b5b;
}

.recipe-notes{
    margin-top:40px;
    background:#f7ebe7;
    border-radius:20px;
    padding:28px 30px;
}

.recipe-notes h2{
    margin-bottom:10px;
    color:#633333;
}

.recipe-notes p{
    color:#665858;
}

.nutrition{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.nutrition-item{
    background:#fff;
    border:1px solid #eee1de;
    border-radius:14px;
    padding:15px;
    text-align:center;
}

.nutrition-item strong{
    display:block;
    font-size:18px;
    color:#352828;
}

.nutrition-item span{
    font-size:12px;
    color:#958989;
}

@media(max-width:800px){

    .recipe-content{
        grid-template-columns:1fr;
        gap:30px;
    }

    .recipe-meta{
        grid-template-columns:repeat(2,1fr);
    }

    .meta-item:nth-child(2){
        border-right:0;
    }

    .meta-item:nth-child(-n+2){
        border-bottom:1px solid #eee1de;
    }
}

@media(max-width:520px){

    .recipe-wrap{
        padding:30px 15px 50px;
    }

    .recipe-title{
        font-size:36px;
    }

    .recipe-description{
        font-size:15px;
    }

    .recipe-featured{
        border-radius:16px;
        margin-top:25px;
    }

    .recipe-box{
        padding:23px 20px;
    }

    .section-title{
        font-size:24px;
    }

    .nutrition{
        grid-template-columns:repeat(2,1fr);
    }
}