/* Today's Deal Section */
.deals-section {
  padding: 40px 20px;
  background-color: #fff3e6;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.deal-item {
  background-color: white;
  border: 2px dashed #ff9800;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  color: black;
}

.deal-item:hover {
  transform: scale(1.03);
}

.deal-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff5722;
  color: white;
  padding: 5px 10px;
  font-size: 0.9em;
  border-radius: 4px;
}

.deal-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin: 5px 0;
}

.new-price {
  color: #e53935;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.deal-item button {
  background-color: #ff9800;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.deal-item button:hover {
  background-color: #fb8c00;
}
