.flatpickr-day.disabled-red-day {
    background: #ffe6e6 !important;
    color: #cc0000 !important;
    text-decoration: line-through !important;
    border-color: transparent !important;
}

.flatpickr-calendar {
    z-index: 99999 !important;
}

:root {
    --primary-yellow: #ffc905;
    --text-black: #111111;
    --bg-white: #ffffff;
    --light-yellow-bg: #fffbf0;
    --gray-text: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--light-yellow-bg);
    color: var(--text-black);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.page-header-section {
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: var(--bg-white);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #000;
    line-height: 1.1;
}

.jp-sub {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-yellow);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.page-desc {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
    word-break: keep-all;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    backdrop-filter: blur(0px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
}

header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: 0.3s;
    display: block;
}

header.scrolled .logo-img {
    height: 50px;
}

.logo-img:hover {
    transform: scale(0.9);
}

.desktop-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
}

.desktop-nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.desktop-nav .menu-btn {
    background: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    border-radius: 999px;
    color: #000;
    padding: 10px 18px;
    line-height: 1;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.desktop-nav .menu-btn:hover {
    background: var(--primary-yellow);
    color: #000;
}

.desktop-nav li a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}

.desktop-nav li a:hover {
    color: #ffc905;
    opacity: 1;
    transform: scale(0.95);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-reserve {
    padding: 12px 20px;
    background-color: var(--primary-yellow);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    white-space: nowrap;
    height: auto;
    line-height: 1;
    display: inline-block;
    transition: all 0.3s;
    z-index: 2;
}

.btn-reserve:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #000;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-yellow);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-20px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-list a {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
}

.mobile-nav-list a:hover {
    opacity: 0.6;
}

.menu-nav-wrapper {
    position: sticky;
    top: 100px;
    z-index: 900;
    background: rgba(255, 201, 5, 0.98);
    backdrop-filter: blur(5px);
    padding: 10px 0;
    transition: top 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.header-scrolled .menu-nav-wrapper {
    top: 70px;
}

.menu-nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2px 40px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-cat-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    background: #FFFFFF;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.2s;
}

.menu-cat-btn.active {
    background: #000 !important;
    color: #FFF !important;
    transform: scale(1.05);
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.anim-gold-bg {
    background: linear-gradient(130deg, #f7f1d6, #ead27c, #c9a847, #ead27c, #c9a847, #f7f1d6);
    background-size: 300% 300%;
    animation: goldShimmer 10s ease infinite;
    color: #000;
}

.menu-content {
    background-color: var(--light-yellow-bg);
    padding: 60px 40px 40px 40px;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 200px;
}

.menu-category-section {
    margin-bottom: 100px;
    scroll-margin-top: 195px;
}

body.header-scrolled .menu-category-section {
    scroll-margin-top: 165px;
}

.cat-header {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-left: 8px solid var(--primary-yellow);
    padding-left: 15px;
    color: #000;
    line-height: 1;
    letter-spacing: -0.5px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.menu-item-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.menu-item-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-yellow);
}

.item-img-wrap {
    position: relative;   /* V/GF 뱃지 오버레이 기준점 */
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f9f9f9;
    border-bottom: 1px solid #f9f9f9;
}

.item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.menu-item-card:hover .item-img-wrap img {
    transform: scale(1.08);
}

.item-info {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    text-align: left;
}

.item-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin-bottom: 6px;
}

.item-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    width: 100%;
}

.dietary-badges {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.badge {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
}

.badge.gf {
    background-color: #00aeef;
}

.badge.v {
    background-color: #43a047;
}

.item-kj {
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

.platter-title-wrap {
    text-align: center;
    margin-bottom: 10px;
    padding-top: 0;
}

.party-platter-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    background: var(--primary-yellow);
    color: #000;
    padding: 10px 40px;
    display: inline-block;
    transform: rotate(-2deg);
    letter-spacing: -1px;
}

.party-platter-title span {
    background: none;
    -webkit-text-fill-color: #000;
    animation: none;
}

.platter-jp-sub {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-top: 15px;
    letter-spacing: 2px;
}

.store-info-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.store-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin: 20px 0px 0px 0px;
}

.store-address {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.menu-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0;
    line-height: 1;
}

footer {
    padding: 30px 40px;
    background-color: #fff;
    width: 100%;
    border-top: 1px solid #eee;
}

.footer-inner {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: 0.3s;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: #000;
}

