* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; color: #333; background: #fff; }

/* ── TOP BAR ── */
.top-bar { background: #1a1a1a; color: #bbb; font-size: 11px; }
.top-bar a { color: #bbb; text-decoration: none; }
.top-bar a:hover { color: #fff; }

/* ── NAVBAR ── */
.navbar { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.09); position: sticky; top: 0; z-index: 200; }
.nav-link { font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 600; color: #333; text-decoration: none; padding: 8px 11px; display: inline-flex; align-items: center; gap: 3px; transition: color .2s; text-transform: uppercase; letter-spacing: .4px; white-space: nowrap; }
.nav-link:hover { color: #2e7d32; }
.nav-link.active { color: #2e7d32; border-bottom: 2px solid #2e7d32; }

/* ── DROPDOWN ── */
.nav-dropdown { position: relative; display: inline-block; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; box-shadow: 0 8px 40px rgba(0,0,0,0.13); border-top: 3px solid #2e7d32;
  border-radius: 0 0 8px 8px; z-index: 300; min-width: 860px; padding: 24px 28px 20px;
  animation: dropFade .18s ease;
}
@keyframes dropFade { from { opacity:0; transform:translateX(-50%) translateY(-8px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-dropdown:hover > .nav-link { color: #2e7d32; }
.dd-grid { display: grid; grid-template-columns: repeat(5,1fr) 160px; gap: 12px; }
.dd-grid-row2 { display: grid; grid-template-columns: repeat(5,1fr) 160px; gap: 12px; margin-top: 14px; padding-top: 14px; border-top: 1px solid #eee; }
.dd-product { text-align: center; cursor: pointer; padding: 8px 4px; border-radius: 6px; transition: background .15s; }
.dd-product:hover { background: #f4faf4; }
.dd-bag { height: 140px; border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px; margin-bottom: 6px; }
.dd-product-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; color: #222; }
.dd-view-all { padding: 6px 0 6px 16px; border-left: 1px solid #e8e8e8; display: flex; flex-direction: column; justify-content: flex-start; }
.dd-view-all h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; color: #222; margin-bottom: 8px; }
.dd-view-all p { font-size: 12.5px; color: #555; line-height: 1.6; margin-bottom: 12px; }
.dd-view-all a { color: #2e7d32; font-weight: 700; font-size: 12.5px; text-decoration: none; font-family: 'Montserrat', sans-serif; }

/* ── HERO ── */
.hero { position: relative; min-height: 300px; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1565008447742-97f6f38c985c?w=1400&q=80') right center/cover no-repeat; }
.hero-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(to right, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0.15)); }
.hero-content { position: relative; z-index: 1; color: #fff; padding: 48px 0; }
.hero-content h1 { font-family: 'Montserrat', sans-serif; font-size: 42px; font-weight: 800; line-height: 1.1; }
.hero-content p { font-size: 15px; margin-top: 10px; line-height: 1.7; opacity: .9; max-width: 420px; }

/* ── BUTTONS ── */
.btn-g { background: #2e7d32; color: #fff; border: none; padding: 7px 16px; border-radius: 4px; font-size: 11.5px; font-weight: 700; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: background .2s; }
.btn-g:hover { background: #1b5e20; }
.btn-o { background: #fff; color: #2e7d32; border: 2px solid #2e7d32; padding: 6px 16px; border-radius: 4px; font-size: 11.5px; font-weight: 700; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all .2s; }
.btn-o:hover { background: #2e7d32; color: #fff; }

/* ── COMPARE CARDS ── */
.compare-card { background: #fff; border: 1px solid #e4e4e4; border-radius: 8px; padding: 16px; transition: box-shadow .2s, transform .2s; }
.compare-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.11); transform: translateY(-2px); }
.compare-card .strength { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: #2e7d32; margin: 8px 0 10px; }
.compare-card ul { list-style: none; padding: 0; }
.compare-card ul li { font-size: 11.5px; color: #555; padding: 2px 0 2px 14px; position: relative; line-height: 1.45; }
.compare-card ul li::before { content: '•'; position: absolute; left: 0; color: #2e7d32; font-size: 14px; top: 0; }
.card-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: #222; margin-top: 10px; }

/* ── FOOTER ── */
.footer-main { background: #2e7d32; color: #fff; }
.footer-bottom { background: #1b5e20; color: rgba(255,255,255,.65); font-size: 12px; }
.footer-link { color: rgba(255,255,255,.8); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-link:hover { color: #fff; }

/* ── FLOATING BUTTONS ── */
.fab-btn { position: fixed; right: 20px; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 3px 12px rgba(0,0,0,0.2); z-index: 50; font-size: 18px; color: #fff; border: none; }
.fab-wa { background: #25d366; bottom: 20px; }

/* ── QUOTE BANNER ── */
.quote-banner { background: linear-gradient(135deg, #1b5e20, #2e7d32); color: #fff; text-align: center; padding: 48px 24px; }
.quote-banner h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 800; max-width: 700px; margin: 0 auto; line-height: 1.4; }