:root {
    --nf-orange: #f97316;
    --nf-orange-dark: #ea580c;
    --nf-orange-deep: #c2410c;
    --nf-orange-light: #ffedd5;
    --nf-orange-soft: #fff7ed;

    --nf-cream: #fffaf5;
    --nf-white: #ffffff;

    --nf-dark: #1c1917;
    --nf-heading: #292524;
    --nf-text: #57534e;
    --nf-muted: #78716c;

    --nf-border: #eee7df;
    --nf-border-soft: #f5ede5;

    --nf-shadow: 0 10px 35px rgba(68, 43, 23, 0.08);
    --nf-shadow-hover: 0 18px 50px rgba(68, 43, 23, 0.14);

    --nf-radius-sm: 12px;
    --nf-radius: 18px;
    --nf-radius-lg: 28px;

    --nf-transition: 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    color: var(--nf-text);
    background: var(--nf-cream);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 15px;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--nf-transition);
}

a:hover {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.nf-container {
    width: 100%;
    max-width: 1720px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 32px;
    padding-right: 32px;
}


/* =========================================================
   MOBILE APP BAR
========================================================= */

.nf-appbar {
    display: none;

    padding: 8px 0;

    background: var(--nf-dark);
}

.nf-appbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;
}

.nf-appbar-title {
    color: #fff;

    font-size: 12px;
    font-weight: 700;
}

.nf-appbar-links {
    display: flex;
    align-items: center;

    gap: 7px;
}

.nf-appbar-links a {
    display: block;
}

.nf-appbar-links img {
    width: auto;
    height: 29px;
}


/* =========================================================
   HEADER
========================================================= */

.nf-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 250, 245, 0.96);

    border-bottom: 1px solid rgba(238, 231, 223, 0.9);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nf-header-inner {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* Logo */

.nf-logo {
    flex: 0 0 auto;
}

.nf-logo img {
    width: auto;
    max-width: 205px;
    max-height: 62px;

    object-fit: contain;
}


/* Desktop Navigation */

.nf-nav {
    flex: 1;

    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 4px;
}

.nf-nav > a {
    position: relative;

    padding: 11px 13px;

    color: var(--nf-heading);

    border-radius: 10px;

    font-size: 14px;
    font-weight: 650;
    line-height: 1;
}

.nf-nav > a:hover {
    color: var(--nf-orange-dark);

    background: var(--nf-orange-soft);
}

.nf-nav > a.active {
    color: var(--nf-orange-dark);
}

.nf-nav > a.active::after {
    content: "";

    position: absolute;

    left: 17px;
    right: 17px;
    bottom: 4px;

    height: 2px;

    background: var(--nf-orange);

    border-radius: 20px;
}


/* Header Actions */

.nf-header-actions {
    display: flex !important;
    align-items: center;

    gap: 8px;

    flex: 0 0 auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.nf-btn {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 19px;

    color: var(--nf-heading);
    background: transparent;

    border: 1px solid transparent;
    border-radius: 12px;

    font-size: 13px;
    font-weight: 750;
    line-height: 1;

    transition: var(--nf-transition);
}

.nf-btn:hover {
    transform: translateY(-2px);
}

.nf-btn-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--nf-orange),
            var(--nf-orange-dark)
        );

    box-shadow:
        0 8px 20px rgba(249, 115, 22, 0.24);
}

.nf-btn-primary:hover {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--nf-orange-dark),
            var(--nf-orange-deep)
        );

    box-shadow:
        0 12px 25px rgba(249, 115, 22, 0.32);
}

.nf-btn-light {
    color: var(--nf-heading);

    background: #fff;

    border-color: var(--nf-border);
}

.nf-btn-light:hover {
    color: var(--nf-orange-dark);

    background: var(--nf-orange-soft);

    border-color: #fed7aa;
}

.nf-btn-white {
    color: var(--nf-orange-dark);

    background: #fff;
}

.nf-btn-white:hover {
    color: var(--nf-orange-deep);

    background: var(--nf-orange-soft);
}

.nf-btn-outline-white {
    color: #fff;

    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.55);
}

