/* ═══════════════════════════════════════════════
   LA CIMA — promotions-page.css
   Uses: variable.css → index.css → promotions-page.css
   ═══════════════════════════════════════════════ */

/* ══ HERO ═══════════════════════════════════════ */
.pr-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 56px;
  padding-inline: var(--gutter);
  position: relative;
  overflow: hidden;
}
.pr-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../imgs/neveria_la_cima_madison-Ice-cream.jpg') center 35% / cover no-repeat;
  transform: scale(1.05); will-change: transform;
}
.pr-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,28,.40) 0%, rgba(10,10,28,.65) 50%, rgba(10,10,28,.90) 100%);
}
.pr-hero-inner { max-width: var(--max-width); margin-inline: auto; width: 100%; position: relative; z-index: 1; }
.pr-hero-tag {
  font-family: var(--font-accent); font-size: 10px; font-weight: 200;
  letter-spacing: .20em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: var(--sp-4); display: block;
}
.pr-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px); font-weight: 400;
  color: var(--color-white); line-height: 1.05; margin-bottom: var(--sp-4);
}
.pr-hero-h1 em { font-style: italic; color: var(--color-red); }
.pr-hero-sub {
  font-family: var(--font-body); font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,.80); max-width: 520px; line-height: 1.7;
}

/* ══ PROMO OF THE MONTH — FEATURED ══════════════ */
.pr-featured {
  background: var(--color-red);
  padding-block: var(--sp-16);
  padding-inline: var(--gutter);
}
.pr-featured-inner {
  max-width: var(--max-width); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-12); align-items: center;
}
.pr-featured-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(255,255,255,.20);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-white); padding: 5px 14px;
  border-radius: var(--r-full); margin-bottom: var(--sp-4);
}
.pr-featured-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px); font-weight: 400;
  color: var(--color-white); line-height: 1.1; margin-bottom: var(--sp-4);
}
.pr-featured-desc {
  font-family: var(--font-body); font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: var(--sp-6);
}
.pr-featured-price {
  display: flex; align-items: baseline; gap: var(--sp-3); margin-bottom: var(--sp-6);
}
.pr-featured-price-new {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 400; color: var(--color-white); line-height: 1;
}
.pr-featured-price-old {
  font-family: var(--font-body); font-size: 22px; font-weight: 300;
  color: rgba(255,255,255,.55); text-decoration: line-through;
}
.pr-featured-price-save {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,.20); color: var(--color-white);
  padding: 4px 12px; border-radius: var(--r-full);
}
.pr-featured-img {
  border-radius: var(--r-lg); overflow: hidden;
  height: 320px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
  border: 2px solid rgba(255,255,255,.20);
}
.pr-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.pr-featured-expiry {
  font-family: var(--font-body); font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.65); margin-top: var(--sp-4);
  display: flex; align-items: center; gap: var(--sp-2);
}

/* ══ PROMO GRID ══════════════════════════════════ */
.pr-grid-section {
  background: var(--color-white);
  padding-block: var(--sp-20);
  padding-inline: var(--gutter);
}
.pr-grid-inner { max-width: var(--max-width); margin-inline: auto; }
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}
.pr-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  display: flex; flex-direction: column;
  background: var(--color-white);
}
.pr-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--color-blue-light); }

