@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
    --card-padding: 30px;
    --card-gap: 25px;
    --card-radius: 24px;
    --img-height: 300px;
    --btn-min-h: 48px;
    --btn-radius: 12px;
    --gold: #f5c778;
    --gold2: #d4a76a;
    --brown: #3a1f14;
    --brown2: #5a3825;
    --brown3: #5a2d1a;
    --cream: #fdf8f0;
    --card-bg: rgba(255, 255, 255, 0.88);
    --card-border: rgba(212, 167, 106, 0.2);
    --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #3a1f14;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(160deg, #fdf8f0 0%, #f5efe6 40%, #ede1d0 100%);
}

/* ===== HEADER / NAV ===== */
.navcontainer {
    width: 100%;
    background: linear-gradient(135deg, #1a0f0a 0%, #3d1f14 40%, #5a2d1a 100%);
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(26, 15, 10, 0.5);
    padding: 0 20px;
}

nav {
    width: 100%;
    max-width: 1400px;
}

#navlist {
    width: 100%;
    padding: 12px 24px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

#logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #f5c778;
    text-shadow: 0 2px 15px rgba(245, 199, 120, 0.35);
    white-space: nowrap;
    letter-spacing: 1.5px;
}

a {
    text-decoration: none;
    color: #e8d5c0;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 22px;
    border-radius: 25px;
    transition: all 0.35s ease;
    white-space: nowrap;
    position: relative;
}

a:hover {
    color: #f5c778;
    background: rgba(245, 199, 120, 0.12);
    transform: translateY(-2px);
}

a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f5c778, transparent);
    transition: width 0.35s ease;
    border-radius: 2px;
}

a:hover::after {
    width: 70%;
}

#navlinks {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

/* ===== HAMBURGER BUTTON (hidden on desktop) ===== */
.hamburger-li {
    display: none;
}

.hamburger-btn {
    background: none;
    border: 2px solid rgba(245, 199, 120, 0.3);
    border-radius: 12px;
    color: #f5c778;
    font-size: 1.6rem;
    width: 46px;
    height: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.hamburger-btn:hover {
    background: rgba(245, 199, 120, 0.12);
    border-color: #f5c778;
}

.hamburger-btn.active {
    background: rgba(245, 199, 120, 0.15);
    border-color: #f5c778;
}

.hamburger-icon {
    line-height: 1;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 5, 3, 0.7);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ===== MOBILE NAV PANEL ===== */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #1a0f0a 0%, #2c1810 30%, #3d1f14 100%);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

.mobile-nav-overlay.open .mobile-nav-panel {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(245, 199, 120, 0.12);
}

.mobile-nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #f5c778;
    white-space: nowrap;
}

.mobile-nav-close {
    background: rgba(245, 199, 120, 0.1);
    border: 1px solid rgba(245, 199, 120, 0.2);
    color: #f5c778;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background: rgba(245, 199, 120, 0.2);
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 15px 12px;
    gap: 4px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px;
    color: #e8d5c0;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.mobile-nav-links a:hover {
    background: rgba(245, 199, 120, 0.1);
    color: #f5c778;
    border-left-color: #f5c778;
    transform: translateX(4px);
}

.mobile-nav-links a::after {
    display: none;
}

.mobile-cart-link {
    position: relative;
}

