/** Shopify CDN: Minification failed

Line 73:1 Unexpected ","
Line 77:1 Unexpected ","

**/
/* Product */

.variant_btns_block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%; /* Ensure full width */
}

.variant_btns_block ._item {
    padding: 6px 11px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #757373;
    border-radius: 4px;
    user-select: none;
    flex: 1; /* Make all items equal width */
    min-width: 0; /* Allow flex items to shrink below content size if needed */
}

.variant_btns_block .item_title {
    font-weight: 600;
    color: #5d5d5d;
}

.variant_btns_block .item_price {
    font-size: 20px; /* Increased from 13px to 20px */
    color: #757373;
}  

.variant_btns_block ._item.active {
    border-color: #00a341;
    border-width: 2px;
}

.variant_btns_block ._item.active .item_title {
    color: #000;
}

.variant_btns_block ._item.active .item_price {
    color: #de5333;
    font-weight: 600;
}

.item_unit_price {
    font-size: 13px;
    color: #000;
    margin-top: 5px;
    margin-bottom: 5px;
}

.unit-price-value {
    font-weight: 300;
}

.item_inventory {
    margin-top: auto; /* Push to bottom of flex container */
    font-size: 13px;
    color: #757373;
}

@media (max-width: 760px) {
  .variant_btns_block .item_price {
    font-size: 13px; /* Increased from 13px to 20px */
    color: #757373;
},
 .variant_btns_block ._item.active .item_price {
    color: #de5333;
    font-weight: 600;
},
  .item_unit_price {
    font-size: 10px;
    color: #000;
    margin-top: 5px;
    margin-bottom: 5px;
}
}
