body {
  font-family: 'Poppins', sans-serif;
  background: #f8fafc;
}

/* Container */
.product-section {
  padding: 60px 0;
}

/* Image */
.product-img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Title */
.product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

/* Price */
.product-price {
  font-size: 1.5rem;
  color: #4f46e5;
  margin: 15px 0;
}

/* Buttons */
.btn-buy {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  border: none;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}


.btn-demo {
  border-radius: 25px;
}

/* Features */
.feature-list li {
  margin-bottom: 8px;
  color: #475569;
}

/* Screenshots */
.screenshot img {
  border-radius: 10px;
  transition: 0.3s;
}

.screenshot img:hover {
  transform: scale(1.05);
}

.guide-text {
  color: #16a34a;
  font-weight: 500;
  font-size: 0.95rem;
}

.price {
  font-size: 20px;
  margin: 10px 0;
}

/* OLD PRICE (CUT) */
.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
  font-size: 16px;
}

/* NEW PRICE */
.new-price {
  color: #16a34a;
  font-weight: 700;
  font-size: 22px;
}

.what-you-get {
  padding: 60px 20px;
  background: #f8f9ff;
  text-align: center;
}

.what-you-get h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.what-you-get .sub-text {
  color: #666;
  margin-bottom: 40px;
  font-size: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.feature-box span {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 13px;
  color: #666;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  font-size: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 999;
}

/* HOVER */
.whatsapp:hover {
  transform: scale(1.1);
}

/* PULSE ANIMATION 🔥 */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp {
  animation: pulse 2s infinite;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }

}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media(max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.cashback-badge {
  position: relative;
  top: 10px;
  /* thoda neeche lao */

  display: inline-block;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;

  margin: 0 auto 15px;
  width: fit-content;

  box-shadow: 0 6px 18px rgba(255, 122, 24, 0.4);
}

.cashback-badge {
  animation: bounce 1.5s infinite;
}

.cashback-badge:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.offer-timer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.2);

  padding: 10px 16px;
  border-radius: 12px;

  width: fit-content;
  margin: 15px auto;

  backdrop-filter: blur(6px);
}

.timer-label {
  font-size: 14px;
  font-weight: 500;
  color: #ff4d4d;
}

.timer-badge {
  background: #0d6efd;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* subtle animation */
.timer-badge {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}