/* Disable add-to-cart for frozen products (guest only) */
.tr-frozen-guest .action.tocart {
    pointer-events: none !important;
    opacity: 0.45;
    background-color: #e0e0e0 !important;
    border-color: #cfcfcf !important;
    color: #777 !important;
    cursor: not-allowed;
}

/* Optional: also grey out the heart / wishlist if needed */
.tr-frozen-guest .action.towishlist {
    opacity: 0.5;
}

/* Keep qty usable */
.tr-frozen-guest .qty,
.tr-frozen-guest .btn-qty {
    pointer-events: auto;
    opacity: 1;
}
button#product-addtocart-button[disabled] {
    pointer-events: none;
    opacity: 0.45;
    cursor: not-allowed;
}
button.action.tocart.tr-frozen-guest-disabled {
    pointer-events: none;
    opacity: 0.45;
    background-color: #e0e0e0 !important;
    border-color: #cfcfcf !important;
    color: #777 !important;
    cursor: not-allowed;
}
button.action.tocart.tr-frozen-guest-disabled {
    pointer-events: none;
    opacity: 0.45;
    background-color: #e0e0e0 !important;
    border-color: #cfcfcf !important;
    color: #777 !important;
    cursor: not-allowed;
}
.tr-frozen-guest-disabled {
    pointer-events: none;
    opacity: 0.45;
    background: #e0e0e0 !important;
    border-color: #cfcfcf !important;
    color: #777 !important;
    cursor: not-allowed;
}
/* Make sure the fieldset can wrap so message drops under */
.box-tocart .fieldset {
    flex-wrap: wrap;
}

/* Keep qty + button on one row */
.tr-addtocart-row {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

/* Make the notice full width below */
.tr-frozen-guest-msg {
    width: 100%;
    margin-top: 12px;
}

/* Disabled button styling */
.tr-frozen-guest-disabled {
    pointer-events: none;
    opacity: 0.45;
    background: #e0e0e0 !important;
    border-color: #cfcfcf !important;
    color: #777 !important;
    cursor: not-allowed;
}

.product-sku {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    justify-content: space-between;
}

.product-sku__value {
    font-size: 12px;
    color: #666;
}

.product-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-badge--frozen {
    background-color: #4da8ed;
    color: white;
    border: 1px solid #ddd;
}

