/* === Thanksgiving Product Card Overrides === */
.product-card {
  max-width: 420px;
  padding: 20px;
  margin: 16px;
  background-color: #fdf8f3; /* warm off-white */
  border: 2px solid #5c4033; /* dark brown border */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* === Thanksgiving Product Image Styling === */
.product-card img {
  width: 100%;
  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: #5c4033; /* dark brown */
  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: #8b4513; /* saddle brown */
  text-align: center;
  margin-bottom: 30px;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #8b4513;
  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;
}
