<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Offers Product Slider</title>
  <!-- Bootstrap CSS CDN -->
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
  <style>
    .offer-section {
      padding: 40px 0;
      background: #f8f9fa;
    }
    .carousel-item {
      padding: 20px 0;
    }
    .product-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
      transition: transform 0.3s ease;
    }
    .product-card:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgb(0 0 0 / 0.15);
    }
    .product-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .product-info {
      padding: 15px;
      text-align: center;
    }
    .product-title {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 10px;
    }
    .product-price {
      color: #e63946;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 10px;
    }
    .old-price {
      text-decoration: line-through;
      color: #999;
      font-size: 0.9rem;
      margin-left: 8px;
    }
    .btn-buy {
      background-color: #e63946;
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 8px 20px;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }
    .btn-buy:hover {
      background-color: #b8323a;
    }
  </style>
</head>


<!-- Bootstrap JS Bundle CDN -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>

</body>
</html>
