
.product-category-card {
	height: 200px;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
}


.product-dimensions-text {
  color: #c0c0c0;
}

.stripe-checkout {
  background-color: white;
  min-height: 93vh;
}

.faq-list {
  width: clamp(25vw, 500px, 90vw);
}

.faq-card {
  padding-top: 10px;
  opacity: .5;
  position: relative;
}

.faq-exit-button {
  color: white;
  position: absolute;
  right: 25px;
  top: 5px;
  font-size: 1.5rem;
}
.exit-button {
  color: white;
  position: absolute;
  right: 5px;
  top: 0px;
  font-size: 1.5rem;
}

.exit-button:hover {
  opacity: .7;
}

.sign-up-card {
  position: fixed;
  width: clamp(20vw, 350px, 90vw);
  top: 50%;
  left: 50%;
  z-index: 12;
  background-color: rgba(102, 178, 178, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.success-card {
  background-color: rgba(102, 178, 178, 0.5);
}

.forwards {
  animation: slide-down .5s ease-out forwards;
}
.reverse {
  animation: slide-down .5s ease-in reverse forwards;
}


.sign-up-card p {
  font-family: 'Borel', Helvetica, sans-serif;
}

.sign-up-button {
  padding-top: 8px;
  line-height: 1;
  font-size: 30px;
  font-weight: bold;
  width: 100%;
  animation: slide-up .5s ease .75s forwards;
  transform: translateY(150%);
  opacity: 0;
}
.submit-message-button {
  padding-top: 8px;
  line-height: 1;
  font-size: 30px;
  font-weight: bold;
  width: 100%;
}

.sign-up-control-one {
  transform: translate(-125%);
  animation: slide-in .5s ease 0.3s normal forwards;
  opacity: 0;
}
.sign-up-control-two {
  transform: translate(-125%);
  animation: slide-in .5s ease 0.5s normal forwards;
  opacity: 0;
}
.sign-up-control-three {
  transform: translate(-125%);
  animation: slide-in .5s ease 0.7s normal forwards;
  opacity: 0;
}

.sign-up-title {
  font-size: clamp(2.25rem, 30px, 3rem);
  animation: pulsing-text 1s alternate infinite;
}

.hero-text-one {
  opacity: 0;
  animation: heroFadeIn .75s ease-in 0.3s forwards;
}
.hero-text-two {
  opacity: 0;
  animation: heroFadeIn .75s ease-in .9s forwards;
}

.hero-text-three {
  opacity: 0;
  animation: heroFadeIn .75s ease-in 1.5s forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulsing-text {
  0% {
    text-shadow: 0 0 6px rgba(255, 255, 255)
  }
  20% {
    text-shadow: 0 1px 6px rgba(255, 255, 255)
  }
  40% {
    text-shadow: 1px 0 6px rgba(255, 255, 255)
  }
  60% {
    text-shadow: 0 -1px 6px rgba(255, 255, 255)
  }
  80% {
    text-shadow: -1px 0 6px rgba(255, 255, 255)
  }
  100% {
    text-shadow: -1px -1px 6px rgba(255, 255, 255)
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate(-50%, -150%);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -43%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(150%);
  }
  80% {
    opacity: 1;
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translate(-125%);
  }
  80% {
    opacity: 1;
    transform: translate(5%);
  }
  100% {
    opacity: 1;
    transform: translate(0%);
  }
}

.shop-bg {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100lvh;
  z-index: -1;
  position: fixed;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3)),
              url("/assets/shop-hero-large-c736961f.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.home-bg {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100lvh;
  z-index: -1;
  position: fixed;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3)),
              url("/assets/home-hero-c858ae9b.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.product-category-body {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.info-section {
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.info-card {
  width: 250px;
}

.info-text {
  animation: pulsing-text 1s alternate infinite;
}

.category-button {
  background-color: rgba(186,200,177,0.8);
}

.category-button:hover {

  background-color: rgba(186,200,177,0.7);
}

nav {
  background-color: rgba(30, 52, 46, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
