.primary-button button {
    padding: 1rem 1.5rem;
    display: flex;
    border: 0px;
    border-radius: 12px;
    cursor: pointer;
    background-color: #1FBBC3;
    align-items: center;
    color: #EEFDFD;
    font-size: 1rem;
    gap: 1rem;
}

.primary-button-mobile-expanded button {
    padding: 0.5rem 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;
}

.primary-button-expanded button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 1.5rem;
    border: 0px;
    border-radius: 12px;
    cursor: pointer;
    background-color: #1FBBC3;
    align-items: center;
    color: #EEFDFD;
    font-size: 1rem;
    gap: 1rem;
}

.secondary-button button {
    display: flex;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #1C929E;
    cursor: pointer;
    background-color: #FFFFFF;
    align-items: center;
    color: #1C929E;
    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-expanded button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #1C929E;
    cursor: pointer;
    background-color: #FFFFFF;
    align-items: center;
    color: #1C929E;
    font-size: 1rem;
    gap: 1rem;
}



.secondary-button img {
    height: 16px;
    width: 16px;
    margin-top: 2px;
}



.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: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 0px;
    margin: 0px;
}

.text-button:hover {
    text-decoration: underline;
}

.text-button img {
    margin-left: 10px;
}


/* Active/Enabled Button */
.icon-button {
    background-color: #0D0D0D;
    cursor: pointer;
    border: 1px solid #0D0D0D;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon-button img {
    height: 25px;
    width: 25px;
    /* White filter for enabled button */
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.icon-button:hover {
    background-color: #4A0508;
    border-color: #4A0508;
}

.icon-button:hover img {
    /* Keep white on hover */
    filter: brightness(0) invert(1);
}

/* Disabled Button */
.icon-button-disabled {
    background-color: transparent;
    cursor: not-allowed;
    border: 1px solid #B0B0B0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    pointer-events: none;
}

.icon-button-disabled img {
    height: 25px;
    width: 25px;
    /* Black/dark gray filter for disabled button */
    filter: brightness(0.5) opacity(0.5);
    transition: filter 0.3s ease;
}

@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;
    }

}