/** Shopify CDN: Minification failed

Line 24:7 Expected identifier but found whitespace
Line 24:8 Unexpected "calc("

**/
.featured-product .product__media-list {
  width: 100%;
  margin: 0;
  padding-bottom: 0;
}

.featured-product .product-media-container {
  margin-bottom: var(--media-shadow-vertical-offset);
  max-width: 100%;
}

.featured-product .product__media-item:first-child {
  padding-left: 0;
  width: 100%;
}

.featured-product .product__media-item:not(:first-child) 
 width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
}

.background-secondary .featured-product {
  padding: 2.5rem;
}

.featured-product .share-button:nth-last-child(2) {
  display: inline-flex;
}

.share-button + .product__view-details {
  display: inline-flex;
  float: right;
  align-items: center;
}

.share-button + .product__view-details::after {
  content: "";
  clear: both;
  display: table;
}


.featured-product .product__media-list {
  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

@media screen and (max-width: 749px) {
  .featured-product .product__media-list {
    justify-content: center;
  }
  .product__media-list .product__media-item{
    width:calc(33% - 10px);
  }
  .featured-product .product__media-list{gap:15px;}
}

@media screen and (min-width: 750px) {
  .featured-product .product__media-item {
    padding-bottom: 0;
    width: calc(50% - 10px);
    max-width: inherit;
  }

  .background-secondary .featured-product {
    padding: 5rem;
  }
}

@media screen and (min-width: 990px) {
  .background-secondary .featured-product:not(.product--no-media) > .product__info-wrapper {
    padding: 0 0 0 5rem;
  }

  .background-secondary .featured-product:not(.product--no-media).product--right > .product__info-wrapper {
    padding: 0 5rem 0 0;
  }

  .featured-product:not(.product--no-media) > .product__info-wrapper {
    padding: 0 4rem;
    padding-right:0;
  }

  .background-secondary .featured-product {
    padding: 6rem 7rem;
    position: relative;
    z-index: 1;
  }
}