.nf-btn-outline-white:hover {
    color: #fff;

    background: rgba(255, 255, 255, 0.15);

    border-color: #fff;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.nf-menu-toggle {
    width: 46px;
    height: 46px;

    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 0;

    background: #fff;

    border: 1px solid var(--nf-border);
    border-radius: 12px;

    cursor: pointer;
}

.nf-menu-toggle span {
    width: 20px;
    height: 2px;

    background: var(--nf-heading);

    border-radius: 10px;

    transition: var(--nf-transition);
}

.nf-menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.nf-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nf-menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}

.nf-mobile-menu {
    display: none !important;

    padding: 0 0 20px;
}

.nf-mobile-menu nav {
    padding: 12px;

    background: #fff;

    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);

    box-shadow: var(--nf-shadow);
}

.nf-mobile-menu nav > a {
    display: flex;
    align-items: center;

    padding: 13px 14px;

    color: var(--nf-heading);

    border-radius: 9px;

    font-size: 14px;
    font-weight: 650;
}

.nf-mobile-menu nav > a:hover {
    color: var(--nf-orange-dark);

    background: var(--nf-orange-soft);
}

.nf-mobile-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    padding-top: 12px;
    margin-top: 8px;

    border-top: 1px solid var(--nf-border);
}


/* =========================================================
   HERO
========================================================= */

.nf-hero {
    padding: 24px 0 0;
}

.nf-hero-slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #ece7e2;

    border-radius: var(--nf-radius-lg);

    box-shadow: var(--nf-shadow);
}

.nf-main-swiper {
    width: 100%;

    overflow: hidden;
}

.nf-main-swiper .swiper-wrapper {
    align-items: stretch;
}

.nf-main-swiper .swiper-slide {
    height: auto;
}

.nf-hero-slide {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #ece7e2;
}

.nf-hero-image {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 1900 / 900;

    object-fit: cover;
    object-position: center;
}

.nf-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(28, 25, 23, 0.74) 0%,
            rgba(28, 25, 23, 0.40) 38%,
            rgba(28, 25, 23, 0.08) 68%,
            rgba(28, 25, 23, 0.02) 100%
        );

    pointer-events: none;
}

.nf-hero-content {
    position: absolute;

    z-index: 5;

    top: 50%;
    left: clamp(35px, 5vw, 90px);

    width: min(570px, 52%);

    transform: translateY(-50%);

    color: #fff;
}

.nf-hero-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 13px;

    padding: 7px 12px;

    color: #fff;

    background: rgba(249, 115, 22, 0.95);

    border-radius: 8px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.nf-hero-content h1 {
    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(34px, 4vw, 64px);
    font-weight: 850;
    line-height: 1.03;
    letter-spacing: -2px;

    text-shadow:
        0 4px 28px rgba(0, 0, 0, 0.24);
}

.nf-hero-button {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    min-height: 46px;

    padding: 12px 19px;

    color: var(--nf-orange-dark);

    background: #fff;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.17);
}

.nf-hero-slide:hover .nf-hero-button {
    color: #fff;

    background: var(--nf-orange);
}


/* Hero Navigation */

.nf-slider-arrow {
    position: absolute;

    z-index: 20;

    top: 50%;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--nf-heading);

    background: rgba(255, 255, 255, 0.93);

    border: 0;
    border-radius: 50%;

    font-size: 13px;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.14);

    transform: translateY(-50%);

    transition: var(--nf-transition);

    cursor: pointer;
}

.nf-slider-arrow:hover {
    color: #fff;

    background: var(--nf-orange);

    transform:
        translateY(-50%)
        scale(1.06);
}

.nf-slider-prev {
    left: 20px;
}

.nf-slider-next {
    right: 20px;
}

.nf-hero-pagination {
    bottom: 17px !important;
}

.nf-hero-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;

    background: #fff;

    opacity: 0.55;

    transition: var(--nf-transition);
}

.nf-hero-pagination .swiper-pagination-bullet-active {
    width: 25px;

    background: var(--nf-orange);

    border-radius: 10px;

    opacity: 1;
}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.nf-quick-actions {
    position: relative;
    z-index: 15;

    margin-top: -26px;
}

