/* 🟡 GLOBAL */
body {
  background-color: #111;
  color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: #fff;
  margin: 10px 0;
}

/* 🟡 HEADER */
header {
  background-color: rgba(17, 17, 17, 0.95);
  padding: 6px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo {
  width: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: #d4af37;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #f1c950;
}

.btn {
  background-color: #d4af37;
  color: #111;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
text-decoration: none; /* ✅ add this line */
}

.btn:hover {
  background-color: #f1c950;
}

/* 🟡 HERO */
.hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
  text-align: center;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-slider img.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.hero-logo {
  width: 100px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 2.2em;
  color: #d4af37;
}

/* 🟡 PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

h2 {
  text-align: center;
}

/* (rest same as before) */

.product-card {
  background-color: #1b1b1b;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card p {
  color: #d4af37;
  font-weight: 600;
}

.see-more {
  text-align: center;
  margin-top: 30px;
}

/* 🟡 COLLECTION PAGE */
main {
  display: flex;
  gap: 40px;
  margin: 30px 50px;
}

.sidebar {
  width: 220px;
  background-color: #1b1b1b;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}

.sidebar h3 {
  color: #d4af37;
  text-transform: uppercase;
}

.sidebar button {
  width: 100%;
  border: 1px solid #d4af37;
  background: none;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.sidebar button.active,
.sidebar button:hover {
  background-color: #d4af37;
  color: #111;
}

#productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* 🟡 ABOUT / CONTACT */
.about, .contact {
  padding: 50px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.about p, .contact p {
  line-height: 1.6;
}

/* 🟡 MOBILE */
@media (max-width: 768px) {
  main {
    flex-direction: column;
    margin: 20px;
  }

  .sidebar {
    width: 100%;
  }

  .menu-toggle {
    display: block;
    background-color: #d4af37;
    color: #111;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .menu-content {
    display: none;
  }

  .sidebar.active .menu-content {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}
a {
  text-decoration: none;
}
