* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Outfit", sans-serif;
}

h2 {
  position: absolute;
  top: 10%;
  align-items: center;
  font-size: 4rem;
  text-shadow: 0px 5px 20px rgba(0, 0, 0, 0.6);
  color: #444;
}

.slider {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider .swiper {
  width: 300px;
  height: 300px;
}

.slider .swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
}

.slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: 0;
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 600;
}

.product-info p {
  font-size: 0.9rem;
  opacity: 0.85;
}