.mobile-cart-badge {
    position: static !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #c62828;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-left: 6px;
    line-height: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #2c1810 0%, #5a2d1a 40%, #8b4513 70%, #d4a76a 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '🍛🍕🍔🌮🍩🍗🧁🍰🥘🫓';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    opacity: 0.06;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    pointer-events: none;
    word-spacing: 40px;
    letter-spacing: 30px;
    line-height: 3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title-wrapper {
    text-align: center;
    margin-bottom: 10px;
    animation: slideDown 0.8s ease-out;
}

.hero-emoji {
    font-size: clamp(1.5rem, 4.5vw, 3.2rem);
    line-height: 1;
    vertical-align: middle;
    position: relative;
    top: -0.06em;
    margin: 0 -0.05em;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #f5c778;
    text-shadow: 0 4px 20px rgba(245, 199, 120, 0.3);
    line-height: 1.3;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #f5c778, #ffdf8e, #f5c778);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.hero-br {
    display: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e8d5c0;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: slideDown 0.8s ease-out 0.2s both;
}

.hero-taglines {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-taglines p {
    color: #d4a76a;
    font-size: 1.1rem;
    margin: 8px 0;
    font-style: italic;
}

.hero-intro {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 199, 120, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-intro p {
    color: #f0e0c8;
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f5c778, #e0a94e);
    color: #2c1810 !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(245, 199, 120, 0.35);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 10px 35px rgba(245, 199, 120, 0.5);
    background: linear-gradient(135deg, #ffdf8e, #f5c778) !important;
}

.hero-btn::after {
    display: none;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    text-align: center;
    color: #3a1f14;
    padding: 50px 20px 10px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d4a76a, #f5c778, #d4a76a);
    margin: 15px auto 0;
    border-radius: 4px;
}

/* ===== CONTENT BOX ===== */
.contentbox {
    width: 88%;
    max-width: 1300px;
    margin: 30px auto 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0;
}

/* ===== RECIPE SECTIONS ===== */
.recipe-section {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.recipe-section.hidden-by-filter {
    display: none !important;
}

.recipe-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--card-gap);
    padding: var(--card-padding);
    border-radius: var(--card-radius);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    box-shadow: 0 6px 30px rgba(58, 31, 20, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(58, 31, 20, 0.18);
}

/* ===== LEFT BOX (Text content) ===== */
.leftbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
    order: 2;
}

.leftbox h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3a1f14;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, transparent, #d4a76a, #f5c778, #d4a76a, transparent) 1;
}

.dish-tagline {
    text-align: center;
    color: #7a4f2e;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.leftbox h3 {
    font-size: 1.3rem;
    color: #5a3825;
    font-weight: 700;
    margin-top: 5px;
}

.leftbox h4 {
    font-size: 1.05rem;
    color: #6b3a2a;
    font-weight: 600;
    margin-bottom: 4px;
}

.leftbox li {
    color: #4a3428;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-left: 5px;
}

.recipe-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ing-box {
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(245, 199, 120, 0.08), rgba(212, 167, 106, 0.05));
    border-radius: 12px;
    border-left: 4px solid #d4a76a;
    list-style-position: inside;
}

.process-box {
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(107, 58, 42, 0.04), rgba(90, 45, 26, 0.02));
    border-radius: 12px;
    border-left: 4px solid #6b3a2a;
    list-style-position: inside;
}

.result-line {
    color: #8b5e3c;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(245, 199, 120, 0.12), rgba(212, 167, 106, 0.08));
    padding: 12px 18px;
    border-radius: 12px;
    border-left: 4px solid #f5c778;
    font-size: 0.95rem;
}

/* ===== IMAGE BOX ===== */
.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(26, 15, 10, 0.2);
    width: 100%;
    max-width: 400px;
    height: var(--img-height);
    transition: box-shadow 0.4s ease;
    order: 1;
}

