.copy-product-link{
    display:inline-flex;
    align-items:center;
    gap:7px;

    color:#c08a00;

    text-decoration:none;

    transition:.25s;
}

.copy-product-link:hover{

    color:#9b7000;
}

.copy-product-link:hover .copy-link-text{

    text-decoration:underline;
}

.copy-icon{
    width:12px;
    height:12px;

    flex-shrink:0;

    position:relative;
    top:1px;        /* canh giữa với chữ */

    opacity:.85;

    transition:.2s;
}

.copy-product-link:hover .copy-icon{

    transform:translateY(-1px);
}

.copy-product-link.success{

    color:#11a95d;
}



.copy-toast{

    position:fixed;

    left:50%;
    bottom:-100px;

    transform:translateX(-50%);

    z-index:99999;

    opacity:0;

    transition:.45s cubic-bezier(.22,1,.36,1);
}


.copy-toast.show{

    bottom:30px;

    opacity:1;
}



.copy-toast-inner{

    background:#1d1d1f;

    color:white;

    min-width:280px;

    padding:14px 18px;

    border-radius:16px;

    box-shadow:

    0 10px 40px rgba(0,0,0,.25);

    display:flex;

    gap:12px;

    align-items:flex-start;
}


.copy-toast-check{

    width:28px;
    height:28px;

    background:#22c55e;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;
}


.copy-toast-message{

    line-height:1.5;

    font-size:14px;
}


@media(max-width:767px){

    .copy-toast{

        width:95%;
    }

    .copy-toast-inner{

        min-width:auto;
    }

}