.productArchiveView {
    border: 4px solid transparent;
    padding: 12px;
    transition: border-color 0.3s ease; 
    text-decoration: none;
	box-sizing: border-box;
  }
  
  .productArchiveView:hover {
    border-color: #cf2e2e;
  }
  
  .productArchiveView p {
    color: inherit;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  
  .productArchiveView:hover p {
    color: #cf2e2e;
  }

.productArchiveView .product-badges {
    display: flex;
    gap: 12px;
    flex-direction: row;
    flex-wrap: wrap;
}

.productArchiveView .product-badges .productArchiveViewBadge {
   height: fit-content;
   margin-block-start: 0;
   margin-block-end: 0;
   width: fit-content;
}

.productArchiveView .wp-block-heading{
    margin-block-start: 0;
}

.productArchiveView .wp-block-heading * {
    text-decoration: none;
    font-weight: 400;
    font-size: var(--wp--preset--font-size--medium);
}

.productArchiveView .wp-block-image {
    width: 100%;
}

.productArchiveView .wp-block-image img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    width: 100%;
}

#loading-indicator {
    width: 48px;
    height: 48px;
    border: 8px solid #333;
    border-radius: 30px;
    margin: 12px auto;
    position: relative;
}

#loading-indicator::after {
    content: '';
    width: 48px;
    height: 48px;
    border: 8px solid var(--wp--preset--color--red);
    border-top-color: transparent; /* Make the top border transparent */
    border-radius: 50%; /* Use 50% to make a perfect circle */
    display: block;
    position: absolute;
    top: -8px;
    left: -8px;
    animation: spin 1s linear infinite; /* Apply the spinning animation */
    transform-origin: center center; /* Set the pivot point for rotation */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

