body {
  font-family: 'Hind Siliguri', sans-serif;
}

.header,
.footer {
  background-color: #bd0c1e;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

.btn-orange {
  background-color: #ff6600;
  color: white;
}

.btn-orange:hover {
  background-color: #e65c00;
  color: white;
}

.section-title {
  color: #000;
  font-weight: bold;
  margin-top: 20px;
}

.form-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #bd0c1e;
  /* dark background for visibility */
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.btn-red {
  background-color: #bd0c1e;
  border: none;
  color: white;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  animation: pulse 1.8s infinite;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(189, 12, 30, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-red:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(189, 12, 30, 0.7);
  text-decoration: none;
  color: white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(189, 12, 30, 0.6);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(189, 12, 30, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(189, 12, 30, 0.6);
  }
}

.review-section {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.review-photo {
  width: 100%;
  height: 400px; /* Adjust based on your need */
  object-fit: cover;
  display: block;
}

.custom-container {
  max-width: 600px;
  margin: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
h2,
h3 {
  text-align: center;
  color: #bd0c1e;
  margin-top: 0;
}
.product,
.form-group,
.delivery-options,
.total-box {
  margin-bottom: 20px;
}
.qty-control {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.qty-control button {
  width: 35px;
  height: 35px;
  font-size: 20px;
  border: none;
  background: #bd0c1e;
  color: white;
  border-radius: 50%;
  cursor: pointer;
}
.qty-control input {
  width: 60px;
  height: 35px;
  text-align: center;
  font-size: 16px;
  margin: 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}
input[type='text'],
input[type='email'] {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.delivery-options label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}
.total-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border: 1px dashed #ccc;
}
.total-line {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 5px;
}
.total-line strong {
  font-size: 18px;
}
#confirmOrderBtn {
  width: 100%;
  background-color: #bd0c1e;
  color: white;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
#confirmOrderBtn:hover {
  background-color: #a50a19;
}

.price-display {
  font-size: 42px;
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.regular-price {
  font-weight: bold;
  color: black;
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
}

.cross-animation span {
  position: relative;
  display: inline-block;
}

.cross-animation span::before,
.cross-animation span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: red;
  top: 50%;
  left: 0;
  transform-origin: center;
  transform: scaleX(0) rotate(15deg);
  animation: cross1 1s forwards;
}

.cross-animation span::after {
  transform: scaleX(0) rotate(-15deg);
  animation: cross2 1s 1s forwards;
}

@keyframes cross1 {
  from {
    transform: scaleX(0) rotate(15deg);
  }
  to {
    transform: scaleX(1) rotate(15deg);
  }
}

@keyframes cross2 {
  from {
    transform: scaleX(0) rotate(-15deg);
  }
  to {
    transform: scaleX(1) rotate(-15deg);
  }
}

.offer-price {
  margin-top: 20px;
  font-weight: bold;
  font-size: 46px;
}

.label {
  color: #1d78ff;
  margin-right: 10px;
}

.highlighted-price {
  color: #11aa55;
  display: inline-block;
  position: relative;
}

.highlighted-price::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  background-color: red;
  animation: underline 1s ease-out 2s forwards;
  width: 0;
}

@keyframes underline {
  to {
    width: 100%;
  }
}

/* Infinite loop */
@keyframes loopCross1 {
  0%,
  100% {
    transform: scaleX(0) rotate(15deg);
  }
  50% {
    transform: scaleX(1) rotate(15deg);
  }
}
@keyframes loopCross2 {
  0%,
  100% {
    transform: scaleX(0) rotate(-15deg);
  }
  50% {
    transform: scaleX(1) rotate(-15deg);
  }
}

.sticky-header {
  position: sticky;
  top: 0;
  background-color: #000;
  color: white;
  padding: 12px 20px;
  font-size: 24px;
  font-weight: bold;
  z-index: 9999;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

#discount-text {
  flex: 1;
  font-size: 1.1em;
  padding: 5px;
}

.countdown {
  flex: 1;
  font-size: 1.1em;
  padding: 5px;
}

.countdown span {
  margin: 0 3px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sticky-header {
    font-size: 18px;
    padding: 10px;
  }

  .header-content {
    flex-direction: column;
    gap: 6px;
  }

  #discount-text,
  .countdown {
    font-size: 1em;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sticky-header {
    font-size: 16px;
    padding: 8px;
  }

  #discount-text,
  .countdown {
    font-size: 0.95em;
  }
}
.free-gift-section {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}
.free-gift-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #e91e63;
}
.gift-card {
  display: flex;
  align-items: center;
  gap: 20px;
  /* background: #fff3f5; */
  /* border: 2px dashed #e91e63; */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.gift-card img {
  width: 160px;
  border-radius: 10px;
}
.gift-info {
  text-align: left;
}
.gift-info h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #d81b60;
}
.gift-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
