/* New homepage – ChefsBuddy hero */

/* Scroll fade-in */
@keyframes cb-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.stf-fade-init .stf-fade-group > * {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
}

.stf-fade-init .stf-fade-group.is-visible > * {
    animation: cb-fade-up 0.7s ease both;
}

.stf-fade-init .stf-fade-group.is-visible > *:nth-child(1) { animation-delay: 0.1s; }
.stf-fade-init .stf-fade-group.is-visible > *:nth-child(2) { animation-delay: 0.2s; }
.stf-fade-init .stf-fade-group.is-visible > *:nth-child(3) { animation-delay: 0.3s; }
.stf-fade-init .stf-fade-group.is-visible > *:nth-child(4) { animation-delay: 0.4s; }
.stf-fade-init .stf-fade-group.is-visible > *:nth-child(5) { animation-delay: 0.5s; }
.stf-fade-init .stf-fade-group.is-visible > *:nth-child(6) { animation-delay: 0.6s; }
.stf-fade-init .stf-fade-group.is-visible > *:nth-child(7) { animation-delay: 0.7s; }
.stf-fade-init .stf-fade-group.is-visible > *:nth-child(8) { animation-delay: 0.8s; }

@media (prefers-reduced-motion: reduce) {
    .stf-fade-init .stf-fade-group > * {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

html:has(.stf-home-page),
.stf-home-page {
    margin: 0;
    background: #fff;
    overflow-x: clip;
    max-width: 100%;
}

/* Hero */
.cb-hero {
    position: relative;
    z-index: 1;
    overflow: visible;
    background: linear-gradient(180deg, #FAF0F2 0%, #F5F5FA 50%, #FFFFFF 100%);
}

.cb-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(32px, 4vw, 45px) clamp(20px, 4vw, 40px) clamp(24px, 3vw, 32px);
    padding-right: min(42%, 560px);
    box-sizing: border-box;
}

.cb-hero__content {
    position: relative;
    min-width: 0;
    max-width: 630px;
}

.cb-hero__badge {
    display: inline-block;
    margin-bottom: clamp(20px, 3vw, 38px);
    padding: clamp(5px, 1vw, 6px) clamp(14px, 2vw, 16px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(11px, 1vw + 0.25rem, 12px);
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 16px;
    text-transform: uppercase;
    color: #971843;
    background: #97184315;
    border-radius: 33554400px;
}

.cb-hero__title {
    margin-bottom: clamp(8px, 1.5vw, 12px);
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    font-size: clamp(36px, 5vw + 1rem, 64px);
    margin-top: 0px;
}

.cb-hero__title-line {
    display: block;
    color: #172A54;
}

.cb-hero__title-line--accent {
    color: #971843;
}

.cb-hero__lead {
    margin-bottom: clamp(12px, 2vw, 16px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(16px, 1.5vw + 0.5rem, 18px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0;
    color: #172A54;
}

.cb-hero__desc {
    margin-bottom: clamp(24px, 3vw, 32px);
}

.cb-hero__desc p {
    margin: 0 0 clamp(12px, 2vw, 16px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(14px, 1vw + 0.5rem, 16px);
    font-weight: 400;
    line-height: 1.5;
    color: #78787B;
}

.cb-hero__desc p:last-child {
    margin-bottom: 0;
}

.cb-hero__highlight {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 16px);
    margin: 0 0 clamp(24px, 3vw, 40px);
    padding: clamp(10px, 2vw, 12px) clamp(16px, 3vw, 20px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 1vw + 0.5rem, 14px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    color: #172a54;
    background: #172A5406;
    border: 1px solid #172A5412;
    border-radius: 16px;
    box-sizing: border-box;
}

.cb-hero__highlight::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: clamp(28px, 4vw, 32px);
    background: #971843;
    border-radius: 33554400px;
}

.cb-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 12px) clamp(12px, 2vw, 16px);
    margin-bottom: clamp(24px, 3vw, 40px);
}

.cb-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(44px, 6vw, 46px);
    padding: clamp(12px, 2vw, 14px) clamp(24px, 3vw, 28px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 1vw + 0.5rem, 14px);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    border-radius: 14px;
}

.cb-hero__btn--primary {
    color: #FFFFFF;
    background: #172A54;
    border: 1px solid #172A54;
}

.cb-hero__btn--primary:hover,
.cb-hero__btn--primary:focus {
    background: #0d1636;
    border-color: #0d1636;
    color: #fff;
}

.cb-hero__btn--outline {
    color: #971843;
    background: #fff;
    border: 2px solid #971843;
}

.cb-hero__btn--outline:hover,
.cb-hero__btn--outline:focus {
    background: #971843;
    color: #fff;
}

.cb-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 36px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.cb-hero__stat {
    display: grid;
    grid-template-columns: 4px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-content: center;
    min-width: 0;
    box-sizing: border-box;
}

.cb-hero__stat::before {
    content: '';
    grid-row: 1 / -1;
    grid-column: 1;
    width: 4px;
    background: #971843;
    border-radius: 999px;
}

.cb-hero__stat-value {
    grid-column: 2;
    grid-row: 1;
    display: block;
    margin-bottom: clamp(2px, 0.5vw, 4px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 1vw + 0.5rem, 14px);
    font-weight: 700;
    line-height: 1.35;
    color: #172A54;
}

.cb-hero__stat-label {
    grid-column: 2;
    grid-row: 2;
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(11px, 1vw + 0.25rem, 12px);
    font-weight: 400;
    line-height: 1.35;
    color: #78787B;
}

/* Visual – absolute right, overlaps into categories */
.cb-hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    
    pointer-events: none;
    line-height: 0;
}

.cb-hero__glow {
    position: absolute;
    top: 28%;
    left: 8%;
    z-index: 0;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 232, 237, 0.9) 0%, rgba(252, 232, 237, 0.35) 50%, transparent 75%);
    pointer-events: none;
}

