.whats-in-box {
  width: 100%;
  padding: 3rem 0;
  background-color: white;
}



    @media (min-width: 768px) {
     .whats-in-box {
        padding: 4rem 0;
      }
    }

.whats-in-box-container {
  margin: 0 auto;
  padding: 0 1.5rem;
  /* max-width: 1280px; */
}

.whats-in-box-inner {
  /* max-width: 1152px; */
  margin: 0 auto;
}

.whats-in-box-header {
  margin-bottom: 3rem;
}

.whats-in-box-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin: 0;
}

.whats-in-box-title-muted {
  color: #6B7280;
}

/* .whats-in-box-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
} */

.whats-in-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.whats-in-box-item {
  background-color: #F9FAFB;
  padding: 5px 1rem;
  border-radius: 0.5rem;
}

@media (min-width: 1024px) {
  .whats-in-box-item {
    padding: 1rem;
  }

  .whats-in-box-grid {
    gap: 1rem;
  }

}


.whats-in-box-item p {
  color: #111827;
  margin: 0;
}

/* .whats-in-box-images-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 2rem;
} */

.whats-in-box-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  overflow: hidden;
  margin-top: 40px;
}

.whats-in-box-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.whats-in-box-product-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #F9FAFB;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.whats-in-box-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whats-in-box-product-image-shadow img {
  filter: drop-shadow(0 20px 25px rgb(0 0 0 / 0.15)) drop-shadow(0 8px 10px rgb(0 0 0 / 0.08));
}

.whats-in-box-product-label {
  background-color: #111827;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .whats-in-box-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .whats-in-box-images {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .whats-in-box-title {
    font-size: 2.25rem;
  }
}