.floating-gift-btn {
    position: fixed;
    top: 35%;
    right: 0; /* Stick to right edge */
    width: 56px;
    height: 48px; /* Slightly rectangular for a nice tab look */

    /* Shape: Round Left, Flat Right */
    border-radius: 24px 0 0 24px;

    background-color: var(--sd-dark-green);

    box-shadow: -2px 1px 6px rgba(0, 0, 0, 0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    padding-left: 6px;

    color: white;
    cursor: pointer;

    z-index: 100;
    transition: all 0.2s ease;
    opacity: 1;
    transform: translateX(0);
}

.floating-gift-btn:hover {
    background-color: #009673;
    width: 62px;
    color: white;
    text-decoration: none;
}

.btn-hidden-state {
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}

.floating-gift-btn svg {
    width: 24px;
    height: 24px;
}

.hidden-icon {
    display: none;
}