/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #4A7C3A;
  --primary-dark: #3A6130;
  --primary-light: #6BAF4A;
  --secondary: #B91C1C;
  --secondary-dark: #941616;
  --dark: #1E2D1A;
  --dark2: #2D4226;
  --light: #F4F9F2;
  --light2: #EBF4E6;
  --white: #FFFFFF;
  --gray: #6B7C69;
  --gray-light: #E8F0E5;
  --border: #C8DFBF;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 30px rgba(74,124,58,0.20);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--light); color: var(--dark); line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-title { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.section-title span { color: var(--primary); }
.section-subtitle { color: var(--gray); font-size: 1rem; margin-bottom: 48px; }

/* ===== HEADER ===== */
.header { background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1200px; margin: 0 auto; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-mark { font-size: 0.95rem; font-weight: 900; color: white; letter-spacing: 0.04em; line-height: 1; font-family: var(--font); }
.logo-text h1 { font-size: 1rem; font-weight: 800; color: var(--dark); line-height: 1.1; }
.logo-text span { font-size: 0.68rem; color: var(--gray); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: 0.9rem; color: var(--dark2); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { background: var(--light2); color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: flex; background: var(--gray-light); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.lang-btn { padding: 6px 12px; font-size: 0.8rem; font-weight: 600; cursor: pointer; border: none; background: transparent; color: var(--gray); transition: var(--transition); }
.lang-btn.active { background: var(--primary); color: var(--white); }
.wa-btn-nav { display: flex; align-items: center; gap: 6px; background: #25D366; color: var(--white); padding: 9px 16px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; transition: var(--transition); white-space: nowrap; }
.wa-btn-nav:hover { background: #1DA851; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); padding: 12px 24px 20px; border-top: 1px solid var(--border); gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 11px 16px; border-radius: 8px; font-weight: 500; font-size: 0.95rem; color: var(--dark2); transition: var(--transition); }
.mobile-menu a:hover { background: var(--light2); color: var(--primary); }
.mobile-menu .wa-btn-nav { display: flex; justify-content: center; margin-top: 8px; }
.mobile-menu .lang-toggle { justify-content: center; width: fit-content; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, #1E2D1A 0%, #142010 60%, #1E2D1A 100%); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -40%; right: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(74,124,58,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(74,124,58,0.15); border: 1px solid rgba(74,124,58,0.3); color: var(--primary-light); padding: 6px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.hero h2 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero h2 span { color: var(--primary); }
.hero p { font-size: 1rem; color: rgba(255,255,255,0.72); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--primary); color: var(--white); padding: 14px 26px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--white); padding: 14px 26px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.28); cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); padding: 22px 18px; text-align: center; backdrop-filter: blur(10px); transition: var(--transition); }
.hero-card:first-child { grid-column: 1 / -1; }
.hero-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.hero-card .icon { display: flex; align-items: center; justify-content: center; font-size: 0; margin-bottom: 10px; color: var(--primary-light); }
.hero-card .icon svg { width: 32px; height: 32px; }
.hero-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.hero-card p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.hero-stat { font-size: 1.7rem; font-weight: 800; color: var(--primary); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); padding: 26px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { color: var(--white); }
.stat-num { font-size: 1.9rem; font-weight: 800; display: block; }
.stat-label { font-size: 0.8rem; opacity: 0.85; font-weight: 500; }

/* ===== ABOUT ===== */
.about { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { background: linear-gradient(160deg, #142010 0%, var(--dark2) 100%); border-radius: var(--radius-lg); height: 400px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-img::before { content: ''; position: absolute; width: 320px; height: 320px; border: 2px solid rgba(74,124,58,0.12); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.about-img::after { content: ''; position: absolute; width: 200px; height: 200px; border: 2px solid rgba(74,124,58,0.07); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.about-img-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(74,124,58,0.06) 0%, transparent 70%); pointer-events: none; }
.about-img-inner { position: relative; z-index: 1; text-align: center; }
.about-brand-mark { font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.05); letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; font-family: var(--font); }
.about-brand-name { font-size: 1.5rem; font-weight: 900; color: white; letter-spacing: 0.14em; }
.about-brand-sub { font-size: 0.68rem; color: var(--primary); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 6px; font-weight: 600; }
.about-brand-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(74,124,58,0.15); border: 1px solid rgba(74,124,58,0.28); color: rgba(255,255,255,0.8); padding: 6px 14px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 18px; }
.about-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(74,124,58,0.08); color: var(--primary); border: 1px solid rgba(74,124,58,0.2); padding: 5px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 12px; }
.about-text p { color: var(--gray); margin-bottom: 18px; line-height: 1.75; font-size: 0.95rem; }
.about-list { margin-bottom: 28px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; color: var(--dark2); font-size: 0.93rem; }
.check-icon { background: var(--primary); color: white; width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.nib-card { background: var(--light2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
.nib-icon { font-size: 2rem; }
.nib-info small { font-size: 0.73rem; color: var(--gray); display: block; text-transform: uppercase; letter-spacing: 0.05em; }
.nib-info strong { font-size: 0.88rem; color: var(--dark); }

/* ===== FEATURED PRODUCTS ===== */
.products-section { padding: 80px 0; }
.products-header { text-align: center; margin-bottom: 48px; }
.flavor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.flavor-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); border: 1px solid var(--border); }
.flavor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.flavor-img { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 0; position: relative; }
.flavor-badge { position: absolute; top: 12px; right: 12px; background: var(--primary); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em; }
.flavor-body { padding: 20px; }
.flavor-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.flavor-body p { font-size: 0.85rem; color: var(--gray); margin-bottom: 14px; line-height: 1.6; }
.pkg-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pkg-chip { background: var(--light2); border: 1px solid var(--border); color: var(--dark2); font-size: 0.73rem; padding: 3px 9px; border-radius: 100px; font-weight: 500; }
.wa-order-btn { width: 100%; background: #25D366; color: white; border: none; padding: 11px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.wa-order-btn:hover { background: #1DA851; }

/* ===== PACKAGING ===== */
.packaging-section { padding: 80px 0; background: var(--white); }
.packaging-header { text-align: center; }
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.pkg-card { text-align: center; background: var(--light2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 20px; transition: var(--transition); }
.pkg-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-hover); }
.pkg-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--primary); }
.pkg-icon svg { width: 40px; height: 40px; }
.pkg-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.pkg-card p { font-size: 0.83rem; color: var(--gray); }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 80px 0; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%); }
.cta-section h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 12px; position: relative; }
.cta-section p { font-size: 1rem; opacity: 0.85; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; }
.wa-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: #25D366; padding: 16px 36px; border-radius: var(--radius); font-size: 1rem; font-weight: 700; transition: var(--transition); border: none; cursor: pointer; position: relative; }
.wa-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); color: var(--white); padding: 56px 0 44px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(74,124,58,0.08) 0%, transparent 70%); }
.page-hero h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 10px; position: relative; }
.page-hero h2 span { color: var(--primary); }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 0.97rem; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; position: relative; }
.breadcrumb a { color: var(--primary-light); }
.breadcrumb a:hover { color: var(--primary); }

