/* 🔒 Scoped to .bathroom-page only */
body.bathroom-page {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
  margin: 0;
  padding: 0;
}

/* 🧢 Header */
body.bathroom-page .branding-bar {
  background-color: #4DD0E1;
  color: white;
  text-align: center;
  padding: 16px 12px;
}

body.bathroom-page .branding-bar h1 {
  margin: 0;
  font-size: 2rem;
}

body.bathroom-page .branding-bar .tagline {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 300;
}

/* 🧭 Nav bar */
body.bathroom-page .top-bar ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 12px;
  background-color: #00838F;
  margin: 0;
}

body.bathroom-page .top-bar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* 🛍️ Product grid */
body.bathroom-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px;
}

body.bathroom-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.bathroom-page .product-card img {
  max-width: 50%;
  height: auto;
}
body.bathroom-page h2 {
  font-size: 1.2rem;
  color:  #333;
  margin-bottom: 24px;
}
body.bathroom-page .cta-button {
  background-color: #00838F;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  margin-top: 8px;
}

/* 🧱 Footer */
body.bathroom-page .bathroom-footer {
  background-color: #333;
  color: #eee;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

body.bathroom-page .bathroom-footer a {
  color: #B2EBF2;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

body.bathroom-page .bathroom-footer a:hover {
  color: #E0F7FA;
}

body.bathroom-page .footer-links,
body.bathroom-page .footer-social {
  margin-bottom: 12px;
}

body.bathroom-page .footer-social .icon {
  margin-right: 6px;
}

body.bathroom-page .affiliate-disclosure {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 12px;
}

/* 📱 Mobile tweaks */
@media (max-width: 600px) {
  body.bathroom-page .top-bar ul,
  body.bathroom-page .footer-links,
  body.bathroom-page .footer-social {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  body.bathroom-page .product-grid {
    grid-template-columns: 1fr;
  }
}
/* 🌅 Morning Routine Section */
body.bathroom-page .morning-routine {
  background-color: #E0F7FA;
  padding: 40px 20px;
}

body.bathroom-page .section-heading {
  text-align: center;
  font-size: 1.8rem;
  color: #00838F;
  margin-bottom: 24px;
}

body.bathroom-page .routine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  justify-content: center;
}

body.bathroom-page .routine-card {
  background-color: white;
  border: 1px solid #ccc;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

body.bathroom-page .routine-card img {
  max-width: 50%;
  height: auto;
  margin-bottom: 12px;
}

body.bathroom-page .routine-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #333;
}

body.bathroom-page .routine-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

body.bathroom-page .routine-card button {
  background-color: #00838F;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;
}

/* 📱 Mobile tweaks */
@media (max-width: 600px) {
  body.bathroom-page .routine-grid {
    grid-template-columns: 1fr;
  }
}
body.bathroom-page .bathroom-section {
  padding: 40px 20px;
  background-color: #fefefe;
}

body.bathroom-page .section-heading {
  text-align: center;
  font-size: 1.8rem;
  color: #3E2723;
  margin-bottom: 24px;
}

body.bathroom-page .bathroom-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: #00838F;
  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;
}
html {
  scroll-behavior: smooth;
}
