* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background:
    linear-gradient(rgba(247, 241, 230, 0.92), rgba(239, 231, 216, 0.95)),
    url("https://images.unsplash.com/photo-1517705008128-361805f42e86?q=80&w=1600&auto=format&fit=crop") center/cover fixed no-repeat;
  color: #2f241b;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 242, 232, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(94, 70, 49, 0.15);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6e4b2a;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: #5b4634;
  transition: 0.25s ease;
}

.nav a:hover {
  color: #8b5e34;
}

.nav-btn {
  background: #8b5e34;
  color: #fffaf2;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(110, 75, 42, 0.18);
}

.hero {
  min-height: 82vh;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(246, 238, 226, 0.76), rgba(239, 231, 216, 0.9)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
}

.hero-content {
  max-width: 920px;
  text-align: center;
}

.badge,
.section-title span,
.product-tag,
.stock {
  display: inline-block;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(139, 94, 52, 0.1);
  color: #7a4d25;
  border: 1px solid rgba(139, 94, 52, 0.18);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 3.1rem;
  line-height: 1.08;
  margin-bottom: 18px;
  color: #3e2d1f;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #5c4634;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.btn:hover,
.product-bottom button:hover,
.nav-btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #8b5e34;
  color: #fffaf2;
}

.btn-secondary {
  border: 1px solid rgba(94, 70, 49, 0.22);
  background: rgba(255, 248, 240, 0.6);
  color: #4a3728;
}

section {
  padding: 90px 32px;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-title span {
  color: #7a4d25;
  background: rgba(139, 94, 52, 0.1);
  border: 1px solid rgba(139, 94, 52, 0.18);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #3d2b1f;
}

.section-title p {
  color: #6b5441;
}

.features,
.products,
.reviews,
.faq {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid,
.reviews-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.product-card,
.review-card,
.faq-item {
  background: rgba(255, 250, 242, 0.8);
  border: 1px solid rgba(126, 89, 56, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(76, 53, 33, 0.08);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.3rem;
  margin-bottom: 18px;
  background: rgba(139, 94, 52, 0.12);
}

.feature-card h3,
.product-card h3,
.faq-item h3,
.footer h3,
.footer h4 {
  margin-bottom: 10px;
  color: #3e2d1f;
}

.feature-card p,
.review-card p,
.product-card p,
.faq-item p,
.footer p,
.footer a,
.copy {
  color: #5d4735;
}

.products-grid {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.product-card {
  width: 100%;
  max-width: 390px;
  padding: 20px;
  margin: 0 auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(76, 53, 33, 0.14);
}

.product-top,
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-top {
  margin-bottom: 16px;
}

.product-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(139, 94, 52, 0.12);
  color: #7a4d25;
  font-size: 0.84rem;
}

.stock {
  font-size: 0.84rem;
  color: #486243;
}

.product-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(126, 89, 56, 0.12);
  background: #e9dccb;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.product-card p {
  margin-bottom: 18px;
  font-size: 1rem;
}

.product-bottom {
  margin-top: 16px;
}

.product-bottom strong {
  font-size: 1.4rem;
  color: #3d2b1f;
}

.product-bottom button {
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  background: #8b5e34;
  color: #fffaf2;
}

.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-card {
  padding: 24px;
}

.review-card strong {
  display: inline-block;
  margin-top: 14px;
  color: #3d2b1f;
}

.faq {
  max-width: 1000px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 22px;
}

.footer {
  padding: 70px 32px 30px;
  border-top: 1px solid rgba(94, 70, 49, 0.14);
  background: rgba(248, 241, 229, 0.86);
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.copy {
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 640px) {
  section,
  .hero,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

  .product-card {
    max-width: 100%;
  }

  .paypal-box {
  margin-top: 18px;
}

.paypal-box > div {
  width: 100%;
}
}