.cb-hero__picture {
    display: contents;
}

.cb-hero__image {
    position: relative;
    z-index: 1;
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: right top;
}

/* Large desktop */
@media (min-width: 1441px) {
    /* .cb-hero__visual {
        height: 846px;
    } */
}

/* Tablet & mobile – content first, image below */
@media (max-width: 1024px) {
    .cb-hero {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .cb-hero__inner {
        order: 1;
        padding-right: clamp(20px, 4vw, 40px);
        padding-bottom: clamp(20px, 3vw, 28px);
    }

    .cb-hero__content {
        max-width: none;
    }

    .cb-hero__visual {
        order: 2;
        position: relative;
        top: auto;
        right: auto;
        z-index: 1;
        width: 100%;
        margin: clamp(12px, 3vw, 20px) 0 0;
        display: flex;
        justify-content: center;
    }

    .cb-hero__image {
        width: min(100%, 520px);
        height: auto;
        max-width: none;
        object-fit: contain;
        object-position: center bottom;
    }

    .cb-hero__glow {
        display: none;
    }

    .cb-categories {
        margin-top: 0;
    }
}

/* Mobile */
@media (max-width: 1024px) {
    .cb-hero {
        padding-bottom: 0;
    }

    .cb-hero__inner {
        padding: 24px 16px 0;
    }

    .cb-hero__badge {
        margin-bottom: 20px;
    }

    .cb-hero__title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .cb-hero__lead {
        font-size: 16px;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .cb-hero__desc {
        margin-bottom: 24px;
    }

    .cb-hero__desc p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .cb-hero__highlight {
        padding: 12px 16px;
        font-size: 13px;
        margin-bottom: 24px;
        gap: 12px;
    }

    .cb-hero__actions {
        margin-bottom: 24px;
        gap: 10px;
        flex-direction: column;
    }

    .cb-hero__btn {
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }

    .cb-hero__stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 0;
    }

    .cb-hero__stat {
        column-gap: 10px;
    }

    .cb-hero__visual {
        margin-top: 20px;
        margin-right: 0;
    }

    .cb-hero__image {
        width: 100%;
        object-position: center bottom;
    }
}

/* Featured Product Categories */
.cb-categories {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.cb-categories__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 112px) clamp(16px, 3vw, 31px);
    box-sizing: border-box;
}

.cb-categories__header {
    position: static;
    z-index: 4;
    margin-bottom: clamp(32px, 4vw, 48px);
    text-align: center;
}

