:root {
  --text: #620600;
  --muted: #1c1c1c;
  --green: #0b5a2c;
  --green2: #138a43;
  --orange: #ff7a1a;
  --orange2: #ff5a2a;
  --line: rgba(12, 27, 42, 0.12);
  --pagebg: #f6fbff; /* ✅ fixed body background (no gradients) */
}

body {
  font-family: "Hind", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  font-size: 16px;
  background: var(--pagebg); /* ✅ fixed background */
}
.small,
small {
  font-size: 16px;
}
.brand-logo {
  height: 32px;
  width: auto;
}

.section {
  padding: 30px 0;
}
.card-soft {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
}
.section-title {
  color: var(--green);
  letter-spacing: -0.3px;
}
.section-sub {
  color: var(--muted);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: 0;
  color: #fff;
  font-weight: 800;
}
.btn-orange:hover {
  opacity: 0.95;
  color: #fff;
}
.btn-green {
  background: linear-gradient(135deg, var(--green2), var(--green));
  border: 0;
  color: #fff;
  font-weight: 800;
}
.btn-green:hover {
  opacity: 0.95;
  color: #fff;
}

.card-soft {
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.08);
  border-radius: 18px;
  background: #fff;
}

.hero h1 {
  color: var(--green);
  letter-spacing: -0.5px;
  font-size: 27px;
}

.tick {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.tick-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(19, 138, 67, 0.14);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 26px;
  margin-top: 2px;
}

.video-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0f14;
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255, 122, 26, 0.25);
  background: rgba(255, 122, 26, 0.1);
  color: #7a2d06;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  font-size: 16px;
}

.price-cut {
  color: #6b7280;
  text-decoration: line-through;
  font-weight: 800;
}
.price-now {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.save-badge {
  background: #ff6a3d;
  color: #fff;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 13px;
  display: inline-block;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}

.spacer {
  height: 88px;
}

/* ✅ demo images helpers */
.demo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo-img-square {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.demo-img-product {
  width: 100%;
  max-height: 360px;
  /* object-fit: contain; */
  background: #fff;
}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 1.6rem;
    }
    .h3, h3 {
        font-size: 1.5rem;
    }
}