.nf-quick-grid {
    width: calc(100% - 100px);
    max-width: 1220px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.nf-quick-card {
    min-height: 102px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.98);

    border: 1px solid rgba(238, 231, 223, 0.95);
    border-radius: var(--nf-radius);

    box-shadow: var(--nf-shadow);

    backdrop-filter: blur(15px);

    transition: var(--nf-transition);
}

.nf-quick-card:hover {
    transform: translateY(-5px);

    border-color: #fed7aa;

    box-shadow: var(--nf-shadow-hover);
}

.nf-quick-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--nf-orange-dark);

    background: var(--nf-orange-light);

    border-radius: 14px;

    font-size: 19px;
}

.nf-quick-content {
    flex: 1;

    min-width: 0;
}

.nf-quick-content strong {
    display: block;

    margin-bottom: 3px;

    color: var(--nf-heading);

    font-size: 15px;
    font-weight: 800;
}

.nf-quick-content small {
    display: block;

    color: var(--nf-muted);

    font-size: 12px;
    line-height: 1.4;
}

.nf-quick-arrow {
    color: #b6aba2;

    font-size: 13px;

    transition: var(--nf-transition);
}

.nf-quick-card:hover .nf-quick-arrow {
    color: var(--nf-orange);

    transform: translateX(4px);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.nf-section {
    padding: 85px 0;
}

.nf-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 34px;
}

.nf-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 9px;

    color: var(--nf-orange-dark);

    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.nf-eyebrow::before {
    content: "";

    width: 21px;
    height: 2px;

    background: var(--nf-orange);

    border-radius: 10px;
}

.nf-section-header h2 {
    margin: 0;

    color: var(--nf-heading);

    font-size: clamp(30px, 3vw, 46px);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.nf-section-header p {
    max-width: 580px;

    margin: 11px 0 0;

    color: var(--nf-muted);

    font-size: 15px;
}

.nf-text-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--nf-orange-dark);

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;
}

.nf-text-link:hover {
    color: var(--nf-orange-deep);

    gap: 12px;
}


/* =========================================================
   BRANDS
========================================================= */

.nf-brands-section {
    overflow: hidden;

    padding-bottom: 60px;
}

.nf-brand-header-actions {
    display: flex;
    align-items: center;

    gap: 22px;
}

.nf-brand-navigation {
    display: flex;

    gap: 7px;
}

.nf-brand-prev,
.nf-brand-next {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--nf-heading);

    background: #fff;

    border: 1px solid var(--nf-border);
    border-radius: 10px;

    font-size: 12px;

    cursor: pointer;

    transition: var(--nf-transition);
}

.nf-brand-prev:hover,
.nf-brand-next:hover {
    color: #fff;

    background: var(--nf-orange);

    border-color: var(--nf-orange);
}

.nf-brand-prev.swiper-button-disabled,
.nf-brand-next.swiper-button-disabled {
    opacity: 0.35;

    cursor: default;
}

.nf-brands-swiper {
    width: 100%;

    overflow: hidden;
}

.nf-brands-swiper .swiper-wrapper {
    align-items: stretch;
}

.nf-brands-swiper .swiper-slide {
    height: auto;
}

.nf-brand-card {
    width: 100%;
    height: 100%;
    min-height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 20px 15px 15px;

    background: #fff;

    border: 1px solid var(--nf-border);
    border-radius: 16px;

    transition: var(--nf-transition);
}

.nf-brand-card:hover {
    transform: translateY(-5px);

    border-color: #fdba74;

    box-shadow: var(--nf-shadow);
}

.nf-brand-image {
    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.nf-brand-image img {
    max-width: 100%;
    max-height: 68px;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.nf-brand-card:hover .nf-brand-image img {
    transform: scale(1.04);
}

.nf-brand-name {
    display: block;

    width: 100%;

    overflow: hidden;

    color: var(--nf-heading);

    font-size: 12px;
    font-weight: 750;

    text-align: center;
    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   PROMO GRID
========================================================= */

.nf-promo-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 14px;

    min-height: 520px;
}

.nf-promo-card {
    position: relative;

    min-height: 100%;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background-size: cover;
    background-position: center;

    border-radius: var(--nf-radius);

    transition: var(--nf-transition);
}

.nf-promo-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--nf-shadow-hover);
}

