/*
 * pdp-buttons-v4.css — created 2026-06-06, fully restored 2026-06-08.
 * Centralizes all PDP-specific styling we patched in this session:
 *   1. Order Sample / Get Price (.btnfancy) match Add to Cart computed style
 *   2. Hide PDP product social-share bars
 *   3. Hide native Magento upsell (redundant with Amasty "Other Products You May Like")
 */

/* 1. Order Sample / Get Price button — exact Add to Cart match.
 *    Higher specificity (3x .btnfancy classes) to beat cached older custom.css. */
html body.catalog-product-view a.btnfancy.btnfancy.btnfancy,
html body.catalog-product-view .btnfancy.btnfancy.btnfancy,
body.catalog-product-view a[id^="lofform"].btnfancy.btnfancy,
body.catalog-product-view a.btnfancy.btnfancy[id^="lofform"] {
    background: rgb(9, 70, 142) !important;
    background-color: rgb(9, 70, 142) !important;
    background-image: none !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 28px !important;
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    min-width: 150px !important;
    letter-spacing: -0.21px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
    width: auto !important;
    max-width: none !important;
    float: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    transition: background-color 0.2s ease !important;
}

html body.catalog-product-view a.btnfancy.btnfancy.btnfancy:hover,
html body.catalog-product-view a.btnfancy.btnfancy.btnfancy:focus,
html body.catalog-product-view a.btnfancy.btnfancy.btnfancy:active {
    background: #06325f !important;
    background-color: #06325f !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* 2. Hide PDP product social-share bars (both class variants).
 *    Leaves footer .follow-us alone. */
html body.catalog-product-view .product-share,
html body.catalog-product-view div.product-share,
html body.catalog-product-view .product-social-links,
html body.catalog-product-view div.product-social-links,
html body.catalog-product-view .product-info-main .product-social-links {
    display: none !important;
}

/* 3. Hide native Magento upsell block ("We found other products you might like!").
 *    Amasty Mostviewed widget ("Other Products You May Like") is our canonical
 *    related-products block site-wide via per-category rules. */
html body.catalog-product-view .block.upsell,
html body.catalog-product-view .products-upsell,
html body.catalog-product-view .block.upsell.porto-products {
    display: none !important;
}
