/* Compact weekly deals section */
.weekly-deals {
  position: relative;
  padding: 40px 20px 48px;
  background:
    radial-gradient(circle at 15% 10%, rgba(31, 174, 83, 0.08), transparent 30%),
    radial-gradient(circle at 85% 90%, rgba(255, 92, 20, 0.07), transparent 32%),
    #f6f1e8;
  color: #101a2c;
  overflow: hidden;
}

.weekly-deals__inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.weekly-deals__message {
  position: relative;
  z-index: 3;
  width: min(547px, calc(90% - 24px));
  margin: 0 auto 18px;
  padding: 14px 20px 15px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(15, 29, 44, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: dealsAttention 1.8s ease-in-out infinite;
  will-change: transform;
}

.weekly-deals__message::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fae53, #ffb000, #ff4b22, #1fae53);
  background-size: 250% 100%;
  opacity: 0.28;
  filter: blur(8px);
  animation: dealsGlow 3.5s linear infinite;
}

.weekly-deals__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(31, 174, 83, 0.14);
  color: #14743d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.weekly-deals h2 {
  max-width: 680px;
  margin: 0 auto 8px;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.weekly-deals__text {
  max-width: 620px;
  margin: 0 auto;
  color: #596477;
  font-size: clamp(0.9rem, 1.1vw, 1.03rem);
  line-height: 1.5;
  font-weight: 650;
}

.weekly-deals__media {
  position: relative;
  width: min(1050px, 100%);
  height: 346px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(15, 29, 44, 0.14);
  border: 1px solid rgba(15, 29, 44, 0.08);
  overflow: hidden;
}

.weekly-deals__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  border-radius: 17px;
}

@keyframes dealsAttention {
  0%, 100% { transform: translateX(-10px) scale(1); }
  50% { transform: translateX(10px) scale(1.015); }
}

@keyframes dealsGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}

@media (max-width: 700px) {
  .weekly-deals {
    padding: 32px 12px 38px;
  }

  .weekly-deals__message {
    width: calc(95% - 12px);
    padding: 15px 13px 17px;
    border-radius: 18px;
    animation-duration: 2s;
  }

  .weekly-deals h2 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }

  .weekly-deals__text {
    font-size: 0.9rem;
  }

  .weekly-deals__media {
    width: 100%;
    height: 218px;
    padding: 6px;
    border-radius: 18px;
  }

  .weekly-deals__media img {
    border-radius: 13px;
  }

  @keyframes dealsAttention {
    0%, 100% { transform: translateX(-5px) scale(1); }
    50% { transform: translateX(5px) scale(1.01); }
  }
}