.cb-categories__header-text {
    max-width: 760px;
    margin: 0 auto;
}

.cb-categories__badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 16px;
    text-transform: uppercase;
    color: #172A54;
    background: #172A5410;
    border-radius: 33554400px;
}

.cb-categories__title {
    margin-bottom: 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
    color: #172A54;
}

.cb-categories__lead {
    margin: 0 auto 48px;
    max-width: 530px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #78787B;
}

.cb-categories__decor {
    position: absolute;
    top: 33px;
    right: -36px;
    z-index: 1;
    width: clamp(240px, 30vw, 400px);
    height: clamp(150px, 19vw, 240px);
    pointer-events: none;
    line-height: 0;
}

.cb-categories__decor-img {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
    opacity: 0.9;
}

.cb-categories__grid {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cb-categories__card {
    position: relative;
    display: block;
    flex: 0 0 calc((100% - 60px) / 4);
    width: calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
    height: 370px;
    min-height: 370px;
    overflow: hidden;
    text-decoration: none;
    border-radius: clamp(14px, 2vw, 20px);
    isolation: isolate;
}

.cb-categories__card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cb-categories__card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(23, 42, 84, 0.3) 0%,
        #172A54 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.cb-categories__card-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    min-height: 0;
    max-height: 96px;
    padding: 18px clamp(16px, 2.5vw, 24px) 20px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(23, 42, 84, 0) 0%,
        rgba(23, 42, 84, 0.5) 38%,
        rgba(23, 42, 84, 0.92) 72%,
        #172A54 100%
    );
    transition: max-height 0.28s ease;
}

.cb-categories__card-title {
    margin: 0;
    flex-shrink: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color:#FFFFFF;
}

.cb-categories__card-desc {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #FFFFFFB2;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, margin 0.28s ease;
}

.cb-categories__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 0.8vw + 0.4rem, 14px);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease;
}

.cb-categories__card-arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #fff;
}

@media (hover: hover) {
    .cb-categories__card:hover .cb-categories__card-overlay {
        opacity: 1;
    }

    .cb-categories__card:hover .cb-categories__card-body {
        max-height: 320px;
    }

    .cb-categories__card:hover .cb-categories__card-desc {
        max-height: 180px;
        margin: 10px 0 16px;
        opacity: 1;
    }

    .cb-categories__card:hover .cb-categories__card-link {
        max-height: 24px;
        opacity: 1;
    }
}

.cb-categories__card:focus-visible .cb-categories__card-overlay {
    opacity: 1;
}

.cb-categories__card:focus-visible .cb-categories__card-body {
    max-height: 320px;
}

.cb-categories__card:focus-visible .cb-categories__card-desc {
    max-height: 180px;
    margin: 10px 0 16px;
    opacity: 1;
}

.cb-categories__card:focus-visible .cb-categories__card-link {
    max-height: 24px;
    opacity: 1;
}

.cb-categories__card--frozen .cb-categories__card-bg {
    object-position: center top;
}

@media (max-width: 640px) {
    .cb-categories__card--frozen .cb-categories__card-bg {
        object-position: center center;
    }
}

@media (max-width: 1100px) {
    .cb-categories__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cb-categories__card {
        flex: none;
        width: auto;
        max-width: none;
        height: 370px;
        min-height: 370px;
    }

    .cb-categories__decor {
        top: 24px;
        right: -25px;
        width: clamp(180px, 32vw, 280px);
        height: clamp(110px, 18vw, 170px);
    }

    .cb-categories__decor-img {
        opacity: 0.8;
    }
}

/* iPad Mini, iPad Pro, tablets — desktop fonts unchanged above 1024px */
@media (max-width: 1024px) {
    .cb-categories__badge {
        font-size: 11px;
    }

    .cb-categories__title {
        font-size: 32px;
        line-height: 1.2;
    }

    .cb-categories__lead {
        font-size: 16px;
    }

    .cb-categories__card-title {
        font-size: 20px;
    }

    .cb-categories__card-desc {
        font-size: 13px;
    }

    .cb-categories__card-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .cb-categories {
        overflow-x: clip;
        overflow-y: visible;
        z-index: 4;
    }

    .cb-categories__header {
        margin-bottom: clamp(24px, 5vw, 32px);
    }

    .cb-categories__title {
        font-size: 28px;
    }

    .cb-categories__lead {
        font-size: 16px;
    }

    .cb-categories__card-title {
        font-size: 20px;
    }

    .cb-categories__decor {
        top: -64px;
        right: -18px;
        z-index: 5;
        width: clamp(180px, 48vw, 260px);
        height: clamp(110px, 28vw, 160px);
    }

    .cb-categories__decor-img {
        z-index: 5;
    }

    .cb-categories__grid {
        gap: clamp(14px, 3vw, 18px);
    }
}

