/* ── SALE SECTION ── */
.sale-section {
  padding: 100px 80px;
  background: linear-gradient(180deg, #0d1f3c 0%, #1a2f54 100%);
  position: relative;
  overflow: hidden;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.sale-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 30%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 70%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 55%, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
}
.sale-section::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: repeating-linear-gradient(to right, #b22234 0px, #b22234 80px, #fff 80px, #fff 100px);
  opacity: 0.5;
}
.sale-inner {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 1;
}
.sale-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; gap: 40px; flex-wrap: wrap;
}
.sale-header-text { flex: 1; min-width: 300px; }
.sale-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #a8d5fa; font-weight: 600; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.sale-eyebrow::before, .sale-eyebrow::after {
  content: '★'; font-size: 10px; color: rgba(168,213,250,0.5);
}
.sale-eyebrow::after { margin-left: auto; }
.sale-header h2 {
  font-family: 'Awesome Serif', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400; line-height: 1.1; color: white;
  margin-bottom: 16px;
}
.sale-header h2 em { font-style: italic; color: #a8d5fa; }
.sale-header > p {
  font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.65; font-weight: 300;
  max-width: 360px;
}

/* PRODUCT GRID — staggered vertical */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.product-card:nth-child(odd)  { align-self: flex-start; }
.product-card:nth-child(even) { align-self: flex-end; }
.product-card:nth-child(even) .product-img { order: 2; }
.product-card:nth-child(even) .product-body { order: 1;background:#ef382b; }

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,213,250,0.3);
  background: rgba(255,255,255,0.06);
}
.product-img {
  min-height: 260px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  position: relative;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  color: rgba(255,255,255,0.25);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
.product-discount-tag {
  position: absolute; top: 16px; left: 16px;
  background: #b22234; color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 6px 12px; border-radius: 2px;
  text-transform: uppercase;
}
.product-body {
  padding: 36px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.product-name {
  font-family: 'Awesome Serif', serif;
  font-size: 28px; font-weight: 400; line-height: 1.2;
  color: white; margin-bottom: 20px;
}
.product-prices {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.product-price-sale {
  font-family: 'Awesome Serif', serif;
  font-size: 38px; font-weight: 500; color: #a8d5fa;
  line-height: 1;
}
.product-price-original {
  font-size: 17px; color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.product-savings {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #ff8a95;
  margin-bottom: 18px;
}
.product-finance {
  font-size: 13px; color: rgba(255,255,255,0.55);
  font-weight: 400; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}
.product-finance strong { color: white; font-weight: 600; }

.sale-cta {
  margin-top: 48px; text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sale-cta p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  font-weight: 300; margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.btn-sale {
  display: inline-block;
  background: white; color: #111111;
  padding: 14px 32px; border-radius: 4px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  letter-spacing: 0.06em; transition: all 0.2s;
}
.btn-sale:hover { background: #a8d5fa; }


@media(max-width:767px) {
    .product-card {
        display:flex;
        flex-direction:column;
    }
    .sale-section {
        padding-left:15px;
        padding-right:15px;
    }
    .mobilereverse {
        flex-direction:column-reverse;
    }
}