.nf-promo-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(22, 15, 9, 0.02) 10%,
            rgba(22, 15, 9, 0.76) 100%
        );

    transition: var(--nf-transition);
}

.nf-promo-card:hover .nf-promo-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(22, 15, 9, 0.05) 5%,
            rgba(22, 15, 9, 0.84) 100%
        );
}

.nf-promo-content {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 32px;

    color: #fff;
}

.nf-promo-content h3 {
    max-width: 500px;

    margin: 7px 0 10px;

    color: #fff;

    font-size: clamp(27px, 3vw, 43px);
    font-weight: 850;
    line-height: 1.05;
}

.nf-promo-content p {
    max-width: 470px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 14px;
}

.nf-promo-badge {
    display: inline-flex;

    padding: 6px 10px;

    color: #fff;

    background: var(--nf-orange);

    border-radius: 7px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.nf-promo-button {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #fff;

    font-size: 13px;
    font-weight: 800;
}

.nf-catalogue {
    background:
        linear-gradient(
            135deg,
            #431407 0%,
            #9a3412 45%,
            #f97316 100%
        );
}

.nf-catalogue::before {
    content: "\f02d";

    position: absolute;

    top: 50%;
    right: -35px;

    color: rgba(255, 255, 255, 0.07);

    font-family: "Font Awesome 6 Free";
    font-size: 300px;
    font-weight: 900;

    transform:
        translateY(-50%)
        rotate(-8deg);
}

.nf-shop-card {
    min-height: 100%;
}

.nf-trade-card {
    background:
        linear-gradient(
            145deg,
            #292524,
            #57534e
        );
}

.nf-trade-card::before {
    content: "\f468";

    position: absolute;

    top: 50%;
    right: -15px;

    color: rgba(255, 255, 255, 0.06);

    font-family: "Font Awesome 6 Free";
    font-size: 190px;
    font-weight: 900;

    transform: translateY(-50%);
}


/* =========================================================
   VIDEO
========================================================= */

.nf-video-section {
    background: #fff;
}

.nf-video-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.nf-video-card {
    position: relative;

    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-size: cover;
    background-position: center;

    border-radius: var(--nf-radius-lg);
}

.nf-video-overlay {
    position: absolute;

    inset: 0;

    background: rgba(24, 15, 9, 0.27);

    transition: var(--nf-transition);
}

.nf-video-card:hover .nf-video-overlay {
    background: rgba(24, 15, 9, 0.39);
}

.nf-play {
    position: relative;
    z-index: 2;

    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-left: 4px;

    color: var(--nf-orange-dark);

    background: #fff;

    border-radius: 50%;

    font-size: 22px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.23);

    transition: var(--nf-transition);
}

.nf-video-card:hover .nf-play {
    color: #fff;

    background: var(--nf-orange);

    transform: scale(1.08);
}

.nf-video-label {
    position: absolute;

    z-index: 2;

    left: 28px;
    bottom: 25px;

    color: #fff;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   RECIPES
========================================================= */

.nf-recipes-section {
    background: var(--nf-cream);
}

.nf-recipes-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.nf-recipe-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);

    transition: var(--nf-transition);
}

.nf-recipe-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--nf-shadow-hover);
}

.nf-recipe-image {
    position: relative;

    display: block;

    overflow: hidden;

    aspect-ratio: 1.35 / 1;

    background: #eee7df;
}

.nf-recipe-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.nf-recipe-card:hover .nf-recipe-image img {
    transform: scale(1.05);
}

.nf-recipe-view {
    position: absolute;

    right: 17px;
    bottom: 17px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    color: #fff;

    background: rgba(28, 25, 23, 0.82);

    border-radius: 9px;

    backdrop-filter: blur(10px);

    font-size: 11px;
    font-weight: 750;
}

.nf-recipe-content {
    padding: 20px;
}

