.wpm-banner {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(180deg, #1a1a33 0%, #14142a 100%);
  overflow: hidden;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.wpm-banner__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at center,
      rgba(0, 255, 255, 0.25) 0%,
      transparent 70%
    ),
    linear-gradient(
      90deg,
      rgba(77, 77, 153, 0.2) 0%,
      rgba(0, 255, 255, 0.25) 50%,
      rgba(77, 77, 153, 0.2) 100%
    );
  opacity: 0.5;
  z-index: 0;
  animation: wpmBannerGlow 2s infinite ease-in-out;
}

.wpm-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
  max-width: 1240px;
  width: 100%;
}

/* Sale */
.wpm-banner__sale {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wpm-banner__percent {
  position: relative;
  font-size: 3.5rem;
  font-weight: 800;
  color: #00ffff;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.8);
  animation: wpmDiscountPulse 2s infinite ease-in-out;
  line-height: 1;
}

.wpm-banner__upto {
  position: absolute;
  top: -0.5rem;
  right: -0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(0, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: none;
  animation: none;
}

.wpm-banner__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wpm-banner__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  white-space: nowrap;
  text-transform: uppercase;
}

.wpm-banner__subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
  text-transform: uppercase;
}

/* Timer */
.wpm-banner__timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wpm-banner__seg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.2);
}

.wpm-banner__seg-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #00ffff;
  line-height: 1;
}

.wpm-banner__seg-lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}

/* Coupon */
.wpm-banner__coupon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 255, 255, 0.07);
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 6px;
  padding: 0.75rem 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.wpm-banner__coupon:hover {
  background: rgba(0, 255, 255, 0.13);
  border-color: rgba(0, 255, 255, 0.7);
}

.wpm-banner__coupon-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.wpm-banner__coupon-code {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #00ffff;
  text-transform: uppercase;
}

.wpm-banner__coupon-icon {
  display: flex;
  align-items: center;
  color: rgba(0, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.wpm-banner__coupon:hover .wpm-banner__coupon-icon {
  color: #00ffff;
}

.wpm-coupon--copied {
  background: rgba(0, 255, 255, 0.15) !important;
  border-color: rgba(0, 255, 255, 0.8) !important;
}

.wpm-coupon--copied .wpm-banner__coupon-label {
  color: rgba(0, 255, 255, 0.9);
}

/* Animations */
@keyframes wpmBannerGlow {
  0%, 100% { opacity: 0.4; filter: blur(10px); }
  50%       { opacity: 0.8; filter: blur(20px); }
}

@keyframes wpmDiscountPulse {
  0%, 100% { color: #00ffff; text-shadow: 0 0 12px rgba(0, 255, 255, 0.8); }
  50%       { color: #a4ffff; text-shadow: 0 0 20px rgba(136, 255, 255, 1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .wpm-banner__content { gap: 2rem; }
  .wpm-banner__percent { font-size: 3rem; }
  .wpm-banner__title   { font-size: 1.4rem; }
}

@media (max-width: 768px) {
  .wpm-banner       { min-height: auto; padding: 1rem 0.75rem; }
  .wpm-banner__content { gap: 1.25rem; }
  .wpm-banner__sale    { gap: 0.6rem; }
  .wpm-banner__percent { font-size: 2.5rem; }
  .wpm-banner__title   { font-size: 1.2rem; }
  .wpm-banner__subtitle { font-size: 0.75rem; }
  .wpm-banner__timer   { gap: 0.4rem; }
  .wpm-banner__seg     { min-width: 3rem; padding: 0.5rem 0.4rem; }
  .wpm-banner__seg-val { font-size: 1rem; }
  .wpm-banner__seg-lbl { font-size: 0.55rem; }
  .wpm-banner__coupon  { padding: 0.7rem 1rem; }
}

@media (max-width: 640px) {
  .wpm-banner         { padding: 0.75rem 0.5rem; }
  .wpm-banner__content { gap: 1rem; }
  .wpm-banner__percent { font-size: 2.2rem; }
  .wpm-banner__title   { font-size: 1.1rem; }
  .wpm-banner__subtitle { font-size: 0.7rem; }
  .wpm-banner__seg     { min-width: 2.75rem; padding: 0.45rem 0.35rem; }
  .wpm-banner__seg-val { font-size: 0.95rem; }
  .wpm-banner__seg-lbl { font-size: 0.52rem; }
  .wpm-banner__coupon-code { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .wpm-banner         { padding: 0.6rem 0.5rem; }
  .wpm-banner__content { flex-direction: column; gap: 0.75rem; }
  .wpm-banner__sale   { width: 100%; justify-content: center; gap: 0.5rem; }
  .wpm-banner__percent { font-size: 2rem; }
  .wpm-banner__title   { font-size: 1rem; }
  .wpm-banner__subtitle { font-size: 0.65rem; }
  .wpm-banner__timer  { width: 100%; justify-content: center; gap: 0.35rem; }
  .wpm-banner__seg    { min-width: 2.5rem; padding: 0.4rem 0.3rem; }
  .wpm-banner__seg-val { font-size: 0.85rem; }
  .wpm-banner__seg-lbl { font-size: 0.48rem; }
  .wpm-banner__coupon { width: 100%; justify-content: center; }
}

@media (max-width: 360px) {
  .wpm-banner__percent { font-size: 1.75rem; }
  .wpm-banner__title   { font-size: 0.9rem; }
  .wpm-banner__subtitle { font-size: 0.6rem; }
  .wpm-banner__seg    { min-width: 2.2rem; padding: 0.35rem 0.25rem; }
  .wpm-banner__seg-val { font-size: 0.75rem; }
  .wpm-banner__seg-lbl { font-size: 0.45rem; }
  .wpm-banner__coupon-code { font-size: 0.8rem; }
}
