/* Floating Gift Cards Button */
.floating-gift-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 60px;
    height: 60px;
    padding: 0;
    
    background-color: #DD9854;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-gift-button:hover {
    background-color: #008000;
    width: auto;
    padding: 15px 20px;
    gap: 10px;
}

.floating-gift-button .gift-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    filter: brightness(0) invert(1); /* Makes the icon white */
}

.floating-gift-button .button-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.floating-gift-button:hover .button-text {
    max-width: 150px;
    opacity: 1;
    margin-left: 5px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .floating-gift-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .floating-gift-button .gift-icon {
        width: 26px;
        height: 26px;
    }
    
    .floating-gift-button .button-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .floating-gift-button {
        bottom: 15px;
        right: 15px;
    }
}

/* Index page color override */
.index-page .floating-gift-button {
    background-color: #008000;
}

.index-page .floating-gift-button:hover {
    background-color: #DD9854;
}