.nf-recipe-label {
    display: block;

    margin-bottom: 5px;

    color: var(--nf-orange-dark);

    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.nf-recipe-content h3 {
    margin: 0;

    color: var(--nf-heading);

    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.nf-recipe-content h3 a:hover {
    color: var(--nf-orange-dark);
}

.nf-center-action {
    display: flex;
    justify-content: center;

    margin-top: 35px;
}


/* =========================================================
   TRADE CTA
========================================================= */

.nf-cta {
    padding: 0 0 80px;

    background: var(--nf-cream);
}

.nf-cta-inner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    overflow: hidden;

    padding: 47px 55px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #9a3412 0%,
            #ea580c 55%,
            #f97316 100%
        );

    border-radius: var(--nf-radius-lg);
}

.nf-cta-inner::after {
    content: "";

    position: absolute;

    top: -140px;
    right: -90px;

    width: 370px;
    height: 370px;

    border:
        70px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}

.nf-cta-inner > * {
    position: relative;
    z-index: 2;
}

.nf-cta-inner span {
    display: block;

    margin-bottom: 4px;

    color: #fed7aa;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.nf-cta-inner h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
}

.nf-cta-inner p {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.82);
}

.nf-cta-actions {
    display: flex;

    gap: 9px;

    flex: 0 0 auto;
}


/* =========================================================
   FOOTER
========================================================= */

.nf-footer {
    color: #d6d3d1;

    background: #1c1917;
}

.nf-footer-top {
    display: grid;

    grid-template-columns: 2fr repeat(3, 1fr);

    gap: 60px;

    padding: 75px 0 60px;
}


/* Footer Brand */

.nf-footer-logo {
    display: inline-block;

    margin-bottom: 23px;

    padding: 14px 20px;

    background: #fff;

    border-radius: 12px;
}

.nf-footer-logo img {
    width: auto;
    max-width: 190px;
    max-height: 65px;

    object-fit: contain;
}

.nf-footer-brand p {
    max-width: 420px;

    margin: 0;

    color: #bdb8b4;

    font-size: 14px;
    font-weight: 450;
    line-height: 1.75;
}


/* Footer Social */

.nf-footer-social {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}

.nf-footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: #292524;

    border: 1px solid #44403c;
    border-radius: 10px;

    font-size: 16px;

    transition: var(--nf-transition);
}

.nf-footer-social a:hover {
    color: #fff;

    background: var(--nf-orange);

    border-color: var(--nf-orange);

    transform: translateY(-3px);
}


/* Footer Columns */

.nf-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
}

.nf-footer-column h4 {
    position: relative;

    margin: 0 0 16px;
    padding-bottom: 11px;

    color: #fff;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.nf-footer-column h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    background: var(--nf-orange);

    border-radius: 20px;
}


/* Footer Links */

.nf-footer-column a {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 3px 0;

    color: #d6d3d1;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;

    transition: var(--nf-transition);
}

.nf-footer-column a::before {
    content: "";

    width: 0;
    height: 2px;

    flex: 0 0 auto;

    background: var(--nf-orange);

    border-radius: 20px;

    transition: var(--nf-transition);
}

.nf-footer-column a:hover {
    color: #fff;

    transform: translateX(4px);
}

.nf-footer-column a:hover::before {
    width: 13px;
}


/* Footer Bottom */

.nf-footer-bottom {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #3b3734;
}

.nf-footer-bottom p {
    margin: 0;

    color: #a8a29e;

    font-size: 13px;
    font-weight: 500;
}

.nf-footer-bottom strong {
    color: #e7e5e4;

    font-weight: 700;
}

.nf-footer-note {
    text-align: right;
}


/* =========================================================
   SWIPER GENERAL
========================================================= */

.swiper {
    min-width: 0;
    max-width: 100%;
}

.swiper-wrapper {
    min-width: 0;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .nf-header-inner {
        min-height: 92px;
    }

    .nf-hero-content {
        width: 620px;
    }

    .nf-quick-grid {
        max-width: 1300px;
    }

}


/* =========================================================
   TABLET + MOBILE
   IMPORTANT: RESPONSIVE HEADER FIX
========================================================= */

