:root {
  --green: #0f7a3a;
  --green-dark: #07572a;
  --green-soft: #e8f7ed;
  --orange: #f28c28;
  --orange-soft: #fff2e3;
  --ink: #1d2520;
  --muted: #66746c;
  --line: #dfe8e2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 122, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfb;
  font-family: Inter, "Hind Siliguri", system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 20px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 14px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto auto minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-family: Poppins, sans-serif;
  font-weight: 800;
}

.logo strong {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.logo small {
  color: var(--muted);
  font-family: "Hind Siliguri", sans-serif;
  font-size: 13px;
}

.location {
  padding: 9px 14px;
  text-align: left;
  background: var(--green-soft);
  border: 1px solid #ccead6;
  border-radius: 8px;
  cursor: pointer;
}

.location span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.search {
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.search input {
  min-width: 0;
  padding: 13px 16px;
  border: 0;
  outline: 0;
}

.search button,
.newsletter button,
.product-card button {
  color: var(--white);
  background: var(--orange);
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.search button {
  padding: 0 20px;
}

.quick-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.cart-link {
  color: var(--ink);
  font-weight: 700;
}

.cart-link span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-left: 3px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 12px;
}

.category-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.category-bar a {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 80px clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 50, 25, 0.9), rgba(5, 50, 25, 0.56), rgba(5, 50, 25, 0.15)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Poppins, "Hind Siliguri", sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 76px);
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.hero-stats div {
  min-width: 130px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 24px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 72px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2,
.deals-band h2,
.package-card h2,
.split h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(28px, 4vw, 46px);
}

.section-heading a {
  color: var(--green);
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(18, 73, 40, 0.08);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.category-card span,
.category-card small {
  display: block;
  padding: 0 14px;
}

.category-card span {
  padding-top: 14px;
  font-weight: 800;
}

.category-card small {
  padding-bottom: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.deals-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: 34px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
}

.deals-band h2 {
  color: var(--white);
}

.timer {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
}

.timer span {
  display: inline-grid;
  min-width: 46px;
  place-items: center;
}

.product-section {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 144px;
  display: grid;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filters h3 {
  margin: 0;
}

.filters label {
  color: var(--muted);
}

.filters select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.product-info {
  padding: 16px;
}

.badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 4px;
}

.product-card p {
  color: var(--muted);
  font-size: 14px;
}

.price {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 14px 0;
}

.price strong {
  color: var(--green);
  font-size: 22px;
}

.price del {
  color: #9aa59f;
}

.product-card button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
}

.packages {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.package-card {
  padding: 44px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 68, 31, 0.92), rgba(6, 68, 31, 0.7)),
    url("https://images.unsplash.com/photo-1543168256-418811576931?auto=format&fit=crop&w=1200&q=80") center/cover;
  border-radius: 8px;
}

.package-card h2,
.package-card p {
  color: var(--white);
}

.package-card p:not(.eyebrow) {
  max-width: 540px;
  line-height: 1.7;
}

.package-list {
  display: grid;
  gap: 14px;
}

.package-list div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-list strong,
.package-list span {
  display: block;
}

.package-list span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.split p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.split img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.feature-grid span {
  padding: 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 8px;
  font-weight: 800;
}

.app-panel {
  background: var(--orange-soft);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 520px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #ffd7a8;
  border-radius: 8px;
  background: var(--white);
}

.newsletter input {
  min-width: 0;
  padding: 14px 16px;
  border: 0;
  outline: 0;
}

.newsletter button {
  padding: 0 18px;
}

.footer {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 28px;
  padding: 54px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #102018;
}

.footer .logo-mark {
  background: var(--orange);
}

.footer strong,
.footer h3 {
  color: var(--white);
}

.footer p {
  max-width: 320px;
  line-height: 1.7;
}

.footer a {
  display: block;
  margin: 9px 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .search {
    grid-column: 1 / -1;
    order: 3;
  }

  .location {
    display: none;
  }

  .category-grid,
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-section,
  .packages,
  .split,
  .footer {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }
}

@media (max-width: 720px) {
  .announcement {
    flex-direction: column;
    gap: 4px;
  }

  .site-header {
    gap: 12px;
  }

  .quick-nav {
    justify-content: end;
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 560px;
    padding-top: 56px;
  }

  h1 {
    font-size: 40px;
  }

  .section {
    padding: 50px 18px;
  }

  .section-heading,
  .deals-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .products,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .deals-band {
    margin: 0 18px;
    padding: 24px;
  }

  .package-card {
    padding: 28px;
  }

  .split img {
    height: 300px;
  }

  .newsletter {
    grid-template-columns: 1fr;
  }

  .newsletter button {
    min-height: 46px;
  }
}

@media (max-width: 480px) {
  .logo strong {
    font-size: 19px;
  }

  .quick-nav a:not(.cart-link) {
    display: none;
  }

  .category-grid,
  .products {
    grid-template-columns: 1fr;
  }

  .search {
    grid-template-columns: 1fr;
  }

  .search button {
    min-height: 44px;
  }
}