/* ===== PRODUCTS PAGE ===== */
.products-filter { padding: 36px 0 0; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-tab { padding: 9px 22px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--white); color: var(--dark2); font-size: 0.86rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.filter-tab:hover, .filter-tab.active { background: var(--primary); color: white; border-color: var(--primary); }
.products-full { padding: 32px 0 80px; }
.product-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-img { height: 210px; display: flex; align-items: center; justify-content: center; font-size: 0; position: relative; }
.product-badge-row { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: flex-start; }
.badge { font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.badge-new { background: var(--primary-light); color: white; }
.badge-hot { background: var(--secondary); color: white; }
.badge-best { background: var(--primary); color: white; }
.halal-badge { background: var(--primary); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.product-body { padding: 22px; }
.product-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.product-body .desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 14px; line-height: 1.65; }
.pkg-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 0.8rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.pkg-table th { background: var(--light2); padding: 8px 10px; text-align: left; font-weight: 600; color: var(--dark2); }
.pkg-table td { padding: 8px 10px; border-top: 1px solid var(--border); color: var(--dark2); }
.pkg-table .price { font-weight: 700; color: var(--primary); }
.product-actions { display: flex; gap: 10px; }
.btn-wa-product { flex: 1; background: #25D366; color: white; border: none; padding: 10px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-wa-product:hover { background: #1DA851; }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.contact-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.contact-info > p { color: var(--gray); margin-bottom: 32px; line-height: 1.7; font-size: 0.93rem; }
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; background: rgba(74,124,58,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0; flex-shrink: 0; color: var(--primary); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: 0.75rem; color: var(--gray); font-weight: 600; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { font-weight: 600; color: var(--dark); font-size: 0.93rem; }
.contact-value a { color: var(--dark); }
.contact-value a:hover { color: var(--primary); }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-btn { width: 42px; height: 42px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0; transition: var(--transition); }
.social-btn svg { width: 20px; height: 20px; }
.social-btn.wa { background: #25D366; color: white; }
.social-btn.wa:hover { background: #1DA851; transform: translateY(-2px); }
.social-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-btn.ig:hover { opacity: 0.85; transform: translateY(-2px); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.93rem; font-family: var(--font); color: var(--dark); background: var(--light); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(74,124,58,0.1); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; background: var(--primary); color: white; padding: 13px; border-radius: var(--radius); border: none; font-size: 0.97rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.map-section { padding: 0 0 80px; }
.map-section iframe { width: 100%; height: 350px; border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .logo-text h1 { color: var(--white); font-size: 1rem; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.45); font-size: 0.68rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.58); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.92rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.58); font-size: 0.85rem; margin-bottom: 8px; transition: var(--transition); }
.footer-col a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; }
.fc-icon { font-size: 0; flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,0.4); }
.fc-icon svg { width: 14px; height: 14px; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--primary); }
.nib-footer { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ===== FLOATING WA ===== */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0; color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 998; transition: var(--transition); cursor: pointer; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float-tooltip { position: absolute; right: 66px; background: var(--dark); color: white; padding: 6px 12px; border-radius: 8px; font-size: 0.78rem; font-weight: 600; white-space: nowrap; opacity: 0; transition: var(--transition); pointer-events: none; }
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--dark); color: white; padding: 12px 24px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 500; z-index: 9999; transition: var(--transition); box-shadow: var(--shadow); pointer-events: none; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--primary); }
.toast.error { background: #E74C3C; }

/* ===== ADMIN ===== */
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #142010, var(--dark2)); padding: 24px; }
.login-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px 36px; width: 100%; max-width: 420px; box-shadow: 0 20px 60px rgba(0,0,0,0.28); text-align: center; }
.login-card .logo { justify-content: center; margin-bottom: 8px; }
.login-card h2 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.login-card > p { color: var(--gray); font-size: 0.88rem; margin-bottom: 28px; }
.login-form .form-group { text-align: left; }
.login-error { display: none; background: #FDEDEC; border: 1px solid #E74C3C; color: #C0392B; padding: 10px 14px; border-radius: var(--radius); font-size: 0.85rem; margin-bottom: 16px; }
.login-error.show { display: block; }
.admin-panel { display: none; }
.admin-header { background: var(--dark); color: white; position: sticky; top: 0; z-index: 100; }
.admin-nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1400px; margin: 0 auto; gap: 16px; flex-wrap: wrap; }
.admin-nav .logo-text h1 { color: white; font-size: 0.95rem; }
.admin-nav .logo-text span { color: rgba(255,255,255,0.45); font-size: 0.65rem; }
.admin-tabs { display: flex; gap: 4px; }
.admin-tab { padding: 8px 16px; border-radius: 8px; border: none; background: transparent; color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.admin-tab:hover { background: rgba(255,255,255,0.10); color: white; }
.admin-tab.active { background: var(--primary); color: white; }
.admin-logout { background: rgba(231,76,60,0.14); color: #E74C3C; border: 1px solid rgba(231,76,60,0.28); padding: 8px 16px; border-radius: 8px; font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.admin-logout:hover { background: #E74C3C; color: white; }
.admin-content { max-width: 1400px; margin: 0 auto; padding: 28px 24px; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-section-title { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.admin-stat-card { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.admin-stat-card h4 { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; font-weight: 600; }
.admin-stat-card .num { font-size: 1.75rem; font-weight: 800; color: var(--dark); }
.admin-stat-card .change { font-size: 0.78rem; color: var(--primary); margin-top: 4px; }
.add-product-btn { background: var(--primary); color: white; border: none; padding: 10px 20px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.add-product-btn:hover { background: var(--primary-dark); }
.admin-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.admin-product-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden; }
.admin-card-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: var(--light2); }
.admin-card-body { padding: 16px; }
.admin-card-body h3 { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.admin-card-meta { font-size: 0.78rem; color: var(--gray); margin-bottom: 10px; }
.status-toggle { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--gray); margin-bottom: 12px; cursor: pointer; }
.toggle-switch { width: 36px; height: 20px; background: var(--border); border-radius: 100px; position: relative; transition: var(--transition); flex-shrink: 0; }
.toggle-switch.on { background: var(--primary); }
.toggle-switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; background: white; border-radius: 50%; transition: var(--transition); box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.toggle-switch.on::after { left: 18px; }
.admin-card-actions { display: flex; gap: 8px; }
.btn-edit { flex: 1; background: rgba(74,124,58,0.08); color: var(--primary); border: 1px solid rgba(74,124,58,0.25); padding: 8px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-edit:hover { background: var(--primary); color: white; }
.btn-delete { background: rgba(231,76,60,0.08); color: #E74C3C; border: 1px solid rgba(231,76,60,0.25); padding: 8px 12px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-delete:hover { background: #E74C3C; color: white; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.52); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border-radius: var(--radius-lg); padding: 32px; width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto; transform: scale(0.95) translateY(10px); transition: transform 0.25s ease; }
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.modal-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); }
.modal-close { background: var(--gray-light); border: none; width: 32px; height: 32px; border-radius: 8px; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gray); transition: var(--transition); }
.modal-close:hover { background: var(--border); color: var(--dark); }
.modal-footer { display: flex; gap: 12px; justify-content: flex-end; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.btn-cancel { background: var(--gray-light); color: var(--dark2); border: none; padding: 10px 20px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-cancel:hover { background: var(--border); }
.btn-save { background: var(--primary); color: white; border: none; padding: 10px 24px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.btn-save:hover { background: var(--primary-dark); }
.emoji-picker { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; background: var(--light2); border-radius: var(--radius); margin-top: 8px; border: 1.5px solid var(--border); }
.emoji-option { font-size: 1.8rem; cursor: pointer; padding: 6px; border-radius: 8px; transition: var(--transition); line-height: 1; }
.emoji-option:hover { background: rgba(74,124,58,0.15); }
.emoji-option.selected { background: var(--primary); }
.selected-emoji { font-size: 3rem; text-align: center; padding: 12px; background: var(--light2); border-radius: var(--radius); margin-bottom: 6px; }

/* Settings Page */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.settings-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); padding: 24px; }
.settings-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero { text-align: center; padding: 64px 0; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 260px; }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-full-grid { grid-template-columns: repeat(2, 1fr); }
  .settings-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right .wa-btn-nav { display: none; }
  .hamburger { display: flex; }
  .flavor-grid { grid-template-columns: 1fr; }
  .hero h2 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .product-full-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-tabs { overflow-x: auto; }
}

@media (max-width: 480px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .modal { padding: 22px; }
  .hero h2 { font-size: 1.75rem; }
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.35rem; }
}

/* Utils */
.text-center { text-align: center; }
.hidden { display: none !important; }
[data-lang] { display: none; }
[data-lang].active-lang { display: block; }
span[data-lang].active-lang, a[data-lang].active-lang, button[data-lang].active-lang { display: inline; }
li[data-lang].active-lang { display: flex; }
.inactive-product { opacity: 0.5; }
