/* -------------------------------------------------------
Sellfy Buy Button
---------------------------------------------------------- */

.sellfy-button-wrap {
    text-align: center;
    padding: 20px 0;
    margin: 14px 0 0 0;
}

.sellfy-buy-button-custom {
    display: inline-block !important;
    width: fit-content !important;
    max-width: max-content;

    background-color: #ed1c24 !important;
    color: #fff !important;

    padding: 24px 42px;
    letter-spacing: 1px;
    font-family: var(--font-rubik);
    font-size: 18px;
    font-weight: 600;
    border-radius: 100px !important;

    text-decoration: none !important;
    text-align: center;

    cursor: pointer;
    transition: background-color 0.15s ease;
    box-sizing: border-box;
}

.sellfy-buy-button-custom:hover {
    text-decoration: none !important;
    background-color: #333333;
    color: white !important;
}

.sellfy-buy-button-custom:active {
    text-decoration: none !important;
    background-color: #000000;
    color: white !important;
}

/* -------------------------------------------------------
Sellfy Buy Button - Mobile
---------------------------------------------------------- */

@media (max-width: 767px) {
    .sellfy-button-wrap {
        padding: 12px 0;
        margin: 0px 0 0 0;
    }

    .sellfy-buy-button-custom {
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }
}

/* -------------------------------------------------------
Sellfy Price Display
---------------------------------------------------------- */

.sellfy-price-wrap {
    text-align: center;
    padding: 20px 0;
}

.sellfy-price-label {
    margin: 0;
    font-size: 18px;
    color: #6e6d7a;
}

.sellfy-price-amount {
    margin: 50px 0 0 0;
    font-family: var(--font-rubik);
    font-size: 80px;
    font-weight: 400;
    color: #1a1a1a;
}

@media (max-width: 767px) {
    .sellfy-price-wrap {
        padding: 14px 0;
    }

    .sellfy-price-label {
        font-size: 15px;
    }

    .sellfy-price-amount {
        margin: 24px 0 0 0;
        font-size: 45px;
    }
}