@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Mulish:wght@300;400;600;700;800&display=swap');

:root {
    --vietkitchenbcn_bg: #0E2F2A;
    --vietkitchenbcn_gold: #E0A33B;
    --vietkitchenbcn_cream: #F5ECD8;
    --vietkitchenbcn_serif: 'Cormorant Garamond', Georgia, serif;
    --vietkitchenbcn_sans: 'Mulish', system-ui, sans-serif;
}

body:has(.vietkitchenbcn_book_screen) {
    overflow: hidden;
    background: var(--vietkitchenbcn_bg);
}

body:has(.vietkitchenbcn_book_screen) #wrapper,
body:has(.vietkitchenbcn_book_screen) #main,
body:has(.vietkitchenbcn_book_screen) .page-wrapper,
body:has(.vietkitchenbcn_book_screen) .entry-content {
    margin: 0;
    padding: 0;
    background: var(--vietkitchenbcn_bg);
}

.vietkitchenbcn_book_screen {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    background: var(--vietkitchenbcn_bg);
    color: var(--vietkitchenbcn_cream);
    font-family: var(--vietkitchenbcn_sans);
}


/* TOPBAR */

.vietkitchenbcn_topbar {
    position: relative;
    z-index: 100;
    flex: none;
    display: flex;
    align-items: center;
    gap: 14px;
    height: 60px;
    padding: 0 16px;
    background: var(--vietkitchenbcn_bg);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.vietkitchenbcn_brand {
    flex: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vietkitchenbcn_cream) !important;
    text-decoration: none !important;
}

.vietkitchenbcn_brand img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.vietkitchenbcn_brand span {
    color: var(--vietkitchenbcn_cream);
    font-family: var(--vietkitchenbcn_serif);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .02em;
}

.vietkitchenbcn_categorybar {
    position: relative;
    z-index: 95;
    flex: none;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    padding: 8px 16px;
    background: #103b35;
    border-bottom: 1px solid rgba(224,163,59,.22);
}

