<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Store | Official Bigi</title>

  <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap" rel="stylesheet">
  <link rel="stylesheet" href="style.css">
</head>

<body>

  <!-- HEADER -->
  <header class="header">
    <h1 class="logo">Official Bigi</h1>
    <nav class="nav">
      <a href="music.html">Music</a>
      <a href="videos.html">Videos</a>
      <a href="store.html">Store</a>
      <a href="tour.html">Tour</a>
      <a href="subscribe.html">Subscribe</a>
    </nav>
  </header>

  <!-- STORE -->
  <section class="store">
    <h2 class="store-title">MERCH</h2>

    <div class="products">

      <div class="product">
        <img src="assets/IMG_3781.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Khaki T-Shirt</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3780.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Black T-Shirt</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3779.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Gray T-Shirt</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3769.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Green T-Shirt</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3775.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Lagoon Blue T-Shirt</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3773.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Blossom T-Shirt</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3776.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Berry T-Shirt</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3772.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Green Letterman Jacket</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3777.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Berry Letterman Jacket</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3770.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Red Letterman Jacket</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3774.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Brown Letterman Jacket</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3768.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Yellow Letterman Jacket</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3771.png" alt="">
        <h3>Void Saint</h3>
        <p>Denim Jacket</p>
      </div>

      <div class="product">
        <img src="assets/IMG_3778.png" alt="">
        <h3>Faith Over Fame</h3>
        <p>Shorts</p>
      </div>

    </div>
  </section>

  <!-- FOOTER -->
  <footer class="footer">
    <p>© 2025 Official Bigi. All rights reserved.</p>
    <div class="footer-links">
      <a href="#">Privacy</a>
      <a href="#">Terms</a>
      <a href="#">Cookies</a>
    </div>
  </footer>

</body>
</html>
/* NEWSLETTER */
.newsletter {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #000, #050505);
  border-top: 1px solid #111;
}

.newsletter h2 {
  font-size: 2rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.newsletter p {
  color: #888;
  margin-bottom: 30px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter input {
  padding: 12px 15px;
  width: 260px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
  font-size: 0.9rem;
}

.newsletter input::placeholder {
  color: #666;
}

.newsletter button {
  padding: 12px 25px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter button:hover {
  background: #fff;
  color: #000;
}
