/* Details */
#details {
  margin-bottom: 1rem;
}

#details h2 {
  margin-top: 1rem;
  text-transform: uppercase;
}

#details span {
  font-size: 0.75rem;
}

#details hr {
  border-bottom: 1px solid #F2F5F9;
  border-color: #F2F5F9 !important;
}

@media (min-width: 576px) {
  #details h2 {
    padding-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.2em;
    text-align: left;
  }
}

@media (min-width: 768px) {
  #details h2 {
    margin-top: 0px;
    padding-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  #details {
    margin-bottom: 5rem;
  }
}

@media (min-width: 1200px) {
  #details h2 {
    font-size: 2.6rem;
    line-height: 1.1em;
  }
}

/* Unique Selling Point */
#usp .row {
  justify-content: space-evenly;
}

.usp-item {
  text-align: center;
  margin-bottom: 2rem;
}

.usp-item img {
  width: 75px;
}

.usp-item h3 {
  margin: 1rem 0px;
  color: #F7A600;
  font-size: 1.375rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media screen and (min-width: 576px) {
  .usp-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  .usp-item {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Misc section */
#product-misc-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.product-misc-item {
  flex: 1;
  background-color: white;
  padding: 3rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-misc-item-title {
  text-transform: uppercase;
  text-align: left;
  font-size: 2rem;
  font-weight: 900;
  color: #004388;
}

.product-misc-item-button {
  padding: 0.5rem 1.5rem;
  border: 0px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  background-color: #004388;
  width: fit-content;
  transition: all 0.3s;
}

.product-misc-item-button:hover {
  color: #000;
  background-color: #00a6e2;
}


@media (min-width: 992px) {
  #product-misc-main {
    flex-direction: row;
  }

  .product-misc-item-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 3rem;
  }

  .product-misc-item-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Care Instructions */
.care-label-container {
  display: flex;
  gap: 2rem;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.care-label-item {
  width: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.care-label-item img {
  width: 100%;
  cursor: help;
}


@media screen and (min-width: 992px) {}


/* This might also interest you */
#interest {
  margin-bottom: 4rem;
}

#interest .productSwiper {
  padding: 0px 0.75rem 10px 0.75rem !important;
}

.interest-items-wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
}

#interest h2 {
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  text-transform: uppercase;
}

#interest .interest-item {
  position: relative;
}

#interest .interest-item:after {
  content: " ";
  position: absolute;
  display: block;
  width: 70%;
  height: 70%;
  left: 0px;
  bottom: -1rem;
  background-color: #00A6E2;
  border-radius: 20px;
  z-index: 10;
}

#interest .interest-item-wrapper {
  position: relative;
  z-index: 200;
  margin-left: 1rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
}

#interest .interest-item-wrapper img {
  position: relative;
  width: 100%;
  z-index: 300;
  border-radius: 20px;
  overflow: hidden;
  filter: brightness(80%);
  transition: transform 0.5s, filter 0.5s;
}

#interest .interest-item-wrapper img:hover {
  transform: scale(1.05);
  filter: brightness(100%);
}

#interest .interest-item-wrapper h3 {
  position: absolute;
  margin-bottom: 0px;
  padding: 0px 0.5rem;
  bottom: 4rem;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1em;
  text-transform: uppercase;
  text-align: center;
  z-index: 301;
}

#interest .interest-item-wrapper h3:after {
  content: " ";
  display: block;
  position: absolute;
  left: 36%;
  bottom: -1rem;
  width: 28%;
  height: 2px;
  background-color: #00A6E2;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -4rem;
}

.slide-control .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0px 0.9rem 0px 0px;
  background-color: #004388;
  opacity: 1;
}

.slide-control .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet:last-child {
  margin-right: 0px;
}

.slide-control .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00A6E2;
}

@media (min-width: 576px) {
  .interest-items-wrapper {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  #interest .interest-item-wrapper h3 {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  .interest-items-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #interest .interest-item-wrapper h3 {
    font-size: 1.7rem;
  }
}

@media (min-width: 992px) {
  #interest {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  #interest .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .interest-items-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }

  #interest .interest-item-wrapper h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .interest-items-wrapper {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  #interest .interest-item-wrapper h3 {
    font-size: 1.4rem;
  }
}

@media (min-width: 1400px) {
  #interest {
    padding-top: 4rem;
  }

  #interest .interest-item-wrapper h3 {
    font-size: 1.6rem;
  }
}

@media (min-width: 1600px) {
  #interest .interest-item-wrapper h3 {
    font-size: 1.7rem;
  }
}