.offers-sec-2 {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  font-family: "Poppins", sans-serif;
}

.offers-sec-2 .offers-section {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* Left Image */
.offers-sec-2 .offers-image {
  background: url(https://thumbs.dreamstime.com/b/special-offer-37086976.jpg);
  border-radius: 20px;
  min-height: 460px;
  background-repeat: no-repeat;
  background-position: 90% 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Right Box */
.offers-sec-2 .offers-box {
  padding: 40px 25px;
}

.offers-sec-2 .offers-box h2 {
  font-weight: 700;
  margin-bottom: 25px;
  color: #2d2d2d;
}

.offers-sec-2 .offer-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.offers-sec-2 .offer-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.offers-sec-2 .offer-icon {
  font-size: 1.7rem;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #fff;
}

/* Custom fresh colors */
.offers-sec-2 .bg-sunset {
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
}

.offers-sec-2 .bg-aqua {
  background: linear-gradient(135deg, #43cea2, #185a9d);
}

.offers-sec-2 .bg-gold {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

.offers-sec-2 .bg-violet {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.offers-sec-2 .offer-content h5 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}

.offers-sec-2 .offer-content p {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: #555;
}

.offers-sec-2 .offer-btn {
  border: none;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  background: #2d2d2d;
  color: #fff;
  transition: all 0.3s ease;
  min-width: 120px;
}

.offers-sec-2 .offer-btn:hover {
  background: #000;
  transform: scale(1.07);
}

/* Responsive */
@media (max-width: 991px) {
  .offers-sec-2 .offers-section {
    flex-direction: column;
  }
  .offers-sec-2 .offers-image {
    min-height: 260px;
    border-radius: 14px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=offersDesign2.css.map */