/* =========================================================
   Crazy Butcher – Shop / Loop styling
   Applies to weight-based products only
   ========================================================= */

/* Grey out product cards when CB stock is 0 */
.cb-out-of-stock {
    opacity: 0.55;
    filter: grayscale(1);
  }
  
  /* Disable interaction */
  .cb-out-of-stock a,
  .cb-out-of-stock button {
    pointer-events: none;
    cursor: not-allowed;
  }
  
  /* Replace add-to-cart look */
  .cb-out-of-stock .button,
  .cb-out-of-stock-btn {
    opacity: 0.7;
    background: #ccc !important;
    border-color: #ccc !important;
    color: #666 !important;
  }
  
  /* Optional: small label styling */
  .cb-out-of-stock .price::after {
    content: " — Nicht verfügbar";
    display: block;
    font-size: 0.85em;
    color: #666;
    margin-top: 2px;
  }
  