/** Shopify CDN: Minification failed

Line 30:27 Unexpected "{"
Line 30:34 Expected ":"
Line 44:27 Unexpected "{"
Line 44:34 Expected ":"
Line 50:27 Unexpected "{"
Line 50:34 Expected ":"
Line 57:27 Unexpected "{"
Line 57:34 Expected ":"

**/
        div.related-products {
          margin-top: -0.8rem;
        }

        p.related-products-heading {
          line-height: calc(1 + .5 / var(--font-body-scale));
          letter-spacing: .04rem;
          margin-bottom: 2rem !important;
        }

        .related-products {
          margin-bottom: -1rem !important;
          text-align: left !important;
          display: flex !important;
          flex-wrap: wrap !important;
        }
        
        #related-products-{{ block.id }} .related-product {
          display: block !important;
          width: 5rem;
          height: 5rem;
          border-radius: 50%; /* 50% for circle, 0% for square */
          background-size: cover;
          cursor: pointer;
          border: 1px solid #A7A3A3;
          border-opacity: 0.55;
          text-align: center;
          transition: border-color 0.3s ease;
          position: relative; /* Ensure that the border is part of this box */
          overflow: hidden; /* This ensures that nothing within the box spills out */
        }
        #related-products-{{ block.id }} .related-product:hover {
          border-color: black !important;
          border-width: 1.5px;
        }


        #related-products-{{ block.id }} .related-product.active {
          box-shadow: inset 0 0 0 2px #fff !important; 
          border-width: 2px !important;
          border-color: black;
        
        }

        #related-products-{{ block.id }} .related-product__image {
          width: 100%;
          height: 100%;
          object-fit: fit; 

        }

        .related-product {
            margin: 0rem 1rem 1.8rem 0 !important;
        
        }