#fw-section-header {

/* HEADER-BEREICH */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO-STYLE */
.header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  text-decoration: none;
}

/* NAVIGATION */
.header nav {
  display: flex;
  gap: 25px;
}

.header nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.header nav a:hover {
  color: #00ffd5;
  transform: scale(1.05);
  border-bottom: 2px solid #00ffd5;
  padding-bottom: 2px;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 15px;
  }

  .header nav {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }
}
}
#fw-section-featured-collection-0 {

/* FEATURED COLLECTION WRAPPER */
.featured-collection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px;
  background-color: #121212;
}

/* EINZELNES PRODUKT */
.featured-collection .product-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-collection .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 213, 0.4);
}

/* PRODUKTBILD */
.featured-collection .product-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 250px;
}

/* PRODUKTINFOS */
.featured-collection .product-card .info {
  padding: 15px;
  color: #ffffff;
}

.featured-collection .product-card .info h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: #00ffd5;
}

.featured-collection .product-card .info p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* BUTTON ODER LINK */
.featured-collection .product-card .info a {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff;
  background-color: #00ffd5;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.featured-collection .product-card .info a:hover {
  background-color: #00c2a5;
}
}