/* ---------- Reset & base ---------- */
:root {
  --brand: #1f7a4d;
  --brand-dark: #17512f;
  --brand-darker: #0f2f1c;
  --ink: #222b25;
  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: #2d2d2d;
  line-height: 1.65;
  background: #ffffff;
}
h1, h2, h3, h4, h5, .logo, .btn { font-family: var(--font-heading); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: #1f7a4d; color: #fff;
  padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid #ececec;
  position: sticky; top: 0; background: #fff; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.logo img { height: 56px; width: auto; }

.main-nav ul { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-weight: 600; font-size: 15px; letter-spacing: .3px; color: #2d2d2d; transition: color .2s; }
.main-nav li.active > a, .main-nav a:hover { color: #1f7a4d; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; background: #fff; min-width: 190px;
  box-shadow: 0 12px 24px rgba(0,0,0,.12); border-radius: 6px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 18px; font-weight: 500; }
.dropdown li a:hover { background: #f4f8f5; color: #1f7a4d; }

.nav-toggle { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 26px; height: 3px; background: #2d2d2d; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 4px;
  font-weight: 700; letter-spacing: .5px; font-size: 14px; text-transform: uppercase;
  transition: .2s; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: #1f7a4d; color: #fff; }
.btn-primary:hover { background: #175c3a; }
.btn-outline { background: transparent; color: #1f7a4d; border-color: #1f7a4d; }
.btn-outline:hover { background: #1f7a4d; color: #fff; }
.btn-small { padding: 8px 18px; font-size: 12px; }

/* ---------- Top bar ---------- */
.top-bar { background: var(--brand-darker); color: #d9ebdf; font-size: 13px; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 20px; gap: 16px; flex-wrap: wrap; }
.top-bar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar-contact a { color: #d9ebdf; opacity: .9; transition: .2s; }
.top-bar-contact a:hover { opacity: 1; color: #fff; }
.top-bar-tagline { opacity: .85; }

/* ---------- Nav CTA ---------- */
.nav-cta {
  background: var(--brand); color: #fff !important; padding: 9px 20px; border-radius: 30px;
  font-weight: 700; font-size: 13px !important; letter-spacing: .3px;
}
.nav-cta:hover { background: var(--brand-dark); color: #fff !important; }

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative; height: 78vh; min-height: 460px; max-height: 640px;
  overflow: hidden; background: var(--brand-darker);
}
.hero-slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  background-size: cover; background-position: center; opacity: 0; visibility: hidden;
  transition: opacity 1s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,25,16,.82) 10%, rgba(8,25,16,.45) 55%, rgba(8,25,16,.2) 100%);
}
.hero-slide-overlay-light {
  background: linear-gradient(100deg, rgba(8,25,16,.78) 15%, rgba(8,25,16,.35) 60%, rgba(8,25,16,.15) 100%);
}
.hero-slide-content { position: relative; z-index: 3; color: #fff; max-width: 620px; }
.hero-eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px;
  font-weight: 700; color: #a9e6bd; background: rgba(255,255,255,.1); padding: 6px 14px;
  border-radius: 30px; margin-bottom: 18px;
}
.hero-slide-content h1 { font-size: 2.6rem; line-height: 1.22; margin-bottom: 18px; }
.hero-slide-content p { font-size: 1.05rem; color: #e6efe8; margin-bottom: 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: #fff; color: var(--brand-dark); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12); color: #fff; font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: .2s;
}
.hero-arrow:hover { background: rgba(255,255,255,.28); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 9px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45); border: 0; cursor: pointer; transition: .2s; padding: 0; }
.hero-dot.active { background: #fff; transform: scale(1.2); }

/* ---------- Trust bar ---------- */
.trust-bar { background: #f4f9f5; border-bottom: 1px solid #ececec; }
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 26px 20px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { font-size: 26px; line-height: 1; }
.trust-item strong { display: block; font-size: 14.5px; color: #17512f; }
.trust-item p { font-size: 12.5px; color: #666; margin: 0; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 10px 24px rgba(0,0,0,.18); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: .25s; z-index: 200;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--brand-dark); }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-header .eyebrow { color: #1f7a4d; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; }
.section-header h2 { font-size: 2rem; margin-top: 8px; color: #1a1a1a; }

.page-banner {
  background: #f4f9f5; padding: 46px 0; text-align: center; border-bottom: 1px solid #ececec;
}
.page-banner h1 { font-size: 2rem; color: #17512f; }
.page-banner .crumbs { margin-top: 6px; color: #777; font-size: 14px; }
.page-banner .crumbs a { color: #1f7a4d; }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px;
}
.product-card {
  border: 1px solid #ececec; border-radius: 10px; overflow: hidden; background: #fff;
  transition: .25s; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: 0 18px 34px rgba(0,0,0,.09); transform: translateY(-4px); }
.product-card .thumb { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #f6f6f6; display: block; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .quick-view {
  position: absolute; left: 0; right: 0; bottom: 0; text-align: center; padding: 12px 0;
  background: rgba(23,81,47,.92); color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: .3px; text-transform: uppercase; transform: translateY(100%);
  transition: transform .3s ease;
}
.product-card:hover .quick-view { transform: translateY(0); }
.product-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card .cat { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: #1f7a4d; font-weight: 700; margin-bottom: 6px; }
.product-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-card h3 a:hover { color: #1f7a4d; }
.product-card .excerpt { color: #666; font-size: 14px; flex: 1; margin-bottom: 14px; }
.product-card .price { font-weight: 700; color: #1a1a1a; margin-bottom: 14px; font-size: 1.05rem; }
.product-card .actions { display: flex; gap: 10px; }

/* ---------- Testimonials ---------- */
.testimonials { background: #f9faf8; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.testi-card {
  background: #fff; border-radius: 10px; padding: 26px; border: 1px solid #ececec;
}
.testi-card p { color: #444; margin-bottom: 18px; font-style: italic; }
.testi-name { font-weight: 700; }
.testi-role { font-size: 13px; color: #888; }

/* ---------- App banner ---------- */
.app-banner { background: var(--brand-darker); }
.app-banner-inner {
  display: flex; align-items: center; gap: 50px; flex-wrap: wrap-reverse;
  background: linear-gradient(120deg, #123821, #0f2f1c); border-radius: 18px;
  padding: 50px; color: #fff;
}
.app-banner-text { flex: 1 1 320px; }
.app-banner-text h2 { font-size: 1.9rem; margin-bottom: 14px; }
.app-banner-text p { color: #d3e6da; margin-bottom: 24px; max-width: 420px; }
.app-banner-image { flex: 1 1 320px; display: block; }
.app-banner-image img { border-radius: 12px; box-shadow: 0 24px 48px rgba(0,0,0,.35); }

.page-banner-shop img { max-width: 640px; margin: 0 auto 18px; border-radius: 10px; }

/* ---------- Content pages ---------- */
.content-page { padding: 60px 0; }
.content-page h2 { margin: 34px 0 14px; font-size: 1.5rem; color: #17512f; }
.content-page h2:first-child { margin-top: 0; }
.content-page h3 { margin: 20px 0 10px; font-size: 1.2rem; }
.content-page p { margin-bottom: 14px; color: #383838; }
.content-page ul { margin: 0 0 14px 20px; list-style: disc; color: #383838; }
.content-page ul li { margin-bottom: 6px; }

.about-hero { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.about-hero img { flex: 1 1 320px; border-radius: 12px; }
.about-hero .text { flex: 1 1 400px; }

.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin: 30px 0 10px; }
.mission-card { background: #f4f9f5; border-radius: 10px; padding: 26px; }
.mission-card h3 { color: #1f7a4d; margin-top: 0; }

.more-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 20px; }
.more-card { padding: 22px; border: 1px solid #ececec; border-radius: 10px; }
.more-card h4 { color: #17512f; margin-bottom: 8px; }

/* ---------- Legal gallery ---------- */
.legal-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.legal-gallery img { border: 1px solid #ececec; border-radius: 8px; }

/* ---------- Bankers ---------- */
.bank-card {
  max-width: 480px; margin: 0 auto; background: #f4f9f5; border-radius: 12px;
  padding: 40px; text-align: center;
}
.bank-card img.bank-logo { width: 90px; margin: 0 auto 20px; }
.bank-card img.bank-img { max-width: 220px; margin: 0 auto 20px; }
.bank-card h3 { color: #17512f; margin-bottom: 12px; }
.bank-card p { color: #444; line-height: 1.9; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; margin-bottom: 40px; }
.contact-card { text-align: center; padding: 28px 20px; border: 1px solid #ececec; border-radius: 10px; }
.contact-card h3 { color: #1f7a4d; font-size: 1rem; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 10px; }
.contact-card p, .contact-card a { color: #383838; }
.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid #ececec; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Single product ---------- */
.product-single { display: flex; gap: 50px; flex-wrap: wrap; margin-bottom: 50px; }
.product-gallery { flex: 1 1 380px; }
.product-gallery .main-img { border: 1px solid #ececec; border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.product-gallery .thumbs { display: flex; gap: 10px; }
.product-gallery .thumbs img { width: 74px; height: 74px; object-fit: cover; border-radius: 6px; border: 1px solid #ececec; cursor: pointer; }
.product-info { flex: 1 1 420px; }
.product-info .cat-tag { color: #1f7a4d; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .5px; }
.product-info h1 { font-size: 2rem; margin: 8px 0 14px; }
.product-info .price { font-size: 1.6rem; font-weight: 700; color: #17512f; margin-bottom: 20px; }
.product-info .desc { color: #444; margin-bottom: 26px; }
.qty-cart { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.qty-box { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; }
.qty-box button { background: #f4f4f4; border: 0; width: 36px; height: 42px; font-size: 18px; cursor: pointer; }
.qty-box input { width: 50px; height: 42px; border: 0; text-align: center; font-size: 15px; }
.meta-row { font-size: 13px; color: #777; margin-top: 6px; }
.meta-row a { color: #1f7a4d; }

.product-description-block { border-top: 1px solid #ececec; padding-top: 34px; margin-bottom: 50px; }
.tabs { display: flex; gap: 30px; border-bottom: 1px solid #ececec; margin-bottom: 26px; }
.tabs .tab { padding-bottom: 12px; font-weight: 700; color: #999; }
.tabs .tab.active { color: #1f7a4d; border-bottom: 2px solid #1f7a4d; }

.related-title { font-size: 1.4rem; margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: #16321f; color: #cfe2d5; margin-top: 60px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px;
  padding: 60px 20px 40px;
}
.footer-logo { height: 54px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 15px; letter-spacing: .4px; }
.footer-col p { font-size: 14px; color: #a9c2b0; margin-bottom: 10px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #cfe2d5; transition: .2s; }
.footer-col ul li a:hover { color: #fff; }
.play-badge { width: 150px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer-bottom p { text-align: center; font-size: 13px; color: #96af9d; }

/* ---------- Forms ---------- */
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; font-family: inherit;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .nav-burger { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    box-shadow: 0 12px 24px rgba(0,0,0,.08); max-height: 0; overflow: hidden; transition: .3s;
  }
  .main-nav ul { flex-direction: column; align-items: flex-start; padding: 10px 20px; gap: 4px; }
  .main-nav a { display: block; padding: 12px 0; width: 100%; }
  .nav-toggle:checked ~ .main-nav { max-height: 500px; }
  .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 14px; }
  .has-dropdown:hover .dropdown, .nav-toggle:checked ~ .main-nav .dropdown { display: block; }
}
@media (max-width: 900px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-slide-content h1 { font-size: 2.1rem; }
}
@media (max-width: 780px) {
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-tagline { display: none; }
  .hero-slider { height: 68vh; min-height: 420px; }
  .hero-arrow { width: 38px; height: 38px; font-size: 13px; }
  .app-banner-inner { padding: 34px 24px; text-align: center; justify-content: center; }
  .app-banner-text p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .product-single { gap: 30px; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .hero-slide-content h1 { font-size: 1.7rem; }
  .hero-eyebrow { font-size: 11px; }
}