@media (max-width: 1199.98px) {

    .nf-appbar {
        display: block;
    }

    .nf-nav {
        display: none !important;
    }

    .nf-header-actions {
        display: none !important;
    }

    .nf-menu-toggle {
        display: flex !important;
    }

    .nf-mobile-menu {
        display: none !important;
    }

    .nf-mobile-menu.active {
        display: block !important;
    }

    .nf-header-inner {
        min-height: 76px;
    }

    .nf-logo img {
        max-width: 175px;
        max-height: 54px;
    }

    .nf-promo-grid {
        grid-template-columns: 1.4fr 1fr;

        min-height: auto;
    }

    .nf-promo-grid > :first-child {
        grid-row: span 2;

        min-height: 520px;
    }

    .nf-promo-grid > :nth-child(2),
    .nf-promo-grid > :nth-child(3) {
        min-height: 253px;
    }

    .nf-footer-top {
        grid-template-columns: 2fr 1fr 1fr;

        gap: 40px;
    }

    .nf-footer-column:last-child {
        grid-column: 2;
    }

}


/* =========================================================
   <= 1399
========================================================= */

@media (min-width: 1200px) and (max-width: 1399.98px) {

    .nf-container {
        padding-left: 26px;
        padding-right: 26px;
    }

    .nf-nav > a {
        padding-left: 10px;
        padding-right: 10px;

        font-size: 13px;
    }

    .nf-promo-grid {
        grid-template-columns: 1.7fr 1fr 1fr;
    }

}


/* =========================================================
   <= 991
========================================================= */

@media (max-width: 991.98px) {

    .nf-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nf-section {
        padding: 65px 0;
    }

    .nf-quick-actions {
        margin-top: 18px;
    }

    .nf-quick-grid {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .nf-quick-card {
        min-height: 88px;
    }

    .nf-hero-content {
        left: 50px;

        width: 55%;
    }

    .nf-hero-content h1 {
        font-size: 38px;
    }

    .nf-slider-arrow {
        width: 44px;
        height: 44px;
    }

    .nf-promo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nf-promo-grid > :first-child {
        grid-column: 1 / -1;
        grid-row: auto;

        min-height: 390px;
    }

    .nf-promo-grid > :nth-child(2),
    .nf-promo-grid > :nth-child(3) {
        min-height: 320px;
    }

    .nf-video-card {
        min-height: 350px;
    }

    .nf-footer-top {
        grid-template-columns: 2fr 1fr 1fr;

        gap: 40px;
    }

}


/* =========================================================
   <= 767
========================================================= */

@media (max-width: 767.98px) {

    body {
        font-size: 14px;
    }

    .nf-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nf-header-inner {
        min-height: 68px;
    }

    .nf-logo img {
        max-width: 145px;
        max-height: 48px;
    }


    /* Hero */

    .nf-hero {
        padding-top: 12px;
    }

    .nf-hero-slider {
        border-radius: 16px;
    }

    .nf-hero-image {
        min-height: 290px;

        aspect-ratio: 16 / 9;

        object-fit: cover;
    }

    .nf-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(28, 25, 23, 0.76) 0%,
                rgba(28, 25, 23, 0.48) 55%,
                rgba(28, 25, 23, 0.15) 100%
            );
    }

    .nf-hero-content {
        left: 24px;

        width: calc(100% - 95px);
    }

    .nf-hero-eyebrow {
        margin-bottom: 8px;

        padding: 5px 9px;

        font-size: 9px;
    }

    .nf-hero-content h1 {
        margin-bottom: 15px;

        font-size: 30px;
        letter-spacing: -1px;
    }

    .nf-hero-button {
        min-height: 40px;

        padding: 10px 14px;

        font-size: 11px;
    }

    .nf-slider-arrow {
        width: 38px;
        height: 38px;

        font-size: 11px;
    }

    .nf-slider-prev {
        left: 10px;
    }

    .nf-slider-next {
        right: 10px;
    }

    .nf-hero-pagination {
        bottom: 10px !important;
    }


    /* Sections */

    .nf-section {
        padding: 52px 0;
    }

    .nf-section-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 15px;

        margin-bottom: 24px;
    }

    .nf-section-header h2 {
        font-size: 31px;

        letter-spacing: -1px;
    }


    /* Brands */

    .nf-brand-header-actions {
        width: 100%;

        justify-content: space-between;

        gap: 12px;
    }

    .nf-brand-card {
        min-height: 128px;

        padding: 16px 10px 12px;
    }

    .nf-brand-image {
        height: 62px;
    }

    .nf-brand-image img {
        max-height: 58px;
    }


    /* Promo */

    .nf-promo-grid {
        grid-template-columns: 1fr;
    }

    .nf-promo-grid > :first-child,
    .nf-promo-grid > :nth-child(2),
    .nf-promo-grid > :nth-child(3) {
        grid-column: auto;

        min-height: 340px;
    }

    .nf-promo-content {
        padding: 24px;
    }

    .nf-promo-content h3 {
        font-size: 31px;
    }


    /* Videos */

    .nf-video-grid {
        grid-template-columns: 1fr;
    }

    .nf-video-card {
        min-height: 320px;
    }


    /* Recipes */

    .nf-recipes-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* CTA */

    .nf-cta {
        padding-bottom: 45px;
    }

    .nf-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        padding: 35px 28px;
    }

    .nf-cta-actions {
        width: 100%;
    }

    .nf-cta-actions .nf-btn {
        flex: 1;
    }


    /* Footer */

    .nf-footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 42px 25px;

        padding: 55px 0 40px;
    }

    .nf-footer-brand {
        grid-column: 1 / -1;
    }

    .nf-footer-column:last-child {
        grid-column: auto;
    }

    .nf-footer-column h4 {
        font-size: 15px;
    }

    .nf-footer-column a {
        font-size: 14px;
    }

    .nf-footer-bottom {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 5px;

        padding: 20px 0;
    }

    .nf-footer-note {
        text-align: left;
    }

}


