#product_detail section {
  margin-bottom: clamp(6.25rem, 4.605rem + 6.579vw, 12.5rem);
}
#product_detail .floating-cta {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
  transform: translateX(120%);
  transition: transform 400ms cubic-bezier(var(--ease-ioc));
}
#product_detail .floating-cta.visible {
  transform: translateX(0);
}
#product_detail #product_info {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3.125rem, 2.303rem + 3.289vw, 6.25rem);
  height: -moz-max-content;
  height: max-content;
}
@media (min-width: 1024px) {
  #product_detail #product_info {
    grid-template-columns: 1fr 1fr;
  }
}
#product_detail #product_info .swiper-container {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  background-color: white;
}
#product_detail #product_info .swiper.main {
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
}
#product_detail #product_info .swiper.main .swiper-slide {
  overflow: hidden;
  height: 100%;
  width: 100%;
  aspect-ratio: 1;
}
#product_detail #product_info .swiper.main .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#product_detail #product_info .swiper.thumbs .swiper-wrapper {
  width: 100%;
  height: 100%;
}
#product_detail #product_info .swiper.thumbs .swiper-slide {
  width: 100%;
  height: auto;
  aspect-ratio: 1/2;
  overflow: hidden;
  max-height: 15.625rem;
}
#product_detail #product_info .swiper.thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#product_detail #product_info .data-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#product_detail #product_info .text-content {
  margin-bottom: 2.5rem;
}
#product_detail #product_info .text-content h1 {
  margin-bottom: 1.5rem;
}
#product_detail #product_info .text-content b,
#product_detail #product_info .text-content strong {
  text-transform: unset;
}
#product_detail #product_info .text-content .description {
  margin-bottom: 1.5rem;
}
#product_detail #product_info #product_options {
  margin-bottom: 2.9375rem;
}
#product_detail #product_info .color-options {
  border-bottom: 1px solid var(--border-color);
  font-size: clamp(0.875rem, 0.842rem + 0.132vw, 1rem);
}
#product_detail #product_info .radio-group,
#product_detail #product_info .toggle-switch-group {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-block: 1.875rem;
  flex-wrap: wrap !important;
}
#product_detail #product_info .radio-group .group-title,
#product_detail #product_info .toggle-switch-group .group-title {
  font-size: 1rem;
}
#product_detail #product_info .radio-group .radio-buttons-container,
#product_detail #product_info .toggle-switch-group .radio-buttons-container {
  display: flex;
  align-content: center;
  gap: clamp(1rem, 0.605rem + 1.579vw, 2.5rem);
  flex-direction: row;
  flex-wrap: nowrap;
}
#product_detail #product_info #list_title,
#product_detail #product_info #customize_title {
  margin-bottom: 1.5rem;
}
#product_detail #product_info .grid-1-2 {
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: clamp(1.25rem, 0.954rem + 1.184vw, 2.375rem);
}
@media (min-width: 1280px) {
  #product_detail #product_info .grid-1-2 {
    grid-template-columns: 1fr 1fr;
  }
}
#product_detail #product_info .customize-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--border-color);
  width: 100%;
  padding: clamp(1rem, 0.934rem + 0.263vw, 1.25rem);
}
#product_detail #product_info .customize-card .radio-group {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
  margin-inline: auto;
  padding-bottom: 0.75rem;
}
#product_detail #product_info .customize-card .title {
  margin-bottom: 0.75rem;
}
#product_detail #product_info .customize-card .description {
  margin-bottom: 1rem;
}
#product_detail #product_info .customize-card .list {
  display: flex;
  gap: 0.125rem;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  align-items: center;
  justify-self: center;
  list-style-position: inside;
}
#product_detail #product_info .customize-card .list-item {
  width: -moz-max-content;
  width: max-content;
}
#product_detail #product_info .customize-card .text-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid black;
  margin-bottom: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
}
#product_detail #product_info .customize-card .text-input:focus-visible {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.3137254902);
}
#product_detail #product_info .customize-card .image-input-label {
  width: 100%;
  padding: 0.5rem;
  padding-block-start: 0.75rem;
  border: 1px dashed black;
  margin-bottom: 0.75rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.125rem;
  position: relative;
}
#product_detail #product_info .customize-card .image-input-label .upload-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
#product_detail #product_info .customize-card .image-input-label .upload-cta.error svg.close {
  opacity: 1;
}
#product_detail #product_info .customize-card .image-input-label .upload-cta.complete svg.check {
  opacity: 1;
}
#product_detail #product_info .customize-card .image-input-label .upload-cta svg.close,
#product_detail #product_info .customize-card .image-input-label .upload-cta svg.check {
  position: absolute;
  left: calc(100% + 4px);
  top: 50%;
  opacity: 0;
  transition: all 250ms ease;
}
#product_detail #product_info .customize-card .image-input-label .upload-cta svg.close {
  transform: translateY(-50%);
}
#product_detail #product_info .customize-card .image-input-label .upload-cta svg.close path {
  stroke: #d66a6a;
}
#product_detail #product_info .customize-card .image-input-label .upload-cta svg.check {
  transform: translateY(calc(-50% - 1px));
}
#product_detail #product_info .customize-card .image-input-label .upload-cta svg.check path {
  stroke: #5fbf8f;
}
#product_detail #product_info .customize-card .image-input-label form#upload-form {
  width: 100%;
}
#product_detail #product_info .customize-card .image-input-label form#upload-form #upload-progress {
  height: 2px;
  width: 0;
  background: rgba(0, 0, 0, 0.05);
  transition: all 250ms ease;
}
#product_detail #product_info .customize-card .image-input-label form#upload-form #upload-progress:not(.in-progress):not(.complete):not(.error) {
  opacity: 0;
}
#product_detail #product_info .customize-card .image-input-label form#upload-form #upload-progress.in-progress {
  background: #bbbfc1;
}
#product_detail #product_info .customize-card .image-input-label form#upload-form #upload-progress.complete {
  background: #5fbf8f;
  animation: fadeOut 1000ms 2s forwards;
}
#product_detail #product_info .customize-card .image-input-label form#upload-form #upload-progress.error {
  background: #d66a6a;
  animation: fadeOut 1000ms 2s forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#product_detail #product_info .customize-card .image-input-label #image_input_text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.875rem;
}
#product_detail #product_info .customize-card .image-input-label .file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
}
#product_detail #product_info .customize-card .image-input-label .file-input:focus-visible {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.3137254902);
}
#product_detail #product_info .customize-card .image-input-label:has(input[type=file]:disabled) {
  opacity: 25%;
  pointer-events: none;
  touch-action: none;
  cursor: not-allowed;
}
#product_detail #product_info .included-things-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: start;
  gap: 2rem;
  margin-bottom: 5.125rem;
}
#product_detail #product_info .add-to-cart {
  width: 100%;
  margin-bottom: 1.375rem;
}
#product_detail #product_info .accordions-wrapper button {
  text-transform: uppercase;
}
#product_detail #product_info .accordions-wrapper:last-child {
  border-bottom: 1px solid var(--border-color);
}
#product_detail #product_info .accordion-container button {
  border-top: 1px solid var(--border-color);
  padding-block: 1.5rem;
  padding-inline: 0;
}
#product_detail #product_info .accordion-content li {
  margin-bottom: 1.5rem;
}
#product_detail #explore_more h2 {
  margin-bottom: clamp(1.875rem, 1.382rem + 1.974vw, 3.75rem);
}
#product_detail #explore_more .swiper {
  height: -moz-max-content;
  height: max-content;
  overflow: visible;
  padding-inline: clamp(1rem, 0.079rem + 3.684vw, 4.5rem);
}
#product_detail #explore_more .swiper-wrapper {
  height: -moz-max-content;
  height: max-content;
}
#product_detail #explore_more .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
#product_detail #explore_more .product-list-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}/*# sourceMappingURL=product_detail.css.map */