.image-box:hover {
    box-shadow: 0 15px 45px rgba(26, 15, 10, 0.35);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.image-box:hover img {
    transform: scale(1.08);
}

/* Overlay hidden by JS, keeping CSS for compatibility */
.image-box .overlay {
    display: none;
}

/* Click Animation */
.img-clicked {
    animation: bounceClick 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* Emoji Burst */
.emoji-burst {
    position: absolute;
    font-size: 1.8rem;
    z-index: 50;
    pointer-events: none;
    animation: emojiFly 1s ease-out forwards;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 20px 40px 60px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-container {
    max-width: 900px;
    margin: 30px auto 0;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 35px rgba(58, 31, 20, 0.1);
    border: 1px solid rgba(212, 167, 106, 0.2);
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #3d1f14, #5a2d1a);
    border-radius: 20px;
    min-width: 200px;
    box-shadow: 0 6px 20px rgba(26, 15, 10, 0.2);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #f5c778;
    margin-bottom: 5px;
}

.contact-role {
    color: #d4a76a;
    font-size: 0.95rem;
    font-style: italic;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(245, 199, 120, 0.08), rgba(212, 167, 106, 0.04));
    border-radius: 16px;
    border-left: 4px solid #d4a76a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(58, 31, 20, 0.08);
}

.contact-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: #3a1f14;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.contact-item p {
    color: #5a3825;
    font-size: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 20px 40px 50px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content {
    max-width: 800px;
    margin: 30px auto 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 35px rgba(58, 31, 20, 0.1);
    border: 1px solid rgba(212, 167, 106, 0.2);
    text-align: center;
}

.about-content p {
    color: #4a3428;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* ===== FOOTER ===== */
.footerbox {
    background: linear-gradient(135deg, #1a0f0a 0%, #3d1f14 50%, #5a2d1a 100%);
    padding: 30px 20px 20px;
    text-align: center;
}

.footerbox p {
    color: #e8d5c0;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: #d4a76a !important;
    font-style: italic;
    font-size: 0.9rem !important;
    margin-top: 6px;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceClick {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(0.88) rotate(-3deg);
    }

    50% {
        transform: scale(1.12) rotate(2deg);
    }

    70% {
        transform: scale(0.96);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes emojiFly {
    0% {
        opacity: 1;
        transform: scale(0.5) translateY(0);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) translateY(-50px);
    }

    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-120px) rotate(30deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes starGlow {

    0%,
    100% {
        text-shadow: 0 0 4px rgba(245, 199, 120, 0.3);
    }

    50% {
        text-shadow: 0 0 16px rgba(245, 199, 120, 0.8);
    }
}

@keyframes reviewSlideIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SECTION DIVIDERS ===== */
.recipe-section+.recipe-section::before {
    content: '✦  ✦  ✦';
    display: block;
    text-align: center;
    color: #d4a76a;
    font-size: 1.1rem;
    letter-spacing: 8px;
    margin-bottom: 0;
    padding-bottom: 20px;
    opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .recipe-card {
        padding: 25px;
    }

    .image-box {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .contentbox {
        width: 95%;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --card-padding: 22px;
        --img-height: 260px;
    }

    /* ---- Show hamburger, hide desktop nav links ---- */
    #navlinks {
        display: none !important;
    }

    .hamburger-li {
        display: block;
    }

    #navlist {
        padding: 10px 16px;
    }

    #logo {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 50px 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-taglines p {
        font-size: 0.95rem;
    }

    .hero-intro {
        padding: 20px;
    }

    .hero-intro p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 35px 15px 10px;
    }

    .contentbox {
        width: 96%;
        gap: 35px;
    }

    .recipe-card {
        gap: 20px;
    }

    .leftbox h2 {
        font-size: 1.6rem;
    }

    .card-actions {
        flex-direction: column;
        gap: 8px;
    }

    .card-btn {
        width: 100%;
    }

    .image-box {
        max-width: 100%;
    }

    .contact-section {
        padding: 20px 15px 40px;
    }

    .contact-container {
        padding: 25px;
        gap: 25px;
    }

    .about-section {
        padding: 20px 15px 40px;
    }

    .about-content {
        padding: 25px;
    }

    .about-content p {
        font-size: 1rem;
    }

    .search-bar {
        max-width: 100%;
    }

    .category-bar {
        padding: 0 10px 15px;
    }
}

@media (max-width: 600px) {
    #logo {
        font-size: 1.3rem;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .hero-intro {
        padding: 18px;
    }

    .recipe-card {
        padding: 18px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .image-box {
        height: 240px;
    }

    .contact-container {
        padding: 20px;
    }

    .about-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --card-padding: 16px;
        --img-height: 220px;
    }

    #logo {
        font-size: 1.2rem;
    }

    .hero-section {
        padding: 30px 12px;
    }

    .hero-btn {
        padding: 12px 28px !important;
        font-size: 1rem !important;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .leftbox h2 {
        font-size: 1.35rem;
    }

    .leftbox h3 {
        font-size: 1.1rem;
    }

    .leftbox li {
        font-size: 0.85rem;
    }

    .card-btn {
        font-size: 0.88rem;
        padding: 10px;
    }

    .contact-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .contact-emoji {
        font-size: 1.5rem;
    }

    .cat-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

@media (max-width: 360px) {
    .cat-btn {
        white-space: normal;
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

/* ===== CART BADGE IN NAV ===== */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1.2rem !important;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #c62828;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

/* ===== CARD ACTION BUTTONS (below image) ===== */
.card-actions {
    display: flex;
    gap: 10px;
    padding: 5px 0 0;
    width: 100%;
    max-width: 400px;
    order: 3;
}

.card-btn {
    flex: 1;
    padding: 12px 10px;
    min-height: var(--btn-min-h);
    border: none;
    border-radius: var(--btn-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.cart-add-btn {
    background: linear-gradient(135deg, #d4a76a, #f5c778);
    color: #2c1810;
}

.cart-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 167, 106, 0.5);
}

.buy-now-btn {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.4);
}

/* ===== FEEDBACK SECTION ===== */
.feedback-section {
    padding: 20px 40px 50px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feedback-container {
    max-width: 1000px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feedback-form-card,
.feedback-reviews {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 8px 35px rgba(58, 31, 20, 0.1);
    border: 1px solid rgba(212, 167, 106, 0.2);
}

.feedback-form-card h3,
.feedback-reviews h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #3a1f14;
    margin-bottom: 20px;
}

.fb-group {
    margin-bottom: 16px;
}

.fb-label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: #5a3825;
    margin-bottom: 6px;
}

.fb-input,
.fb-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(212, 167, 106, 0.25);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #3a1f14;
    background: #fdf8f0;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fb-input:focus,
.fb-select:focus {
    border-color: #d4a76a;
    box-shadow: 0 0 0 3px rgba(212, 167, 106, 0.15);
}

.fb-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a3825' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.fb-star-picker {
    display: flex;
    gap: 8px;
}

.fb-star {
    font-size: 2rem;
    cursor: pointer;
    color: #d4a76a;
    transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.3s ease;
}

.fb-star:hover,
.fb-star.active {
    color: #f5c778;
    transform: scale(1.25);
    animation: starGlow 1.2s ease-in-out infinite;
}

.fb-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #d4a76a, #f5c778);
    color: #2c1810;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 167, 106, 0.3);
    margin-top: 5px;
}

.fb-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 167, 106, 0.5);
}

/* Feedback review cards */
.fb-review-card {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    margin-bottom: 12px;
    border-left: 3px solid #d4a76a;
    transition: transform 0.2s ease;
    animation: reviewSlideIn 0.4s ease-out both;
}

.fb-review-card:hover {
    transform: translateX(4px);
}

.fb-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.fb-review-top strong {
    color: #3a1f14;
    font-size: 0.92rem;
}

.fb-review-dish {
    padding: 2px 10px;
    background: rgba(245, 199, 120, 0.15);
    border-radius: 12px;
    font-size: 0.75rem;
    color: #5a3825;
    border: 1px solid rgba(212, 167, 106, 0.2);
}

.fb-review-card p {
    color: #5a3825;
    font-size: 0.88rem;
    margin: 4px 0;
}

.fb-review-card small {
    color: #8b5e3c;
    font-size: 0.75rem;
}

.no-reviews {
    color: #b8a090;
    font-size: 0.92rem;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.stars-display {
    color: #f5c778;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* ===== TOAST ===== */
#pdd-toast {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3d1f14, #5a2d1a);
    color: #f5c778;
    padding: 14px 30px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 10000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    white-space: nowrap;
}

#pdd-toast.toast-show {
    bottom: 30px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
    .feedback-container {
        grid-template-columns: 1fr;
    }

    .feedback-section {
        padding: 20px 15px 40px;
    }
}

/* ===== SEARCH BAR ===== */
.search-bar {
    max-width: 550px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.search-bar input {
    width: 100%;
    padding: 14px 22px;
    border: 2px solid rgba(212, 167, 106, 0.3);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #3a1f14;
    background: #fdf8f0;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-bar input:focus {
    border-color: #d4a76a;
    box-shadow: 0 0 0 4px rgba(212, 167, 106, 0.15), 0 4px 20px rgba(212, 167, 106, 0.1);
}

.search-bar input::placeholder {
    color: #b8a090;
}

/* ===== CATEGORY BAR ===== */
.category-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 20px 25px;
    max-width: 800px;
    margin: 0 auto;
}

.cat-btn {
    padding: 10px 20px;
    border: 2px solid rgba(212, 167, 106, 0.3);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    color: #5a3825;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cat-btn:hover {
    background: rgba(245, 199, 120, 0.15);
    border-color: #d4a76a;
    color: #3a1f14;
    transform: translateY(-2px);
}

.cat-btn.active {
    background: linear-gradient(135deg, #d4a76a, #f5c778);
    color: #2c1810;
    border-color: #f5c778;
    box-shadow: 0 4px 15px rgba(212, 167, 106, 0.35);
    transform: translateY(-2px);
}

.cat-btn:active {
    transform: scale(0.95);
}

/* ===== NO RESULTS ===== */
#no-results {
    display: none;
    text-align: center;
    padding: 50px 20px;
    animation: fadeInUp 0.4s ease-out;
}

#no-results.show {
    display: block;
}

#no-results .no-results-icon {
    font-size: 4rem;
    margin-bottom: 12px;
    display: block;
}

