/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #333;
  background-color: #fffaf5;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #d67d3e;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar nav a:hover {
  color: #d67d3e;
}

/* Hero Section */
.hero {
  background: url("images/hero-bg.jpg") no-repeat center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 15px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #d67d3e;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #b76527;
}

/* Products Section */
.products {
  text-align: center;
  padding: 80px 10%;
}

.products h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #d67d3e;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 15px 0 5px;
  color: #d67d3e;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}

.price {
  color: #d67d3e;
  font-weight: 600;
  display: block;
  margin: 10px 0;
}

/* Testimonials Section */
.testimonials {
  background: #fff2e6;
  text-align: center;
  padding: 80px 10%;
}

.testimonials h2 {
  color: #d67d3e;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  font-style: italic;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background: #d67d3e;
  color: white;
  text-align: center;
  padding: 30px 10%;
}

footer .socials a {
  color: white;
  margin: 0 10px;
  text-decoration: underline;
}

.copy {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .navbar nav a {
    margin: 0 8px;
  }
  .product-card {
    width: 100%;
  }
  .testimonial {
    width: 100%;
  }
}
/* --- Carousel Styles --- */
.carousel {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  transition: opacity 0.5s ease;
}

.carousel img.active {
  display: block;
  opacity: 1;
}

.carousel .prev,
.carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 10;
}

.carousel .prev:hover,
.carousel .next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.carousel .prev {
  left: 10px;
}

.carousel .next {
  right: 10px;
}
