/** Shopify CDN: Minification failed

Line 31:3 Cannot use type selector "--soldOut" directly after nesting selector "&"

**/

/* Product Color Swatches */
.ProductItem__ColorSwatchList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: var(--product-info-alignment, flex-start);
}

.ProductItem__ColorSwatch {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  
  &:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  
  &--soldOut {
    opacity: 0.5;
    
    &::after {
      content: '';
      position: absolute;
      top: 50%;
      left: -2px;
      right: -2px;
      height: 1px;
      background-color: rgba(0, 0, 0, 0.4);
      transform: rotate(-45deg);
    }
  }
}

.ProductItem__ColorSwatchInner {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Adjust alignment based on product info alignment setting */
.ProductItem__Info--center .ProductItem__ColorSwatchList {
  justify-content: center;
}

.ProductItem__Info--right .ProductItem__ColorSwatchList {
  justify-content: flex-end;
}

/* Mobile adjustments */
@media screen and (max-width: 640px) {
  .ProductItem__ColorSwatchList {
    gap: 6px;
    margin-top: 8px;
  }
  
  .ProductItem__ColorSwatch {
    width: 20px;
    height: 20px;
  }
}

/* Product page MODALS: Best Offer, Shipping, Easy Returns */
.sten-shipping-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 20px 0;
  padding: 0;
}
.sten-shipping-notification, .sten-returns-notification {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 20px 0;
  padding-top: 10px;
}
.sten-shipping-notification {
  margin: 20px 0px 0px 0px;
  padding-top: 10px;
}
.sten-best-offer-notification {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 5px 0;
  padding-top: 0px;
}
.shipping-list {
    text-align: left;
    font-size: 14px;
    padding-left: 1.5em;
    margin-top: 1px;
    line-height: 1.5;
}

.shipping-list-item {
  margin-bottom: 0.3em;
}
.sten-shipping-info {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.sten-best-offer-info {
  display: flex;
  align-items: flex-start;
  gap: 23px;
}
.sten-shipping-icon {
  color: #d32f2f;
  flex-shrink: 0;
}
.sten-best-offer-icon {
  color: #d32f2f;
  flex-shrink: 0;
  width: 7px;
  padding-left: 0px;
  padding-top: 3px;
}
.sten-shipping-content {
  flex-grow: 1;
  padding-right: 10px;
}
.sten-best-offer-content {
  flex-grow: 1;
  padding-right: 0px;
}
.sten-shipping-title {
  font-size: 16px;
  font-family: inter, sans-serif;
  font-weight: 600;
  margin: 0 0 0px;
  color: #121212;
  line-height: 1.2em;
}
.sten-delivery-time {
  font-size: 15px;
  color: #121212;
  margin: 0 0px;
  font-weight: 400;
  line-height: 1.3em;
}
.sten-best-offer-time {
  font-size: 15px;
  color: #121212;
  margin: 0 0px;
  line-height: 1;
}
.sten-delivery-days {
  color: #008060;
  font-weight: 700;
}
.sten-delivery-details {
  display: inline-block;
  color: #666;
  text-decoration: underline;
  font-size: 15px;
  cursor: pointer;
}
.sten-shipping-details-link, .sten-returns-details-link {
  display: inline-block;
  color: #666;
  text-decoration: underline;
  font-size: 15px;
  cursor: pointer;
}
.sten-best-offer-link {
  display: inline-block;
  color: #000;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.sten-delivery-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}
.sten-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}
.sten-delivery-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}
.sten-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}
.sten-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.sten-modal-container {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.sten-modal-icon {
    margin-left: -10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 60px;
    height: 60px;
}

.sten-modal-icon svg {
  position: relative;
  z-index: 3;
  width: 21px;
  height: 21px;
}

.sten-modal-icon:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: #ECFDF3;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.sten-modal-icon:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #9dedb8;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: sten-inventory-pulse 2s linear infinite;
}

.sten-shipping-note {
margin-bottom: 0px !important;
}


@keyframes sten-inventory-pulse {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

.sten-modal-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #121212;
  text-align: left;
}
.sten-modal-text {
  font-size: 16px;
  line-height: 1.5;
  color: #4A4A4A;
  margin: 0 0 24px;
  text-align: left;
}
.sten-modal-button {
  background-color: #C95313;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}
.sten-modal-button:hover {
  background-color: #a6410b;
}
@media (max-width: 749px) {
  .sten-shipping-icon {
    width: 20px;
    padding-left: 4px;
  }
  .sten-best-offer-icon {
    width: 7px;
    padding-left: 4px;
    padding-top: 2px;
  }
  .sten-shipping-title {
    font-size: 15px;
  }
  
  .sten-delivery-time {
    font-size: 15px;
  }
  .sten-best-offer-time {
   font-size: 15px;
} 
  .sten-modal-container {
    padding: 20px;
  }
  
  .sten-modal-title {
    font-size: 20px;
  }
  
  .sten-modal-text {
    font-size: 14px;
  }
}



