body {
  font-family: 'Hind Siliguri', sans-serif;
}

.header,
.footer {
  background-color: #ebdea7;
  color: black;
  text-align: center;
  padding: 20px 10px;
}

.slider-img {
  max-height: 550px;
  object-fit: contain;
  background: #000;
}

.carousel-caption.custom-caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: 6px;
}

.carousel-caption.custom-caption h5 {
  font-size: 18px;
  color: #ebdea7;
}

.carousel-caption.custom-caption p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Mobile View Adjustment */
@media (max-width: 768px) {
  .carousel-caption.custom-caption {
    bottom: 20px;
    font-size: 14px;
    padding: 6px 10px;
  }
  .carousel-caption.custom-caption h5 {
    font-size: 16px;
  }
  .carousel-caption.custom-caption p {
    font-size: 12px;
  }
}

.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: #ebdea7;
  /* dark background for visibility */
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.btn-red {
  background-color: #ebdea7;
  border: none;
  color: black;
  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(235, 222, 167, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-red:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(235, 222, 167, 0.7);
  text-decoration: none;
  color: black;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(235, 222, 167, 0.6);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(235, 222, 167, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(235, 222, 167, 0.6);
  }
}

.learning-board-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fdf6e3;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
}

.learning-board-section h2 {
  text-align: center;
  color: #000;
  margin-bottom: 25px;
  font-size: 28px;
}

.learning-board-section ul {
  list-style-type: none;
  padding-left: 0;
  color: #333;
  font-size: 18px;
  line-height: 1.8;
}

.learning-board-section ul li::before {
  content: '✅ ';
  color: green;
  margin-right: 8px;
}

.final-line {
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  color: #444;
}

.thumb-img {
  cursor: pointer;
  transition: transform 0.3s ease, border 0.3s ease;
}

.thumb-img:hover {
  transform: scale(1.05);
  border: 2px solid #ebdea7;
}

.active-thumb {
  border: 2px solid #ebdea7;
}

.single-image-section {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.single-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* পূর্ণ জায়গা নেবে */
  transition: transform 0.4s ease-in-out;
}

.single-banner-img:hover {
  transform: scale(1.02); /* হোভার করলে হালকা জুম */
}

/* Mobile */
@media (max-width: 768px) {
  .single-image-section {
    margin: 10px;
  }
}

.price-display {
  font-size: xx-large;
  text-align: center;
  margin: 2rem auto;
}

.price-item {
  margin-bottom: 20px;
}

.regular-price {
  font-weight: bold;
  color: #333;
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
}

.cross-animation span {
  position: relative;
  display: inline-block;
}

.cross-animation span::before,
.cross-animation span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: red;
  transform: rotate(-5deg);
  left: 0;
}

.offer-price {
  font-size: larger;
  color: green;
}

.offer-price .highlighted-price {
  font-size: larger;
  font-weight: bold;
  margin-left: 8px;
}

.custom-container {
  max-width: 500px;
  margin: auto;
  background: #fff8f0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: 'SolaimanLipi', Arial, sans-serif;
}

.custom-container h2 {
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qty-control button {
  padding: 6px 12px;
  font-size: 18px;
  border: none;
  background: #ebdea7;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.total-box {
  background: #f9efe5;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 16px;
}

#confirmOrderBtn {
  background-color: #ebdea7;
  color: #000;
  font-size: 18px;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

#confirmOrderBtn:hover {
  background-color: #ebdea7;
}

.cod-info {
  font-size: 14px;
  margin: 15px 0;
  color: #555;
  text-align: center;
}

.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;
  }
}

.product-options {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.product-options li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.product-options input {
  margin-right: 8px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-options {
    list-style: none;
    padding-left: 0;
  }
  .product-options li {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 480px) {
  .product-options li {
    font-size: 14px;
    padding: 8px;
  }
  .product-options input {
    width: 16px;
    height: 16px;
  }
}

.features-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.features-section h2 {
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.features-list li {
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.features-list li::before {
  content: '✔';
  color: green;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-section {
    padding: 15px;
  }
  .features-section h2 {
    font-size: 22px;
  }
  .features-list li {
    font-size: 16px;
  }
}

.review-img {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}
.review-img:hover {
  transform: scale(1.05);
}
