body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0a0a0a;
  color: #e0c68a;
}

.header {
  background: #000;
  padding: 20px 0 10px 0;
  text-align: center;
  border-bottom: 2px solid #e0c68a33;
}
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 10px #e0c68a88);
  border: 3px solid #e0c68a;
  background: #181818;
  box-shadow: 0 4px 24px #e0c68a33;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.header h1 {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: #e0c68a;
  margin: 0;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}
nav a {
  color: #e0c68a;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.2s;
}
nav a:hover {
  color: #fff;
}
.hero {
  background: linear-gradient(120deg, #1a1a1a 60%, #e0c68a22 100%);
  text-align: center;
  padding: 32px 10px 24px 10px;
  margin-bottom: 0;
}
.hero h2 {
  font-size: 2rem;
  color: #e0c68a;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero h2 span {
  background: linear-gradient(90deg, #e0c68a 0%, #fffbe6 50%, #e0c68a 100%);
  background-size: 200% 100%;
  animation: goldMove 1.5s linear infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero p {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.cta-btn {
  margin-top: 0;
  margin-bottom: 0;
  background: linear-gradient(90deg, #e0c68a 60%, #fffbe6 100%);
  color: #000;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 10px #e0c68a44;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: linear-gradient(90deg, #e0c68a 0%, #fffbe6 100%, #e0c68a 200%);
  background-size: 200% 100%;
  animation: goldMove 1.2s linear infinite alternate;
}
.cta-btn:hover {
  background: #fffbe6;
  color: #bfa14a;
}
.products {
  padding: 50px 10px 30px 10px;
  background: #181818;
  text-align: center;
}
.products h2 {
  color: #e0c68a;
  font-size: 2rem;
  margin-bottom: 30px;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.product-card {
  background: #222;
  border-radius: 18px;
  box-shadow: 0 2px 12px #e0c68a22;
  padding: 25px 18px 18px 18px;
  width: 260px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px #e0c68a55;
}
.product-card img,
.image-slider img.slider-img {
  width: 220px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  aspect-ratio: 1.1/1;
  background: #222;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Slider Styles */
.image-slider {
  position: relative;
  width: 220px;
  height: 200px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(224, 198, 138, 0.8);
  color: #181818;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  box-shadow: 0 2px 8px #e0c68a44;
}
.slider-btn.prev {
  left: 8px;
}
.slider-btn.next {
  right: 8px;
}
.slider-btn:hover {
  background: #fffbe6;
  color: #bfa14a;
}
.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e0c68a88;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dots .dot.active {
  background: linear-gradient(90deg, #e0c68a 0%, #fffbe6 100%);
  box-shadow: 0 0 6px #e0c68a88;
}
.product-card h3 {
  color: #e0c68a;
  margin: 10px 0 5px 0;
  font-size: 1.2rem;
}
.product-card p {
  font-size: 1rem;
  margin-bottom: 10px;
}
.price {
  color: #e0c68a;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.product-card button {
  background: linear-gradient(90deg, #e0c68a 60%, #fffbe6 100%);
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.product-card button:hover {
  background: #fffbe6;
  color: #bfa14a;
}
.about {
  background: #101010;
  color: #e0c68a;
  padding: 40px 20px 30px 20px;
  text-align: center;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.about p {
  color: #fffbe6;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
.contact {
  background: #181818;
  color: #e0c68a;
  padding: 40px 20px 30px 20px;
  text-align: center;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e0c68a55;
  background: #222;
  color: #fff;
  font-size: 1rem;
}
.contact button {
  background: linear-gradient(90deg, #e0c68a 60%, #fffbe6 100%);
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact button:hover {
  background: #fffbe6;
  color: #bfa14a;
}
footer {
  background: #000;
  color: #e0c68a;
  text-align: center;
  padding: 18px 0 10px 0;
  font-size: 1rem;
  border-top: 2px solid #e0c68a33;
  margin-top: 30px;
}
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  background: #181818;
  padding: 18px 0 10px 0;
  border-bottom: 2px solid #e0c68a33;
  position: sticky;
  top: 0;
  z-index: 10;
}
.tab-btn {
  background: none;
  border: none;
  color: #e0c68a;
  font-size: 1.1rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: bold;
  padding: 8px 22px;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab-btn.active,
.tab-btn:hover {
  background: #e0c68a;
  color: #181818;
  background: linear-gradient(90deg, #e0c68a 0%, #fffbe6 100%, #e0c68a 200%);
  background-size: 200% 100%;
  animation: goldMove 1.2s linear infinite alternate;
}
.category-group {
  display: block;
}
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #181818;
  padding: 18px 0 0 0;
  gap: 10px;
}
#searchBox {
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #e0c68a55;
  font-size: 1.1rem;
  background: #222;
  color: #fff;
  width: 260px;
  transition: border 0.2s;
}
#searchBox:focus {
  outline: none;
  border: 1.5px solid #e0c68a;
}
#searchBtn {
  background: linear-gradient(90deg, #e0c68a 60%, #fffbe6 100%);
  color: #181818;
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: linear-gradient(90deg, #e0c68a 0%, #fffbe6 100%, #e0c68a 200%);
  background-size: 200% 100%;
  animation: goldMove 1.2s linear infinite alternate;
}
#searchBtn:hover {
  background: #fffbe6;
  color: #bfa14a;
}
@keyframes goldMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@media (max-width: 900px) {
  .product-list {
    flex-direction: column;
    align-items: center;
  }
  .category-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  .tab-btn {
    font-size: 1rem;
    padding: 6px 12px;
  }
  .search-container {
    flex-direction: column;
    gap: 8px;
  }
  #searchBox {
    width: 100%;
    min-width: 0;
  }
  .hero {
    padding: 18px 5px 12px 5px;
  }
  .hero h2 {
    font-size: 1.2rem;
  }
}
