/* ============================================
   POOLPRO SALE PROMO COMPONENTS
   Premium retail-inspired promotional banners
   Rich two-tone gradients with glossy depth
   ============================================ */

/* ============================================
   COLOR SYSTEM - Deep Two-Tone Palette
   ============================================ */
:root {
  /* Hot Pink Spectrum - Deep to Vibrant */
  --pp-pink-deep: #a01560;
  --pp-pink-base: #c41876;
  --pp-pink-mid: #e91e8c;
  --pp-pink-bright: #ff4da6;
  --pp-pink-highlight: #ff7dc4;
  
  /* Ocean Blue Spectrum - Navy to Cyan */
  --pp-blue-deep: #003d5c;
  --pp-blue-base: #005580;
  --pp-blue-mid: #0080c0;
  --pp-blue-bright: #0099db;
  --pp-blue-highlight: #00b4ff;
}

/* ============================================
   SALE BANNER - Split Header
   Deep two-tone with glossy dimension
   ============================================ */
.pp-sale-banner {
  display: flex;
  flex-direction: column;
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
  margin-bottom: var(--pp-space-6);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.15),
    0 8px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .pp-sale-banner {
    flex-direction: row;
  }
}

/* Pink Panel - Left */
.pp-sale-banner-left {
  /* Two-tone base: deep magenta → vibrant pink */
  background: 
    linear-gradient(135deg, 
      var(--pp-pink-deep) 0%, 
      var(--pp-pink-base) 30%,
      var(--pp-pink-mid) 70%,
      var(--pp-pink-base) 100%
    );
  padding: var(--pp-space-10) var(--pp-space-12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Inset depth */
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.15),
    inset 0 -4px 30px rgba(0, 0, 0, 0.2);
}

/* Glossy top shine */
.pp-sale-banner-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.28) 0%, 
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* Edge highlight accent */
.pp-sale-banner-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--pp-pink-highlight) 20%,
    var(--pp-pink-bright) 50%,
    var(--pp-pink-highlight) 80%,
    transparent 100%
  );
  opacity: 0.8;
}

/* Blue Panel - Right */
.pp-sale-banner-right {
  /* Two-tone base: deep navy → bright cyan */
  background: 
    linear-gradient(135deg, 
      var(--pp-blue-deep) 0%, 
      var(--pp-blue-base) 25%,
      var(--pp-blue-mid) 60%,
      var(--pp-blue-bright) 85%,
      var(--pp-blue-mid) 100%
    );
  padding: var(--pp-space-10) var(--pp-space-12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.12),
    inset 0 -4px 30px rgba(0, 0, 0, 0.25);
}

.pp-sale-banner-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.22) 0%, 
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.pp-sale-banner-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--pp-blue-highlight) 20%,
    rgba(255, 255, 255, 0.6) 50%,
    var(--pp-blue-highlight) 80%,
    transparent 100%
  );
  opacity: 0.7;
}

/* Banner Typography - Massive Impact */
.pp-sale-banner-title {
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
  white-space: nowrap;
  text-shadow: 
    0 2px 0 rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.pp-sale-banner-subtitle {
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

/* ============================================
   SALE CARDS GRID - 3 Column Promo Tiles
   ============================================ */
.pp-sale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pp-space-4);
  margin-bottom: var(--pp-space-6);
}

@media (min-width: 640px) {
  .pp-sale-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Sale Card */
.pp-sale-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--pp-space-12) var(--pp-space-6);
  border-radius: var(--pp-radius-lg);
  text-decoration: none;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  transition: 
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease-out;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.15),
    0 8px 30px rgba(0, 0, 0, 0.1);
}

.pp-sale-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Card glossy overlay */
.pp-sale-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.28) 0%, 
    rgba(255, 255, 255, 0.1) 40%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Card top edge highlight */
.pp-sale-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.6) 70%,
    transparent 100%
  );
  z-index: 2;
}

