/* Base inventory status layout. */
.product-inventory .low-stock,
.product-inventory .in-stock,
.product-inventory .out-stock {
  display: inline-flex;
  align-items: center;
}

.product-inventory .low-stock::before,
.product-inventory .in-stock::before,
.product-inventory .out-stock::before {
  display: block;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M5%208h14l-1%2012H6L5%208Z%27%2F%3E%3Cpath%20d%3D%27M9%208V6a3%203%200%200%201%206%200v2%27%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M5%208h14l-1%2012H6L5%208Z%27%2F%3E%3Cpath%20d%3D%27M9%208V6a3%203%200%200%201%206%200v2%27%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

/* Compact inventory notice shown below the variant picker on the PDP. */
theme-product-detail[data-section-type="main-product"] .product-inventory {
  width: fit-content;
  max-width: 100%;
  margin-block: 1px 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

theme-product-detail[data-section-type="main-product"] .product-inventory .low-stock,
theme-product-detail[data-section-type="main-product"] .product-inventory .in-stock,
theme-product-detail[data-section-type="main-product"] .product-inventory .out-stock {
  gap: 6px;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 4px;
}

theme-product-detail[data-section-type="main-product"] .product-inventory .low-stock {
  color: #c9001a;
  background: rgba(201, 0, 26, 0.045);
  border-color: rgba(201, 0, 26, 0.14);
}

theme-product-detail[data-section-type="main-product"] .product-inventory .in-stock {
  color: #237a57;
  background: rgba(35, 122, 87, 0.045);
  border-color: rgba(35, 122, 87, 0.12);
}

theme-product-detail[data-section-type="main-product"] .product-inventory .out-stock {
  color: #b42318;
  background: rgba(180, 35, 24, 0.045);
  border-color: rgba(180, 35, 24, 0.12);
}

@media (max-width: 749px) {
  theme-product-detail[data-section-type="main-product"] .product-inventory {
    font-size: 11.5px;
  }

  theme-product-detail[data-section-type="main-product"] .product-inventory .low-stock,
  theme-product-detail[data-section-type="main-product"] .product-inventory .in-stock,
  theme-product-detail[data-section-type="main-product"] .product-inventory .out-stock {
    gap: 5px;
    padding: 4px 7px;
  }
}
