.darupol-offer-box {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  font-family: IRANSans, sans-serif;
}

.offer-sidebar {
  width: 30%;
  background: #f8f8f8;
  padding: 15px;
  border-left: 2px solid #00B2A9;
}
.offer-sidebar h3 {
  color: #00B2A9;
  font-size: 18px;
  margin-bottom: 15px;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer-list li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.offer-list li.active {
  background: #00B2A9;
  color: white;
  font-weight: bold;
}
.view-all-btn {
  display: block;
  margin-top: 20px;
  text-align: center;
  background: linear-gradient(45deg, #00B2A9, #00B2A9);
  color: white;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
}

.offer-main {
  width: 70%;
  padding: 20px;
  position: relative;
}
.offer-detail {
  display: none;
}
.offer-detail.active {
  display: block;
}
.price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.price-final {
  color: #444;
  font-size: 22px;
  font-weight: bold;
}
.price-regular {
  text-decoration: line-through;
  color: #999;
}
.discount-badge {
  background: #00B2A9;
  color: white;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 14px;
}
.product-image img {
  max-width: 200px;
  border-radius: 8px;
  margin-top: 10px;
}
.view-all-btn:hover,
.view-all-btn:focus,
.view-all-btn:active {
  background: linear-gradient(45deg, #00B2A9, #00B2A9) !important;
  color: white !important;
  text-decoration: none !important;
  box-shadow: none !important;
}