/* === Holiday Product Card Overrides === */
.product-card {
  max-width: 420px;
  padding: 20px;
  margin: 16px;
  background-color: #ffffff; /* white card */
  border: 2px solid #b8860b; /* golden bronze border */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* === Holiday 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: #b8860b;
  color: #fff;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}

/* === Page Background === */
body.holiday-page {
  background-color: #000000; /* black background */
  color: #ffffff;            /* default text color */
}

/* === Optional: Header Text Fixes === */
.page-header,
h1.page-header {
  font-size: 2em;
  font-family: inherit;
  color: #b8860b; /* match border color */
  text-align: center;
  margin-bottom: 30px;
}
