/* ==========================================================
   SmartShop Product Store Link
   Shared by: Products / All Products / Category
   ========================================================== */

.product-store-link {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 5px auto 0px;
    padding: 2px 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    text-decoration: none !important;
    transition: color .2s ease, opacity .2s ease;
    background: #005ba5;
    border-radius: 12px;
    text-align: center;
}

.product-store-link:hover{
    color:#ffffff;
    text-decoration:none !important;
    opacity:.9;
}

.product-store-link:focus-visible{
    outline:2px solid rgba(31,58,138,.25);
    outline-offset:3px;
    border-radius:4px;
}

@media (max-width:768px){
    .product-store-link{
        margin:5px auto 0px;
        font-size:12px;width: auto;
		
    }
}
