/* Base Reset & Typography */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff8f4;
  color: #333;
  text-align: center;
}

h1, h2, h3 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

a {
  color: #f95556;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 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;
}

/* Store Highlights */
.store-highlights {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.store-highlights h2 {
  font-size: 1.75rem;
  color: #795548;
  margin-bottom: 2rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.highlight-card {
  background: #fff;
  border: 1px solid #e0d6cf;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  text-align: left;
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #5e3e36;
}

.highlight-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #444;
}

.highlight-card a {
  color: #f95556;
  font-weight: bold;
  text-decoration: none;
}

.highlight-card a:hover {
  text-decoration: underline;
}

.highlight-wide {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-wide {
    grid-column: span 2;
  }
}

/* About Section */
.about-section {
  background-color: #f5e9dc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  text-align: left;
}

.about-section h2 {
  font-size: 1.5rem;
  color: #795548;
  margin-bottom: 1rem;
  text-align: center;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.about-section a {
  color: #f95556;
  text-decoration: none;
}

.about-section a:hover {
  text-decoration: underline;
}

.founder-photo {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1rem auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.founder-quote {
  font-style: italic;
  color: #5e3e36;
  font-size: 1.05rem;
  margin: 1rem auto;
  text-align: center;
  max-width: 600px;
}

/* Legal Pages (Terms & Privacy) */
.legal-content {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: left;
}

.legal-content h2 {
  font-size: 1.75rem;
  color: #795548;
  margin-bottom: 1rem;
  text-align: center;
}

.legal-content h3 {
  font-size: 1.25rem;
  color: #5e3e36;
  margin-top: 2rem;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

/* 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;
}

/* Brand Links */
.brand-links {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #5e3e36;
}

.brand-links a {
  color: #f95556;
  text-decoration: none;
  margin: 0 0.25rem;
}

.brand-links a:hover {
  text-decoration: underline;
}

.faq {
  background-color: #fff3e0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 700px;
  margin: 2rem auto;
}

.faq h2 {
  font-size: 1.8rem;
  color: #795548;
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #5e3e36;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.shipping-link {
  margin-bottom: 0.75rem;
}

.shipping-list li {
  margin-bottom: 0.5rem;
}

/* Section container */
.recommended-section {
  max-width: 960px;
  margin: 3rem auto;
  padding: 1rem;
}

/* Grid layout */
.recommended-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media screen and (min-width: 600px) {
  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Individual card */
.recommended-card {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); /* Subtle lift */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* Headings and text */
.recommended-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.recommended-card p {
  margin: 0.5rem 0 1rem;
  line-height: 1.4;
}

/* Affiliate buttons */
.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%;
}

/* Amazon style */
.buy-button.amazon {
  background-color: #ffa41c;
  color: #111;
}

.buy-button.amazon:hover {
  background-color: #ff8c00;
}

/* eBay style */
.buy-button.ebay {
  background-color: #0064d2;
  color: #fff;
}

.buy-button.ebay:hover {
  background-color: #004bb5;
}

/* Footer link */
.recommended-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.recommended-footer a {
  font-weight: bold;
  color: #0077cc;
  text-decoration: none;
}

.recommended-footer a:hover {
  text-decoration: underline;
}

.recommended-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .recommended-card img {
    height: 120px;
  }
}


.brand-section {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 600px) {
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-2px);
}

.brand-card img {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
}

.brand-card h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.brand-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.logo-wrap {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
