/* Offers Section Styles */
.offers-area {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.offer-card {
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.offer-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
}

.offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #dc3545;
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.offer-content {
  padding: 20px;
}

.offer-content h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.offer-content p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.offer-meta {
  margin-bottom: 20px;
}

.offer-meta span {
  display: block;
  color: #888;
  font-size: 13px;
  margin-bottom: 5px;
}

.offer-meta i {
  margin-right: 5px;
  color: #007bff;
}

.offer-actions {
  text-align: center;
}

.offer-actions .btn {
  width: 100%;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Loyalty Points Styles */
.loyalty-points-card {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border-radius: 50px;
  padding: 15px;
  margin-bottom: 15px;
}

.loyalty-points-card .points-value {
  font-size: 24px;
  font-weight: bold;
}

.loyalty-points-card .points-worth {
  font-size: 14px;
  opacity: 0.9;
}

/* Available Offers Styles */
.available-offers {
  margin-bottom: 20px;
}

.offer-item {
  border: 1px solid #dee2e6;
  border-radius: 50px;
  padding: 10px;
  margin-bottom: 10px;
  background: #f8f9fa;
}

.offer-item:hover {
  border-color: #007bff;
  background: #fff;
}

.offer-item .offer-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.offer-item .offer-description {
  color: #666;
  font-size: 12px;
  margin-bottom: 8px;
}

.offer-item .offer-badge {
  position: static;
  display: inline-block;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .offer-card {
    margin-bottom: 20px;
  }
  
  .offer-image {
    height: 150px;
  }
  
  .offer-content {
    padding: 15px;
  }
  
  .offer-content h4 {
    font-size: 16px;
  }
  
  .loyalty-points-card {
    padding: 10px;
  }
  
  .loyalty-points-card .points-value {
    font-size: 20px;
  }
} 