*, :after, :before {
    box-sizing: border-box;
}
.carousel-wrap {
  margin: 0 auto;
}
.splide__track {
  margin: 0 auto;
}
.splide__arrow {
  background: transparent;
  height: 4rem;
  width: 4rem;
}
.splide__arrow:hover {
  background: transparent;
}
.splide__arrow svg {
  fill: #000000;
  height: 4rem;
  width: 4rem;
  border-radius: 2rem;
  background-color: #ffffff;
  padding: 1rem;
  text-align: center;
  border: 2px solid #000;  
}
/* zeezee styling */
.slide-container {
  border: 4px solid var(--theme-color);
  border-radius: 25px;
  max-width: 500px;
  overflow: hidden;
  position: relative;  
  margin: 20px auto;
  display: flex;
}
@media screen and (min-width: 550px) {
  .slide-container {
    height: 625px;
  }
}

.slide-container::after {
  background-color: var(--theme-color);
  border-radius: 25px;
  content: "";
  display: block;
  height: calc(100% + 25%);
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-100%, 100%);
  -ms-transform: translate(-100%, 100%);
  transform: translate(-100%, 100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 100%;
  z-index: -1;
}
.slide-container:hover::after {
  -webkit-transform: translate(0, -10%);
  -ms-transform: translate(0, -10%);
  transform: translate(0, -10%);
}
.slide-container:hover {
  border: none;
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  transition: transform .2s;
}
.inner-slide-container {
  display: flex;
  flex-direction: column;
  flex: 1;  
}

.featured-product-image-area {
  margin-top: 10px;
  text-align: center;

}
@media screen and (min-width: 550px) {
  .featured-product-image-area {
    margin-top: 20px;
  }
}
.featured-product-text {
padding-bottom: 10px;
  text-align: center;
}

.featured-product-text-area {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  bottom: 20px;
  padding: 20px;
  width: 100%;
  min-height: 202px;
}
@media screen and (min-width: 550px) {
  .featured-product-text-area {
    position: absolute;
    min-height: auto;
}
  
  
}
.featured-product-button {
  display: flex;
  justify-content: center;  
}
.slide-container img {
  width: 100%;
  max-width: 426px;
   height: auto;
  object-fit: contain;
  aspect-ratio: 775 / 747; 
}
/* removed to fix SEO  (above max-height: 300px; height: auto;)
@media screen and (min-width: 550px) {
  .slide-container img {
    max-height: 100%;
  } */
}
.slide-container:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}


.slide-container h3 {
  color: #3d3d3d;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.5px;
  font-family: "Obviously", sans-serif;
  margin: 10px 0;
}

@media (max-width: 34.999em) {
    .slide-container h3 {
        font-size: 1.125rem;
    }
}

@media (min-width: 35em) and (max-width: 59.999em) {
    .slide-container h3 {
        font-size: 1.125rem;
    }
}

@media (min-width: 60em) {
    .slide-container h3 {
        font-size: 1.25rem;
    }
}
.slide-container:hover .featured-product-text h3 {
    color: #ffffff;
}
.prod-button-style {
  display: flex;
  justify-content: center;
  width: 100%;
  align-self: center;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  background-color: transparent;
  font-weight: 500;
  padding-top: 1.1875rem;
  padding-bottom: 1.1875rem;
  text-decoration: none;
  -webkit-transition-property: color, background-color, border;
  -o-transition-property: color, background-color, border;
  transition-property: color, background-color, border;
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s;
  -webkit-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  letter-spacing: 0.05em;
  line-height: 160%;
  border-radius: 1000px;
  text-align: center;
  font-family: "Obviously", sans-serif;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

@media (max-width: 29.999em) {
    .prod-button-style {
        font-size: .8rem;
    }
}

@media (min-width: 30em) {
    .prod-button-style {
        font-size: 1rem;
    }
}

.prod-button-style:hover,
.slide-container:hover .prod-button-style {
    color: #fff;
    background-color: var(--theme-color);
    border: 2px solid #fff;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.prod-button-style:focus {
    outline: 1px dotted #282828;
    outline-offset: 0;
}