/* =========================================================
   <= 575
========================================================= */

@media (max-width: 575.98px) {

    .nf-appbar-title {
        display: none;
    }

    .nf-appbar-inner {
        justify-content: center;
    }

    .nf-mobile-actions {
        grid-template-columns: 1fr;
    }


    /* Hero */

    .nf-hero-image {
        min-height: 255px;
    }

    .nf-hero-content {
        left: 20px;

        width: calc(100% - 74px);
    }

    .nf-hero-content h1 {
        font-size: 26px;
        line-height: 1.08;
    }

    .nf-slider-arrow {
        width: 34px;
        height: 34px;
    }


    /* Quick */

    .nf-quick-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

    .nf-quick-content strong {
        font-size: 14px;
    }


    /* Section */

    .nf-section-header h2 {
        font-size: 28px;
    }

    .nf-brand-header-actions {
        align-items: flex-end;
    }

    .nf-brand-navigation {
        flex: 0 0 auto;
    }


    /* Promo */

    .nf-promo-grid > :first-child,
    .nf-promo-grid > :nth-child(2),
    .nf-promo-grid > :nth-child(3) {
        min-height: 300px;
    }


    /* Recipes */

    .nf-recipes-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .nf-cta-actions {
        flex-direction: column;
    }


    /* Footer */

    .nf-footer-top {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 390px) {

    .nf-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .nf-logo img {
        max-width: 130px;
    }

    .nf-hero-image {
        min-height: 235px;
    }

    .nf-hero-content {
        left: 17px;

        width: calc(100% - 62px);
    }

    .nf-hero-content h1 {
        font-size: 23px;
    }

    .nf-hero-button {
        padding: 9px 11px;
    }

    .nf-slider-prev {
        left: 6px;
    }

    .nf-slider-next {
        right: 6px;
    }

    .nf-brand-prev,
    .nf-brand-next {
        width: 36px;
        height: 36px;
    }


    /* Footer */

    .nf-footer-top {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .nf-footer-brand {
        grid-column: auto;
    }

    .nf-footer-column h4 {
        margin-bottom: 8px;

        font-size: 16px;
    }

    .nf-footer-column a {
        font-size: 14px;
    }

}


