* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 20px; }
.logo { text-decoration: none; font-size: 28px; font-weight: 900; color: #1B5E20; }
.logo span { color: #4CAF50; }
.nav { display: flex; gap: 25px; }
.nav__link { text-decoration: none; color: #555; font-weight: 500; font-size: 14px; transition: 0.3s; }
.nav__link:hover { color: #1B5E20; }
.header__info span { background: #E8F5E9; padding: 8px 16px; border-radius: 8px; font-size: 14px; }
.header__info a { text-decoration: none; color: #1B5E20; font-weight: 600; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; color: #333; cursor: pointer; }

/* Buttons */
.btn { display: inline-block; padding: 14px 30px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; cursor: pointer; border: none; }
.btn-primary { background: #1B5E20; color: #fff; }
.btn-primary:hover { background: #2E7D32; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #fff; }

/* Section */
.section { padding: 80px 0; }
.section__title { font-size: 32px; font-weight: 800; color: #1B5E20; text-align: center; margin-bottom: 12px; }
.section__sub { text-align: center; color: #888; font-size: 15px; margin-bottom: 40px; }

/* Menu */
.menu-section { margin-bottom: 40px; }
.menu-category-header { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; color: #1B5E20; padding-bottom: 12px; border-bottom: 3px solid #E8F5E9; margin-bottom: 20px; }
.menu-category-header i { font-size: 22px; }
.menu-items { display: grid; gap: 12px; }
.menu-item { display: flex; gap: 15px; background: #fff; padding: 16px; border-radius: 12px; box-shadow: 0 1px 10px rgba(0,0,0,0.04); }
.menu-item__info { flex: 1; }
.menu-item__header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 4px; }
.menu-item__header h4 { font-size: 16px; color: #333; }
.menu-item__price { font-weight: 700; color: #2E7D32; font-size: 16px; white-space: nowrap; }
.menu-item__desc { font-size: 13px; color: #777; line-height: 1.5; }
.menu-item__ingredients { font-size: 12px; color: #999; display: block; margin-top: 4px; }
.menu-item__img { width: 100px; height: 100px; object-fit: cover; border-radius: 8px; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact__item { display: flex; gap: 12px; margin-bottom: 20px; }
.contact__item i { font-size: 22px; color: #1B5E20; width: 36px; margin-top: 3px; }
.contact__item strong { display: block; color: #333; }
.contact__item a { color: #555; text-decoration: none; }
.contact__map iframe { width: 100%; height: 300px; border-radius: 12px; border: none; }

/* Footer */
.footer { background: #1B5E20; color: #fff; padding: 50px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer h3 { margin-bottom: 15px; font-size: 16px; }
.footer p { opacity: 0.8; font-size: 13px; line-height: 1.7; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; }
.footer__contact li { display: flex; gap: 8px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 30px; text-align: center; font-size: 13px; opacity: 0.7; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; box-shadow: 0 4px 20px rgba(37,211,102,0.3); z-index: 1000; text-decoration: none; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

@media(max-width:768px) {
    .nav { display: none; }
    .nav.active { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
    .menu-toggle { display: block; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .menu-item { flex-direction: column; }
    .menu-item__img { width: 100%; height: 180px; }
}