/* Free Gift Message Styling - Cart Page */
.blackwing-free-gift-message {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f8c54d 0%, #f5b041 50%, #f39c12 100%);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700; /* Bold */
    color: #FFFFFF; /* White text */
    box-shadow: 0 2px 4px rgba(243, 156, 18, 0.2);
    animation: slideIn 0.3s ease-out;
}

.blackwing-free-gift-message .gift-icon {
    display: inline-block;
    margin-right: 6px;
    font-size: 16px;
    animation: bobbing 1.5s ease-in-out infinite;
    vertical-align: middle;
}

.blackwing-free-gift-message .gift-text {
    display: inline-block;
    vertical-align: middle;
}

/* Mini-Cart Gift Message - Compact Styling */
.minicart-gift-message.blackwing-free-gift-message {
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 6px 10px;
    font-size: 11px;
    line-height: 1.4;
    color: #FFFFFF; /* White text */
    font-weight: 700; /* Bold */
}

.minicart-gift-message.blackwing-free-gift-message .gift-icon {
    font-size: 14px;
    margin-right: 4px;
}

/* Bobbing Animation for Party Icon */
@keyframes bobbing {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blackwing-free-gift-message {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .blackwing-free-gift-message .gift-icon {
        font-size: 14px;
    }
}

