body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  
}

.deal-container {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
  margin-top: 30px;
}

.deal-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.deal-slider-wrapper {
  position: relative;
}

.deal-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding-bottom: 10px;
}

.deal-slider::-webkit-scrollbar {
  display: none;
}

.deal-card {
  flex: 0 0 auto;
  width: clamp(160px, 25%, 220px);
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-5px);
}

.deal-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

.deal-text {
  font-size: 14px;
  margin-bottom: 5px;
}

.deal-price {
  font-size: 15px;
  font-weight: bold;
  color: #d32f2f;
}

.deal-link {
  font-size: 14px;
  color: #1976d2;
  font-weight: bold;
  text-decoration: none;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  z-index: 1;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .deal-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .deal-card {
    width: 80%;
  }

  .nav-btn {
    display: none;
  }
}