/* === Christmas Product Card Overrides === */
.product-card {
  max-width: 430px;
  padding: 20px;
  margin: 16px;
  background-color: #fffaf0; /* soft festive background */
  border: 2px solid #c00;     /* Christmas red border */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* === Christmas Product Image Styling === */
.product-card img {
  width: 70%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* === CTA Button Styling === */
.product-card .cta-button {
  background-color: #c00;
  color: #fff;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}

/* === Optional: Header Text Fixes (if needed) === */
.page-header,
h1.page-header {
  font-size: 2em;
  font-family: inherit;
  color: #006400; /* dark green */
  text-align: center;
  margin-bottom: 30px;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #166534;
  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;
}

.category-title {
  text-align: center;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  color: #000000;
  margin: 24px 0;
  font-weight: 700;
}
.holiday-grid-title {
  text-align: center;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  color: #5a3c2b;
  margin: 32px 0 16px;
  font-weight: 700;
}
/* 📱 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;
  }


 