.vietkitchenbcn_categorybar_label {
    flex: none;
    color: var(--vietkitchenbcn_gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.vietkitchenbcn_nav {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.vietkitchenbcn_nav::-webkit-scrollbar {
    display: none;
}

.vietkitchenbcn_nav button {
    flex: none;
    min-height: 34px;
    padding: 7px 14px;
    background: rgba(245,236,216,.06);
    border: 1px solid rgba(245,236,216,.18);
    border-radius: 999px;
    color: rgba(245,236,216,.82);
    cursor: pointer;
    font-family: var(--vietkitchenbcn_sans);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.vietkitchenbcn_nav button:hover,
.vietkitchenbcn_nav button.is_active {
    background: var(--vietkitchenbcn_gold);
    border-color: var(--vietkitchenbcn_gold);
    color: #241a0c;
}

.vietkitchenbcn_topbar_right {
    flex: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vietkitchenbcn_btn_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 9px 16px;
    background: var(--vietkitchenbcn_gold);
    border: 1px solid var(--vietkitchenbcn_gold);
    border-radius: 999px;
    color: #241a0c;
    cursor: pointer;
    font-family: var(--vietkitchenbcn_sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vietkitchenbcn_btn_order:hover {
    filter: brightness(.95);
}

.vietkitchenbcn_btn_reserve_outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    background: none;
    border: 1px solid var(--vietkitchenbcn_gold);
    border-radius: 999px;
    color: var(--vietkitchenbcn_gold) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.vietkitchenbcn_btn_reserve_outline:hover {
    background: var(--vietkitchenbcn_gold);
    color: #241a0c !important;
}


/* STAGE */

.vietkitchenbcn_stage {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px 74px;
    background:
        radial-gradient(
            80% 80% at 50% 45%,
            rgba(31,83,74,.58),
            rgba(14,47,42,0) 68%
        ),
        var(--vietkitchenbcn_bg);
}

.vietkitchenbcn_book_host {
    width: min(100%, 1380px);
    height: 100%;
}


/*
 * StPageFlip clones/manages these elements.
 * Each uploaded image fills the real page.
 */

.vietkitchenbcn_page_source {
    position: relative;
    overflow: hidden;
    background: #0b2622;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.vietkitchenbcn_page_source::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(22,12,4,.12),
            transparent 9%,
            transparent 91%,
            rgba(22,12,4,.09)
        );
}

.vietkitchenbcn_page_blur {
    position: absolute;
    inset: -8%;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(18px) brightness(.46) saturate(1.08);
    transform: scale(1.08);
}

.vietkitchenbcn_page_image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
}


/* StPageFlip generated layers */

.vietkitchenbcn_book_host .stf__parent {
    margin: auto !important;
}

.vietkitchenbcn_book_host .stf__wrapper {

}


/* ARROWS */

.vietkitchenbcn_arrows {
    position: absolute;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    pointer-events: none;
}

.vietkitchenbcn_arrow {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62.5px;
    height: 50px;
    padding: 0;
    background: rgba(11,38,34,.72);
    border: 1px solid rgba(245,236,216,.3);
    border-radius: 50%;
    color: var(--vietkitchenbcn_cream);
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1;
    transition:
        background .15s ease,
        color .15s ease,
        opacity .2s ease;
    margin: 0px;
}

.vietkitchenbcn_arrow:hover {
    background: rgba(224,163,59,.94);
    color: #241a0c;
}

.vietkitchenbcn_arrow:disabled {
    opacity: .25;
    cursor: default;
}


/* BOTTOM BAR */

.vietkitchenbcn_bookbar {
    position: relative;
    z-index: 100;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    height: 48px;
    padding: 0 90px;
    background: var(--vietkitchenbcn_bg);
    border-top: 1px solid rgba(255,255,255,.08);
    white-space: nowrap;
}

.vietkitchenbcn_bookbar_num {
    color: var(--vietkitchenbcn_gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
}

.vietkitchenbcn_bookbar_label {
    max-width: 48vw;
    overflow: hidden;
    color: rgba(245,236,216,.72);
    font-family: var(--vietkitchenbcn_serif);
    font-size: 15px;
    font-style: italic;
    text-overflow: ellipsis;
}

.vietkitchenbcn_bookbar_total {
    color: rgba(245,236,216,.42);
    font-size: 11px;
    letter-spacing: .14em;
}

.vietkitchenbcn_sticky_res {
    position: fixed;
    left: 20px;
    bottom: 14px;
    z-index: 200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    background: var(--vietkitchenbcn_gold);
    border-radius: 999px;
    box-shadow: 0 12px 30px -8px rgba(0,0,0,.55);
    color: #241a0c !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.vietkitchenbcn_empty {
    padding: 40px;
    color: var(--vietkitchenbcn_cream);
    text-align: center;
}

.vietkitchenbcn_empty h2 {
    margin: 0 0 10px;
    color: var(--vietkitchenbcn_cream);
    font-family: var(--vietkitchenbcn_serif);
    font-size: 44px;
}


/* TABLET / PHONE */

@media (max-width: 819px) {
    .vietkitchenbcn_categorybar {
        gap: 8px;
        min-height: 48px;
        padding: 7px 10px;
    }

    .vietkitchenbcn_categorybar_label {
        display: none;
    }

    .vietkitchenbcn_nav button {
        min-height: 32px;
        padding: 7px 11px;
        font-size: 9px;
    }

    .vietkitchenbcn_topbar {
        gap: 8px;
        height: 56px;
        padding: 0 10px;
    }

    .vietkitchenbcn_brand span {
        display: none;
    }

    .vietkitchenbcn_nav {
        justify-content: flex-start;
    }

    .vietkitchenbcn_stage {
        padding: 8px 8px 58px;
    }

    .vietkitchenbcn_book_host {
        width: 100%;
        height: 100%;
    }

    .vietkitchenbcn_arrows {
        align-items: flex-end;
        padding: 0 10px 8px;
    }

    .vietkitchenbcn_arrow {
        width: 62.5px;
        height: 42px;
        background: rgba(11,38,34,.82);
    }

    .vietkitchenbcn_bookbar {
        height: 46px;
        padding: 0 10px;
    }

    .vietkitchenbcn_bookbar_label {
        max-width: 55vw;
    }

    .vietkitchenbcn_sticky_res {
        display: none;
    }
}

@media (max-width: 520px) {
    .vietkitchenbcn_brand img {
        width: 31px;
        height: 31px;
    }

    .vietkitchenbcn_nav button {
        padding: 7px 6px;
        font-size: 9px;
    }

    .vietkitchenbcn_btn_reserve_outline {
        padding: 8px 11px;
        font-size: 10px;
    }
}


/* ORDER / CONTACT FORM 7 */

html.vietkitchenbcn_order_open,
html.vietkitchenbcn_order_open body {
    overflow: hidden !important;
}

.vietkitchenbcn_sticky_order {
    position: fixed;
    left: 20px;
    bottom: 70px;
    z-index: 200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    background: var(--vietkitchenbcn_gold);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 12px 30px -8px rgba(0,0,0,.55);
    color: #241a0c;
    cursor: pointer;
    font-family: var(--vietkitchenbcn_sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.vietkitchenbcn_sticky_order:hover , .vietkitchenbcn_sticky_res:hover{
    background: var(--vietkitchenbcn_bg);
    color: white !important;
}

.vietkitchenbcn_order_modal {
    position: fixed;
    inset: 0;
    z-index: 100500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.vietkitchenbcn_order_modal.is_open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.vietkitchenbcn_order_backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(5,22,19,.82);
    border: 0;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.vietkitchenbcn_order_card {
    position: relative;
    z-index: 2;
    width: min(94vw, 560px);
    max-height: min(92dvh, 820px);
    overflow-y: auto;
    background: #F7EEDA;
    border-radius: 10px;
    box-shadow: 0 36px 90px -22px rgba(0,0,0,.7);
    color: #2A2017;
}

.vietkitchenbcn_order_head {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    background: #14403A;
    color: var(--vietkitchenbcn_cream);
}

.vietkitchenbcn_order_kicker {
    display: block;
    margin-bottom: 2px;
    color: var(--vietkitchenbcn_gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.vietkitchenbcn_order_head h2 {
    margin: 0;
    color: var(--vietkitchenbcn_cream);
    font-family: var(--vietkitchenbcn_serif);
    font-size: 31px;
    font-weight: 600;
    line-height: 1;
}

.vietkitchenbcn_order_close {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62.5px;
    height: 36px;
    padding: 0;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    color: var(--vietkitchenbcn_cream);
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
    margin: 0px;
}
.vietkitchenbcn_order_close:hover{
    background: var(--vietkitchenbcn_gold);
}
.vietkitchenbcn_order_context {
    display: flex;
    display: none;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 11px 24px;
    background: #EFE2C8;
    border-bottom: 1px solid rgba(42,32,23,.12);
    color: #756550;
    font-size: 11px;
}

.vietkitchenbcn_order_context strong {
    color: #14403A;
    font-weight: 700;
}

.vietkitchenbcn_order_success {
    margin: 18px 24px 0;
    padding: 11px 14px;
    background: rgba(20,64,58,.1);
    border: 1px solid rgba(20,64,58,.22);
    border-radius: 7px;
    color: #14403A;
    font-size: 13px;
    font-weight: 700;
}

.vietkitchenbcn_order_body {
    padding: 22px 24px 24px;
}

.vietkitchenbcn_order_body .wpcf7 {
    margin: 0;
}

.vietkitchenbcn_order_body .vietkitchenbcn_order_form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vietkitchenbcn_order_body .vietkitchenbcn_order_form_row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.vietkitchenbcn_order_body .vietkitchenbcn_order_form label {
    display: block;
    margin: 0;
    color: #6f5f4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
}

.vietkitchenbcn_order_body input[type="text"],
.vietkitchenbcn_order_body input[type="tel"],
.vietkitchenbcn_order_body input[type="email"],
.vietkitchenbcn_order_body input[type="number"],
.vietkitchenbcn_order_body select,
.vietkitchenbcn_order_body textarea {
    width: 100%;
    margin: 6px 0 0;
    padding: 11px 12px;
    background: #fffaf0;
    border: 1px solid rgba(42,32,23,.2);
    border-radius: 7px;
    box-shadow: none;
    color: #2A2017;
    font-family: var(--vietkitchenbcn_sans);
    font-size: 14px;
}

.vietkitchenbcn_order_body textarea {
    min-height: 92px;
    resize: vertical;
}

.vietkitchenbcn_order_body input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 22px;
    background: var(--vietkitchenbcn_gold);
    border: 0;
    border-radius: 999px;
    color: #241a0c;
    cursor: pointer;
    font-family: var(--vietkitchenbcn_sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vietkitchenbcn_order_body .wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 11px;
}

.vietkitchenbcn_order_body .wpcf7-response-output {
    margin: 14px 0 0 !important;
    padding: 10px 12px !important;
    border-radius: 6px;
    font-size: 12px;
}

@media (max-width: 819px) {
    .vietkitchenbcn_sticky_order {
        display: none;
    }

    .vietkitchenbcn_btn_order,
    .vietkitchenbcn_btn_reserve_outline {
        padding: 8px 10px;
        font-size: 9px;
        margin: 0px;
    }
}

@media (max-width: 520px) {
    .vietkitchenbcn_order_body .vietkitchenbcn_order_form_row {
        grid-template-columns: 1fr;
    }

    .vietkitchenbcn_order_modal {
        padding: 8px;
    }

    .vietkitchenbcn_order_card {
        width: 100%;
        max-height: 96dvh;
    }

    .vietkitchenbcn_order_head {
        padding: 16px 18px;
    }

    .vietkitchenbcn_order_context,
    .vietkitchenbcn_order_body {
        padding-left: 18px;
        padding-right: 18px;
    }
}
