/**
 * Homepage blocking ATF bundle (single request for LCP).
 * Sources: index2-critical.css + fed-alterations-atf.css + index2-legacy-atf.css
 * Rebuild: php artisan front:build-index2-atf-css
 */

/* === index2-critical.css === */
/**
 * Above-the-fold layout stability (CLS Phase 1) + critical header shell (Phase 2).
 * Only blocking stylesheet on the homepage — everything else loads async.
 */
:root {
    --fed-contact-bar-height: 0px;
    --header-height: 170px;
    --fed-megabar-height: 56px;
    --admin-quick-bar-height: 0px;
    --fed-banner-height: clamp(400px, 70vh, 680px);
}

html.has-admin-quick-bar {
    --admin-quick-bar-height: 44px;
}

@media (max-width: 991px) {
    :root {
        --header-height: 220px;
        --fed-banner-height: clamp(360px, 55vh, 520px);
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 240px;
        --fed-megabar-height: 58px;
        --fed-banner-height: 340px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    line-height: 1.5;
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    overflow-x: hidden;
    padding-top: calc(var(--header-height, 170px) + var(--admin-quick-bar-height, 0px)) !important;
}

/* Compact header on scroll — logo row collapses; contact bar only collapses on mobile */
.header_main,
.fed-contact-bar.header_main_dollar {
    transition: max-height 200ms ease, opacity 150ms ease, padding 200ms ease;
    max-height: 500px;
    opacity: 1;
}

html.fed-pdp-compact-header .header_main {
    max-height: 0 !important;
    opacity: 0;
    overflow: hidden !important;
    pointer-events: none;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    min-height: 0 !important;
}

@media (max-width: 1280px) {
    html.fed-pdp-compact-header .fed-contact-bar.header_main_dollar {
        max-height: 0 !important;
        opacity: 0;
        overflow: hidden !important;
        pointer-events: none;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        min-height: 0 !important;
    }
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container-fluid {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.v-center,
.align-items-center {
    align-items: center;
}

.d-flex {
    display: flex;
}

/* Admin bar */
.admin-quick-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10050;
    background: #111;
    color: #fff;
    padding: 6px 14px;
}

/* Contact bar (inside fixed header) */
.fed-contact-bar.header_main_dollar.foodservice_pad_lr {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    z-index: 1;
    background: #f2f2f2;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    width: 100%;
    margin: 0;
    min-height: 32px;
}

.header_main_dollar .contact-info-sec {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 6px 0;
}

.header_main_dollar .fed-contact-left {
    justify-content: flex-start;
}

.header_main_dollar .fed-contact-center {
    justify-content: center;
    text-align: center;
}

.header_main_dollar .fed-contact-right {
    justify-content: flex-end;
}

/* Fixed header — contact bar is the first row inside <header> */
header {
    position: fixed !important;
    top: var(--admin-quick-bar-height, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2000 !important;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin: 0 !important;
    padding: 0 !important;
}

header .header_sec,
header .header_main {
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: visible !important;
}

header .header_main {
    position: relative;
    z-index: 1002;
    overflow: visible !important;
}

header .header_megabar {
    position: relative;
    z-index: 2;
}

@media (max-width: 1280px) {
    header .header_megabar {
        z-index: 3000;
    }

    header .header_main {
        z-index: 1000;
    }

    header:has(.menu.active) .header_main {
        visibility: hidden;
        pointer-events: none;
    }
}

.fed-header {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 4px 20px !important;
    min-height: 0;
}

.fed-logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.fed-logo a img {
    height: 72px;
    width: auto;
    display: block;
}

.fed-search-wrapper {
    flex: 1;
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: stretch;
    overflow: visible !important;
}

.fed-search-wrapper input {
    flex: 1;
    width: 100% !important;
    min-width: 0;
    height: 40px;
    box-sizing: border-box;
    padding-left: 14px !important;
    padding-right: 14px !important;
    float: none !important;
    border-radius: 20px !important;
}

.compare_sec {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
}

.compare_sec .icon-box p {
    margin: 0;
    min-height: 1.2em;
    font-size: 12px;
    line-height: 1.2;
}

.compare_sec .icon-box::before,
.compare_sec .icon-box::after {
    content: none !important;
    display: none !important;
}

.header_megabar {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    background: #000;
    color: #fff;
    min-height: var(--fed-megabar-height, 56px);
    height: var(--fed-megabar-height, 56px);
    max-height: var(--fed-megabar-height, 56px);
    overflow: visible;
}

.header_megabar.foodservice_pad_lr {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 80px;
    padding-right: 80px;
}

.header_megabar .row.v-center {
    display: flex;
    align-items: center;
}

.header_megabar ul.menu-main,
.header_megabar .menu > ul.menu-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header_megabar .menu {
    width: 100%;
}

.header_megabar .item-center {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    order: 1;
}

.header_megabar .item-search,
.fed-search-mobile {
    display: none;
}

.header_megabar .item-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    height: 100%;
    order: 2;
}

.fed-header .fed-search-desktop {
    flex: 1;
    min-width: 0;
}

.header_megabar .menu > ul > li {
    display: inline-block;
    line-height: 1.4;
    margin-left: 24px;
}

.header_megabar .menu > ul > li > a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.4;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    vertical-align: middle;
}

/* Keep mega menu panels out of document flow before deferred index2-home.css loads (mobile only) */
@media (max-width: 991px) {
    .header_megabar .menu > ul > li {
        position: relative;
    }

    .header_megabar .menu > ul > li .sub-menu {
        position: absolute;
        z-index: 500;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
    }

    .header_megabar .menu > ul > li .sub-menu img {
        max-width: 120px;
        height: auto;
    }
}

/* Desktop mega menu — blocking so hover layout works before deferred index2-home.css */
@media (min-width: 992px) {
    .header_megabar .menu {
        position: relative;
    }

    .header_megabar .menu > ul > li .sub-menu {
        position: absolute;
        z-index: 500;
        background-color: #ffffff;
        box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
        padding: 20px 30px;
        transition: all 0.5s ease;
        margin-top: 25px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .header_megabar .menu > ul > li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu {
        left: 50%;
        transform: translateX(-50%);
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu .list-item > ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu .list-item > ul > li {
        line-height: 1.2;
        display: block;
        margin: 0;
        padding: 0;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu .list-item > ul > li > a {
        padding: 4px 0 !important;
        display: block;
        font-size: 15px;
        line-height: 1.3;
        color: #555555;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-4 {
        max-width: 100%;
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        padding: 20px 15px;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
        flex: 0 0 16%;
        padding: 0 10px;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-6,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-7,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-8 {
        max-width: 100%;
        width: 95%;
        display: flex;
        flex-wrap: nowrap;
        padding: 20px 15px;
        align-items: flex-start;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-6 > .mega-menu-column,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-7 > .mega-menu-column,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-8 > .mega-menu-column {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 6px;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-6 > .mega-menu-column > .list-item,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-7 > .mega-menu-column > .list-item,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-8 > .mega-menu-column > .list-item {
        padding: 0 0 18px;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-6 > .mega-menu-column > .list-item:last-child,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-7 > .mega-menu-column > .list-item:last-child,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-8 > .mega-menu-column > .list-item:last-child {
        padding-bottom: 0;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-6 > .mega-menu-column > .list-item .title,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-7 > .mega-menu-column > .list-item .title,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-8 > .mega-menu-column > .list-item .title {
        font-size: 16px;
        color: #377dff;
        font-weight: 500;
        line-height: 1;
        padding: 10px 0;
    }

    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-6 > .mega-menu-column > .list-item img,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-7 > .mega-menu-column > .list-item img,
    .header_megabar .menu > ul > li .sub-menu.mega-menu-column-8 > .mega-menu-column > .list-item img {
        max-width: 100%;
        width: 100%;
        height: 130px;
        object-fit: contain;
        margin: 8px 0 10px;
    }
}

.header_megabar .mobile-menu-trigger {
    display: none;
}

@media (max-width: 1280px) {
    .fed-header .fed-search-desktop {
        display: none !important;
    }

    .header_megabar .item-search {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        max-width: none;
        min-width: 0;
        order: 1;
    }

    .fed-search-mobile {
        display: flex !important;
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        height: 36px;
        min-height: 36px;
    }

    .header_megabar .fed-search-mobile input {
        height: 36px;
        background: #fff;
        border: none;
    }
}

@media (max-width: 991px) {
    .header_megabar .row.v-center {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
        height: 100%;
        gap: 12px;
        align-items: center;
    }

    .header_megabar .item-center {
        flex: 0 0 0;
        width: 0;
        min-width: 0;
        max-width: 0;
        overflow: visible;
        margin: 0;
        padding: 0;
        order: 2;
    }

    .header_megabar .item-right {
        flex: 0 0 auto;
        max-width: none;
        width: auto;
        min-width: 0;
        height: 100%;
        padding: 0;
        order: 3;
        align-items: center;
    }

    .header_megabar .menu > ul > li {
        display: none;
    }

    .header_megabar .mobile-menu-trigger {
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        align-self: center;
        width: 30px;
        height: 30px;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

    .header_megabar .mobile-menu-trigger span,
    .header_megabar .mobile-menu-trigger span::before,
    .header_megabar .mobile-menu-trigger span::after {
        display: block;
        height: 3px;
        background: #fff;
        border-radius: 2px;
    }

    .header_megabar .mobile-menu-trigger span {
        position: relative;
        width: 24px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .header_megabar .mobile-menu-trigger span::before,
    .header_megabar .mobile-menu-trigger span::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
    }

    .header_megabar .mobile-menu-trigger span::before {
        top: -8px;
    }

    .header_megabar .mobile-menu-trigger span::after {
        top: 8px;
    }

    .fed-logo a img {
        height: 52px;
    }
}

@media (max-width: 767px) {
    .fed-contact-bar.header_main_dollar.foodservice_pad_lr {
        display: none !important;
    }

    .fed-header {
        flex-wrap: nowrap;
        padding: 4px 16px 0 !important;
        min-height: 0;
        gap: 0;
    }

    .fed-logo a img {
        height: 52px;
    }

    .header_megabar .fed-search-wrapper {
        height: 36px;
        min-height: 36px;
    }

    .header_megabar .fed-search-wrapper input {
        height: 36px;
    }

    .compare_sec .icon-box p {
        display: none;
    }
}

.fed-contact-bar .contact-info-sec li span img {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.banner-slider .banner-slide-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-slider .banner-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Stable hero — fixed-height CSS carousel (no Owl DOM restructure = no CLS) */
.banner-slider {
    display: block;
    position: relative;
    width: 100%;
    height: var(--fed-banner-height);
    min-height: var(--fed-banner-height);
    max-height: var(--fed-banner-height);
    overflow: hidden;
    contain: layout style paint;
}

.banner-slider__viewport {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slider__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-left: 80px;
    color: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.banner-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    pointer-events: auto;
}

.banner-slider__dots {
    display: none !important;
}

.banner-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.banner-slider__dot.is-active {
    background: #fff;
}

.banner-slider .fed-slide-3 .overlay {
    background: rgba(130, 32, 20, 0.58);
}

.fed-slider-deals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.fed-slider-deal-card {
    min-width: 118px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.fed-slider-deal-card strong,
.fed-slider-deal-card span {
    display: block;
}

.fed-slider-deal-card strong {
    font-size: 12px;
    line-height: 1.2;
}

.fed-slider-deal-card del {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.fed-slider-deal-card span {
    margin-top: 2px;
    font-size: 17px;
    font-weight: 900;
}

.fed-slider-pill {
    gap: 6px;
    min-height: 32px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

a.fed-slider-pill {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

a.fed-slider-pill:hover,
a.fed-slider-pill:focus-visible {
    background: rgba(255, 255, 255, 0.32);
    color: #fff;
    text-decoration: none;
}

.banner-slider__slide > .overlay,
.banner-slider .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.banner-slider .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: min(58vw, 880px);
    max-width: 880px;
    padding: 40px;
    box-sizing: border-box;
}

.banner-slider .banner-content h1,
.banner-slider .banner-content .banner-slide-title {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.15;
}

.banner-slider .banner-content .banner-slide-title {
    font-size: inherit;
}

.banner-slider .banner-content p {
    font-size: 18px;
    margin: 0 0 25px;
    line-height: 1.45;
}

.banner-logo {
    display: block;
    width: 180px;
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
}

.fed-slider-kicker {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.fed-slider-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
}

.fed-slider-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .banner-slider__slide {
        padding-left: 20px;
        justify-content: center;
    }

    .banner-slider .banner-content {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        text-align: center;
    }

    .fed-slider-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-slider .banner-content h1 {
        font-size: 28px;
    }

    .banner-slider .banner-content p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .banner-slider .banner-content {
        width: 100%;
        max-width: 780px;
    }

    .fed-slider-actions {
        flex-wrap: wrap;
    }
}

/* === fed-alterations-atf.css === */
﻿/**
 * Homepage ATF extras — rules NOT in index2-critical.css or blocking style.css.
 * Layout lives in blocking style.css + responsive.css (design lock).
 * Rebuild: php artisan front:build-index2-atf-css
 */

/* Search autocomplete dropdown */
.fed-search-wrapper {
    position: relative;
    overflow: visible !important;
}

.serch-result {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2011;
    background: #fff;
    width: 100%;
    padding: 15px 15px 7px;
    border: 1px solid #e0e0e0;
    border-top: 0;
    max-height: 500px;
    overflow: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.serch-result.d-none {
    display: none !important;
}

.serch-result:not(.d-none) {
    display: block !important;
}

.fed-search-wrapper .serch-result .s-r-inner {
    max-height: 380px;
    overflow-y: auto;
}

.fed-search-wrapper .serch-result .product-card.p-col,
.fed-search-wrapper .serch-result a.search-suggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 7px;
    padding: 7px 4px;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

.fed-search-wrapper .serch-result .product-card.p-col:last-child,
.fed-search-wrapper .serch-result a.search-suggest-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.fed-search-wrapper .serch-result a.search-suggest-item:hover {
    background: #f5f5f5;
    text-decoration: none !important;
    color: inherit;
}

.fed-search-wrapper .serch-result .product-card .product-thumb {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
}

.fed-search-wrapper .serch-result .product-card .product-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
}

.fed-search-wrapper .serch-result .product-card-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.fed-search-wrapper .serch-result .product-title {
    display: block;
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.35;
    color: #0d6efd;
}

.fed-search-wrapper .serch-result .product-price {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

@media (max-width: 768px) {
    .serch-result {
        left: 0;
        width: 100%;
    }
}

/* Bottom notice — blocking so deferred index2-home.css does not shift layout */
body.has-home-notice {
    padding-bottom: 52px !important;
}

@media (max-width: 576px) {
    body.has-home-notice {
        padding-bottom: 76px !important;
    }
}

.fed-home-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
}

.fed-home-notice .fed-home-notice__inner.foodservice_pad_lr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
    max-width: 100%;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.fed-home-notice__content {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}

.fed-home-notice__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.fed-home-notice__text {
    display: block;
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.fed-home-notice__dismiss {
    flex: 0 0 auto;
    margin: 0;
    padding: 4px 0;
    border: none;
    background: transparent;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    text-decoration: underline;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .fed-home-notice .fed-home-notice__inner.foodservice_pad_lr {
        flex-wrap: wrap;
    }

    .fed-home-notice__content {
        flex: 1 1 100%;
    }

    .fed-home-notice__dismiss {
        margin-left: auto;
    }
}

/* Product card buttons — blocking so colors show before deferred fed-alterations.css */
#food_deals_of_the_week .fed-home-deals-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    overflow: visible;
    align-items: stretch;
}

#food_deals_of_the_week .fed-home-deals-row .product-card {
    flex: unset;
    max-width: 100%;
    min-width: 0;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
}

#food_deals_of_the_week .product-card .card_bg_fig {
    flex-shrink: 0;
    width: 100%;
    border-radius: 12px 12px 0 0;
}

#food_deals_of_the_week .product-card h5 {
    flex: 1 1 auto;
    min-height: 4.05em;
    margin: 12px 15px 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

#food_deals_of_the_week .product-card h5 a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#food_deals_of_the_week .product-card .actions,
.food_services_category_item .product-card .actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 15px 15px;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    #food_deals_of_the_week .fed-home-deals-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

#food_deals_of_the_week .product-card .actions .action-btn,
.food_services_category_item .product-card .actions .action-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff !important;
    text-decoration: none !important;
    border: 0;
}

#food_deals_of_the_week .product-card .actions .action-buy,
.food_services_category_item .product-card .actions .action-buy {
    background-color: #39b54a;
}

#food_deals_of_the_week .product-card .actions .action-quote,
.food_services_category_item .product-card .actions .action-quote {
    background-color: #0b5ed7;
}

#food_deals_of_the_week .product-card .actions .action-compare,
.food_services_category_item .product-card .actions .action-compare {
    background-color: #c62828;
}

#food_deals_of_the_week .product-card .actions button.action-btn,
.food_services_category_item .product-card .actions button.action-btn {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* === index2-legacy-atf.css === */
/**
 * Minimal legacy subset — blocking style.css/responsive.css own layout rules.
 * Keep only megabar/menu helpers not duplicated in style.css.
 */

.foodservice_pad_lr {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

ul.menu-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header_megabar .menu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header_megabar .menu > ul > li {
    margin-left: 0;
    padding: 0;
}

@media (max-width: 991px) {
    .foodservice_pad_lr {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media (max-width: 767px) {
    .foodservice_pad_lr {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