/* Blue Card Variant */
.pp-sale-card--blue {
  background: 
    linear-gradient(145deg, 
      var(--pp-blue-deep) 0%, 
      var(--pp-blue-base) 25%,
      var(--pp-blue-mid) 55%,
      var(--pp-blue-bright) 80%,
      var(--pp-blue-mid) 100%
    );
  box-shadow: 
    inset 0 2px 35px rgba(255, 255, 255, 0.12),
    inset 0 -3px 25px rgba(0, 0, 0, 0.25),
    0 4px 15px rgba(0, 85, 128, 0.3),
    0 8px 30px rgba(0, 0, 0, 0.1);
}

.pp-sale-card--blue:hover {
  box-shadow: 
    inset 0 2px 35px rgba(255, 255, 255, 0.15),
    inset 0 -3px 25px rgba(0, 0, 0, 0.2),
    0 12px 35px rgba(0, 85, 128, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Pink Card Variant */
.pp-sale-card--pink {
  background: 
    linear-gradient(145deg, 
      var(--pp-pink-deep) 0%, 
      var(--pp-pink-base) 25%,
      var(--pp-pink-mid) 55%,
      var(--pp-pink-bright) 80%,
      var(--pp-pink-mid) 100%
    );
  box-shadow: 
    inset 0 2px 35px rgba(255, 255, 255, 0.15),
    inset 0 -3px 25px rgba(0, 0, 0, 0.2),
    0 4px 15px rgba(196, 24, 118, 0.3),
    0 8px 30px rgba(0, 0, 0, 0.1);
}

.pp-sale-card--pink:hover {
  box-shadow: 
    inset 0 2px 35px rgba(255, 255, 255, 0.18),
    inset 0 -3px 25px rgba(0, 0, 0, 0.15),
    0 12px 35px rgba(196, 24, 118, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Deep Ocean Card Variant */
.pp-sale-card--ocean-deep {
  background: 
    linear-gradient(145deg, 
      #002a40 0%, 
      var(--pp-blue-deep) 30%,
      var(--pp-blue-base) 70%,
      var(--pp-blue-deep) 100%
    );
  box-shadow: 
    inset 0 2px 35px rgba(255, 255, 255, 0.1),
    inset 0 -3px 25px rgba(0, 0, 0, 0.3),
    0 4px 15px rgba(0, 61, 92, 0.4),
    0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Card Text Container */
.pp-sale-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Card Text Lines - Massive */
.pp-sale-card-line {
  font-size: clamp(2.75rem, 12vw, 5rem);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-shadow: 
    0 2px 0 rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.2);
}

.pp-sale-card-line--small {
  font-size: clamp(1.75rem, 8vw, 3.25rem);
}

.pp-sale-card-line--large {
  font-size: clamp(3.25rem, 14vw, 5.5rem);
}

.pp-sale-card-line--equal {
  font-size: clamp(2.5rem, 10vw, 4.25rem);
}

/* ============================================
   FEATURED PRODUCT BANNER
   Split layout: Bold text + Product showcase
   ============================================ */
.pp-sale-featured {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
  margin-bottom: var(--pp-space-6);
  text-decoration: none;
  min-height: 300px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.12),
    0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .pp-sale-featured {
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
  }
}

/* Featured Text Panel */
.pp-sale-featured-text {
  background: 
    linear-gradient(140deg, 
      var(--pp-pink-deep) 0%, 
      var(--pp-pink-base) 20%,
      var(--pp-pink-mid) 50%,
      var(--pp-pink-bright) 75%,
      var(--pp-pink-mid) 100%
    );
  padding: var(--pp-space-12) var(--pp-space-10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.15),
    inset 0 -4px 35px rgba(0, 0, 0, 0.2);
}

.pp-sale-featured-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.25) 0%, 
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.pp-sale-featured-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--pp-pink-highlight) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    var(--pp-pink-highlight) 100%
  );
  opacity: 0.8;
}

.pp-sale-featured-title {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
}

.pp-sale-featured-line {
  font-size: clamp(3.5rem, 14vw, 7rem);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-shadow: 
    0 2px 0 rgba(0, 0, 0, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.25);
}

