/* 🔒 Scoped to .kitchen-page only */
body.kitchen-page {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffefc;
  margin: 0;
  padding: 0;
}

/* 🧢 Header */
body.kitchen-page .branding-bar {
  background-color: #FF7043;
  color: white;
  text-align: center;
  padding: 16px 12px;
}

body.kitchen-page .branding-bar h1 {
  margin: 0;
  font-size: 2rem;
}

body.kitchen-page .branding-bar .tagline {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 300;
}

/* 🧭 Nav bar */
body.kitchen-page .top-bar ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 12px;
  background-color: #BF360C;
  margin: 0;
}

body.kitchen-page .top-bar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* 🛍️ Product grid */
body.kitchen-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px;
}

body.kitchen-page .product-card {
  background-color: white;
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body.kitchen-page .product-card img {
  max-width: 50%;
  height: auto;
}
body.kitchen-page h2 {
  font-size: 1.2rem;
  color:  #333;
  margin-bottom: 24px;
}

body.kitchen-page .cta-button {
  background-color: #FF7043;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  margin-top: 8px;
}

/* 🧱 Footer */
body.kitchen-page .kitchen-footer {
  background-color: #333;
  color: #eee;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

body.kitchen-page .kitchen-footer a {
  color: #FFAB91;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

body.kitchen-page .kitchen-footer a:hover {
  color: #FFE0B2;
}

body.kitchen-page .footer-links,
body.kitchen-page .footer-social {
  margin-bottom: 12px;
}

body.kitchen-page .footer-social .icon {
  margin-right: 6px;
}

body.kitchen-page .affiliate-disclosure {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 12px;
}

/* 📱 Mobile tweaks */
@media (max-width: 600px) {
  body.kitchen-page .top-bar ul,
  body.kitchen-page .footer-links,
  body.kitchen-page .footer-social {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  body.kitchen-page .product-grid {
    grid-template-columns: 1fr;
  }
}

body.kitchen-page .kitchen-section {
  padding: 40px 20px;
  background-color: #fffefc;
}

body.kitchen-page .section-heading {
  text-align: center;
  font-size: 1.8rem;
  color: #6D4C41;
  margin-bottom: 24px;
}

body.kitchen-page .kitchen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  justify-content: center;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color:#FF7043;
  color: #fff8dc;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}
