* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.order-hero-carousel {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.order-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.order-hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.order-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.order-hero-content {
  z-index: 3;
  max-width: 700px;
  padding: 1rem;
}

.order-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.order-hero-text {
  font-size: 1.1rem;
  color: #f1f1f1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.order-hero-btn {
  background-color: #bd976d;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.order-hero-btn:hover {
  background-color: #a77c52;
  transform: translateY(-3px);
}
.order-hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.order-hero-dots .dot {
   width: 6px;
  height: 6px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.order-hero-dots .dot.active {
  background-color: #bd976d;
}

@media (max-width: 1024px) {
  .order-hero-title { font-size: 2.2rem; }
  .order-hero-text { font-size: 1rem; }
}

@media (max-width: 768px) {
  .order-hero-carousel { height: 70vh; }
  .order-hero-title { font-size: 1.8rem; }
  .order-hero-text { font-size: 0.95rem; }
  .order-hero-btn { padding: 0.8rem 1.8rem; }
}

@media (max-width: 480px) {
  .order-hero-carousel { height: 60vh; }
  .order-hero-title { font-size: 1.5rem; }
  .order-hero-text { font-size: 0.85rem; }
  .order-hero-btn { font-size: 0.85rem; padding: 0.7rem 1.5rem; }
}