@media (max-width: 640px) {
    .cb-categories__inner {
        padding: 40px 16px;
    }

    .cb-categories__header {
        margin-bottom: 24px;
    }

    .cb-categories__title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cb-categories__lead {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cb-categories__card-title {
        font-size: 18px;
    }

    .cb-categories__card-desc {
        font-size: 13px;
    }

    .cb-categories__decor {
        top: -23px;
        /* right: 0; */
        right: -13px;
        z-index: 5;
        width: min(240px, 62vw);
        height: auto;
        aspect-ratio: 400 / 240;
    }

    .cb-categories__decor-img {
        z-index: 5;
        opacity: 0.85;
    }

    .cb-categories__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cb-categories__card {
        flex: none;
        width: auto;
        max-width: none;
        height: 370px;
        min-height: 370px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cb-categories__card-overlay,
    .cb-categories__card-body,
    .cb-categories__card-desc,
    .cb-categories__card-link {
        transition: none;
    }
}

/* Why Kitchens Choose ChefsBuddy */
.cb-kitchens {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #FAF0F2;
}

.cb-kitchens__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.cb-kitchens__bg-img {
    position: absolute;
    display: block;
    max-width: none;
    mix-blend-mode: lighten;
    pointer-events: none;
}

.cb-kitchens__bg-img--pattern {
    top: 0;
    left: 0;
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    /* object-position: top center; */
}

.cb-kitchens__bg-img--sketch {
    top: clamp(8px, 1.5vw, 16px);
    left: 50%;
    width: min(920px, 100%);
    height: auto;
    max-height: min(42vw, 340px);
    transform: translateX(-50%);
    object-fit: contain;
    object-position: top center;
    opacity: 0.85;
}

.cb-kitchens__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 92px) clamp(16px, 3vw, 40px);
    box-sizing: border-box;
}

.cb-kitchens__header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.cb-kitchens__badge {
    display: inline-block;
    margin-bottom: clamp(16px, 2vw, 24px);
    padding: clamp(5px, 1vw, 6px) clamp(14px, 2vw, 16px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(11px, 0.8vw + 0.5rem, 12px);
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 16px;
    text-transform: uppercase;
    color: #971843;
    background:#97184312;
    border-radius: 999px;
}

.cb-kitchens__title {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 3vw + 1rem, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #172A54;
}

.cb-kitchens__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2.5vw, 32px);
    align-items: start;
    margin: 0 auto;
}

.cb-kitchens__card {
    padding: clamp(24px, 3vw, 40px);
    background: #FFFFFF;
    border: 1px solid #172A540A;
    border-radius: clamp(16px, 2vw, 24px);
    box-shadow: 0 4px 24px rgba(23, 42, 84, 0.05);
    box-sizing: border-box;
}

.cb-kitchens__card--offset {
    margin-top: clamp(36px, 5vw, 56px);
}

.cb-kitchens__card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: clamp(16px, 2vw, 24px);
}

.cb-kitchens__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #971843;
    background: #97184312;
    border-radius: 10px;
}

.cb-kitchens__card-num {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(22px, 2vw + 0.5rem, 28px);
    font-weight: 900;
    line-height: 1;
    color: #DB277733;
}

.cb-kitchens__card-title {
    margin: 0 0 clamp(8px, 1vw, 12px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(18px, 1.2vw + 0.5rem, 22px);
    font-weight: 700;
    line-height: 1.3;
    color: #1E293B;
}

.cb-kitchens__card-desc {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 1vw + 0.4rem, 15px);
    font-weight: 400;
    line-height: 1.5;
    color: #78787B;
}

