
header {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}
.logo-container img {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #00c9db;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
header { display: flex; justify-content: space-between; align-items: center; background-color: #000; padding: 20px 40px; flex-wrap: wrap; }
.logo-container img { height: 50px; }
nav ul { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; align-items: center; padding: 0; }
nav ul li a { color: white; text-decoration: none; font-size: 18px; transition: color 0.3s; }
nav ul li a:hover { color: #00c9db; }

#custom-slider { width: 100%; overflow: hidden; position: relative; min-height: 300px; margin-top: 20px; }
.slider { position: relative; }
.slide { display: none; position: relative; }
.slide img { width: 100%; height: auto; object-fit: cover; }
.caption { position: absolute; bottom: 20px; left: 30px; background: rgba(0,0,0,0.6); color: white; padding: 8px 16px; font-size: 18px; border-radius: 5px; }
.prev, .next {
  cursor: pointer; position: absolute; top: 50%; padding: 10px; margin-top: -20px; color: white; font-size: 28px;
  background: rgba(0,0,0,0.5); border-radius: 50%; user-select: none;
}
.prev { left: 10px; }
.next { right: 10px; }

#hero { background: url('../images/hero_background.jpg') no-repeat center center fixed; background-size: cover;
        text-align: center; padding: 100px 20px; margin-top: 80px; color: white; }
.hero-content { max-width: 800px; margin: auto; padding: 30px; background: rgba(0,0,0,0.6); border-radius: 10px; }
.hero-content h1 { font-size: 42px; margin-bottom: 20px; }
.hero-content p { font-size: 20px; }

#featured-products { padding: 60px 20px; text-align: center; }
#featured-products .container { max-width: 1200px; margin: auto; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 40px; }
.product-item { background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.product-item img { width: 100%; height: auto; }
.product-item h3 { margin-top: 15px; font-size: 22px; }
.product-item p { margin-top: 10px; color: #666; font-size: 16px; }

footer { background-color: #000; color: white; text-align: center; padding: 20px; }
img { max-width: 100%; height: auto; }
