:root {
  --dark:#67742b;
  --mid: #3b7836;
  --light: #346e70;
  --grad: linear-gradient(90deg, var(--dark),var(--mid), var(--light));

  --text: #0d0d0d;
  --muted: #6b7280;
  --white: #ffffff;
  --card: #f6f7f8;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  --radius: 18px;
  --radius2: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ================= NAVBAR ================= */
.topbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
  padding: 16px 0;
}

.nav-wrap {
  background: var(--grad);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow);
}

.logo {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 14px;
}

.nav-link.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cart-icon {
  font-size: 18px;
}

.hamburger {
  width: 42px;
  height: 42px;
  display: none;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 10px;
}

/* ================= HERO ================= */
.hero {
  padding: 40px 0 35px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius2);
  display: block;
  box-shadow: var(--shadow);
}

.hero-title {
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.12;
  color: var(--dark);
  font-weight: 800;
}

.hero-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pill-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f0cbb4;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: #000000;
  font-weight: 600;
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.btn-solid {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-solid:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #878585;
  color: #000000;
  background: #f0cbb4;
}

.btn-outline:hover {
  transform: translatey(-2px);
  background: #cf9393;
}

.btn.small {
  padding: 10px 16px;
}

/* ================= FEATURES ================= */
.features {
  background: var(--grad);
  padding: 60px 0;
  margin-top: 30px;
}

.features-inner {
  color: #fff;
  text-align: center;
}

.section-kicker {
  font-size: 12px;
  opacity: 0.9;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  margin-top: 8px;
  line-height: 1.15;
}

.section-sub {
  max-width: 620px;
  margin: 10px auto 0;
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.6;
}

.feature-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  color: #111;
  text-align: left;
  box-shadow: var(--shadow);
  min-height: 110px;
}

.feature-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f0fff1;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.feature-card img {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 12px;
  color: #5b606a;
  line-height: 1.4;
}

/* ================= PRODUCTS ================= */
.products {
  padding: 60px 0;
  text-align: center;
}

.products-title {
  font-size: 30px;
  font-weight: 800;
}

.products-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111;
  font-weight: 600;
}

.product-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}

.product-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eef0f2;
  box-shadow: var(--shadow);
  text-align: left;
}
.product-card:hover{
  transform: translateY(-5px);
}

/*.product-card.featured {
  transform: translateY(-10px);
}/*/

.product-img {
  height: 400px;

  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-size: 14px;
  border: 1px solid #eee;
}

.wishlist.active {
  color: #e11d48;
}

.product-body {
  padding: 14px;
}

.stars {
  font-size: 12px;
  color: #f59e0b;
  font-weight: 700;
}

.stars span {
  font-weight: 500;
  color: #6b7280;
}

.product-body h4 {
  font-size: 14px;
  margin-top: 8px;
}

.price {
  color: #111;
  font-weight: 700;
  margin-top: 6px;
  font-size: 13px;
}

.center {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: var(--grad);
  padding: 70px 0;
  color: #fff;
}

.test-head {
  text-align: center;
  margin-bottom: 22px;
}

.small-pill {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 600;
}

.test-head h2 {
  margin-top: 10px;
  font-size: 34px;
}

.test-head p {
  opacity: 0.92;
  font-size: 13px;
  margin-top: 6px;
}

.slider {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.slide-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.slide-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 280px));
  gap: 18px;
  align-items: stretch;
}

.t-card {
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.t-card.active {
  transform: translateY(-8px);
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 28px;
}

.t-card h4 {
  font-size: 14px;
}

.t-card p {
  font-size: 12px;
  color: #5b606a;
  line-height: 1.55;
  margin-top: 10px;
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.dot.active {
  background: #fff;
}

/* ================= WHY ================= */
.why {
  padding: 70px 0;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}

.why-left h2 {
  font-size: 34px;
}

.why-left p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.why-mini-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #eef0f2;
}

.mini img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #f0fff1;
  object-fit: contain;
  padding: 5px;
}

.mini h5 {
  font-size: 13px;
}

.mini p {
  margin-top: 4px;
  font-size: 11px;
}

.experience-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
  position: relative;
}
.exp-top {
  position: absolute;
  bottom: 430px;
  left: 12px;
  right: 12px;
  display: grid;
   background: rgba(255, 255, 255, 0.753);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px;
  color: #000000;
  text-align: center;
   top: 14px;
  left: 14px;
  text-align: center;
  color: #000000;
  padding: 10px 14px;
  font-size: 20px;
}
.exp-sub {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: grid;
  gap: 10px;
  top: 50px;
  left: 30px;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  font-size: 18px;
  
}
.exp-img {
  height: 515px;
  /* position: relative; */
}

.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.exp-stats {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  background: rgba(255, 255, 255, 0.753);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px;
  color: #000000;
  text-align: center;
}

.stat h4 {
  font-size: 18px;
  font-weight: 800;
}

.stat p {
  font-size: 12px;
  opacity: 0.92;
}

/* ================= FOOTER ================= */
.footer {
  margin-top: 30px;
  padding: 40px 0 0;
  background: var(--grad);
  color: #fff;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.8fr;
  gap: 18px;
}

.foot-col h3 {
  font-size: 18px;
}

.foot-col h4 {
  font-size: 14px;
  margin-bottom: 10px;
}



.foot-col p {
  font-size: 12px;
  opacity: 0.92;
  line-height: 1.6;
}

.foot-col a {
  display: block;
  font-size: 12px;
  opacity: 0.92;
  margin: 8px 0;
}

.socials {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.location-row {
  display: flex;       
  align-items: flex-start;
  gap: 8px;
}

.location-row img {
  width: 80px;
  height: 80px;
}

.foot-col h6 {
  font-size: 8px;
  margin: 0;          
  line-height: 1.3;
}


/* .map-box {
  height: 90px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
} */


.copy {
  margin-top: 26px;
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.92;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-left {
    display: flex;
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    transform: translateY(0);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .slide-track {
    grid-template-columns: 1fr;
    width: min(360px, 92vw);
  }

  .t-card {
    display: none;
  }

  .t-card.active {
    display: block;
  }

  .slide-btn {
    display: grid;
    place-items: center;
  }
}

@media (max-width: 520px) {
  .nav {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: min(360px, 92%);
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    display: none;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    color: #111;
    font-size: 14px;
    font-weight: 600;
  }

  .hamburger {
    display: block;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