@media (max-width: 900px) {
    .cb-kitchens__bg-img--sketch {
        width: 100%;
        max-height: min(48vw, 220px);
    }

    .cb-kitchens__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .cb-kitchens__card--offset {
        margin-top: 0;
    }
}

@media (min-width: 901px) {
    .cb-kitchens__badge {
        font-size: clamp(11px, 0.6vw + 0.35rem, 12px);
    }

    .cb-kitchens__title {
        font-size: clamp(32px, 2.8vw + 0.75rem, 48px);
    }

    .cb-kitchens__card-num {
        font-size: clamp(24px, 1.8vw + 0.5rem, 28px);
    }

    .cb-kitchens__card-title {
        font-size: clamp(19px, 1vw + 0.5rem, 22px);
    }

    .cb-kitchens__card-desc {
        font-size: clamp(13px, 0.6vw + 0.45rem, 15px);
    }
}

@media (max-width: 640px) {
    .cb-kitchens__inner {
        padding: 48px 16px;
    }

    .cb-kitchens__header {
        margin-bottom: 32px;
    }

    .cb-kitchens__badge {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .cb-kitchens__title {
        font-size: 28px;
    }

    .cb-kitchens__card {
        padding: 24px;
    }

    .cb-kitchens__card-num {
        font-size: 22px;
    }

    .cb-kitchens__card-title {
        font-size: 18px;
    }

    .cb-kitchens__card-desc {
        font-size: 13px;
    }
}

/* Industries We Serve */
.cb-industries {
    position: relative;
    z-index: 2;
    overflow: visible;
    /* background: #FAF0F2; */
    padding-top: clamp(56px, 7vw, 92px);
    padding-bottom: clamp(64px, 8vw, 92px);
}

.cb-industries__decor {
    position: absolute;
   top: -105px;
    right: -72px;
    z-index: 2;
    width: clamp(280px, 36vw, 480px);
    pointer-events: none;
    line-height: 0;
}

.cb-industries__decor-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: right top;
    mix-blend-mode: lighten;
    opacity: 0.9;
}

.cb-industries__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 40px;
    box-sizing: border-box;
}

.cb-industries__header {
    display: flex;
    
    justify-content: space-between;
    gap: clamp(16px, 3vw, 32px);
   
}

.cb-industries__badge {
    display: inline-block;
    margin-bottom: 30px;
    padding: 6px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 16px;
    text-transform: uppercase;
    color: #971843;
    background: #97184312;
    border-radius: 999px;
}

.cb-industries__title {
    margin-bottom: 56px;
    margin-top: 0;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 3vw + 1rem, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #172A54;
}

.cb-industries__nav {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 8px;
}

.cb-industries__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #172A54;
    background:transparent;
    border: 2px solid #172A54;
    border-radius: 14px;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.cb-industries__nav-btn:hover:not(:disabled),
.cb-industries__nav-btn:focus-visible:not(:disabled) {
    color: #172A54;
    border-color: #172A54;
    background:transparent;
}

.cb-industries__nav-btn:disabled,
.cb-industries__nav-btn.swiper-button-disabled {
    color: #172A54;
    border: 2px solid #172A54;
    background: transparent;
    opacity: 0.3;
    cursor: not-allowed;
}

.cb-industries__track {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    box-sizing: border-box;
    margin-bottom: 80px;
}

.cb-industries-swiper {
    overflow: hidden;
}

.cb-industries-swiper .swiper-slide {
    width: 321px;
    height: auto;
}

.cb-industries__card {
    display: flex;
    flex-direction: column;
    min-height: clamp(220px, 28vw, 260px);
    padding: 28px;
    background: #fff;
    border: 1px solid #97184366;
    border-radius: 20px;
    box-shadow: 0 8px 32px #172A540A;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cb-industries__card.is-active,
.cb-industries__card:hover {
    background: #9718431A;
    border-color: #97184335;
    box-shadow: 0 8px 32px rgba(151, 24, 67, 0.08);
}

.cb-industries__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: clamp(16px, 2vw, 20px);
    color: #971843;
    background: #97184312;
    border-radius: 10px;
}

.cb-industries__card-title {
    margin-top: 20px;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(16px, 1.2vw + 0.5rem, 18px);
    font-weight: 700;
    line-height: 1.3;
    color: #172A54;
}

