/** Shopify CDN: Minification failed

Line 193:2 Unexpected "}"

**/
.tiered-pricing-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
    align-items: flex-end;
  }

  .filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .filter-title {
    font-weight: bold;
    font-size: 16px;
    color: #000;
  }

  .filter-inputs {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .filter-inputs input {
    width: 45px;
    height: 32px;
    border: 1px solid #999;
    text-align: center;
    font-size: 14px;
    padding: 0;
  }

  .filter-inputs input::-webkit-outer-spin-button,
  .filter-inputs input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .filter-inputs input[type=number] {
    -moz-appearance: textfield;
  }

  .filter-inputs .cross {
    font-size: 14px;
    color: #333;
  }

  .btn-filter-go {
    background: #1B2A4A;
    color: #fff;
    border: none;
    height: 32px;
    padding: 0 15px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
    border: 1px solid #1B2A4A;
  }
  .btn-filter-go:hover {
    background: #17233eff;
  }

  .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .btn-length {
    background: #1B2A4A;
    color: #fff;
    border: 1px solid #1B2A4A;
    height: 32px;
    padding: 0 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
  }

  .btn-length:hover, .btn-length.active {
    background: #17233eff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
  }

  .btn-clear {
    background: #f4f4f4;
    color: #333;
    border: 1px solid #ccc;
  }
  .btn-clear:hover {
    background: #e4e4e4;
    box-shadow: none;
  }


  .tiered-pricing-wrapper {
    overflow-x: auto;
    border: 1px solid #000; /* Outer border as per image style usually implies solid borders */
  }

  .tiered-pricing-table {
    width: 100%;
    border-collapse: collapse; /* Important for the grid look */
    min-width: 800px;
    font-family: sans-serif;
  }

.tiered-pricing-table th {
    background-color: #021f5c;
    font-weight: 700;
    text-align: left;
    padding: 10px;
    border: 1px solid #000;
    font-size: 14px;
    color: #ffffff;
  }

  .tiered-pricing-table td {
    padding: 8px 10px;
    border: 1px solid #000; /* Grid lines */
    vertical-align: middle;
    font-size: 14px;
    color: #000;
  }

  .tiered-pricing-table .variant-link {
    text-decoration: underline;
    color: #000;
    font-weight: bold;
  }

  /* Column specific alignments */
  .col-bundle, .col-price, .col-add {
    text-align: right;
  }

  .col-stock, .col-dimensions {
    background: #fff;
  }

  /* Price styling */
  .price-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
  }
  .price-value {
    font-weight: bold;
  }
  .price-unit {
    font-size: 0.9em;
    color: #333;
  }

  /* Add to cart form styling */
  .add-form-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
  }

  .quantity-input {
    width: 70px;
    padding: 4px;
    border: 1px solid #000;
    text-align: center;
    font-size: 14px;
  }

.btn-add-cart {
    background-color: #9f2b30;
    color: white;
    border: 1px solid #9f2b30;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
  }
  .btn-add-cart:hover {
    background-color: #b83038;
  }
  }
  .btn-add-cart:disabled {
    background-color: #ccc;
    border-color: #999;
    cursor: not-allowed;
  }

  /* Hover effect — JS adds .cell-hovered to individual tds */
  .tiered-pricing-table td.cell-hovered {
    background-color: #fffbe6;
  }

  .variant-unavailable .col-price,
  .variant-unavailable .col-stock,
  .variant-unavailable .col-dimensions,
  .variant-unavailable .col-bundle {
    opacity: 0.6;
  }
