/* --- HEADER --- */
.header__bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--head-height);
    padding: 0 var(--sp-padding-side);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: linear-gradient(to right, #F3BEE3, #DAC1FF);
}

.header__logo-small img {
    height: 32px;
    width: auto;
}

.header__btn-open {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__btn-open img {
    width: 100%;
    height: auto;
    max-width: 32px;
}

/* --- MENU OVERLAY (Thanh trắng) --- */
.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #FFFFFF;
    color: var(--c-text-main);
    z-index: 200;
    transition: 0.4s ease-in-out;
    padding: 32px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-overlay.is-active {
    right: 0;
    /* Trượt ra */
}

/* --- NÚT ĐÓNG (Dấu X) nằm trong Navbar --- */
.nav__btn-close {
    position: absolute;
    top: 10px;
    right: 0px;
    padding-right: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__btn-close img {
    width: 100%;
    height: auto;
    max-width: 24px;
}


/* --- LỚP PHỦ ĐEN --- */
.nav-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.nav-bg-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav__list {
    width: 100%;
    margin-top: 20px;
}

.nav__item:first-child {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: none;
    padding: 24px 0;
    /* padding-bottom: 0; */
    background: linear-gradient(rgba(243, 190, 227, 0.2), rgba(218, 193, 255, 0.2));
    font-size: var(--fs-24);
}

.nav__item:first-child>a {
    display: inline-block;
    padding: 5px 0px;
    width: 67%;
    text-align: center;
    font-weight: 900;
    border-radius: 50px;
    background-color: #fff;
    font-family: var(--f-en);
}

.nav__item:not(:first-child) {
    text-align: right;
    padding-right: 15px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.nav__item:not(:first-child)>a {
    color: var(--c-text-main);
    display: block;
    font-size: var(--fs-24);
    font-family: var(--f-en);
    font-weight: 900;
}

.nav__insta {
    width: 100%;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    padding: 0 15px 0 0;
    justify-content: flex-end;
    margin-top: 24px;
}

.nav__insta>img {
    width: 32px;
}



.hero {
    position: relative;
    width: 100%;
    margin-top: calc(var(--head-height) + 24px);
}


/* Logo Chính */
.hero__main-logo {
    position: relative;
    width: 344px;
    max-width: 90%;
    margin: -85px auto 20px auto;
    z-index: 10;
}

.hero__open-time {
    display: inline-block;
    padding: 0 0 24px 0;
}

.hero__open-time>img {
    object-fit: cover;
    min-height: 56px;
}

/* CTA Buttons */
.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 var(--sp-padding-side);
}

.hero__cta-btn {
    display: block;
    width: 100%;
}

.hero__cta-btn img {
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}