.cb-industries__card-desc {
    flex: 1;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #78787B;
}

.cb-industries__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(12px, 1vw + 0.35rem, 14px);
    font-weight: 600;
    line-height: 1;
    color: #971843;
    text-decoration: none;
}

.cb-industries__card-arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #971843;
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.cb-industries__card-link:hover,
.cb-industries__card-link:focus {
    color: #7a1236;
}

.cb-industries__card:hover .cb-industries__card-arrow,
.cb-industries__card:focus-within .cb-industries__card-arrow {
    transform: translateX(4px);
}

.cb-industries__banner {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    line-height: 0;
    overflow: hidden;
}

.cb-industries__banner-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
    object-position: center;
}

@media (max-width: 1100px) {
    .cb-industries__decor {
        top: -56px;
        right: -48px;
        width: clamp(220px, 34vw, 360px);
    }
}

@media (max-width: 768px) {
    .cb-industries {
        overflow-x: clip;
        overflow-y: visible;
        padding-top: 40px;
        padding-bottom: 48px;
    }

    .cb-industries__decor {
        top: -40px;
        right: -24px;
        z-index: 2;
        width: clamp(180px, 48vw, 280px);
    }

    .cb-industries__inner {
        padding: 0 16px;
    }

    .cb-industries__header {
        align-items: flex-end;
        gap: 12px;
        margin-bottom: 20px;
    }

    .cb-industries__badge {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .cb-industries__title {
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        font-size: 28px;
        line-height: 1.2;
    }

    .cb-industries__nav {
        align-self: flex-end;
        gap: 6px;
    }

    .cb-industries__nav-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .cb-industries__nav-btn svg {
        width: 7px;
        height: 12px;
    }

    .cb-industries__track {
        padding: 0 16px;
    }

    .cb-industries-swiper .swiper-slide {
        width: min(280px, 78vw);
    }

    .cb-industries__card {
        min-height: 200px;
        padding: 20px;
    }

    .cb-industries__card-title {
        font-size: 16px;
    }

    .cb-industries__card-desc {
        font-size: 13px;
    }

    .cb-industries__card-link {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .cb-industries__decor {
        top: -28px;
        right: -16px;
        width: min(220px, 58vw);
    }

    .cb-industries__title {
        font-size: 24px;
    }

    .cb-industries__nav-btn {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }
}

/* Work with Spice Tree Foods */
.cb-partner {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.cb-partner__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 92px) clamp(16px, 3vw, 40px);
    box-sizing: border-box;
}

.cb-partner__header {
    margin-bottom: clamp(32px, 4vw, 56px);
}

.cb-partner__badge {
    display: inline-block;
    margin-bottom: clamp(16px, 2vw, 24px);
    padding: 6px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 16px;
    text-transform: uppercase;
    color: #971843;
    background: #97184312;
    border-radius: 999px;
}

.cb-partner__title {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 3vw + 1rem, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #172A54;
}

.cb-partner__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    align-items: stretch;
}

.cb-partner__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: clamp(22px, 2.2vw, 28px);
    background: #fff;
    border: 1px solid #172A5412;
    border-radius: 20px;
    box-shadow: 0 8px 32px #172A540A;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cb-partner__card.is-active,
.cb-partner__card:hover,
.cb-partner__card:focus-within {
    background: #9718431A;
    border-color: #97184335;
    box-shadow: 0 8px 32px rgba(151, 24, 67, 0.08);
}

.cb-partner__grid:hover .cb-partner__card.is-active:not(:hover):not(:focus-within) {
    background: #fff;
    border-color: #172A5412;
    box-shadow: 0 8px 32px #172A540A;
}

.cb-partner__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: clamp(16px, 2vw, 20px);
    color: #971843;
    background: #97184312;
    border-radius: 12px;
}

.cb-partner__card.is-active .cb-partner__card-icon,
.cb-partner__card:hover .cb-partner__card-icon,
.cb-partner__card:focus-within .cb-partner__card-icon {
    background: #9718431A;
}

.cb-partner__card-title {
    margin-top: 20px;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(16px, 1vw + 0.5rem, 18px);
    font-weight: 700;
    line-height: 1.3;
    color: #172A54;
}

