.sp2-offer-container {
  position: relative;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
  background-size: 60px 60px;
  background-color: #2c3e50; /* جدید */
  color: #f8f9fa; /* جدید */
  border-radius: 10px;
  text-align: right;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); 
  overflow: hidden;
  animation: sp2-fadeIn 2s ease;
  margin-bottom: 10px;
}

.sp2-offer-header {
  font-family: IRANSansX !important;
  font-size: 2.6rem;
  margin: 10px;
  color: #ffca28; /* رنگ اصلی طلایی */
  text-align: center;
  margin-right: 150px;
  font-weight: bold;

  /* افکت لبه سفید با text-shadow چند جهته */
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff,
     0px  0px 5px rgba(255, 255, 255, 0.3);
}


.sp2-offer-subtitle {
  font-size: 1.05rem;
  padding-right: 10px;
}

.sp2-offer-subtitle div {
  display: flex;
  align-items: center;
  margin-right: 80px;
}

.sp2-checkmark {
  color: #ffee58; /* جدید */
  margin-left: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

.sp2-footer-text {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  color: #ffa726; /* جدید */
  font-size: 1.05rem;
}

.sp2-ribbon-new {
  position: absolute;
  top: 50px;
  right: -100px;
  background: linear-gradient(to left, #f57c00, #ffb300); /* جدید */
  color: white;
  padding: 10px 80px;
  transform: rotate(45deg);
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 0 0 5px #fff;
  z-index: 2;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(255, 183, 0, 0.6); /* کمی تیره‌تر */
}

.sp2-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); /* جدید */
  animation: sp2-float 6s ease-in-out infinite;
  z-index: 0;
}

.sp2-decoration:nth-child(2) {
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}

.sp2-decoration:nth-child(3) {
  bottom: 20px;
  right: 30px;
  width: 150px;
  height: 150px;
  animation-delay: 1s;
}

.sp2-decoration:nth-child(4) {
  top: 40%;
  right: -30px;
  width: 100px;
  height: 100px;
  animation-delay: 2s;
}

@keyframes sp2-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes sp2-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
