/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFD600;
  --yellow-dark: #F5C800;
  --black: #1A1A1A;
  --dark: #222;
  --gray: #555;
  --light: #FFF9E0;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--white); color: var(--black); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── NAVBAR ─── */
.navbar { background: var(--black); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: auto; padding: 0 24px; height: 68px; gap: 16px; }
.nav-logo { font-family: 'Black Han Sans', sans-serif; font-size: 1.5rem; color: var(--white); display: flex; align-items: center; gap: 2px; letter-spacing: 1px; }
.logo-z { color: var(--yellow); font-size: 1.9em; line-height: 1; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: #ccc; font-weight: 600; font-size: 0.95rem; transition: color .2s; }
.nav-links a:hover { color: var(--yellow); }
.nav-cta { display: flex; gap: 10px; }
.btn-wp { background: #25D366; color: white; padding: 9px 18px; border-radius: 25px; font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; gap: 7px; transition: all .2s; }
.btn-wp:hover { background: #1ebe57; transform: translateY(-1px); }
.btn-call { background: var(--yellow); color: var(--black); padding: 9px 18px; border-radius: 25px; font-weight: 700; font-size: 0.88rem; transition: all .2s; }
.btn-call:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; color: var(--yellow); font-size: 1.7rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; background: var(--dark); padding: 16px 24px; gap: 12px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #ccc; font-weight: 600; padding: 8px 0; border-bottom: 1px solid #333; }
.mobile-menu .btn-wp, .mobile-menu .btn-call { margin-top: 8px; text-align: center; justify-content: center; }

/* ─── HERO ─── */
.hero { background: var(--black); min-height: 88vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; }
.hero-text { padding: 60px 60px 60px 80px; }
.hero-badge { display: inline-block; background: var(--yellow); color: var(--black); font-weight: 900; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; padding: 6px 16px; border-radius: 4px; margin-bottom: 24px; }
.hero-title { font-family: 'Black Han Sans', sans-serif; font-size: clamp(3rem, 6vw, 5rem); color: var(--white); line-height: 1.05; }
.hero-title .accent { color: var(--yellow); }
.hero-slogan { color: #aaa; margin: 20px 0 36px; font-size: 1rem; line-height: 1.7; }
.hero-slogan strong { color: var(--yellow); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-buttons .btn-wp { font-size: 1rem; padding: 14px 28px; }
.hero-buttons .btn-call { font-size: 1rem; padding: 14px 28px; }
.hero-image { position: relative; height: 88vh; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--black) 0%, transparent 40%); }

/* ─── FEATURES ─── */
.features { background: var(--yellow); padding: 0; overflow: hidden; }
.features-ticker { display: flex; gap: 0; white-space: nowrap; animation: ticker 18s linear infinite; }
.ticker-item { padding: 14px 40px; font-family: 'Black Han Sans', sans-serif; font-size: 1rem; color: var(--black); letter-spacing: 2px; border-right: 2px solid rgba(0,0,0,0.15); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION TITLES ─── */
.section { padding: 80px 24px; max-width: 1200px; margin: auto; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title h2 { font-family: 'Black Han Sans', sans-serif; font-size: clamp(2rem, 4vw, 3rem); }
.section-title h2 .accent { color: var(--yellow); }
.section-title p { color: var(--gray); margin-top: 10px; font-size: 1.05rem; }

/* ─── MENU PREVIEW ─── */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.product-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.15); }
.product-card-img { height: 200px; overflow: hidden; background: #f5f5f5; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-img .no-img { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 4rem; background: linear-gradient(135deg, #1A1A1A 0%, #333 100%); }
.product-card-body { padding: 20px; }
.product-cat { font-size: 0.72rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.product-name { font-family: 'Black Han Sans', sans-serif; font-size: 1.25rem; margin-bottom: 8px; }
.product-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.5; margin-bottom: 14px; min-height: 40px; }
.product-price { font-family: 'Black Han Sans', sans-serif; font-size: 1.6rem; color: var(--black); }
.product-price span { font-size: 1rem; color: var(--gray); font-family: 'Nunito', sans-serif; }

/* ─── STORY SECTION ─── */
.story-section { background: var(--black); padding: 80px 24px; }
.story-inner { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story-img img { width: 100%; height: 420px; object-fit: cover; }
.story-text { color: var(--white); }
.story-text .section-eyebrow { color: var(--yellow); font-size: 0.8rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.story-text h2 { font-family: 'Black Han Sans', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; margin-bottom: 20px; }
.story-text p { color: #aaa; line-height: 1.8; font-size: 1rem; margin-bottom: 16px; }
.story-highlight { display: inline-block; background: var(--yellow); color: var(--black); font-weight: 900; font-size: 0.85rem; padding: 8px 20px; border-radius: 6px; letter-spacing: 1px; }

/* ─── MAP / CONTACT ─── */
.contact-section { background: #f9f7ee; padding: 80px 24px; }
.contact-inner { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-family: 'Black Han Sans', sans-serif; font-size: 2rem; margin-bottom: 28px; }
.contact-info h2 .accent { color: var(--yellow); }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon { width: 48px; height: 48px; background: var(--yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.contact-detail h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { color: var(--gray); font-size: 0.9rem; line-height: 1.5; }
.contact-detail a:hover { color: var(--black); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 380px; border: none; display: block; }

/* ─── FOOTER ─── */
footer { background: var(--black); color: var(--white); padding: 60px 24px 0; }
.footer-inner { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-logo { font-family: 'Black Han Sans', sans-serif; font-size: 1.8rem; margin-bottom: 12px; }
.footer-slogan { color: #888; font-size: 0.88rem; line-height: 1.7; margin-bottom: 12px; }
.footer-badge { background: #FFD600; color: #000; font-weight: 900; font-size: 0.78rem; display: inline-block; padding: 4px 12px; border-radius: 4px; }
footer h4 { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
footer p, footer a { color: #888; font-size: 0.88rem; line-height: 1.9; }
footer a:hover { color: var(--yellow); }
.footer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.footer-cta .btn-wp, .footer-cta .btn-call { text-align: center; justify-content: center; }
.footer-bottom { border-top: 1px solid #333; text-align: center; padding: 20px; }
.footer-bottom p { color: #555; font-size: 0.82rem; }

/* ─── MENU PAGE ─── */
.menu-page { padding: 60px 24px; max-width: 1200px; margin: auto; }
.menu-hero { background: var(--black); padding: 60px 24px; text-align: center; margin-bottom: 0; }
.menu-hero h1 { font-family: 'Black Han Sans', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); }
.menu-hero h1 .accent { color: var(--yellow); }
.menu-hero p { color: #aaa; margin-top: 12px; font-size: 1rem; }
.menu-cat-filter { display: flex; gap: 12px; flex-wrap: wrap; padding: 24px; background: var(--yellow); justify-content: center; }
.cat-btn { padding: 9px 22px; border: 3px solid var(--black); background: transparent; font-weight: 800; font-size: 0.88rem; border-radius: 25px; cursor: pointer; transition: all .2s; font-family: 'Nunito', sans-serif; }
.cat-btn.active, .cat-btn:hover { background: var(--black); color: var(--white); }
.menu-category-title { font-family: 'Black Han Sans', sans-serif; font-size: 1.7rem; margin: 48px 0 24px; padding-bottom: 12px; border-bottom: 4px solid var(--yellow); display: inline-block; }

/* ─── ADMIN ─── */
.admin-wrap { min-height: 100vh; display: flex; }
.admin-sidebar { width: 260px; background: var(--black); padding: 0; display: flex; flex-direction: column; flex-shrink: 0; }
.admin-brand { background: var(--yellow); padding: 28px 24px; font-family: 'Black Han Sans', sans-serif; font-size: 1.2rem; color: var(--black); }
.admin-sidebar nav a { display: block; padding: 15px 24px; color: #bbb; font-weight: 600; font-size: 0.92rem; border-left: 4px solid transparent; transition: all .2s; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: #2a2a2a; color: var(--yellow); border-left-color: var(--yellow); }
.admin-main { flex: 1; background: #f5f5f5; overflow-y: auto; }
.admin-topbar { background: white; padding: 20px 32px; border-bottom: 1px solid #e5e5e5; display: flex; justify-content: space-between; align-items: center; }
.admin-topbar h1 { font-size: 1.4rem; font-weight: 800; }
.admin-content { padding: 32px; }
.admin-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.admin-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.admin-card .num { font-family: 'Black Han Sans', sans-serif; font-size: 2.5rem; color: var(--yellow); }
.admin-card .label { color: var(--gray); font-size: 0.88rem; margin-top: 4px; }
.admin-table { width: 100%; background: white; border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: hidden; }
.admin-table table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--black); color: white; padding: 14px 20px; text-align: left; font-size: 0.85rem; letter-spacing: 1px; }
.admin-table td { padding: 14px 20px; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table td img { width: 60px; height: 50px; object-fit: cover; border-radius: 8px; }
.admin-table .no-img-thumb { width: 60px; height: 50px; background: #eee; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.btn-admin { display: inline-block; padding: 8px 18px; border-radius: 8px; font-weight: 700; font-size: 0.82rem; cursor: pointer; border: none; transition: all .2s; font-family: 'Nunito', sans-serif; }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dark); }
.btn-danger { background: #ff4444; color: white; }
.btn-danger:hover { background: #cc0000; }
.btn-secondary { background: #555; color: white; }
.btn-secondary:hover { background: #333; }
.admin-form { background: white; padding: 32px; border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 2px solid #e5e5e5; border-radius: 10px; font-size: 0.92rem; font-family: 'Nunito', sans-serif; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--yellow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.flash-msg { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; }
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-active { background: #d4edda; color: #155724; }
.badge-inactive { background: #f8d7da; color: #721c24; }

/* ─── ADMIN LOGIN ─── */
.login-page { min-height: 100vh; background: var(--black); display: flex; align-items: center; justify-content: center; }
.login-box { background: white; border-radius: 20px; padding: 48px 40px; width: 380px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.login-box .logo-z { font-size: 3rem; }
.login-box h2 { font-family: 'Black Han Sans', sans-serif; font-size: 1.5rem; margin: 16px 0 8px; }
.login-box p { color: var(--gray); font-size: 0.88rem; margin-bottom: 28px; }
.login-box .form-group { text-align: left; }
.login-box .btn-primary { width: 100%; padding: 14px; font-size: 1rem; border-radius: 12px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 50vw; }
  .hero-image::after { background: linear-gradient(to bottom, var(--black) 0%, transparent 40%); }
  .hero-text { padding: 48px 24px 32px; }
  .story-inner, .contact-inner, .footer-inner { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .admin-sidebar { display: none; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
}
