.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: 30px 30px;
  background-color: #2c3e50;
  color: #f8f9fa;
  border-radius: 8px;
  text-align: right;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: sp2-fadeIn 1.5s ease;
  margin-bottom: 6px;

  /* فضای امن برای روبان */
  padding: 6px 40px 6px 8px; 
}

/* عنوان */
.sp2-offer-header {
  font-family: IRANSansX !important;
  font-size: 1.2rem;
  margin: 4px 0;
  color: #ffca28;
  text-align: center;
  margin-right: 0;
  padding-right: 0;
  font-weight: bold;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff,
     0px  0px 4px rgba(255, 255, 255, 0.3);
}

/* لیست خدمات */
.sp2-offer-subtitle {
  font-size: 0.75rem;
  padding-right: 0;
}

.sp2-offer-subtitle div {
  display: flex;
  align-items: center;
  margin-right: 0;
  line-height: 1.3;
}

/* تیک */
.sp2-checkmark {
  color: #ffee58;
  margin-left: 6px;
  font-weight: bold;
  font-size: 0.8rem;
}

/* متن پایانی */
.sp2-footer-text {
  margin-bottom: 4px;
  text-align: center;
  font-weight: bold;
  color: #ffa726;
  font-size: 0.75rem;
}

/* روبان کوچکتر */
.sp2-ribbon-new {
  position: absolute;
  top: 14px;
  right: -55px;
  background: linear-gradient(to left, #f57c00, #ffb300);
  color: white;
  padding: 2px 47px;
  transform: rotate(45deg);
  font-size: 0.55rem;
  font-weight: bold;
  text-shadow: 0 0 4px #fff;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 0 0 6px 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: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

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

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

/* انیمیشن‌ها */
@keyframes sp2-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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