.social-icon:hover {
    background-color: var(--primary-yellow);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 40px 100px 40px;
    background-color: #fff;
    width: 100%;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: left;
    font-size: 40px;
    margin: 0 0 5px 0;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.jp-sub-faq {
    text-align: left;
    color: #FFC905;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 60px;
    display: block;
    letter-spacing: 0.5px;
    font-size: 22.4px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 700;
    font-size: 1.05rem;
    color: #111111;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    color: var(--primary-yellow);
}

.faq-item.active .faq-question {
    color: #000;
}

.faq-icon {
    position: relative;
    width: 10px;
    height: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
    color: transparent;
    /* Hide the text '+' */
    user-select: none;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #111;
    transition: 0.3s;
    border-radius: 2px;
}

/* Horizontal bar */
.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical bar */
.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background-color: var(--primary-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-top: 0;
    padding-right: 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 10px;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 900px) {
    header {
        height: 80px;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .logo-img {
        height: 50px;
    }

    header.scrolled .logo-img {
        height: 43px;
    }

    .header-inner {
        padding-left: 15px;
        padding-right: 0;
        gap: 10px;
    }

    .auth-nav-wrap {
        margin-right: 0;
        padding-right: 0;
    }

    .btn-reserve {
        padding: 14px 14px;
        font-size: 13px;
        letter-spacing: 0px;
    }

    .header-right {
        gap: 10px;
    }

    .page-header-section {
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .page-title {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    .jp-sub {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .menu-content {
        padding: 30px 15px;
    }

    .platter-title-wrap {
        padding-top: 40px;
    }

    .menu-nav-wrapper {
        top: 90px;
        padding: 0px;
    }

    body.header-scrolled .menu-nav-wrapper {
        top: 70px;
    }

    .menu-nav-inner {
        padding: 10px 15px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .menu-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .menu-cat-btn {
        padding: 8px 16px;
        font-size: 12px;
        flex: 0 0 auto;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cat-header {
        font-size: 1.5rem;
        margin-bottom: 20px;
        border-width: 4px;
        padding-left: 10px;
    }

    .item-info {
        padding: 12px 10px;
    }

    .item-name {
        font-size: 0.9rem;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .item-meta-row .item-kj {
        font-size: 0.8rem;
    }

    .party-platter-title {
        font-size: 2.6rem;
        padding: 10px 25px;
    }

    .platter-jp-sub {
        font-size: 1.4rem;
    }

    .store-name {
        font-size: 1.6rem;
        margin: 10px 0px 0px 0px;
    }

    .store-info-simple {
        gap: 5px;
    }

    .store-address {
        font-size: 0.95rem;
    }

    .menu-item-price {
        font-size: 0.8rem;
    }

    .faq-grid {
        gap: 0;
    }

    .cart-bar-inner {
        padding: 10px 20px !important;
    }

    .cart-info {
        font-size: 0.75rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 2px !important;
        line-height: 1 !important;
    }

    .cart-total {
        font-size: 1.6rem !important;
        line-height: 1 !important;
    }

    .btn-view-order {
        padding: 12px 20px !important;
        font-size: 11px !important;
    }

    .section-title {
        font-size: 26px !important;
    }

    .jp-sub-faq {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    .menu-category-section {
        margin-bottom: 70px !important;
    }

    .faq-section {
        padding: 40px 20px 40px 20px !important;
    }

    .faq-question {
        font-size: 0.95rem !important;
    }

    .faq-answer {
        font-size: 0.85rem !important;
    }

    .footer-inner {
        flex-direction: column !important;
        gap: 15px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .footer-inner>div:first-child {
        white-space: nowrap !important;
        font-size: 13px !important;
    }

    .social-icons {
        justify-content: center !important;
    }
}

/* Quantity Selector (Card) */
.card-qty-wrap {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
    margin-right: 10px;
}

.card-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    -webkit-appearance: none;
}

.card-qty-btn:hover {
    background: var(--primary-yellow);
    color: #000;
}

.card-qty-input {
    width: 36px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    -webkit-text-fill-color: #000;
    opacity: 1;
}

.btn-add-cart {
    background: #fff;
    color: #000;
    border: 1px solid var(--primary-yellow);
    height: 36px;
    padding: 0 20px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: var(--primary-yellow);
    color: #000;
    border-color: var(--primary-yellow);
}

/* --- Floating Cart Bar --- */
.cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 100100;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-bar.active {
    transform: translateY(0);
}

.cart-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 26px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cart-info {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0 12px;
}

.cart-total {
    color: var(--primary-yellow);
    margin-left: 0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.btn-view-order {
    background: var(--primary-yellow);
    color: #000;
    padding: 16px 28px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 999px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-view-order:hover {
    background: #fff;
    transform: scale(1.05);
}

/* --- Cart Modal --- */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 100110;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    background: #fff;
    width: 550px;
    max-width: 95%;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: 0.3s;
}

.cart-modal-overlay.open .cart-modal {
    transform: translateY(0);
}

.cart-header {
    position: relative;
    padding: 18px 48px;
    background: linear-gradient(90deg, #f0e6b8, #f5d76a, #e8c547, #f5d76a, #f0e6b8);
    background-size: 200% 100%;
    animation: goldShimmer 12s ease infinite;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.08em;
}

.cart-close-btn {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #000;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
}

.cart-body {
    padding: 0;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f9f9f9;
}

.cart-list {
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 0;
    background: #f0f0f0;
    flex-shrink: 0;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.cart-store-banner {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.store-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-yellow);
    margin-top: 3px;
}

.store-text {
    flex: 1;
}

.pickup-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.store-text h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

.store-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.item-details {
    flex: 1;
    min-width: 0;
}

.item-details h4 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 4px 0;
    color: #000;
    line-height: 1.25;
}

.item-price {
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 0;
    background: #ececec;
    border-radius: 10px;
    padding: 4px;
}

.ctrl-btn {
    width: 28px;
    height: 28px;
    background: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
}

.ctrl-btn:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.item-qty {
    font-weight: 800;
    font-size: 15px;
    min-width: 28px;
    text-align: center;
}

.btn-delete-item {
    margin-left: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.btn-delete-item:hover {
    color: #d32f2f;
    transform: scale(1.1);
}

.btn-delete-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.cart-footer {
    padding: 22px 24px 28px;
    border-top: 1px solid #eee;
    background: #fff;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #000;
}

.btn-checkout-final {
    width: 100%;
    padding: 16px 20px;
    background: var(--primary-yellow);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: 0.3s;
    cursor: pointer;
}

.btn-checkout-final:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- Auth & History --- */
.auth-nav-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 15px;
}

.btn-auth-trigger {
    background: transparent;
    border: 2px solid #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
    color: #000;
    -webkit-appearance: none;
}

.btn-auth-trigger:hover {
    background: #000;
    color: #fff;
}

.user-pill-btn {
    background-color: var(--primary-yellow);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-pill-btn:hover {
    background-color: #000;
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #eee;
}

.user-dropdown-menu.show {
    display: block;
}

.user-dropdown-menu a {
    color: #000;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s;
    cursor: pointer;
}

.user-dropdown-menu a:hover {
    background-color: #f8f8f8;
    color: var(--primary-yellow);
}

.success-icon-wrap {
    margin-bottom: 20px;
    color: #4CAF50;
}

.success-icon-wrap svg {
    width: 64px;
    height: 64px;
}

/* Modal Generic */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.custom-modal-overlay.open {
    display: flex;
}

.custom-modal {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 300;
}

/* Forms */
.auth-form h3 {
    margin-bottom: 20px;
    font-weight: 900;
}

.auth-form a {
    color: #000 !important;
    text-decoration: underline;
}

.auth-form a:hover {
    color: var(--primary-yellow) !important;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 13px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.btn-form-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    color: #000 !important;
}

/* History */
.history-list {
    max-height: 400px;
    overflow-y: auto;
}

.history-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.history-item:last-child {
    border-bottom: none;
}

.history-meta {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 5px;
}

.history-items-text {
    font-size: 12px;
    color: #666;
}

/* Pickup Selector in Cart */
.pickup-selector-wrap {
    background: #f9f9f9;
    border: 2px solid var(--primary-yellow);
    border-radius: 12px;
    text-align: left;
    overflow: hidden;
    margin-bottom: 20px;
}

.pickup-selector-header {
    background: var(--primary-yellow);
    color: #000;
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    padding: 12px 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pickup-selector-content {
    padding: 20px;
}

.slot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.slot-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
}

.pickup-date-disp {
    color: #333;
    font-weight: 900;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .pickup-date-disp {
        font-size: 0.85rem !important;
    }

    /* 주문 안내: Pick up 부분을 다음 줄로, 구분자(/)는 숨김 */
    #orderCutoffNotice .cutoff-detail {
        display: block;
    }

    #orderCutoffNotice .cutoff-sep {
        display: none;
    }
}