.offers-wrapper {
  background-color: #ececec;
  border: 0.5pt solid #dbd9d9;
  padding: 20px;
  margin: 25px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.offers-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.offers-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.offer-item {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  width: 220px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offer-item img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 8px;
}

.offer-price {
  font-weight: bold;
  color: #000;
}

.offer-old-price {
  text-decoration: line-through;
  font-size: 14px;
  color: #999;
  margin-left: 6px;
}

/* Show More Button */
.show-more-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #f95700;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(249, 87, 0, 0.3);
  display: none; /* By default hidden for desktop */
}

.show-more-btn:hover {
  background-color: #e04b00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 87, 0, 0.4);
}

/* Mobile specific layout (≤600px) */
@media (max-width: 600px) {
  .offers-heading {
    font-size: 18px;
  }

  .offers-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .offer-item {
    width: 100%;
    padding: 10px;
  }

  .offer-item img {
    height: 120px;
  }

  /* Show More button visible on mobile */
  .show-more-btn {
    display: inline-block;
  }
}
