* {
  margin: 5;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Rockwell", regular;
}
header {
  background: #151364;
  color: rgb(245, 244, 244);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin-left: 1.5rem;
}

/* .full-screen-image {
  height: 100vh;
  width: 100vw;
} */

.full-screen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section {
  display: flex;
  min-height: 80vh;
}

.text-content,
.image-content {
  flex: 1;
  padding: 2rem;
}

.image-content img {
  width: 250;
  height: 100%;
  object-fit: cover;
}

/* .products-grid {
  padding: 2rem;
} */

/* .products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  direction: row;
} */

.product-item {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.product-item {
  /* border: 1px solid #131212; */
  padding: 1rem;
  text-align: center;
}

.product-item img {
  width: 60%;
  /* height: 500px; */
  /* object-fit: cover; */
  cursor: pointer;
}

/*.sponsors-slideshow {
  padding: 2rem;
}

.slideshow-container {
  position: relative;
  height: 400px;
}

.slideshow-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 2s;
}

.slideshow-container img.active-slide {
  opacity: 1;
}

.contact-info {
  padding: 2rem;
  text-align: center;
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.8rem;
}


footer {
  background: #151364;
  color: white;
  text-align: flex-end;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}
 </main>
    <div id="lightbox" class="lightbox">
      <span class="close-btn">&times;</span>
      <img class="lightbox-content" id="lightbox-img">
      <div class="lightbox-nav">
        <button class="prev-btn">❮</button>
        <button class="next-btn">❯</button>
      </div>
    </div>
        /* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

.lightbox-nav button {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
