body {
  max-width: 420px;
  margin: 0 auto;
  z-index: 1000;
}

a img {
  width: 120px;
}

.ladi-notify {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 3px;
  border-radius: 40px;
  margin-bottom: 10px;
  width: 300px;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  animation: fadeIn 0.5s ease-in-out;
}

.ladi-notify-image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.ladi-notify-title {
  font-weight: bold;
  font-size: 16px;
}

.ladi-notify-content {
  font-size: 14px;
  color: #555;
}

.ladi-notify-time {
  font-size: 12px;
  color: #999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.d-flex.flex-column.align-items-center.bg-danger.text-white.p-4.rounded.shadow-lg {
  border: 10px solid #ffff;
  border-radius: 20px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card1 {
  border: 10px solid #ffff;
  border-radius: 20px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card {
  border: 5px solid #32B655;
  border-radius: 20px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card h5 {
  background-color: #7FB2BE;
  color: white;
  padding: 5px;
  border-radius: 5px;
}

.product-image {
  text-align: center;
  margin-bottom: 15px;
}

.product-image img {
  max-width: 100%;
  border-radius: 10px;
}

.product-content {
  font-size: 16px;
  color: #333;
}

.carousel-item img {
  max-height: 400px;
  object-fit: cover;
}

.thumb-img {
  cursor: pointer;
  object-fit: cover;
}

.thumb-container img {
  max-height: 100px;
  width: 100%;
  object-fit: cover;
}

.thumb-container {
  padding: 5px;
}

.py-3 {
  margin-bottom: 69px;
  padding: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: justify;
  background: #32b655;
  color: white;
}

.py-3 a {
  color: white;
}

.fixed-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: inherit;
  background: rgba(255, 0, 0, 0.9);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  z-index: 999;
}

.fixed-banner .btn {
  background: yellow;
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
}


.footer {
  max-width: 420px;
  margin: auto;
  padding: 20px;
  font-size: 14px;
}

.footer a {
  color: #f8d210;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .icon {
  margin-right: 8px;
  color: #f8d210;
}

ul {
  padding-left: 0;
  list-style: none;
}

.thank-you-container {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-home {
  margin-top: 20px;
}

.modal-dialog {
  width: max-content;
}

 .deal-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to right, #f44336, #ffc107);
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
    }

    .deal-price {
      display: flex;
      align-items: center;
      font-size: 1.5rem;
    }

    .deal-price i {
      margin-right: 8px;
    }

    .deal-timer {
      display: flex;
      align-items: center;
      font-size: 0.95rem;
    }

    .deal-timer span {
      background-color: red;
      padding: 5px 8px;
      margin-left: 5px;
      border-radius: 4px;
      color: white;
      font-weight: bold;
    }

    .highlight {
      background-color: #ffc107;
      padding: 4px 8px;
      border-radius: 4px;
      color: black;
      font-weight: bold;
      margin-left: 10px;
    }

    .counter-box {
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .counter-box .icon {
      font-size: 24px;
      color: #fff;
      background-color: #e0e0e0;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      line-height: 50px;
      display: inline-block;
      margin-bottom: 10px;
    }

    .counter-box .number {
      font-size: 36px;
      font-weight: bold;
      color: #ff6200;
      margin: 10px 0;
    }

    .counter-box .text {
      font-size: 16px;
      color: #333;
    }