/* CTA Button */
.pp-sale-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--pp-space-2);
  margin-top: var(--pp-space-8);
  padding: var(--pp-space-4) var(--pp-space-10);
  background: white;
  color: var(--pp-pink-base);
  border-radius: var(--pp-radius-full);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 8px 30px rgba(0, 0, 0, 0.15);
}

.pp-sale-featured-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.25),
    0 15px 45px rgba(0, 0, 0, 0.2);
}

/* Featured Product Widget */
.pp-sale-featured-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(145deg, #f8fafc 0%, #e8f4f8 50%, #f0f9ff 100%);
  padding: var(--pp-space-8);
  position: relative;
}

.pp-sale-featured-product-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--pp-space-4);
  max-width: 300px;
}

.pp-sale-featured-product-image {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--pp-radius-xl);
  padding: var(--pp-space-5);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 8px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.pp-sale-featured-product-image:hover {
  transform: scale(1.03);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 15px 50px rgba(0, 0, 0, 0.08);
}

.pp-sale-featured-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pp-sale-featured-product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.pp-sale-featured-product-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pp-sale-featured-product-price-old {
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.pp-sale-featured-product-price-new {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pp-pink-base);
}

.pp-sale-featured-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pp-space-2);
  padding: var(--pp-space-3) var(--pp-space-8);
  background: 
    linear-gradient(135deg, var(--pp-pink-base) 0%, var(--pp-pink-mid) 100%);
  color: white;
  border-radius: var(--pp-radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 4px 15px rgba(196, 24, 118, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pp-sale-featured-product-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 8px 25px rgba(196, 24, 118, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Blue Featured Variant */
.pp-sale-featured--blue .pp-sale-featured-text {
  background: 
    linear-gradient(140deg, 
      var(--pp-blue-deep) 0%, 
      var(--pp-blue-base) 20%,
      var(--pp-blue-mid) 50%,
      var(--pp-blue-bright) 75%,
      var(--pp-blue-mid) 100%
    );
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.12),
    inset 0 -4px 35px rgba(0, 0, 0, 0.25);
}

.pp-sale-featured--blue .pp-sale-featured-text::after {
  background: linear-gradient(90deg, 
    var(--pp-blue-highlight) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    var(--pp-blue-highlight) 100%
  );
}

.pp-sale-featured--blue .pp-sale-featured-cta {
  color: var(--pp-blue-base);
}

.pp-sale-featured--blue .pp-sale-featured-product-price-new {
  color: var(--pp-blue-base);
}

.pp-sale-featured--blue .pp-sale-featured-product-btn {
  background: 
    linear-gradient(135deg, var(--pp-blue-base) 0%, var(--pp-blue-bright) 100%);
  box-shadow: 
    0 4px 15px rgba(0, 85, 128, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pp-sale-featured--blue .pp-sale-featured-product-btn:hover {
  box-shadow: 
    0 8px 25px rgba(0, 85, 128, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Legacy image support */
.pp-sale-featured-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8fafc 0%, #e8f4f8 50%, #f0f9ff 100%);
  padding: var(--pp-space-8);
}

.pp-sale-featured-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--pp-radius-lg);
}

/* ============================================
   REUSABLE PROMO ROW TEMPLATE
   For future promotional campaigns
   ============================================ */
.pp-promo-row {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
  margin-bottom: var(--pp-space-6);
  min-height: 300px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.12),
    0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .pp-promo-row {
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
  }
}

/* Promo text panel */
.pp-promo-text {
  padding: var(--pp-space-12) var(--pp-space-10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pp-promo-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.25) 0%, 
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.pp-promo-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.5) 100%
  );
  opacity: 0.7;
}

/* Theme variants */
.pp-promo-row--pink .pp-promo-text {
  background: 
    linear-gradient(140deg, 
      var(--pp-pink-deep) 0%, 
      var(--pp-pink-base) 20%,
      var(--pp-pink-mid) 50%,
      var(--pp-pink-bright) 75%,
      var(--pp-pink-mid) 100%
    );
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.15),
    inset 0 -4px 35px rgba(0, 0, 0, 0.2);
}

