body {
  font-family: sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  color: #333;
}

.page-container {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem;
}

h1, h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

p.intro {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-card {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.product-card h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.product-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.buy-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
  white-space: nowrap;
  max-width: 100%;
}

.buy-button.amazon {
  background-color: #ffa41c;
  color: #111;
}

.buy-button.amazon:hover {
  background-color: #ff8c00;
}

.buy-button.ebay {
  background-color: #0064d2;
  color: #fff;
}

.buy-button.ebay:hover {
  background-color: #004bb5;
}

/* Top Header Section */
.top-section {
  background-color: #795548;
  color: #fff;
  padding: 2rem 1rem;
}

.top-section h1 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.action-buttons a {
  background-color: #ffb845;
  color: #333;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.action-buttons a:hover {
  background-color: #e6a832;
}


.install-button-wrapper {
  margin-top: 1rem;
}

.install-button {
  background-color: #f95556;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
  display: inline-block;
  width: auto;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.install-button:hover {
  background-color: #d94448;
  transform: translateY(-1px);
}

.install-thankyou,
.install-share-prompt {
  margin-top: 1rem;
  font-size: 1rem;
  color: #5e3e36;
  background-color: #fff3e0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  text-align: center;
}

.install-share-prompt .share-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #f95556;
  font-weight: bold;
  text-decoration: none;
}

.install-share-prompt .share-link:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #f5e9dc;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #5e3e36;
  border-top: 1px solid #e0d6cf;
}

.site-footer a {
  color: #f95556;
  text-decoration: none;
  margin: 0 0.5rem;
}

.site-footer a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  margin: 0 0.5rem;
  font-size: 2rem;
  color: #795548;
}

.social-icons a:hover {
  color: #f95556;
}

/* Save Page */
.save-page-wrapper {
  text-align: center;
  margin: 1rem 0;
}

.save-page-button {
  background: #a0522d;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.save-page-button:hover {
  background: #7a5246;
}

.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
}

.trusted-badge {
  font-size: 0.85rem;
  color: #3b5d43;
  margin-top: 0.5rem;
}

.tag.best-seller {
  background: #ffe8c2;
  color: #5e3e36;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.faq-section {
  background: #fdf8f3;
  padding: 2rem 1rem;
  margin: 3rem auto;
  border-radius: 12px;
  box-shadow: 0 0 0.5rem rgba(0,0,0,0.03);
  border: 1px solid rgba(94, 62, 54, 0.08);
  max-width: 740px;
}

.faq-inner {
  max-width: 640px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  color: #5e3e36;
  margin-bottom: 1.5rem;
}

.faq-section h3 {
  margin-top: 1.5rem;
  color: #7a5246;
}

.faq-section p {
  margin: 0.5rem 0 1rem;
}
.hero-image img {
  padding-top:2rem;
  max-width: 300px; /* or 250px, depending on your layout */
  height: auto;
  display: block;
  margin: 0 auto;
}
