/* Elegant Unique Gifts Promo */
.elegant-unique-promo {
    padding: 4rem 0;
    margin: 3rem 0;
    background: linear-gradient(135deg, #f5bf0d 0%, #edf5db 100%);
    border-radius: 15px;
}

.elegant-promo-card {
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.elegant-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #e67e22, #f39c12);
}

.elegant-card-left {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex: 1;
}

.elegant-icon-container {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.2);
}

.elegant-icon-container i {
    font-size: 2rem;
    color: white;
}

.elegant-text-content {
    flex: 1;
}

.promo-subtitle {
    color: #e67e22;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.promo-description {
    color: #5d6d7e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.promo-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(230, 126, 34, 0.08);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(230, 126, 34, 0.15);
}

.feature-tag i {
    font-size: 0.8rem;
}

.elegant-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    margin-left: 2rem;
}

.elegant-cta-btn {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.2);
    border: none;
    cursor: pointer;
}

.elegant-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 126, 34, 0.3);
    background: linear-gradient(135deg, #d35400, #e67e22);
}

.elegant-cta-btn .btn-text {
    font-size: 1.1rem;
}

.elegant-cta-btn .btn-icon {
    transition: transform 0.3s ease;
}

.elegant-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

.promo-stats {
    display: flex;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.stat-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .elegant-promo-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    
    .elegant-card-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .elegant-card-right {
        align-items: center;
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .promo-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .elegant-promo-card {
        padding: 2rem;
    }
    
    .promo-title {
        font-size: 1.6rem;
    }
    
    .promo-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .promo-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .elegant-cta-btn {
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }
}

