/* =====================================================
   Gacha Treasure Suite - Vinted
===================================================== */

.gts-button{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;
    height:48px;

    padding:0 18px;

    border-radius:12px;

    text-decoration:none !important;

    color:#fff !important;

    font-size:16px;
    font-weight:700;
    line-height:1;

    box-sizing:border-box;

    transition:transform var(--gts-transition-fast, .25s), box-shadow var(--gts-transition-fast, .25s), background-color var(--gts-transition-fast, .25s), border-color var(--gts-transition-fast, .25s);

    box-shadow:var(--gts-shadow-sm, 0 4px 10px rgba(0,0,0,.12));

}

.gts-button:hover{

    color:#fff !important;

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(0,0,0,.18);

}

.gts-button:active{

    transform:translateY(1px);

}

/* ===========================
   ICON
=========================== */

.gts-button-icon{

    display:flex !important;
    justify-content:center;
    align-items:center;

    width:46px !important;
    height:46px !important;

    flex:0 0 46px !important;

}

.gts-button-icon img{

    display:block !important;

    width:46px !important;
    height:46px !important;

    max-width:46px !important;
    max-height:46px !important;

    object-fit:contain !important;

}

.gts-button-text{

    display:flex;
    align-items:center;

}
.woocommerce-loop-product__title{

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:72px;

}

.gts-button:focus-visible{

    outline:3px solid var(--gts-color-primary, #0f8d96);
    outline-offset:3px;

}
