/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8f7f3;
  color: #2c2c2c;
  line-height: 1.6;
  padding: 0 1rem;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- HEADER ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.logo {
  background: #d6f5d2;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.5rem;
}

.sub {
  font-size: 0.85rem;
  color: #666;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

nav a:hover {
  color: #2a7f42;
}

/* ---------- BUTTONS ---------- */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #eee;
}

.btn-primary {
  background: #2f8e56;
  color: #fff;
}

.btn-primary:hover {
  background: #246c42;
}

.btn-ghost {
  background: transparent;
  border: 2px solid #2f8e56;
  color: #2f8e56;
}

.btn-ghost:hover {
  background: #2f8e56;
  color: #fff;
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #2f8e56;
  letter-spacing: 1px;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: #555;
}

.cta-row {
  display: flex;
  gap: 1rem;
}

.features {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature strong {
  font-size: 1rem;
  color: #2f8e56;
}

.feature .small {
  color: #666;
  font-size: 0.85rem;
}

/* ---------- HERO RIGHT ---------- */
.hero-right {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pack-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.muted {
  color: #777;
}

.tag-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.tag {
  background: #2f8e56;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-size: 0.75rem;
}

.product-preview {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.pack small {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  color: #666;
}

/* ---------- GALLERY ---------- */
.gallery {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.card-header {
  display: flex;
  justify-content: space-between;
}

.card-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
}

.card-actions {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.small {
  font-size: 0.85rem;
  color: #666;
}

/* ---------- FOOTER ---------- */
footer {
  margin-top: 5rem;
  padding: 2rem 0;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-title {
  font-weight: 800;
  font-size: 1.2rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
    gap: 1rem;
  }

  nav a {
    margin-left: 0.8rem;
  }
}
