* {
.primary-btn:hover {
  background: #fff;
}

.secondary-btn {
  border: 1px solid #fff;
  color: #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #000;
}

section {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-title p {
  color: #bbb;
}

.collection-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.collection-card,
.product-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.collection-card:hover,
.product-card:hover {
  transform: translateY(-10px);
}

.collection-card img,
.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.card-content,
.product-card {
  padding: 20px;
}

.card-content h3,
.product-card h3 {
  margin-bottom: 10px;
}

.product-card span {
  display: block;
  color: #c7a86d;
  margin: 10px 0 20px;
}

.product-card button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: #c7a86d;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.product-card button:hover {
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-text p {
  color: #ccc;
  line-height: 1.9;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

.contact-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 18px;
  border: none;
  border-radius: 12px;
  background: #111;
  color: #fff;
}

.contact-form textarea {
  height: 180px;
  resize: none;
}

.contact-form button {
  padding: 16px;
  border: none;
  border-radius: 30px;
  background: #c7a86d;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

footer {
  padding: 30px;
  text-align: center;
  border-top: 1px solid #222;
  color: #aaa;
}

@media(max-width: 900px) {

  nav {
    position: absolute;
    top: 80px;
    right: -100%;
    width: 250px;
    background: #111;
    flex-direction: column;
    padding: 30px;
    transition: 0.4s;
  }

  nav.active {
    right: 0;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 220px;
  }
}