/* === Valentine Product Card Overrides === */
.product-card {
  max-width: 260px;
  padding: 20px;
  margin: 16px;
  background-color: #fff0f5; /* blush pink */
  border: 2px solid #c71585; /* deep rose red */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 }
.product-card {
  flex: 0 1 300px;
  box-sizing: border-box;
}
.product-card::before {
  content: "❤️ Valentine Pick";
  position: absolute;
  top: -10px;
  left: -10px;
  background: #c71585;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.8em;
  border-radius: 4px;
}
/* === Valentine Product Image Styling === */
.product-card img {
  width: 60%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* === CTA Button Styling === */
.product-card .cta-button {
  background-color: #c71585;
  color: #fff;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
.product-card:hover {
    transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
}

/* === Page Header Styling === */
.page-header,
h1.page-header {
  font-size: 2em;
  font-family: 'Georgia', serif;
  color: #c71585;
  text-align: center;
  margin-bottom: 30px;
}

/* === Optional: Page Background === */
body.valentine-page {
  background-color: #ffe4e1; /* light rose */
  color: #333;
}
/* === Card Row Layout Fix === */
.valentine-grid {
  padding: 40px 20px;
  background-color: #ffe4e1; /* soft rose */
}
.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
body.valentine {
  background-color: #ffe4e1;
  color: #c71585;
}

body.valentine h1 {
  color: #c71585;
}

body.valentine .divider {
  border-top: 2px solid #ff69b4;
}

body.valentine .holiday-links a {
  background-color: #c71585;
}

body.valentine .holiday-links a:hover {
  background-color: #a3126e;
}

body.valentine footer {
  background-color: #ffe4e1;
  color: #c71585;
}
body.valentine {
  background-color: #ffe4e1;
  color: #ffe4e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}
body.valentine .cta-button {
  background-color: #c71585;
  color: #fff;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  :root {
    --card-width:600px;
  }
}