.cb-partner__card-desc {
    flex: 1;
    margin: 0 0 20px;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 0.7vw + 0.45rem, 16px);
    font-weight: 400;
    line-height: 1.55;
    color: #78787B;
}

.cb-partner__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 0.7vw + 0.4rem, 14px);
    font-weight: 700;
    line-height: 1;
    color: #971843;
}

.cb-partner__card-arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.cb-partner__card:hover .cb-partner__card-link,
.cb-partner__card:focus-visible .cb-partner__card-link {
    color: #7a1236;
}

.cb-partner__card:hover .cb-partner__card-arrow,
.cb-partner__card:focus-visible .cb-partner__card-arrow {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .cb-partner__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .cb-partner__inner {
        padding: 48px 16px;
    }

    .cb-partner__header {
        margin-bottom: 24px;
    }

    .cb-partner__badge {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .cb-partner__title {
        font-size: 28px;
    }

    .cb-partner__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cb-partner__card {
        padding: 24px;
    }

    .cb-partner__card-title {
        font-size: 18px;
    }

    .cb-partner__card-desc {
        font-size: 14px;
    }
}

/* Meet The Founders */
.cb-founders {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.cb-founders__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 100px) clamp(16px, 3vw, 37px);
    box-sizing: border-box;
}

.cb-founders__header {
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 40px);
    text-align: center;
}

.cb-founders__badge {
    display: inline-block;
    margin-bottom: clamp(16px, 2vw, 24px);
    padding: 6px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 16px;
    text-transform: uppercase;
    color: #172A54;
    background: #ECEFF3;
    border-radius: 999px;
}

.cb-founders__title {
    margin: 0 0 clamp(12px, 1.5vw, 16px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 3vw + 1rem, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #172A54;
}

.cb-founders__lead {
    margin: 0 auto;
    
    font-family: 'Raleway', sans-serif;
    font-size: clamp(14px, 0.8vw + 0.5rem, 18px);
    font-weight: 400;
    line-height: 1.65;
    color: #78787B;
}

.cb-founders__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 112px;
    max-width: 941px;
    margin: 0 auto;
}

.cb-founders__card {
    min-width: 0;
}

.cb-founders__media {
    overflow: hidden;
    border-radius: 24px;
    line-height: 0;
}

.cb-founders__img {
    display: block;
 
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.cb-founders__img:hover {
    transform: scale(1.03);
}

.cb-founders__info {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: clamp(16px, 2vw, 20px);
}

.cb-founders__text {
    min-width: 0;
}

.cb-founders__name {
    margin: 0 0 6px;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(18px, 1.2vw + 0.6rem, 24px);
    font-weight: 700;
    line-height: 1.3;
    color: #172A54;
}

.cb-founders__role {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 0.6vw + 0.45rem, 16px);
    font-weight: 400;
    line-height: 1.4;
    color: #172A54;
}

.cb-founders__social {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    line-height: 0;
    
}

.cb-founders__social img {
    display: block;
    width: 32px;
    height: 32px;
}



@media (max-width: 768px) {
    .cb-founders__inner {
        padding: 48px 16px;
    }

    .cb-founders__header {
        margin-bottom: 32px;
    }

    .cb-founders__badge {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .cb-founders__title {
        font-size: 28px;
        
    }

    .cb-founders__lead {
        font-size: 14px;
    }

    .cb-founders__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 28px;
    }

    .cb-founders__media {
        border-radius: 20px;
    }

    .cb-founders__img {
        aspect-ratio: 4 / 5;
    }

    .cb-founders__name {
        font-size: 18px;
    }

    .cb-founders__role {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cb-founders__title {
        font-size: 24px;
    }

    .cb-founders__img {
        aspect-ratio: 3 / 4;
    }
}

/* Our Clients / Logo Slider */
.cb-clients {
    background: #fff;
    overflow: hidden;
}

.cb-clients__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 40px) clamp(32px, 4vw, 48px);
    box-sizing: border-box;
}

.cb-clients__header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cb-clients__badge {
    display: inline-block;
    margin-bottom: clamp(16px, 2vw, 24px);
    padding: 6px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 16px;
    text-transform: uppercase;
    color: #971843;
    background: #97184312;
    border-radius: 999px;
}

