/**
 * Frontend CSS for GiftOnTier Progress Bar - Stable Version
 */

.giftontier-container {
    margin: 20px 0;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 25px;
}

.giftontier-message {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    background-color: #f1f8e9;
    color: #2e7d32;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #c8e6c9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.giftontier-icon {
    font-size: 1.2rem;
}

.giftontier-product-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: #fdfdfe;
    border-radius: 6px;
    border: 1px dashed #ced4da;
    width: 100%;
    box-sizing: border-box;
}

.giftontier-product-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

.giftontier-product-details {
    display: flex;
    flex-direction: column;
}

.giftontier-product-title {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.giftontier-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.giftontier-progress-bg {
    width: 100%;
    height: 10px;
    background-color: #f0f2f5;
    border-radius: 5px;
    overflow: hidden;
}

.giftontier-progress-bar {
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.4s ease;
}

/* Gift product price visual override */
.gift-processed {
    text-decoration: line-through !important;
    color: #aaa !important;
    opacity: 0.8;
}

.gift-free-label {
    color: #4CAF50 !important;
    font-weight: 700 !important;
    margin-left: 5px;
    white-space: nowrap;
}