* {
  margin: 2;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rockwell", regular;
}

header {
  background: #151364;
  color: white;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

nav a {
  color: white;
  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: 100%;
  height: 100%;
  object-fit: cover;
}

.products-grid {
  padding: 2rem;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(2, fr);
  gap: 2rem;
  padding: 2rem;
}

.product-item {
  border: 1px solid #131212;
  padding: 1rem;
  text-align: center;
}

.product-item img {
  width: 50%;
  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: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}
