.primary-button button {
    
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    border: 0px;
    border-radius: 12px;
    cursor: pointer;
    background-color: #B704F6;
    align-items: center;
    color: #EEFDFD;
    font-size: 1rem;
    font-weight: 600;
    gap: 1rem;
}

.primary-button-expanded button {
    font-family: 'PlusJakartaSans';
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    border: 0px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #B704F6;
    align-items: center;
    color: #EEFDFD;
    font-size: 1.1rem;
    line-height: 1.6rem;
    gap: 1rem;
}

.primary-button-mobile-expanded button {
    padding: 1rem 2rem;
    display: flex;
    border: 0px;
    border: 1px solid #0D0D0D;
    cursor: pointer;
    background-color: transparent;
    align-items: center;
    color: #0D0D0D;
    font-size: 0.8rem;
    gap: 1rem;
    font-weight: bold;
}



.secondary-button button {
    display: flex;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #D6D6D6;
    cursor: pointer;
    background-color: #FFFFFF;
    align-items: center;
    color: #B704F6;
    font-size: 0.875rem;
    font-weight: 500;
    gap: 0.5rem;
}

.secondary-button-expanded button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #B704F6;
    cursor: pointer;
    background-color: #FFFFFF;
    align-items: center;
    color: #B704F6;
    font-size: 1rem;
    gap: 1rem;
}

.secondary-button-mobile-expanded button {
    display: flex;
    padding: 0.9rem 1.6rem;
    border: 1px solid #4A0508;
    cursor: pointer;
    background-color: #4A0508;
    align-items: center;
    color: #FFFFFF;
    font-size: 1rem;
    gap: 1rem;
}



.secondary-button button:hover {
    background-color: #F9FAFB;
}

.secondary-button img {
    height: 14px;
    width: 14px;
}

.hero-primary-button button {
    margin: 0;
    display: flex;
    border-radius: 50px;
    padding: 15px 24px;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid white;
    background-color: white;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    color: black;
    font-size: 16px;
    font-weight: 500;
}

.hero-primary-button img {
    display: none;
}

.hero-primary-button button:hover {
    background-color: #eee;
}

.hero-secondary-button button {
    margin: 0;
    display: flex;
    border-radius: 50px;
    padding: 15px 24px;
    font-size: 1rem;
    width: 155px;
    cursor: pointer;
    border: 1px solid white;
    background-color: black;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.hero-secondary-button img {
    display: none;
}

.hero-secondary-button button:hover {
    background-color: #222;

}

.text-button button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    cursor: pointer;
    background-color: transparent;
    color: #B704F6;
    font-size: 16px;
    font-weight: 700;
    padding: 0px;
    gap:0.1rem;
}

.text-button:hover {
    text-decoration: underline;
}

.text-button img {
    margin-left: 10px;
}

.icon-button {
    background-color: transparent;
    cursor: pointer;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-button img {
    height: 20px;
    width: 20px;
    text-align: center;
}

.icon-button:hover {
    background-color: #eee;
    border-radius: 5px;
}

.icon-button-disabled {
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #d6d6d6;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.icon-button-disabled img {
    height: 25px;
    width: 25px;
}

.icon-button-notdisabled {
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #B704F6;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;transition: all 0.3s ease;
}

.icon-button-notdisabled img {
    height: 25px;
    width: 25px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(94%) saturate(5718%) hue-rotate(283deg) brightness(91%) contrast(106%);
}


@media (max-width: 768px) {
    .secondary-button-mobile-expanded button {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0.9rem 1.6rem;
        border: 1px solid #4A0508;
        cursor: pointer;
        background-color: #4A0508;
        align-items: center;
        color: #FFFFFF;
        font-size: 1rem;
        gap: 1rem;
    }

    .primary-button-mobile-expanded button {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 1rem 2rem;
        border: 1px solid #0D0D0D;
        cursor: pointer;
        background-color: transparent;
        align-items: center;
        color: #0D0D0D;
        font-size: 0.8rem;
        gap: 1rem;
        font-weight: bold;
    }


    .text-button button {
        gap:0.3rem;
    }


    .text-button img {
        margin-left: 0;
    }
}