@keyframes yellow-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes black-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-text-pulse {
  0% {
    color: var(--bs-body-color);
  }
  50% {
    color: var(--bs-link-color);
  }
  100% {
    color: var(--bs-body-color);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#shop-section .product-page-layout {
  align-items: stretch;
}
#shop-section .product-gallery-card,
#shop-section .product-purchase-card {
  height: 100%;
}
#shop-section .product-gallery-carousel .carousel-inner,
#shop-section .product-gallery-carousel .carousel-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--theme-surface-2);
  border-radius: 0.75rem;
}
#shop-section .product-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
#shop-section .product-description-content {
  margin-bottom: 0;
}
#shop-section .product-description-content h1, #shop-section .product-description-content h2, #shop-section .product-description-content h3, #shop-section .product-description-content h4, #shop-section .product-description-content h5, #shop-section .product-description-content h6 {
  font-family: "Cormorant Garamond", "Baskerville", "Georgia", serif;
  color: var(--theme-heading);
}
#shop-section .product-description-content p, #shop-section .product-description-content li {
  font-family: "Inter", "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
}
#shop-section .product-share-block {
  border-color: var(--theme-card-border) !important;
}
#shop-section .product-qty-stepper {
  display: flex;
  align-items: stretch;
  max-width: 14rem;
}
#shop-section .product-qty-btn {
  width: 3rem;
  flex: 0 0 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid var(--bs-border-color);
  background: var(--theme-surface-2);
  color: var(--theme-heading);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 220ms ease-out, color 220ms ease-out, border-color 220ms ease-out;
}
#shop-section .product-qty-btn:first-child {
  border-radius: 0.75rem 0 0 0.75rem;
}
#shop-section .product-qty-btn:last-child {
  border-radius: 0 0.75rem 0.75rem 0;
}
#shop-section .product-qty-btn:hover:not(:disabled) {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #151515;
}
#shop-section .product-qty-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
#shop-section .product-qty-input {
  text-align: center;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}
#shop-section .product-qty-input:focus {
  z-index: 1;
}
