
.gift-badge {
    background: #D4B5A5;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 500;
    margin-left: 8px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gift-price {
    color: #D4B5A5 !important;
    font-weight: 600 !important;
    font-size: 1em !important;
}

.wc-auto-gift-progress-container {
    margin: 0 0 20px 0;
}

.wc-auto-gift-progress-wrapper {
    background: #FFF;
    padding: 20px;
    border-radius: 0;
    border: 1px solid #F0E9E4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.gift-progress-title {
    margin: 0 0 18px 0;
    font-size: 0.95em;
    color: #4A4A4A;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
}

.gift-progress-item {
    margin-bottom: 18px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.gift-progress-item:last-child {
    margin-bottom: 0;
}

.gift-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.gift-info-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gift-product-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #F0E9E4;
}

.gift-info strong {
    font-size: 0.9em;
    color: #4A4A4A;
    font-weight: 500;
}

.gift-status {
    font-size: 0.8em;
    color: #A89F94;
    font-weight: 400;
}

.gift-status.unlocked {
    color: #2d2d2d;
    font-weight: 500;
}

.gift-progress-bar {
    height: 8px;
    background: #F5F0EB;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gift-progress-fill {
    height: 100%;
    background: #D4B5A5;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.gift-progress-item.unlocked .gift-progress-fill {
    background: #C9A88F;
}

/* Mini Cart Specific Styles */
.widget_shopping_cart .wc-auto-gift-progress-container,
.blocksy-mini-cart .wc-auto-gift-progress-container {
    padding: 0;
}

.widget_shopping_cart .wc-auto-gift-progress-wrapper,
.blocksy-mini-cart .wc-auto-gift-progress-wrapper {
    font-size: 0.9em;
    padding: 15px;
    border-left: 0;
    border-right: 0;
}

/* Blocksy Theme Compatibility */
.ct-panel-content .wc-auto-gift-progress-container {
    padding: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wc-auto-gift-progress-wrapper {
        padding: 15px;
    }
    
    .gift-info {
        font-size: 0.85em;
    }
    
    .gift-progress-title {
        font-size: 0.85em;
    }
    
    .gift-progress-bar {
        height: 6px;
    }
    
    .gift-product-image {
        width: 35px;
        height: 35px;
    }
}
