/* MomEZ PDP - Add to Cart & Qty Styling */

/* Price styling */
.product-info-main .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Qty selector wrapper - the border container with -/+  */
.product-info-main .inline-flex.items-center.border-2 {
    height: 48px;
    border-color: #d1d5db;
    border-radius: 10px;
}

/* Qty -/+ buttons */
.product-info-main .inline-flex.items-center.border-2 button {
    width: 40px;
    height: 100%;
}

/* Qty input field - hide spin buttons */
.product-info-main input[name="qty"] {
    width: 48px;
    height: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border-left: 2px solid #d1d5db;
    border-right: 2px solid #d1d5db;
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    -moz-appearance: textfield;
}
.product-info-main input[name="qty"]::-webkit-inner-spin-button,
.product-info-main input[name="qty"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-info-main input[name="qty"]:focus {
    outline: none;
    box-shadow: none;
}

/* Add to Cart button */
.product-info-main #product-addtocart-button {
    flex: 1;
    height: 48px;
    min-width: 180px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}

.product-info-main #product-addtocart-button:hover {
    transform: translateY(-1px);
}

/* Always show the button label text */
.product-info-main #product-addtocart-button span {
    display: inline;
}
