.carousel-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-top: 10rem;
  cursor: grab;
  z-index: 2;
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.boxContent {
  width: 32.45rem;
  height: 37rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 2.4rem;
  border-radius: 0;
  user-select: none;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  padding: 10rem 1.5rem;
  cursor: pointer;
  z-index: 2;
  font-size: 6rem;
  user-select: none; /*for text highlights*/
}

.nav-left {
  left: 0;
}

.nav-right {
  right: 0;
}

.firstBox {
  margin-left: 5rem;
}

.lastBox {
  margin-right: 5rem;
}


.imgWrapper {
  width: 100%;
  height: 32.45rem; /* same width as .boxContent to keep it square */
  overflow: hidden;
}

.imgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.boxContent-Captionbox {
  width: max-content;
  height: max-content;
}

.caption {
  font-family: "Montserrat", sans-serif;
  margin-top: 1rem;
  font-size: 1.3rem;
  user-select: none;
  font-weight: 600;
}

.captionUnderline {
  background-color: black;
  height: .12rem;
  width: 100%;
  transition: transform 0.5s ease;
  transform-origin: center; /* Shrinks from center */
}

.boxContent-Captionbox:hover .captionUnderline {
  transform: scaleX(0);
}

/*******navBox-two********/

.carousel-wrapperTwo {
  margin-top: 2rem;
}

.boxContentTwo {
  height: 44rem;
}

.imgWrapperTwo {
  height: 37rem;
}

.imgWrapperTwo img {
  object-position: bottom;
}

.nailSample-textOne {
  font-family: "Montserrat", sans-serif; 
  font-size: 1.5rem;
  font-weight: 700;
}

.nailSample-textTwo {
  font-family: "Montserrat", sans-serif; 
  font-size: 1.4rem;
  font-weight: 400;
}

.nailSample-coins {
  font-size: 1.4rem;
  font-weight: 600;
  color: grey;
}

.see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  color: black;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}


/*@media (max-width: 400px) {
  .box {
    min-width: 30rem;
    height: 30rem;
  }
}

******navBox-two*******

.carousel-wrapperTwo {
  margin-top: 2rem;
}

.boxContentTwo {
  height: 44rem;
}

.imgWrapperTwo {
  height: 37rem;
}

.imgWrapperTwo img {
  object-position: bottom;
}

.nailSample-textOne {
  font-family: "Montserrat", sans-serif; 
  font-size: 1.5rem;
  font-weight: 700;
}

.nailSample-textTwo {
  font-family: "Montserrat", sans-serif; 
  font-size: 1.4rem;
  font-weight: 400;
}

.nailSample-coins {
  font-size: 1.4rem;
  font-weight: 600;
  color: grey;
}

.see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  color: black;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}*/

