/* =========================================================
   CORNERSTONE MENU PAGE
   ========================================================= */


/* =========================================================
   MENU HERO
   ========================================================= */

.cs-menu-hero {
    position: relative;

    width: 100%;
    min-height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* dark overlay */

.cs-menu-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(27, 28, 26, 0.94) 0%,
            rgba(27, 28, 26, 0.78) 38%,
            rgba(27, 28, 26, 0.34) 68%,
            rgba(27, 28, 26, 0.12) 100%
        );

    z-index: 0;
}


/* subtle green tint */

.cs-menu-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(52, 78, 65, 0.08),
            rgba(52, 78, 65, 0.02)
        );

    z-index: 0;
}


/* inner */

.cs-menu-hero > .cs-menu-hero-inner {
    --width: 100%;
    --max-width: 1240px;

    position: relative;
    z-index: 2;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    min-height: 560px;

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* content */

.cs-menu-hero .cs-menu-hero-content {
    --width: 100%;
    --max-width: none;

    width: 100%;
    max-width: 720px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* kicker */

.cs-menu-hero .cs-menu-hero-kicker {
    margin-bottom: 18px;

    color: var(--cs-accent);

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cs-menu-hero .cs-menu-hero-kicker p {
    margin: 0;
}


/* title */

.cs-menu-hero
.cs-menu-hero-title
.elementor-heading-title {
    margin: 0;

    color: var(--cs-white);

    font-size: clamp(52px, 5.5vw, 82px);
    line-height: 0.98;
    font-weight: 700;

    letter-spacing: -0.055em;
}


/* text */

.cs-menu-hero .cs-menu-hero-text {
    max-width: 520px;

    margin-top: 26px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;
    line-height: 1.65;
}

.cs-menu-hero .cs-menu-hero-text p {
    margin: 0;
}

/* =========================================================
   MENU INFO BAR
   ========================================================= */

.cs-menu-info {
    --width: 100%;
    --content-width: 100%;

    position: relative;
    z-index: 20;

    width: 100%;
    max-width: none;

    background: var(--cs-background);
}


/* =========================================================
   INFO INNER
   ========================================================= */

.cs-menu-info > .cs-menu-info-inner {
    --width: 100%;
    --max-width: 1240px;
    --content-width: 1240px;

    position: relative;
    isolation: isolate;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    margin: -62px auto 0;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;

    gap: 0;

    padding: 0;

    overflow: hidden;

    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(38, 39, 36, 0.20);
}


/*
   A hátteret külön rétegen rajzoljuk ki,
   így az Elementor backgroundja nem tud beleszólni.
*/

.cs-menu-info > .cs-menu-info-inner::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            135deg,
            #242623 0%,
            #1e201e 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: inherit;
}


/* =========================================================
   INFO ITEM
   ========================================================= */

.cs-menu-info
> .cs-menu-info-inner
> .cs-menu-info-item {
    --width: 33.333%;
    --max-width: none;
    --flex-grow: 1;
    --flex-shrink: 1;
    --flex-basis: 0%;

    position: relative;

    width: 33.333%;
    max-width: none;
    min-width: 0;

    flex: 1 1 0;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 20px;

    margin: 0;
    padding: 30px 32px;

    background: transparent;
}


/* separator */

.cs-menu-info
> .cs-menu-info-inner
> .cs-menu-info-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 26px;
    right: 0;
    bottom: 26px;

    width: 1px;

    background: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   ICON
   ========================================================= */

.cs-menu-info .cs-menu-info-icon {
    --width: auto;
    --max-width: none;

    width: auto;
    max-width: none;

    flex: 0 0 auto;
}

.cs-menu-info
.cs-menu-info-icon
.elementor-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: transparent;

    border: 1px solid var(--cs-accent);
    border-radius: 50%;

    color: var(--cs-accent);

    font-size: 22px;
}


/* Elementor icon color reset */

.cs-menu-info
.cs-menu-info-icon
.elementor-icon i {
    color: var(--cs-accent);
}

.cs-menu-info
.cs-menu-info-icon
.elementor-icon svg {
    width: 22px;
    height: 22px;

    fill: var(--cs-accent);
}

.cs-menu-info
.cs-menu-info-icon
.elementor-icon svg path {
    fill: var(--cs-accent);
}


/* =========================================================
   COPY
   ========================================================= */

.cs-menu-info .cs-menu-info-copy {
    --width: auto;
    --max-width: none;

    width: auto;
    max-width: none;
    min-width: 0;

    flex: 1 1 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* label */

.cs-menu-info .cs-menu-info-label {
    margin: 0;

    color: var(--cs-accent);

    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.cs-menu-info .cs-menu-info-label p {
    margin: 0;

    color: inherit;
}


/* phone */

.cs-menu-info
.cs-menu-info-copy
.cs-menu-info-phone
.elementor-heading-title {
    margin: 6px 0 0;

    color: var(--cs-accent);

    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: -0.02em;
}


/* text */

.cs-menu-info .cs-menu-info-text {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 14px;
    line-height: 1.55;
}

.cs-menu-info .cs-menu-info-text p {
    margin: 0;

    color: inherit;
}


/* =========================================================
   SPACE BELOW FLOATING CARD
   ========================================================= */

.cs-menu-info {
    padding-bottom: 28px;
}

/* =========================================================
   MENU CATEGORY NAVIGATION
   ========================================================= */

.cs-menu-categories {
    --width: 100%;
    --content-width: 100%;

    width: 100%;
    max-width: none;

    background: var(--cs-background);
}


/* inner */

.cs-menu-categories > .cs-menu-categories-inner {
    --width: 100%;
    --max-width: 1240px;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    margin: 0 auto;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 8px 0 26px;
}


/* button widget reset */

.cs-menu-categories .cs-menu-category-link {
    --width: auto;
    --max-width: none;

    width: auto;
    max-width: none;

    flex: 0 0 auto;
}


/* button */

.cs-menu-categories
.cs-menu-category-link
.elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 18px;

    background: transparent;

    border: 1px solid rgba(38, 39, 36, 0.16);
    border-radius: var(--cs-radius-pill);

    color: var(--cs-dark);

    font-size: 13px;
    line-height: 1;
    font-weight: 600;

    text-transform: none;
    letter-spacing: 0;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


/* hover */

.cs-menu-categories
.cs-menu-category-link
.elementor-button:hover {
    background: rgba(52, 78, 65, 0.07);

    border-color: var(--cs-primary);

    color: var(--cs-primary);

    transform: translateY(-1px);
}


/* active */

.cs-menu-categories
.cs-menu-category-link.is-active
.elementor-button {
    background: var(--cs-primary);

    border-color: var(--cs-primary);

    color: var(--cs-white);
}


/* active hover */

.cs-menu-categories
.cs-menu-category-link.is-active
.elementor-button:hover {
    background: var(--cs-dark);

    border-color: var(--cs-dark);

    color: var(--cs-white);
}

/* =========================================================
   MENU CONTENT
   ========================================================= */

.cs-menu-content {
    --width: 100%;
    --content-width: 100%;

    width: 100%;
    max-width: none;

    background: var(--cs-background);
}

.cs-menu-content > .cs-menu-content-inner {
    --width: 100%;
    --max-width: 1240px;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    margin: 0 auto;

    padding: 14px 0 110px;
}


/* =========================================================
   MENU PANEL
   ========================================================= */

.cs-menu-content .cs-menu-panel {
    --width: 100%;
    --max-width: none;

    position: relative;
    isolation: isolate;

    width: 100%;
    max-width: none;

    min-height: 620px;

    display: none;

    overflow: hidden;

    border-radius: 30px;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    box-shadow:
        0 24px 58px rgba(38, 39, 36, 0.12);
}

.cs-menu-content .cs-menu-panel.is-active {
    display: block;
}

/* blurred background copy */

.cs-menu-content .cs-menu-panel::before {
    content: "";

    position: absolute;
    inset: -24px;

    z-index: 0;

    background: inherit;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    filter: blur(14px);

    transform: scale(1.08);

    opacity: 0.82;
}

.cs-menu-content .cs-menu-panel::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            135deg,
            rgba(26, 28, 26, 0.82) 0%,
            rgba(38, 48, 40, 0.74) 52%,
            rgba(26, 28, 26, 0.68) 100%
        );
}

/* =========================================================
   PANEL CONTENT
   ========================================================= */

.cs-menu-content .cs-menu-panel-content {
    --width: 100%;
    --max-width: none;

    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 620px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 52px 56px 48px;
}

/* =========================================================
   PANEL HEADING
   ========================================================= */

.cs-menu-content .cs-menu-panel-heading {
    --width: 100%;

    width: 100%;
    max-width: 700px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* kicker */

.cs-menu-content .cs-menu-panel-kicker {
    color: var(--cs-accent);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cs-menu-content .cs-menu-panel-kicker p {
    margin: 0;
}


/* title */

.cs-menu-content
.cs-menu-panel-title
.elementor-heading-title {
    margin: 14px 0 0;

    color: var(--cs-white);

    font-size: clamp(44px, 4vw, 64px);
    line-height: 1;
    font-weight: 700;

    letter-spacing: -0.045em;
}


/* gold line */

.cs-menu-content .cs-menu-panel-title::after {
    content: "";

    display: block;

    width: 48px;
    height: 3px;

    margin-top: 18px;

    background: var(--cs-accent);
}


/* subtitle */

.cs-menu-content .cs-menu-panel-subtitle {
    max-width: 560px;

    margin-top: 18px;

    color: rgba(255,255,255,0.76);

    font-size: 15px;
    line-height: 1.65;
}

.cs-menu-content .cs-menu-panel-subtitle p {
    margin: 0;
}

/* =========================================================
   FOOD LIST
   ========================================================= */

.cs-menu-content .cs-menu-food-list {
    --width: 100%;
    --max-width: none;

    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 52px;

    margin-top: 48px;
}

/* =========================================================
   FOOD ROW
   ========================================================= */

.cs-menu-content .cs-menu-food-row {
    --width: 100%;
    --max-width: none;

    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 19px 0;

    border-bottom: 1px solid rgba(255,255,255,0.16);
}

/* =========================================================
   FOOD INFO
   ========================================================= */

.cs-menu-content .cs-menu-food-info {
    --width: auto;
    --max-width: none;

    width: auto;
    min-width: 0;

    flex: 1 1 auto;
}

.cs-menu-content
.cs-menu-food-name
.elementor-heading-title {
    margin: 0;

    color: var(--cs-white);

    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -0.015em;
}

.cs-menu-content .cs-menu-food-weight {
    margin-top: 6px;

    color: rgba(255,255,255,0.56);

    font-size: 12px;
    line-height: 1.2;
}

.cs-menu-content .cs-menu-food-weight p {
    margin: 0;
}

/* =========================================================
   FOOD PRICE
   ========================================================= */

.cs-menu-content .cs-menu-food-price {
    --width: auto;
    --max-width: none;

    width: auto;

    flex: 0 0 auto;
}

.cs-menu-content .cs-menu-food-price-values {
    width: auto;

    text-align: right;
}

.cs-menu-content .cs-menu-food-price-values p {
    margin: 0;
}

.cs-menu-content .cs-menu-food-price-values strong {
    display: block;

    color: var(--cs-accent);

    font-size: 17px;
    line-height: 1.1;
    font-weight: 700;

    white-space: nowrap;
}

.cs-menu-content .cs-menu-food-price-values span {
    display: block;

    margin-top: 6px;

    color: rgba(255,255,255,0.80);

    font-size: 14px;
    line-height: 1.1;
    font-weight: 600;

    white-space: nowrap;
}

/* Single price menu items */

.cs-menu-content
.cs-menu-food-price-values
strong:only-child {
    font-size: 19px;
}

.cs-menu-panel-burgers .cs-menu-food-list {
    max-width: 820px;

    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cs-menu-panel-burgers .cs-menu-food-row {
    padding: 26px 0;
}

.cs-menu-panel-burgers
.cs-menu-food-name
.elementor-heading-title {
    font-size: 20px;
}

.cs-menu-panel-burgers
.cs-menu-food-price-values strong {
    font-size: 20px;
}

/* =========================================================
   COMPACT MENU PANELS
   kevés termékkel rendelkező kategóriákhoz
   ========================================================= */

.cs-menu-content .cs-menu-panel-compact {
    min-height: 500px;
}

.cs-menu-content
.cs-menu-panel-compact
.cs-menu-panel-content {
    min-height: 500px;

    padding-top: 48px;
    padding-bottom: 42px;
}


/* közelebb hozzuk a listát a címhez */

.cs-menu-content
.cs-menu-panel-compact
.cs-menu-food-list {
    margin-top: 34px;
}


/* a kevés elem használja ki jobban a rendelkezésre álló helyet */

.cs-menu-content
.cs-menu-panel-compact
.cs-menu-food-row {
    padding: 26px 10px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* nagyobb terméknév */

.cs-menu-content
.cs-menu-panel-compact
.cs-menu-food-name
.elementor-heading-title {
    font-size: 21px;
}


/* nagyobb tömeg */

.cs-menu-content
.cs-menu-panel-compact
.cs-menu-food-weight {
    margin-top: 8px;

    font-size: 13px;
}


/* nagyobb ár */

.cs-menu-content
.cs-menu-panel-compact
.cs-menu-food-price-values strong {
    font-size: 21px;
}

.cs-menu-panel-shaorma {
    min-height: 520px;
}

.cs-menu-panel-shaorma .cs-menu-panel-content {
    min-height: 520px;
}

.cs-menu-panel-shaorma .cs-menu-food-list {
    margin-top: 42px;
}

.cs-menu-panel-sauces {
    min-height: 450px;
}

.cs-menu-panel-sauces .cs-menu-panel-content {
    min-height: 450px;
    justify-content: flex-start;
}

.cs-menu-panel-sauces .cs-menu-food-list {
    max-width: 860px;
    margin-top: 46px;
}

.cs-menu-panel-sauces .cs-menu-food-row {
    padding: 24px 0;
}

/* =========================================================
   MENU TEASER CONTENT
   ========================================================= */

.cs-menu-content .cs-menu-teaser-content {
    --width: 100%;
    --max-width: none;

    width: 100%;
    max-width: 900px;

    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);

    gap: 36px;

    margin-top: 46px;
}


/* =========================================================
   TEASER MAIN
   ========================================================= */

.cs-menu-content .cs-menu-teaser-main {
    --width: 100%;
    --max-width: none;

    width: 100%;

    padding: 26px 0;

    border-top: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
}


.cs-menu-content
.cs-menu-teaser-title
.elementor-heading-title {
    margin: 0;

    color: var(--cs-white);

    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.025em;
}


.cs-menu-content .cs-menu-teaser-text {
    max-width: 560px;

    margin-top: 12px;

    color: rgba(255,255,255,0.72);

    font-size: 15px;
    line-height: 1.65;
}

.cs-menu-content .cs-menu-teaser-text p {
    margin: 0;
}


/* =========================================================
   TEASER NOTE
   ========================================================= */

.cs-menu-content .cs-menu-teaser-note {
    --width: 100%;
    --max-width: none;

    width: 100%;

    display: flex;
    align-items: center;

    padding: 24px;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;

    backdrop-filter: blur(6px);
}


.cs-menu-content .cs-menu-teaser-note-text {
    color: rgba(255,255,255,0.84);

    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

.cs-menu-content .cs-menu-teaser-note-text p {
    margin: 0;
}

/* =========================================================
   SALADS PANEL
   ========================================================= */

.cs-menu-panel-salads {
    min-height: 500px;
}

.cs-menu-panel-salads .cs-menu-panel-content {
    min-height: 500px;

    justify-content: flex-start;
}

.cs-menu-panel-salads .cs-menu-teaser-content {
    margin-top: 48px;
}

/* =========================================================
   WEEKLY MENU PANEL
   ========================================================= */

.cs-menu-panel-weekly {
    min-height: 500px;
}

.cs-menu-panel-weekly .cs-menu-panel-content {
    min-height: 500px;

    justify-content: flex-start;
}

.cs-menu-panel-weekly .cs-menu-teaser-content {
    max-width: 920px;

    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);

    margin-top: 46px;
}


/* left block */

.cs-menu-weekly-main {
    padding: 28px 0;

    border-top: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.cs-menu-weekly-label {
    color: var(--cs-accent);

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cs-menu-weekly-label p {
    margin: 0;
}

.cs-menu-content
.cs-menu-weekly-title
.elementor-heading-title {
    margin: 12px 0 0;

    color: var(--cs-white);

    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: -0.03em;
}

.cs-menu-weekly-text {
    max-width: 560px;

    margin-top: 12px;

    color: rgba(255,255,255,0.72);

    font-size: 15px;
    line-height: 1.65;
}

.cs-menu-weekly-text p {
    margin: 0;
}


/* right block */

.cs-menu-weekly-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 24px;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;

    backdrop-filter: blur(6px);
}

.cs-menu-weekly-info-title {
    color: var(--cs-accent);

    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.cs-menu-weekly-info-title p {
    margin: 0;
}

.cs-menu-weekly-info-text {
    margin-top: 10px;

    color: rgba(255,255,255,0.78);

    font-size: 14px;
    line-height: 1.6;
}

.cs-menu-weekly-info-text p {
    margin: 0;
}

/* =========================================================
   COFFEE & CAKE PANEL
   ========================================================= */

.cs-menu-panel-coffee {
    min-height: 500px;
}

.cs-menu-panel-coffee .cs-menu-panel-content {
    min-height: 500px;
    justify-content: flex-start;
}

.cs-menu-panel-coffee .cs-menu-teaser-content {
    max-width: 920px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    margin-top: 46px;
}


/* left */

.cs-menu-coffee-main {
    padding: 28px 0;

    border-top: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.cs-menu-coffee-label {
    color: var(--cs-accent);

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cs-menu-coffee-label p {
    margin: 0;
}

.cs-menu-content
.cs-menu-coffee-title
.elementor-heading-title {
    margin: 12px 0 0;

    color: var(--cs-white);

    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: -0.03em;
}

.cs-menu-coffee-text {
    max-width: 560px;

    margin-top: 12px;

    color: rgba(255,255,255,0.72);

    font-size: 15px;
    line-height: 1.65;
}

.cs-menu-coffee-text p {
    margin: 0;
}


/* right */

.cs-menu-coffee-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 24px;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;

    backdrop-filter: blur(6px);
}

.cs-menu-coffee-info-title {
    color: var(--cs-accent);

    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.cs-menu-coffee-info-title p {
    margin: 0;
}

.cs-menu-coffee-info-text {
    margin-top: 10px;

    color: rgba(255,255,255,0.78);

    font-size: 14px;
    line-height: 1.6;
}

.cs-menu-coffee-info-text p {
    margin: 0;
}

/* =========================================================
   CATERING PANEL
   ========================================================= */

.cs-menu-panel-catering {
    min-height: 520px;
}

.cs-menu-panel-catering .cs-menu-panel-content {
    min-height: 520px;
    justify-content: flex-start;
}

.cs-menu-panel-catering .cs-menu-teaser-content {
    max-width: 980px;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    margin-top: 46px;
}


/* =========================================================
   CATERING MAIN
   ========================================================= */

.cs-menu-catering-main {
    padding: 30px 0;

    border-top: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.cs-menu-catering-label {
    color: var(--cs-accent);

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cs-menu-catering-label p {
    margin: 0;
}

.cs-menu-content
.cs-menu-catering-title
.elementor-heading-title {
    margin: 12px 0 0;

    color: var(--cs-white);

    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: -0.03em;
}

.cs-menu-catering-text {
    max-width: 570px;

    margin-top: 14px;

    color: rgba(255,255,255,0.72);

    font-size: 15px;
    line-height: 1.65;
}

.cs-menu-catering-text p {
    margin: 0;
}


/* =========================================================
   CATERING CTA
   ========================================================= */

.cs-menu-catering-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 28px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;

    backdrop-filter: blur(8px);
}

.cs-menu-catering-cta-title {
    color: var(--cs-accent);

    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.cs-menu-catering-cta-title p {
    margin: 0;
}

.cs-menu-catering-cta-text {
    margin-top: 10px;

    color: rgba(255,255,255,0.78);

    font-size: 14px;
    line-height: 1.6;
}

.cs-menu-catering-cta-text p {
    margin: 0;
}


/* button */

.cs-menu-catering-button {
    margin-top: 22px;
}

.cs-menu-catering-button .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 22px;

    background: var(--cs-accent);

    border: 1px solid var(--cs-accent);
    border-radius: var(--cs-radius-pill);

    color: var(--cs-dark);

    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.cs-menu-catering-button .elementor-button:hover {
    transform: translateY(-2px);

    background: var(--cs-white);
    border-color: var(--cs-white);

    color: var(--cs-dark);
}

/* =========================================================
   MENU ORDER CTA
   ========================================================= */

.cs-menu-order {
    --width: 100%;
    --content-width: 100%;

    width: 100%;
    max-width: none;

    padding: 0 0 110px;

    background: var(--cs-background);
}


.cs-menu-order > .cs-menu-order-inner {
    --width: 100%;
    --max-width: 1240px;

    position: relative;
    isolation: isolate;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    margin: 0 auto;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 52px 58px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #344e41 0%,
            #283c33 100%
        );

    border-radius: 28px;

    box-shadow:
        0 22px 50px rgba(38, 39, 36, 0.12);
}


/* subtle decorative glow */

.cs-menu-order > .cs-menu-order-inner::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -120px;
    top: -160px;

    z-index: -1;

    border-radius: 50%;

    background: rgba(214, 168, 75, 0.09);

    filter: blur(4px);
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.cs-menu-order .cs-menu-order-content {
    --width: auto;
    --max-width: 680px;

    width: auto;
    max-width: 680px;

    flex: 1 1 auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* kicker */

.cs-menu-order .cs-menu-order-kicker {
    color: var(--cs-accent);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cs-menu-order .cs-menu-order-kicker p {
    margin: 0;
}


/* title */

.cs-menu-order
.cs-menu-order-title
.elementor-heading-title {
    margin: 14px 0 0;

    color: var(--cs-white);

    font-size: clamp(36px, 3.5vw, 52px);
    line-height: 1.05;
    font-weight: 700;

    letter-spacing: -0.04em;
}


/* description */

.cs-menu-order .cs-menu-order-text {
    max-width: 560px;

    margin-top: 16px;

    color: rgba(255,255,255,0.74);

    font-size: 16px;
    line-height: 1.65;
}

.cs-menu-order .cs-menu-order-text p {
    margin: 0;
}


/* =========================================================
   DELIVERY INFO
   ========================================================= */

.cs-menu-order .cs-menu-order-delivery {
    --width: auto;
    --max-width: 620px;

    width: auto;
    max-width: 620px;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 12px;

    margin-top: 26px;
}


.cs-menu-order .cs-menu-order-delivery-icon {
    --width: auto;
    --max-width: none;

    width: auto;
    max-width: none;

    flex: 0 0 auto;
}

.cs-menu-order
.cs-menu-order-delivery-icon
.elementor-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--cs-accent);

    background: rgba(214, 168, 75, 0.08);

    border: 1px solid rgba(214, 168, 75, 0.35);
    border-radius: 50%;

    font-size: 16px;
}

.cs-menu-order
.cs-menu-order-delivery-icon
.elementor-icon i {
    color: var(--cs-accent);
}

.cs-menu-order
.cs-menu-order-delivery-icon
.elementor-icon svg {
    width: 16px;
    height: 16px;

    fill: var(--cs-accent);
}

.cs-menu-order
.cs-menu-order-delivery-icon
.elementor-icon svg path {
    fill: var(--cs-accent);
}


.cs-menu-order .cs-menu-order-delivery-text {
    color: rgba(255,255,255,0.66);

    font-size: 13px;
    line-height: 1.55;
}

.cs-menu-order .cs-menu-order-delivery-text p {
    margin: 0;
}


/* =========================================================
   RIGHT ACTION
   ========================================================= */

.cs-menu-order .cs-menu-order-action {
    --width: auto;
    --max-width: none;

    width: auto;

    flex: 0 0 auto;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-align: right;
}


.cs-menu-order .cs-menu-order-action-label {
    color: rgba(255,255,255,0.55);

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.cs-menu-order .cs-menu-order-action-label p {
    margin: 0;
}


/* phone */

.cs-menu-order
.cs-menu-order-phone
.elementor-heading-title {
    margin: 10px 0 0;

    color: var(--cs-accent);

    font-size: 30px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: -0.025em;
}


.cs-menu-order
.cs-menu-order-phone
.elementor-heading-title a {
    color: inherit;
    text-decoration: none;
}


/* button */

.cs-menu-order .cs-menu-order-button {
    margin-top: 22px;
}


.cs-menu-order
.cs-menu-order-button
.elementor-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    background: var(--cs-accent);

    border: 1px solid var(--cs-accent);
    border-radius: var(--cs-radius-pill);

    color: var(--cs-dark);

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.cs-menu-order
.cs-menu-order-button
.elementor-button:hover {
    transform: translateY(-2px);

    background: var(--cs-white);
    border-color: var(--cs-white);

    color: var(--cs-dark);
}

/* =========================================================
   MENU PRODUCTS SECTION
   ========================================================= */

.cs-menu-products {
    --width: 100%;
    --content-width: 100%;

    width: 100%;
    max-width: none;

    padding: 20px 0 110px;

    background: var(--cs-background);
}

.cs-menu-products > .cs-menu-products-inner {
    --width: 100%;
    --max-width: 1240px;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;
}


/* =========================================================
   PRODUCTS HEADING
   ========================================================= */

.cs-menu-products .cs-menu-products-heading {
    --width: 100%;
    --max-width: 760px;

    width: 100%;
    max-width: 760px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cs-menu-products .cs-menu-products-kicker {
    margin: 0;

    color: var(--cs-accent);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cs-menu-products .cs-menu-products-kicker p {
    margin: 0;
}

.cs-menu-products
.cs-menu-products-title
.elementor-heading-title {
    margin: 16px 0 0;

    color: var(--cs-dark);

    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.03;
    font-weight: 700;

    letter-spacing: -0.045em;
}


/* =========================================================
   PRODUCTS GRID
   Elementor Flexbox Container -> forced CSS Grid
   ========================================================= */

.cs-menu-products .cs-menu-products-grid,
.cs-menu-products .cs-menu-products-grid.e-con {
    --width: 100%;
    --max-width: none;
    --display: grid;

    width: 100%;
    max-width: none;

    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;

    margin-top: 22px;

    align-items: stretch;
}

/*
   Every direct Elementor container inside the grid occupies
   exactly one grid cell. This also keeps the 4-column layout
   working even if Elementor still has its own width/flex vars.
*/
.cs-menu-products .cs-menu-products-grid > .e-con,
.cs-menu-products .cs-menu-products-grid > .cs-menu-product-card {
    --width: 100%;
    --max-width: none;
    --flex-grow: 0;
    --flex-shrink: 1;
    --flex-basis: auto;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    flex: none !important;

    margin: 0 !important;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.cs-menu-products .cs-menu-product-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(38, 39, 36, 0.10);
    border-radius: 22px;

    box-shadow:
        0 16px 36px rgba(38, 39, 36, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cs-menu-products .cs-menu-product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 24px 48px rgba(38, 39, 36, 0.12);
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.cs-menu-products .cs-menu-product-image {
    --width: 100%;
    --max-width: none;

    width: 100%;
    max-width: none;

    min-height: 210px;
    
    border-radius: 18px 18px 0 0;

    flex: 0 0 auto;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* =========================================================
   PRODUCT CONTENT
   ========================================================= */

.cs-menu-products .cs-menu-product-content {
    --width: 100%;
    --max-width: none;

    width: 100%;
    max-width: none;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    flex: 1 1 auto;

    padding: 20px 20px 22px;
}


/* number */

.cs-menu-products .cs-menu-product-number {
    margin: 0;

    color: var(--cs-accent);

    font-size: 10px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.cs-menu-products .cs-menu-product-number p {
    margin: 0;
}


/* title */

.cs-menu-products
.cs-menu-product-title
.elementor-heading-title {
    margin: 12px 0 0;

    color: var(--cs-dark);

    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.025em;
}


/* =========================================================
   PRODUCT META
   ========================================================= */

.cs-menu-products .cs-menu-product-meta {
    --width: 100%;
    --max-width: none;

    width: 100%;
    max-width: none;

    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-top: auto;
    padding-top: 16px;

    border-top: 1px solid rgba(38, 39, 36, 0.10);
}


/* weights */

.cs-menu-products .cs-menu-product-meta-weight {
    --width: auto;
    --max-width: none;

    width: auto;
    max-width: none;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.cs-menu-products .cs-menu-product-weight {
    margin: 0;

    color: var(--cs-text-muted);

    font-size: 12px;
    line-height: 1.2;
}

.cs-menu-products .cs-menu-product-weight p {
    margin: 0;
}


/* prices */

.cs-menu-products .cs-menu-product-meta-price {
    --width: auto;
    --max-width: none;

    width: auto;
    max-width: none;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 7px;
}

.cs-menu-products .cs-menu-product-price {
    margin: 0;

    color: var(--cs-accent);

    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;

    text-align: right;
}

.cs-menu-products .cs-menu-product-price p {
    margin: 0;
}


/* =========================================================
   PRODUCTS RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .cs-menu-products .cs-menu-products-grid,
    .cs-menu-products .cs-menu-products-grid.e-con {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .cs-menu-products {
        padding: 72px 0;
    }

    .cs-menu-products > .cs-menu-products-inner {
        width: calc(100% - 30px);
    }

    .cs-menu-products
    .cs-menu-products-title
    .elementor-heading-title {
        font-size: 40px;
    }

    .cs-menu-products .cs-menu-products-grid,
    .cs-menu-products .cs-menu-products-grid.e-con {
        grid-template-columns: 1fr !important;

        gap: 16px !important;

        margin-top: 38px;
    }

    .cs-menu-products .cs-menu-product-image {
        min-height: 250px;
    }
}

/* =========================================================
   PRODUCT CATEGORY TABS
   ========================================================= */

.cs-menu-product-section {
    display: none !important;
}

.cs-menu-product-section.is-active {
    display: flex !important;
}
