/* ==== BestLineCA Promotions Page Custom Styles ==== */
.page-title {
  text-align: center;
  margin-top: var(--space-16);
  color: var(--color-primary);
}
.page-intro {
  text-align: center;
  margin-bottom: var(--space-10);
  color: var(--color-gray-100);
  font-size: var(--font-size-lg);
  max-width: 38em;
  margin-left: auto;
  margin-right: auto;
}
/* Promotion section spacing */
.promo-section {
  margin-bottom: var(--space-16);
}
/* == Promotional Cards == */
.promo-card {
  margin: 0 auto;
  max-width: 720px;
  gap: var(--space-4);
  position: relative;
}
.promo-title {
  color: var(--color-primary);
  font-family: var(--font-family-head);
  font-weight: 800;
  text-align: center;
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-2);
}
.promo-title-detail {
  display: block;
  color: var(--color-gray-200);
  font-size: var(--font-size-lg);
}
.promo-desc {
  color: var(--color-gray-100);
  text-align: center;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-base);
  max-width: 39ch;
  margin-left: auto;
  margin-right: auto;
}
.promo-icon, .promo-weekly-icon, .promo-loyalty-icon, .promo-events-icon {
  font-size: 2.7rem;
  margin-bottom: var(--space-2);
}
.promo-banner {
  margin-bottom: var(--space-2);
  display: flex;
  justify-content: center;
}
.promo-banner-img {
  height: 88px; width: 116px;
  filter: drop-shadow(0 10px 32px #ffb30044);
}
/* Weekly promos as grid */
.promo-weekly {
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
}
.promo-weekly-icon {
  font-size: 2.5rem;
  justify-self: center;
  align-self: center;
  background: linear-gradient(90deg, #ffe259 0%, #ffeae0 100%);
  color: #332800;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
}
.promo-list {
  margin-bottom: var(--space-4);
  color: var(--color-gray-100);
  font-size: var(--font-size-base);
  margin-top: var(--space-2);
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.promo-list li {
  position: relative;
  padding-left: 2.2em;
  margin-bottom: var(--space-2);
}
.promo-list li::before {
  content: "\2726"; /* star symbol */
  position: absolute; left: 0; color: var(--color-primary); font-size: 1.3em; top: 0.2em;
}
.promo-loyalty {
  align-items: flex-start;
  gap: var(--space-8);
}
.promo-loyalty-icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg,#ffe259,#ffb300);
  color: #501;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  justify-content: center; align-items: center;
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
  box-shadow: var(--shadow-xs);
}
.promo-events {
  align-items: center;
}
.promo-events-icon {
  font-size: 2.4rem;
  background: linear-gradient(135deg,#cfd2dc,#ffe259);
  color: #273;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-2);
  box-shadow: var(--shadow-xs);
}
/* Call to Action Button tweaks */
.promo-card .cta-button,
.promo-card .button {
  font-size: var(--font-size-lg);
  min-width: 170px;
  margin-top: var(--space-2);
  margin-bottom: var(--space-1);
}
.highlight {
  background-color: var(--color-warning);
  color: var(--color-background);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-2);
  font-weight: 700;
}
@media (max-width: 900px) {
  .promo-card { max-width: 98vw; }
  .promo-section { margin-bottom: var(--space-12); }
  .promo-weekly { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .promo-card { padding: var(--space-4) !important; }
  .promo-banner-img {
    height: 62px; width: 86px;
  }
  .page-title {
    font-size: var(--font-size-xl);
    margin-top: var(--space-8);
  }
  .promo-title {
    font-size: var(--font-size-xl);
  }
  .promo-events-icon, .promo-loyalty-icon, .promo-weekly-icon {
    font-size: 1.35rem;
    min-width: 34px;
    min-height: 34px;
    width: 34px; height: 34px;
  }
}