.cb-clients__title {
    margin: 0 0 clamp(12px, 1.5vw, 16px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 3vw + 1rem, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #172A54;
}

.cb-clients__lead {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(14px, 1vw + 0.5rem, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: #78787B;
}

.cb-clients__slider {
    position: relative;
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding-bottom: clamp(56px, 8vw, 100px);
    box-sizing: border-box;
}

.cb-clients__slider::before,
.cb-clients__slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: clamp(56px, 8vw, 100px);
    width: clamp(72px, 10vw, 140px);
    z-index: 2;
    pointer-events: none;
}

.cb-clients__slider::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.cb-clients__slider::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.cb-clients__slider-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.cb-clients__slider-group {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    gap: clamp(12px, 1.5vw, 20px);
    padding-right: clamp(12px, 1.5vw, 20px);
}

.cb-clients__logo-card {
    flex: 0 0 auto;
}

.cb-clients__logo-card img {
    display: block;
    width: auto;
    max-width: none;
    height: clamp(72px, 8vw, 120px);
    object-fit: contain;
    object-position: center;
}

@media (max-width: 480px) {
    .cb-clients__title {
        font-size: 24px;
    }

    .cb-clients__lead {
        font-size: 14px;
    }

    .cb-clients__logo-card {
        flex-basis: 150px;
        min-height: 92px;
        padding: 18px 12px;
        border-radius: 14px;
    }

    .cb-clients__logo-card img {
        max-height: 70px;
    }
}

/* Get In Touch CTA */
.cb-get-in-touch {
    position: relative;
    overflow: hidden;
    background-color: #F8F8FA;
    background-image: url('../images/new-homepage/get-in%20-touch.png');
    background-repeat: no-repeat;
    background-position:bottom;
    background-size: cover;
}

.cb-get-in-touch__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding:92px 40px;
    text-align: center;
}

.cb-get-in-touch__header {
    max-width: 820px;
    margin: 0 auto clamp(32px, 4vw, 48px);
}

.cb-get-in-touch__badge {
    display: inline-block;
    margin-bottom: clamp(16px, 2vw, 24px);
    padding: 6px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 16px;
    text-transform: uppercase;
    color: #971843;
    background: #97184312;
    border-radius: 999px;
}

.cb-get-in-touch__title {
    margin: 0 0 clamp(12px, 1.5vw, 16px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 3vw + 1rem, 48px);
    font-weight: 900;
    line-height:78px;
    color: #172A54;

}

.cb-get-in-touch__lead {
    margin: 0 auto;
    max-width: 800px;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(14px, 1vw + 0.5rem, 18px);
    font-weight: 400;
    line-height: 1.55;
    color: #78787B;
}

.cb-get-in-touch__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 12px) clamp(12px, 2vw, 16px);
}

.cb-get-in-touch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(44px, 6vw, 48px);
    padding: clamp(12px, 2vw, 14px) clamp(20px, 3vw, 28px);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 1vw + 0.5rem, 14px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 14px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.cb-get-in-touch__btn--primary {
    color: #fff;
    background: #172A54;
    border: 1px solid #172A54;
}

.cb-get-in-touch__btn--primary:hover,
.cb-get-in-touch__btn--primary:focus {
    background: #0d1636;
    border-color: #0d1636;
    color: #fff;
}

.cb-get-in-touch__btn--outline {
    color: #971843;
    background: #fff;
    border: 2px solid #971843;
}

.cb-get-in-touch__btn--outline:hover,
.cb-get-in-touch__btn--outline:focus {
    background: #971843;
    color: #fff;
}

@media (max-width: 768px) {
    .cb-get-in-touch__inner {
        padding: 56px 16px;
    }

    .cb-get-in-touch__header {
        margin-bottom: 28px;
    }

    .cb-get-in-touch__badge {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .cb-get-in-touch__title {
        font-size: 28px;
        line-height: 40px;
    }

    .cb-get-in-touch__lead {
        font-size: 14px;
    }

    .cb-get-in-touch__actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 360px;
        margin: 0 auto;
    }

    .cb-get-in-touch__btn {
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cb-get-in-touch__title {
        font-size: 24px;
            line-height: 38px;
    }
}