.pr-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.pr-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pr-card-img--red    { background: linear-gradient(135deg, #FDEAEA, #F9C0C0); }
.pr-card-img--blue   { background: linear-gradient(135deg, #E5F3F9, #B8DFF0); }
.pr-card-img--green  { background: linear-gradient(135deg, #E8F5E0, #C8E8B8); }
.pr-card-img--yellow { background: linear-gradient(135deg, #F3F2D4, #ECEAB0); }
.pr-card-img--warm   { background: linear-gradient(135deg, #FFE9D8, #FFD4B8); }

.pr-card-discount {
  position: absolute; top: 12px; right: 12px;
  background: var(--color-red); color: var(--color-white);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-full);
}
.pr-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.pr-card-name {
  font-family: var(--font-display); font-size: 20px; font-weight: 400;
  color: var(--color-dark); margin-bottom: var(--sp-2); line-height: 1.2;
}
.pr-card-desc {
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  color: var(--color-dark-mid); line-height: 1.65; margin-bottom: var(--sp-4); flex: 1;
}
.pr-card-price {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.pr-card-price-new {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  color: var(--color-blue-dark);
}
.pr-card-price-old {
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  color: var(--color-dark-mid); text-decoration: line-through;
}
.pr-card-expiry {
  font-family: var(--font-body); font-size: 12px; font-weight: 300;
  color: var(--color-dark-mid); margin-bottom: var(--sp-4);
  display: flex; align-items: center; gap: 4px;
}
.pr-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 11px 16px; border-radius: var(--r-full);
  background: var(--color-wa); color: var(--color-white);
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  border: none; cursor: pointer; transition: all var(--ease);
  text-decoration: none; margin-top: auto;
}
.pr-card-btn:hover { background: var(--color-wa-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.pr-card-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ══ SEASONAL CALENDAR ═══════════════════════════ */
.pr-calendar {
  background: var(--color-yellow-light);
  padding-block: var(--sp-20);
  padding-inline: var(--gutter);
}
.pr-calendar-inner { max-width: var(--max-width); margin-inline: auto; }
.pr-calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}
.pr-cal-card {
  background: var(--color-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--ease);
}
.pr-cal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-blue-light); }
.pr-cal-card--active { border-color: var(--color-red); border-width: 2px; }
.pr-cal-icon { font-size: 32px; margin-bottom: var(--sp-3); }
.pr-cal-month {
  font-family: var(--font-display); font-size: 16px; font-weight: 400;
  color: var(--color-dark); margin-bottom: var(--sp-2);
}
.pr-cal-promo {
  font-family: var(--font-body); font-size: 12px; font-weight: 300;
  color: var(--color-dark-mid); line-height: 1.5;
}
.pr-cal-badge {
  display: inline-block; margin-top: var(--sp-2);
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  padding: 2px 10px; border-radius: var(--r-full);
  background: var(--color-red); color: var(--color-white);
}

/* ══ NEWSLETTER SIGNUP ═══════════════════════════ */
.pr-newsletter {
  background: var(--color-blue-dark);
  padding-block: var(--sp-16);
  padding-inline: var(--gutter);
  text-align: center;
  border-bottom: 3px solid var(--color-blue);
}
.pr-newsletter-inner { max-width: 540px; margin-inline: auto; }
.pr-newsletter-icon { font-size: 40px; margin-bottom: var(--sp-4); }
.pr-newsletter-title {
  font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400; color: var(--color-white); margin-bottom: var(--sp-3);
}
.pr-newsletter-sub {
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.80); margin-bottom: var(--sp-8); line-height: 1.7;
}
.pr-newsletter-form {
  display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center;
}
.pr-newsletter-input {
  flex: 1; min-width: 220px; padding: 13px 20px;
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  background: rgba(255,255,255,.10); color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-full); outline: none; transition: all var(--ease);
}
.pr-newsletter-input:focus { border-color: var(--color-blue); background: rgba(255,255,255,.15); }
.pr-newsletter-input::placeholder { color: rgba(255,255,255,.45); }
.pr-newsletter-btn {
  padding: 13px 28px; border-radius: var(--r-full);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  background: var(--color-red); color: var(--color-white);
  border: none; cursor: pointer; transition: all var(--ease); white-space: nowrap;
}
.pr-newsletter-btn:hover { background: var(--color-red-dark); transform: translateY(-2px); }
.pr-newsletter-note {
  font-family: var(--font-body); font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.55); margin-top: var(--sp-4);
}

/* ══ RESPONSIVE ═════════════════════════════════ */
@media (max-width: 1024px) {
  .pr-calendar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pr-featured-inner { grid-template-columns: 1fr; }
  .pr-featured-img   { height: 220px; order: -1; }
  .pr-grid           { grid-template-columns: repeat(2, 1fr); }
  .pr-calendar-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pr-grid { grid-template-columns: 1fr; }
  .pr-newsletter-form { flex-direction: column; }
  .pr-newsletter-input { min-width: unset; }
}
