.spell-new-products {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.spell-new-products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.spell-new-products__title {
  font-size: 2rem;
  margin: 0;
}

.spell-new-products__desc {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
  margin-bottom: 1rem;
}

.spell-new-products__slider {
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 25%; /* 4 por linha */
  box-sizing: border-box;
  padding: 0.5rem;
}

.spell-new-products__item {
  background: #fff;
  border: 1px solid #eee;
  padding: 1rem;
  text-align: center;
  border-radius: 6px;
  height: 100%;
}

.spell-new-products__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.spell-new-products__name {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.spell-new-products__name:hover {
  color: #f4812e;
}
.spell-new-products__price {
  color: #f4812e;
  font-weight: bold;
}

.spell-new-products__button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.spell-new-products__button {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  display: inline-block;
}

.swiper-button-prev,
.swiper-button-next {
  color: #333;
  top: -2.5rem;
  right: 2rem;
}

.swiper-button-prev {
  left: auto;
  right: 4rem;
}

a.spell-new-products__link{
  text-decoration: none;
  color: #000;
}