* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #fff9f0;
  overflow-x: hidden;
} 
/* Featured Products Heading with Background and Surround Line */
.featured-section {
  text-align: center;
  margin: 3rem auto 2rem;
  padding: 2rem 1rem;
  background: linear-gradient(90deg, #fff3e0 0%, #fffaf2 100%);
  border-radius: 50px;
  position: relative;
  max-width: 90%;
  border: 2px solid #ffb366;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.15);
}

.featured-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff7b00;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.featured-line {
  display: none; /* Hide small line since we now have full border */
}

/* Responsive */
@media (max-width: 768px) {
  .featured-section {
    padding: 1.5rem 1rem;
    border-width: 1.5px;
  }

  .featured-heading {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}

/* Featured Products Heading */
/*.featured-section {
  text-align: center;
  margin: 3rem auto 2rem;
}

.featured-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff7b00;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  background-color: black;
}*/

.featured-line {
  width: 80px;
  height: 4px;
  background: #ff4a00;
  border-radius: 2px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-heading {
    font-size: 1.8rem;
  }

  .featured-line {
    width: 60px;
    height: 3px;
  }
}

.fortune-carousel {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  overflow: hidden;
}

/* Slides */
.fortune-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 6rem;
  gap: 5rem;
  transition: opacity 0.5s ease;
}

.fortune-slide.active {
  display: flex;
  opacity: 1;
}

/* Text */
.fortune-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
}

.fortune-text h2 {
  font-size: 3rem;
  color: #ff7b00;
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.25;
}

.fortune-text p {
  font-size: 1.6rem;
  color: #ff4a4a;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.fortune-text .btn {
  background: #ff2d2d;
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.fortune-text .btn:hover {
  background: #ff7b00;
  transform: translateY(-2px);
}

/* Images */
.fortune-images {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.fortune-images video {
  display: block;
  object-fit: cover;
}
.fortune-images .img-left {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
}
.fortune-images video.img-left {
  display: block;
}

/*.fortune-images .img-left {
        width: 260px;
        height: 260px;
        border-radius: 50%;
        /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }*/

.fortune-images .img-center {
  max-width: min-content;
  max-height: 20rem;
  border-radius: 16px;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.08);*/
}

/* Controls */
.fortune-controls {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.fortune-controls button {
  background: rgba(255, 123, 0, 0.9);
  border: none;
  color: white;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fortune-controls button:hover {
  background: rgba(255, 74, 0, 1);
  transform: scale(1.1);
}

/* Dots */
.fortune-dots {
  text-align: center;
  margin-top: 1rem;
}

.fortune-dots .dot {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fortune-dots .dot.active {
  background: #ff7b00;
  transform: scale(1.3);
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
  .fortune-slide {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }

  .fortune-images {
    order: 2;
    gap: 1.5rem;
  }

  .fortune-text {
    order: 1;
    padding: 0;
  }

  .fortune-images .img-left {
    width: 140px;
    height: 140px;
  }

  .fortune-images .img-center {
    width: 180px;
  }

  .fortune-text h2 {
    font-size: 2.2rem;
  }

  .fortune-text p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .fortune-text .btn {
    align-self: center;
    padding: 10px 26px;
    font-size: 0.95rem;
  }

  .fortune-controls {
    margin-top: 1rem;
  }

  .fortune-controls button {
    font-size: 18px;
    padding: 6px 10px;
  }

  .fortune-dots {
    margin-top: 0.5rem;
  }
}
.village-divider {
  width: 100%;
  overflow: hidden;
  background: #fff8f0; /* soft backdrop */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.village-divider img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.95;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}
