/*--- PakMeds Brand Button Override: Pink & Green Only ---*/

/* 1. Disabled State (Faded Pink instead of Gray) */
html body .woocommerce #respond input#submit.disabled, 
html body .woocommerce #respond input#submit:disabled, 
html body .woocommerce a.button.disabled, 
html body .woocommerce button.button:disabled,
html body .woocommerce input.button:disabled {
    color: #ffffff !important;
    background: #dc3d87 !important; /* Brand Pink */
    opacity: 0.4 !important; /* Higher transparency to indicate "disabled" */
    cursor: not-allowed !important;
}

/* 2. Main Buttons: Pink Background */
html body .button,
html body .wishlist_table .product-add-to-cart a,
html body .woocommerce #respond input#submit, 
html body .woocommerce a.button,
html body .woocommerce a.button.alt, 
html body .woocommerce button.button, 
html body .woocommerce input.button,
html body .woocommerce div.product form.cart .single_add_to_cart_button,
html body .box-upload .wpcf7-submit,
html body .elbzotech-bt-default,
html body .btn-popup-cart,
html body .elbzotech-bt-style2,
html body .elbzotech-bt-default2 {
    border: 0 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    background: #dc3d87 !important; /* BRAND PINK */
    border-radius: 30px !important;
    
    /* Height & Centering Fixes */
    padding: 14px 32px !important; 
    line-height: 1.2 !important;
    height: auto !important;
    min-height: 48px !important; /* Ensures a natural "touch" size */
    
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    transition: all .3s ease-in-out !important;
    text-decoration: none !important;
}

/* 3. Hover State: Green Background */
html body .button:hover,
html body .wishlist_table .product-add-to-cart a:hover,
html body .woocommerce #respond input#submit:hover, 
html body .woocommerce a.button:hover,
html body .woocommerce a.button.alt:hover, 
html body .woocommerce button.button:hover, 
html body .woocommerce input.button:hover,
html body .woocommerce div.product form.cart .single_add_to_cart_button:hover,
html body .box-upload .wpcf7-submit:hover,
html body .elbzotech-bt-default:hover,
html body .btn-popup-cart:hover,
html body .elbzotech-bt-style2:hover,
html body .elbzotech-bt-default2:hover {
    color: #ffffff !important;
    background: #80cc28 !important; /* BRAND GREEN */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-1px); /* Slight lift for a premium feel */
}

/* 4. Style 3 (Outlined Style) */
html body .elbzotech-bt-style3 {
    border: 2px solid #dc3d87 !important;
    color: #dc3d87 !important;
    background: #ffffff !important;
    border-radius: 30px !important;
    padding: 12px 32px !important; 
}

html body .elbzotech-bt-style3:hover {
    background: #dc3d87 !important;
    color: #ffffff !important;
}

/* 5. Style 4 (Text Links) */
html body .elbzotech-bt-style4 {
    color: #dc3d87 !important;
    padding: 0 !important;
}
html body .elbzotech-bt-style4 span {
    border-bottom: 1px solid #dc3d87 !important;
}
html body .elbzotech-bt-style4:hover, 
html body .elbzotech-bt-style4:hover span {
    color: #80cc28 !important;
    border-color: #80cc28 !important;
}

/* 6. Specific Fix for WooCommerce Cart/Checkout Buttons */
html body .woocommerce-cart-form .button,
html body .woocommerce-checkout .button,
html body .woocommerce-MyAccount-content .button {
    padding: 14px 25px !important;
    line-height: 1.2 !important;
    height: auto !important;
}