.pp-promo-row--blue .pp-promo-text {
  background: 
    linear-gradient(140deg, 
      var(--pp-blue-deep) 0%, 
      var(--pp-blue-base) 20%,
      var(--pp-blue-mid) 50%,
      var(--pp-blue-bright) 75%,
      var(--pp-blue-mid) 100%
    );
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.12),
    inset 0 -4px 35px rgba(0, 0, 0, 0.25);
}

.pp-promo-row--green .pp-promo-text {
  background: 
    linear-gradient(140deg, 
      #065f46 0%, 
      #059669 25%,
      #10b981 55%,
      #34d399 80%,
      #10b981 100%
    );
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.12),
    inset 0 -4px 35px rgba(0, 0, 0, 0.2);
}

.pp-promo-row--orange .pp-promo-text {
  background: 
    linear-gradient(140deg, 
      #c2410c 0%, 
      #ea580c 25%,
      #f97316 55%,
      #fb923c 80%,
      #f97316 100%
    );
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.15),
    inset 0 -4px 35px rgba(0, 0, 0, 0.2);
}

.pp-promo-row--purple .pp-promo-text {
  background: 
    linear-gradient(140deg, 
      #5b21b6 0%, 
      #7c3aed 25%,
      #8b5cf6 55%,
      #a78bfa 80%,
      #8b5cf6 100%
    );
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.12),
    inset 0 -4px 35px rgba(0, 0, 0, 0.25);
}

/* Promo headline */
.pp-promo-headline {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
}

.pp-promo-headline-line {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-shadow: 
    0 2px 0 rgba(0, 0, 0, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Promo CTA */
.pp-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--pp-space-2);
  margin-top: var(--pp-space-8);
  padding: var(--pp-space-4) var(--pp-space-10);
  background: white;
  border-radius: var(--pp-radius-full);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 8px 30px rgba(0, 0, 0, 0.15);
}

.pp-promo-row--pink .pp-promo-cta { color: var(--pp-pink-base); }
.pp-promo-row--blue .pp-promo-cta { color: var(--pp-blue-base); }
.pp-promo-row--green .pp-promo-cta { color: #059669; }
.pp-promo-row--orange .pp-promo-cta { color: #ea580c; }
.pp-promo-row--purple .pp-promo-cta { color: #7c3aed; }

.pp-promo-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.25),
    0 15px 45px rgba(0, 0, 0, 0.2);
}

/* Promo product panel */
.pp-promo-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8fafc 0%, #e8f4f8 50%, #f0f9ff 100%);
  padding: var(--pp-space-8);
}

/* ============================================
   COMPACT & FULL-WIDTH VARIANTS
   ============================================ */
.pp-sale-card--compact {
  min-height: 160px;
  padding: var(--pp-space-10) var(--pp-space-4);
}

.pp-sale-card--compact .pp-sale-card-line {
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.pp-sale-banner--full {
  background: 
    linear-gradient(135deg, 
      var(--pp-pink-deep) 0%, 
      var(--pp-pink-base) 25%,
      var(--pp-pink-mid) 50%,
      var(--pp-pink-bright) 75%,
      var(--pp-pink-mid) 100%
    );
  padding: var(--pp-space-14);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.15),
    inset 0 -4px 35px rgba(0, 0, 0, 0.2);
}

.pp-sale-banner--full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.25) 0%, 
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.pp-sale-banner--full.pp-sale-banner--blue {
  background: 
    linear-gradient(135deg, 
      var(--pp-blue-deep) 0%, 
      var(--pp-blue-base) 25%,
      var(--pp-blue-mid) 50%,
      var(--pp-blue-bright) 75%,
      var(--pp-blue-mid) 100%
    );
  box-shadow: 
    inset 0 2px 40px rgba(255, 255, 255, 0.12),
    inset 0 -4px 35px rgba(0, 0, 0, 0.25);
}