#no-results h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #3a1f14;
    margin-bottom: 8px;
}

#no-results p {
    color: #8b5e3c;
    font-size: 1rem;
    font-style: italic;
}

/* ===== SECTION TITLE SHIMMER ===== */
.section-title {
    background: linear-gradient(90deg, #3a1f14 0%, #3a1f14 40%, #d4a76a 50%, #3a1f14 60%, #3a1f14 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ===== FLOATING MENU BUTTON ===== */
.floating-menu-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9000;
    background: linear-gradient(135deg, #3d1f14, #5a2d1a);
    color: #f5c778;
    border: 2px solid rgba(245, 199, 120, 0.3);
    border-radius: 50px;
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(26, 15, 10, 0.5), 0 0 15px rgba(245, 199, 120, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: floatPulse 3s ease-in-out infinite;
    white-space: nowrap;
}

.floating-menu-btn.cart-visible {
    bottom: 160px;
}

.floating-menu-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(26, 15, 10, 0.6), 0 0 25px rgba(245, 199, 120, 0.25);
    background: linear-gradient(135deg, #5a2d1a, #8b4513);
    border-color: rgba(245, 199, 120, 0.5);
}

.floating-menu-btn.active {
    background: linear-gradient(135deg, #f5c778, #e0a94e);
    color: #2c1810;
    border-color: #f5c778;
    animation: none;
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ===== MENU POPUP OVERLAY ===== */
.menu-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(10, 5, 3, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-popup-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ===== MENU POPUP PANEL ===== */
.menu-popup-panel {
    width: 100%;
    max-width: 420px;
    max-height: 70vh;
    background: linear-gradient(160deg, #1a0f0a 0%, #2c1810 40%, #3d1f14 100%);
    border: 1px solid rgba(245, 199, 120, 0.2);
    border-radius: 24px 24px 16px 16px;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 199, 120, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-popup-overlay.open .menu-popup-panel {
    transform: translateY(0);
}

.menu-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(245, 199, 120, 0.12);
    flex-shrink: 0;
}

.menu-popup-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #f5c778;
    margin: 0;
}

.menu-popup-close {
    background: rgba(245, 199, 120, 0.1);
    border: 1px solid rgba(245, 199, 120, 0.2);
    color: #f5c778;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-popup-close:hover {
    background: rgba(245, 199, 120, 0.2);
    transform: rotate(90deg);
}

.menu-popup-list {
    overflow-y: auto;
    padding: 10px 12px 16px;
    flex: 1;
}

.menu-popup-list::-webkit-scrollbar {
    width: 5px;
}

.menu-popup-list::-webkit-scrollbar-track {
    background: transparent;
}

.menu-popup-list::-webkit-scrollbar-thumb {
    background: rgba(245, 199, 120, 0.2);
    border-radius: 10px;
}

.menu-popup-item {
    padding: 12px 16px;
    color: #e8d5c0;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 3px;
    border-left: 3px solid transparent;
}

.menu-popup-item:hover {
    background: rgba(245, 199, 120, 0.1);
    color: #f5c778;
    border-left-color: #f5c778;
    transform: translateX(4px);
}

.menu-popup-item.active {
    background: rgba(245, 199, 120, 0.15);
    color: #f5c778;
    border-left-color: #f5c778;
    font-weight: 700;
}

/* ===== CART ACTION BAR ===== */
.cart-action-bar {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 92%;
    max-width: 520px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1a0f0a, #3d1f14);
    border: 1px solid rgba(245, 199, 120, 0.25);
    border-radius: 18px;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.4), 0 0 12px rgba(245, 199, 120, 0.1);
    transition: bottom 0.45s cubic-bezier(0.68, -0.3, 0.27, 1.2);
}

.cart-action-bar.show {
    bottom: 95px;
}

.cart-bar-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-bar-icon {
    font-size: 1.4rem;
}

#cart-bar-text {
    color: #e8d5c0;
    font-size: 0.95rem;
    font-weight: 600;
}

.cart-bar-btn {
    background: linear-gradient(135deg, #f5c778, #e0a94e) !important;
    color: #2c1810 !important;
    padding: 10px 22px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.cart-bar-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(245, 199, 120, 0.4) !important;
}

.cart-bar-btn::after {
    display: none !important;
}

/* ===== RESPONSIVE: HERO SECTION ===== */
@media (max-width: 768px) {
    .hero-br {
        display: block;
    }

    .hero-section {
        padding: 60px 24px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .hero-taglines p {
        font-size: 1rem;
    }

    .hero-intro {
        padding: 22px;
    }

    .hero-intro p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 45px 16px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .hero-taglines p {
        font-size: 0.92rem;
    }

    .hero-intro {
        padding: 18px;
        margin-bottom: 22px;
    }

    .hero-intro p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ===== RESPONSIVE: FLOATING ELEMENTS ===== */
@media (max-width: 600px) {
    .floating-menu-btn {
        bottom: 20px;
        right: 16px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .cart-action-bar {
        width: 95%;
        padding: 12px 16px;
        border-radius: 14px;
    }

    .cart-action-bar.show {
        bottom: 80px;
    }

    .floating-menu-btn.cart-visible {
        bottom: 150px;
    }

    .menu-popup-panel {
        max-width: 100%;
        max-height: 75vh;
        border-radius: 20px 20px 0 0;
    }

    .menu-popup-overlay {
        padding: 0;
        align-items: flex-end;
    }
}

/* ===== Accessibility: Keyboard focus indicators ===== */
.card-btn:focus-visible,
.cat-btn:focus-visible,
.hamburger-btn:focus-visible,
.fb-submit:focus-visible,
.floating-menu-btn:focus-visible {
    outline: 3px solid #f5c778;
    outline-offset: 2px;
}

/* ===== Prevent a::after underline on button-like anchors ===== */
.card-btn::after,
.cat-btn::after,
.floating-menu-btn::after,
.cart-bar-btn::after,
.hero-btn::after {
    display: none;
}